* [PATCH 0/3] Enable GuC SLPC default balancing strategies v2
@ 2025-01-08 14:13 Rodrigo Vivi
2025-01-08 14:13 ` [PATCH 1/3] drm/i915: Increase the timeout of the spinners Rodrigo Vivi
` (5 more replies)
0 siblings, 6 replies; 14+ messages in thread
From: Rodrigo Vivi @ 2025-01-08 14:13 UTC (permalink / raw)
To: intel-gfx; +Cc: Rodrigo Vivi
The goal here is to improve the GPU performance in some cases
where we are TDP limited, with both GPU and CPU with high
utilization and PCODE without power to fulfill both sides.
Of course, only matters for integrated parts with GuC
SLPC enabled: ADL and MTL.
Apparently the ADL on our CI was not happy about that
with the igt_spinners timming out [1]. So, this new attempt
also lift the BAT restriction on the igt_spinner with the
first patch.
Another possibility would be to make this change for MTL
only, but I'm afraid that this is not the ideal, because:
1. ADL users couldn't get the performance benefit of this change
2. This would sound like a hack to bypass CI, where the ADL there
might have some TDP limitation and MTL there having more power.
[1] - https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v2/bat-twl-2/igt@i915_selftest@live@gt_engines.html
Thanks,
Rodrigo.
Rodrigo Vivi (3):
drm/i915: Increase the timeout of the spinners
drm/i915/guc/slpc: Enable GuC SLPC default strategies
drm/i915/guc/slpc: Print more SLPC debug status information
drivers/gpu/drm/i915/gt/uc/intel_guc_slpc.c | 34 ++++++++++----------
drivers/gpu/drm/i915/selftests/igt_spinner.c | 2 +-
2 files changed, 18 insertions(+), 18 deletions(-)
--
2.47.1
^ permalink raw reply [flat|nested] 14+ messages in thread
* [PATCH 1/3] drm/i915: Increase the timeout of the spinners
2025-01-08 14:13 [PATCH 0/3] Enable GuC SLPC default balancing strategies v2 Rodrigo Vivi
@ 2025-01-08 14:13 ` Rodrigo Vivi
2025-01-08 14:13 ` [PATCH 2/3] drm/i915/guc/slpc: Enable GuC SLPC default strategies Rodrigo Vivi
` (4 subsequent siblings)
5 siblings, 0 replies; 14+ messages in thread
From: Rodrigo Vivi @ 2025-01-08 14:13 UTC (permalink / raw)
To: intel-gfx; +Cc: Rodrigo Vivi
Although in most of the cases it will be a lot faster, there are some
rare cases in a few platforms where this can result in a timeout,
specially when we enable the GPU-CPU balancing in GuC SLPC.
The wait by itself consumes CPU and the GPU workload is small enough,
so the priority is given to the CPU and we can expect some delays
here. This number was a random picked number when reducing
it on commit d4b02a4c613e ("drm/i915/selftests: Trim execlists
runtime") in preparation for some scheduler improvements.
Let's move it back up.
Signed-off-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
---
drivers/gpu/drm/i915/selftests/igt_spinner.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/gpu/drm/i915/selftests/igt_spinner.c b/drivers/gpu/drm/i915/selftests/igt_spinner.c
index 8c3e1f20e5a1..bb757b922ad9 100644
--- a/drivers/gpu/drm/i915/selftests/igt_spinner.c
+++ b/drivers/gpu/drm/i915/selftests/igt_spinner.c
@@ -260,5 +260,5 @@ bool igt_wait_for_spinner(struct igt_spinner *spin, struct i915_request *rq)
100) &&
wait_for(i915_seqno_passed(hws_seqno(spin, rq),
rq->fence.seqno),
- 50));
+ 1000));
}
--
2.47.1
^ permalink raw reply related [flat|nested] 14+ messages in thread
* [PATCH 2/3] drm/i915/guc/slpc: Enable GuC SLPC default strategies
2025-01-08 14:13 [PATCH 0/3] Enable GuC SLPC default balancing strategies v2 Rodrigo Vivi
2025-01-08 14:13 ` [PATCH 1/3] drm/i915: Increase the timeout of the spinners Rodrigo Vivi
@ 2025-01-08 14:13 ` Rodrigo Vivi
2025-01-08 19:11 ` Belgaumkar, Vinay
2025-01-08 14:13 ` [PATCH 3/3] drm/i915/guc/slpc: Print more SLPC debug status information Rodrigo Vivi
` (3 subsequent siblings)
5 siblings, 1 reply; 14+ messages in thread
From: Rodrigo Vivi @ 2025-01-08 14:13 UTC (permalink / raw)
To: intel-gfx; +Cc: Rodrigo Vivi, Vinay Belgaumkar
The Balancer and DCC strategies were left off on a fear that
these strategies would conflict with the i915's waitboost.
However, these strategies are only active in certain conditions where
the system is TDP limited. So, they don't conflict, but help the
waitboost by guaranteeing a bit more of GT frequency.
Without these strategies we were likely leaving some performance
behind on some scenarious.
Cc: Vinay Belgaumkar <vinay.belgaumkar@intel.com>
Signed-off-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
---
drivers/gpu/drm/i915/gt/uc/intel_guc_slpc.c | 17 -----------------
1 file changed, 17 deletions(-)
diff --git a/drivers/gpu/drm/i915/gt/uc/intel_guc_slpc.c b/drivers/gpu/drm/i915/gt/uc/intel_guc_slpc.c
index 706fffca698b..722da8a7f852 100644
--- a/drivers/gpu/drm/i915/gt/uc/intel_guc_slpc.c
+++ b/drivers/gpu/drm/i915/gt/uc/intel_guc_slpc.c
@@ -76,17 +76,6 @@ static void slpc_mem_set_enabled(struct slpc_shared_data *data,
slpc_mem_set_param(data, disable_id, 0);
}
-static void slpc_mem_set_disabled(struct slpc_shared_data *data,
- u8 enable_id, u8 disable_id)
-{
- /*
- * Disabling a param involves setting the enable_id
- * to 0 and disable_id to 1.
- */
- slpc_mem_set_param(data, disable_id, 1);
- slpc_mem_set_param(data, enable_id, 0);
-}
-
static u32 slpc_get_state(struct intel_guc_slpc *slpc)
{
struct slpc_shared_data *data;
@@ -366,12 +355,6 @@ static void slpc_shared_data_reset(struct slpc_shared_data *data)
/* Enable only GTPERF task, disable others */
slpc_mem_set_enabled(data, SLPC_PARAM_TASK_ENABLE_GTPERF,
SLPC_PARAM_TASK_DISABLE_GTPERF);
-
- slpc_mem_set_disabled(data, SLPC_PARAM_TASK_ENABLE_BALANCER,
- SLPC_PARAM_TASK_DISABLE_BALANCER);
-
- slpc_mem_set_disabled(data, SLPC_PARAM_TASK_ENABLE_DCC,
- SLPC_PARAM_TASK_DISABLE_DCC);
}
/**
--
2.47.1
^ permalink raw reply related [flat|nested] 14+ messages in thread
* [PATCH 3/3] drm/i915/guc/slpc: Print more SLPC debug status information
2025-01-08 14:13 [PATCH 0/3] Enable GuC SLPC default balancing strategies v2 Rodrigo Vivi
2025-01-08 14:13 ` [PATCH 1/3] drm/i915: Increase the timeout of the spinners Rodrigo Vivi
2025-01-08 14:13 ` [PATCH 2/3] drm/i915/guc/slpc: Enable GuC SLPC default strategies Rodrigo Vivi
@ 2025-01-08 14:13 ` Rodrigo Vivi
2025-01-08 19:08 ` Belgaumkar, Vinay
2025-01-08 16:10 ` ✓ i915.CI.BAT: success for Enable GuC SLPC default balancing strategies (rev3) Patchwork
` (2 subsequent siblings)
5 siblings, 1 reply; 14+ messages in thread
From: Rodrigo Vivi @ 2025-01-08 14:13 UTC (permalink / raw)
To: intel-gfx; +Cc: Rodrigo Vivi, Vinay Belgaumkar
Let's peak on the Balancer and DCC status, now that we
are using the default strategies.
v2: fix identation
Cc: Vinay Belgaumkar <vinay.belgaumkar@intel.com>
Signed-off-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
---
drivers/gpu/drm/i915/gt/uc/intel_guc_slpc.c | 17 +++++++++++++++++
1 file changed, 17 insertions(+)
diff --git a/drivers/gpu/drm/i915/gt/uc/intel_guc_slpc.c b/drivers/gpu/drm/i915/gt/uc/intel_guc_slpc.c
index 722da8a7f852..7a9a79fb46fb 100644
--- a/drivers/gpu/drm/i915/gt/uc/intel_guc_slpc.c
+++ b/drivers/gpu/drm/i915/gt/uc/intel_guc_slpc.c
@@ -774,6 +774,23 @@ int intel_guc_slpc_print_info(struct intel_guc_slpc *slpc, struct drm_printer *p
drm_printf(p, "\tSLPC state: %s\n", slpc_get_state_string(slpc));
drm_printf(p, "\tGTPERF task active: %s\n",
str_yes_no(slpc_tasks->status & SLPC_GTPERF_TASK_ENABLED));
+ drm_printf(p, "\tDCC enabled: %s\n",
+ str_yes_no(slpc_tasks->status &
+ SLPC_DCC_TASK_ENABLED));
+ drm_printf(p, "\tDCC in: %s\n",
+ str_yes_no(slpc_tasks->status & SLPC_IN_DCC));
+ drm_printf(p, "\tBalancer enabled: %s\n",
+ str_yes_no(slpc_tasks->status &
+ SLPC_BALANCER_ENABLED));
+ drm_printf(p, "\tIBC enabled: %s\n",
+ str_yes_no(slpc_tasks->status &
+ SLPC_IBC_TASK_ENABLED));
+ drm_printf(p, "\tBalancer IA LMT enabled: %s\n",
+ str_yes_no(slpc_tasks->status &
+ SLPC_BALANCER_IA_LMT_ENABLED));
+ drm_printf(p, "\tBalancer IA LMT active: %s\n",
+ str_yes_no(slpc_tasks->status &
+ SLPC_BALANCER_IA_LMT_ACTIVE));
drm_printf(p, "\tMax freq: %u MHz\n",
slpc_decode_max_freq(slpc));
drm_printf(p, "\tMin freq: %u MHz\n",
--
2.47.1
^ permalink raw reply related [flat|nested] 14+ messages in thread
* ✓ i915.CI.BAT: success for Enable GuC SLPC default balancing strategies (rev3)
2025-01-08 14:13 [PATCH 0/3] Enable GuC SLPC default balancing strategies v2 Rodrigo Vivi
` (2 preceding siblings ...)
2025-01-08 14:13 ` [PATCH 3/3] drm/i915/guc/slpc: Print more SLPC debug status information Rodrigo Vivi
@ 2025-01-08 16:10 ` Patchwork
2025-01-09 18:06 ` ✓ i915.CI.Full: " Patchwork
2025-01-09 22:28 ` [PATCH 0/3] Enable GuC SLPC default balancing strategies v2 Rodrigo Vivi
5 siblings, 0 replies; 14+ messages in thread
From: Patchwork @ 2025-01-08 16:10 UTC (permalink / raw)
To: Rodrigo Vivi; +Cc: intel-gfx
[-- Attachment #1: Type: text/plain, Size: 5218 bytes --]
== Series Details ==
Series: Enable GuC SLPC default balancing strategies (rev3)
URL : https://patchwork.freedesktop.org/series/142676/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_15924 -> Patchwork_142676v3
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/index.html
Participating hosts (38 -> 36)
------------------------------
Missing (2): fi-snb-2520m fi-pnv-d510
Known issues
------------
Here are the changes found in Patchwork_142676v3 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@i915_pm_rpm@module-reload:
- bat-dg1-7: [PASS][1] -> [FAIL][2] ([i915#13401])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15924/bat-dg1-7/igt@i915_pm_rpm@module-reload.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/bat-dg1-7/igt@i915_pm_rpm@module-reload.html
- bat-rpls-4: [PASS][3] -> [FAIL][4] ([i915#13401])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15924/bat-rpls-4/igt@i915_pm_rpm@module-reload.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/bat-rpls-4/igt@i915_pm_rpm@module-reload.html
* igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence:
- bat-dg2-11: [PASS][5] -> [SKIP][6] ([i915#9197]) +3 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15924/bat-dg2-11/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/bat-dg2-11/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html
#### Possible fixes ####
* igt@i915_selftest@live:
- bat-twl-2: [ABORT][7] ([i915#12919] / [i915#13397]) -> [PASS][8]
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15924/bat-twl-2/igt@i915_selftest@live.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/bat-twl-2/igt@i915_selftest@live.html
- bat-jsl-3: [INCOMPLETE][9] ([i915#13241]) -> [PASS][10]
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15924/bat-jsl-3/igt@i915_selftest@live.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/bat-jsl-3/igt@i915_selftest@live.html
* igt@i915_selftest@live@gt_mocs:
- bat-twl-2: [ABORT][11] ([i915#12919]) -> [PASS][12]
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15924/bat-twl-2/igt@i915_selftest@live@gt_mocs.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/bat-twl-2/igt@i915_selftest@live@gt_mocs.html
* igt@i915_selftest@live@gt_pm:
- bat-jsl-3: [DMESG-FAIL][13] ([i915#13132]) -> [PASS][14]
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15924/bat-jsl-3/igt@i915_selftest@live@gt_pm.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/bat-jsl-3/igt@i915_selftest@live@gt_pm.html
* igt@i915_selftest@live@objects:
- bat-jsl-3: [INCOMPLETE][15] -> [PASS][16]
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15924/bat-jsl-3/igt@i915_selftest@live@objects.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/bat-jsl-3/igt@i915_selftest@live@objects.html
* igt@i915_selftest@live@workarounds:
- bat-arlh-3: [DMESG-FAIL][17] ([i915#13393]) -> [PASS][18] +1 other test pass
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15924/bat-arlh-3/igt@i915_selftest@live@workarounds.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/bat-arlh-3/igt@i915_selftest@live@workarounds.html
- {bat-arls-6}: [DMESG-FAIL][19] ([i915#13393]) -> [PASS][20] +1 other test pass
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15924/bat-arls-6/igt@i915_selftest@live@workarounds.html
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/bat-arls-6/igt@i915_selftest@live@workarounds.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[i915#12919]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12919
[i915#13132]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13132
[i915#13241]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13241
[i915#13393]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13393
[i915#13397]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13397
[i915#13401]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13401
[i915#9197]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9197
Build changes
-------------
* Linux: CI_DRM_15924 -> Patchwork_142676v3
CI-20190529: 20190529
CI_DRM_15924: 9cbe590862ef629f35ce9f4c2dc5c0a6a4553f48 @ git://anongit.freedesktop.org/gfx-ci/linux
IGT_8181: 32ed9fc482fee95777054d53b96d19a7e30eaa18 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
Patchwork_142676v3: 9cbe590862ef629f35ce9f4c2dc5c0a6a4553f48 @ git://anongit.freedesktop.org/gfx-ci/linux
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/index.html
[-- Attachment #2: Type: text/html, Size: 6221 bytes --]
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [PATCH 3/3] drm/i915/guc/slpc: Print more SLPC debug status information
2025-01-08 14:13 ` [PATCH 3/3] drm/i915/guc/slpc: Print more SLPC debug status information Rodrigo Vivi
@ 2025-01-08 19:08 ` Belgaumkar, Vinay
0 siblings, 0 replies; 14+ messages in thread
From: Belgaumkar, Vinay @ 2025-01-08 19:08 UTC (permalink / raw)
To: Rodrigo Vivi, intel-gfx
On 1/8/2025 6:13 AM, Rodrigo Vivi wrote:
> Let's peak on the Balancer and DCC status, now that we
> are using the default strategies.
s/peak/peek
>
> v2: fix identation
>
> Cc: Vinay Belgaumkar <vinay.belgaumkar@intel.com>
> Signed-off-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
> ---
> drivers/gpu/drm/i915/gt/uc/intel_guc_slpc.c | 17 +++++++++++++++++
> 1 file changed, 17 insertions(+)
>
> diff --git a/drivers/gpu/drm/i915/gt/uc/intel_guc_slpc.c b/drivers/gpu/drm/i915/gt/uc/intel_guc_slpc.c
> index 722da8a7f852..7a9a79fb46fb 100644
> --- a/drivers/gpu/drm/i915/gt/uc/intel_guc_slpc.c
> +++ b/drivers/gpu/drm/i915/gt/uc/intel_guc_slpc.c
> @@ -774,6 +774,23 @@ int intel_guc_slpc_print_info(struct intel_guc_slpc *slpc, struct drm_printer *p
> drm_printf(p, "\tSLPC state: %s\n", slpc_get_state_string(slpc));
> drm_printf(p, "\tGTPERF task active: %s\n",
> str_yes_no(slpc_tasks->status & SLPC_GTPERF_TASK_ENABLED));
> + drm_printf(p, "\tDCC enabled: %s\n",
> + str_yes_no(slpc_tasks->status &
> + SLPC_DCC_TASK_ENABLED));
> + drm_printf(p, "\tDCC in: %s\n",
> + str_yes_no(slpc_tasks->status & SLPC_IN_DCC));
> + drm_printf(p, "\tBalancer enabled: %s\n",
> + str_yes_no(slpc_tasks->status &
> + SLPC_BALANCER_ENABLED));
> + drm_printf(p, "\tIBC enabled: %s\n",
> + str_yes_no(slpc_tasks->status &
> + SLPC_IBC_TASK_ENABLED));
> + drm_printf(p, "\tBalancer IA LMT enabled: %s\n",
> + str_yes_no(slpc_tasks->status &
> + SLPC_BALANCER_IA_LMT_ENABLED));
> + drm_printf(p, "\tBalancer IA LMT active: %s\n",
> + str_yes_no(slpc_tasks->status &
> + SLPC_BALANCER_IA_LMT_ACTIVE));
Reviewed-by: Vinay Belgaumkar <vinay.belgaumkar@intel.com>
> drm_printf(p, "\tMax freq: %u MHz\n",
> slpc_decode_max_freq(slpc));
> drm_printf(p, "\tMin freq: %u MHz\n",
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [PATCH 2/3] drm/i915/guc/slpc: Enable GuC SLPC default strategies
2025-01-08 14:13 ` [PATCH 2/3] drm/i915/guc/slpc: Enable GuC SLPC default strategies Rodrigo Vivi
@ 2025-01-08 19:11 ` Belgaumkar, Vinay
2025-01-08 19:30 ` Dixit, Ashutosh
0 siblings, 1 reply; 14+ messages in thread
From: Belgaumkar, Vinay @ 2025-01-08 19:11 UTC (permalink / raw)
To: Rodrigo Vivi, intel-gfx
On 1/8/2025 6:13 AM, Rodrigo Vivi wrote:
> The Balancer and DCC strategies were left off on a fear that
> these strategies would conflict with the i915's waitboost.
> However, these strategies are only active in certain conditions where
> the system is TDP limited. So, they don't conflict, but help the
> waitboost by guaranteeing a bit more of GT frequency.
>
> Without these strategies we were likely leaving some performance
> behind on some scenarious.
s/scenarious/scenarios
We should also mention that the platform defaults for enabling/disabling
DCC/Balancer will now be chosen by GuC.
Reviewed-by: Vinay Belgaumkar <vinay.belgaumkar@intel.com>
>
> Cc: Vinay Belgaumkar <vinay.belgaumkar@intel.com>
> Signed-off-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
> ---
> drivers/gpu/drm/i915/gt/uc/intel_guc_slpc.c | 17 -----------------
> 1 file changed, 17 deletions(-)
>
> diff --git a/drivers/gpu/drm/i915/gt/uc/intel_guc_slpc.c b/drivers/gpu/drm/i915/gt/uc/intel_guc_slpc.c
> index 706fffca698b..722da8a7f852 100644
> --- a/drivers/gpu/drm/i915/gt/uc/intel_guc_slpc.c
> +++ b/drivers/gpu/drm/i915/gt/uc/intel_guc_slpc.c
> @@ -76,17 +76,6 @@ static void slpc_mem_set_enabled(struct slpc_shared_data *data,
> slpc_mem_set_param(data, disable_id, 0);
> }
>
> -static void slpc_mem_set_disabled(struct slpc_shared_data *data,
> - u8 enable_id, u8 disable_id)
> -{
> - /*
> - * Disabling a param involves setting the enable_id
> - * to 0 and disable_id to 1.
> - */
> - slpc_mem_set_param(data, disable_id, 1);
> - slpc_mem_set_param(data, enable_id, 0);
> -}
> -
> static u32 slpc_get_state(struct intel_guc_slpc *slpc)
> {
> struct slpc_shared_data *data;
> @@ -366,12 +355,6 @@ static void slpc_shared_data_reset(struct slpc_shared_data *data)
> /* Enable only GTPERF task, disable others */
> slpc_mem_set_enabled(data, SLPC_PARAM_TASK_ENABLE_GTPERF,
> SLPC_PARAM_TASK_DISABLE_GTPERF);
> -
> - slpc_mem_set_disabled(data, SLPC_PARAM_TASK_ENABLE_BALANCER,
> - SLPC_PARAM_TASK_DISABLE_BALANCER);
> -
> - slpc_mem_set_disabled(data, SLPC_PARAM_TASK_ENABLE_DCC,
> - SLPC_PARAM_TASK_DISABLE_DCC);
> }
>
> /**
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [PATCH 2/3] drm/i915/guc/slpc: Enable GuC SLPC default strategies
2025-01-08 19:11 ` Belgaumkar, Vinay
@ 2025-01-08 19:30 ` Dixit, Ashutosh
2025-01-08 21:19 ` Rodrigo Vivi
0 siblings, 1 reply; 14+ messages in thread
From: Dixit, Ashutosh @ 2025-01-08 19:30 UTC (permalink / raw)
To: Belgaumkar, Vinay; +Cc: Rodrigo Vivi, intel-gfx
On Wed, 08 Jan 2025 11:11:53 -0800, Belgaumkar, Vinay wrote:
>
>
> On 1/8/2025 6:13 AM, Rodrigo Vivi wrote:
> > The Balancer and DCC strategies were left off on a fear that
> > these strategies would conflict with the i915's waitboost.
> > However, these strategies are only active in certain conditions where
> > the system is TDP limited. So, they don't conflict, but help the
> > waitboost by guaranteeing a bit more of GT frequency.
> >
> > Without these strategies we were likely leaving some performance
> > behind on some scenarious.
>
> s/scenarious/scenarios
>
> We should also mention that the platform defaults for enabling/disabling
> DCC/Balancer will now be chosen by GuC.
>
> Reviewed-by: Vinay Belgaumkar <vinay.belgaumkar@intel.com>
>
> >
> > Cc: Vinay Belgaumkar <vinay.belgaumkar@intel.com>
> > Signed-off-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
Does this need a Fixes: and Cc:stable?
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [PATCH 2/3] drm/i915/guc/slpc: Enable GuC SLPC default strategies
2025-01-08 19:30 ` Dixit, Ashutosh
@ 2025-01-08 21:19 ` Rodrigo Vivi
2025-01-09 5:18 ` Dixit, Ashutosh
0 siblings, 1 reply; 14+ messages in thread
From: Rodrigo Vivi @ 2025-01-08 21:19 UTC (permalink / raw)
To: Dixit, Ashutosh; +Cc: Belgaumkar, Vinay, intel-gfx
On Wed, Jan 08, 2025 at 11:30:59AM -0800, Dixit, Ashutosh wrote:
> On Wed, 08 Jan 2025 11:11:53 -0800, Belgaumkar, Vinay wrote:
> >
> >
> > On 1/8/2025 6:13 AM, Rodrigo Vivi wrote:
> > > The Balancer and DCC strategies were left off on a fear that
> > > these strategies would conflict with the i915's waitboost.
> > > However, these strategies are only active in certain conditions where
> > > the system is TDP limited. So, they don't conflict, but help the
> > > waitboost by guaranteeing a bit more of GT frequency.
> > >
> > > Without these strategies we were likely leaving some performance
> > > behind on some scenarious.
> >
> > s/scenarious/scenarios
I do need to re-enable my spell checker during git commit :)
> >
> > We should also mention that the platform defaults for enabling/disabling
> > DCC/Balancer will now be chosen by GuC.
> >
> > Reviewed-by: Vinay Belgaumkar <vinay.belgaumkar@intel.com>
> >
> > >
> > > Cc: Vinay Belgaumkar <vinay.belgaumkar@intel.com>
> > > Signed-off-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
>
> Does this need a Fixes: and Cc:stable?
nope... this is more like enabling a new feature...
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [PATCH 2/3] drm/i915/guc/slpc: Enable GuC SLPC default strategies
2025-01-08 21:19 ` Rodrigo Vivi
@ 2025-01-09 5:18 ` Dixit, Ashutosh
2025-01-09 19:00 ` Rodrigo Vivi
0 siblings, 1 reply; 14+ messages in thread
From: Dixit, Ashutosh @ 2025-01-09 5:18 UTC (permalink / raw)
To: Rodrigo Vivi; +Cc: Belgaumkar, Vinay, intel-gfx
On Wed, 08 Jan 2025 13:19:16 -0800, Rodrigo Vivi wrote:
>
Hi Rodrigo,
> On Wed, Jan 08, 2025 at 11:30:59AM -0800, Dixit, Ashutosh wrote:
> > On Wed, 08 Jan 2025 11:11:53 -0800, Belgaumkar, Vinay wrote:
> > >
> > >
> > > On 1/8/2025 6:13 AM, Rodrigo Vivi wrote:
> > > > The Balancer and DCC strategies were left off on a fear that
> > > > these strategies would conflict with the i915's waitboost.
> > > > However, these strategies are only active in certain conditions where
> > > > the system is TDP limited. So, they don't conflict, but help the
> > > > waitboost by guaranteeing a bit more of GT frequency.
> > > >
> > > > Without these strategies we were likely leaving some performance
> > > > behind on some scenarious.
> > >
> > > s/scenarious/scenarios
>
> I do need to re-enable my spell checker during git commit :)
>
> > >
> > > We should also mention that the platform defaults for enabling/disabling
> > > DCC/Balancer will now be chosen by GuC.
> > >
> > > Reviewed-by: Vinay Belgaumkar <vinay.belgaumkar@intel.com>
> > >
> > > >
> > > > Cc: Vinay Belgaumkar <vinay.belgaumkar@intel.com>
> > > > Signed-off-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
> >
> > Does this need a Fixes: and Cc:stable?
>
> nope... this is more like enabling a new feature...
Hmm, if this really improves performance, as the commit message seems to
suggest, why wouldn't we want this in stable, or at least LTS, kernels? So
why isn't this a performance bug fix?
Ashutosh
^ permalink raw reply [flat|nested] 14+ messages in thread
* ✓ i915.CI.Full: success for Enable GuC SLPC default balancing strategies (rev3)
2025-01-08 14:13 [PATCH 0/3] Enable GuC SLPC default balancing strategies v2 Rodrigo Vivi
` (3 preceding siblings ...)
2025-01-08 16:10 ` ✓ i915.CI.BAT: success for Enable GuC SLPC default balancing strategies (rev3) Patchwork
@ 2025-01-09 18:06 ` Patchwork
2025-01-09 22:28 ` [PATCH 0/3] Enable GuC SLPC default balancing strategies v2 Rodrigo Vivi
5 siblings, 0 replies; 14+ messages in thread
From: Patchwork @ 2025-01-09 18:06 UTC (permalink / raw)
To: Rodrigo Vivi; +Cc: intel-gfx
[-- Attachment #1: Type: text/plain, Size: 100278 bytes --]
== Series Details ==
Series: Enable GuC SLPC default balancing strategies (rev3)
URL : https://patchwork.freedesktop.org/series/142676/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_15924_full -> Patchwork_142676v3_full
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (10 -> 10)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in Patchwork_142676v3_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@crc32:
- shard-tglu: NOTRUN -> [SKIP][1] ([i915#6230])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-tglu-7/igt@api_intel_bb@crc32.html
* igt@device_reset@unbind-cold-reset-rebind:
- shard-rkl: NOTRUN -> [SKIP][2] ([i915#11078])
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-rkl-1/igt@device_reset@unbind-cold-reset-rebind.html
* igt@device_reset@unbind-reset-rebind:
- shard-tglu: [PASS][3] -> [ABORT][4] ([i915#12817] / [i915#5507])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15924/shard-tglu-8/igt@device_reset@unbind-reset-rebind.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-tglu-8/igt@device_reset@unbind-reset-rebind.html
* igt@drm_fdinfo@busy-idle-check-all@vcs1:
- shard-dg1: NOTRUN -> [SKIP][5] ([i915#8414]) +7 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-dg1-12/igt@drm_fdinfo@busy-idle-check-all@vcs1.html
* igt@drm_fdinfo@most-busy-check-all@bcs0:
- shard-dg2: NOTRUN -> [SKIP][6] ([i915#8414]) +16 other tests skip
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-dg2-4/igt@drm_fdinfo@most-busy-check-all@bcs0.html
* igt@gem_bad_reloc@negative-reloc-lut:
- shard-mtlp: NOTRUN -> [SKIP][7] ([i915#3281])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-mtlp-1/igt@gem_bad_reloc@negative-reloc-lut.html
* igt@gem_basic@multigpu-create-close:
- shard-tglu: NOTRUN -> [SKIP][8] ([i915#7697])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-tglu-8/igt@gem_basic@multigpu-create-close.html
- shard-dg2: NOTRUN -> [SKIP][9] ([i915#7697])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-dg2-10/igt@gem_basic@multigpu-create-close.html
* igt@gem_ccs@block-copy-compressed:
- shard-tglu-1: NOTRUN -> [SKIP][10] ([i915#3555] / [i915#9323])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-tglu-1/igt@gem_ccs@block-copy-compressed.html
* igt@gem_ccs@block-multicopy-compressed:
- shard-dg1: NOTRUN -> [SKIP][11] ([i915#9323])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-dg1-18/igt@gem_ccs@block-multicopy-compressed.html
* igt@gem_ccs@block-multicopy-inplace:
- shard-rkl: NOTRUN -> [SKIP][12] ([i915#3555] / [i915#9323])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-rkl-1/igt@gem_ccs@block-multicopy-inplace.html
* igt@gem_ccs@ctrl-surf-copy-new-ctx:
- shard-rkl: NOTRUN -> [SKIP][13] ([i915#9323])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-rkl-3/igt@gem_ccs@ctrl-surf-copy-new-ctx.html
* igt@gem_ccs@large-ctrl-surf-copy:
- shard-tglu-1: NOTRUN -> [SKIP][14] ([i915#13008])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-tglu-1/igt@gem_ccs@large-ctrl-surf-copy.html
* igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0:
- shard-dg2: [PASS][15] -> [INCOMPLETE][16] ([i915#12392] / [i915#7297])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15924/shard-dg2-6/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-dg2-10/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0.html
* igt@gem_create@create-ext-cpu-access-sanity-check:
- shard-rkl: NOTRUN -> [SKIP][17] ([i915#6335])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-rkl-3/igt@gem_create@create-ext-cpu-access-sanity-check.html
* igt@gem_create@create-ext-set-pat:
- shard-dg2: NOTRUN -> [SKIP][18] ([i915#8562])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-dg2-6/igt@gem_create@create-ext-set-pat.html
- shard-tglu-1: NOTRUN -> [SKIP][19] ([i915#8562])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-tglu-1/igt@gem_create@create-ext-set-pat.html
* igt@gem_ctx_persistence@heartbeat-hostile:
- shard-dg2: NOTRUN -> [SKIP][20] ([i915#8555]) +2 other tests skip
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-dg2-10/igt@gem_ctx_persistence@heartbeat-hostile.html
* igt@gem_ctx_persistence@processes:
- shard-snb: NOTRUN -> [SKIP][21] ([i915#1099]) +3 other tests skip
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-snb5/igt@gem_ctx_persistence@processes.html
* igt@gem_ctx_sseu@engines:
- shard-tglu-1: NOTRUN -> [SKIP][22] ([i915#280])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-tglu-1/igt@gem_ctx_sseu@engines.html
* igt@gem_ctx_sseu@invalid-args:
- shard-dg1: NOTRUN -> [SKIP][23] ([i915#280])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-dg1-18/igt@gem_ctx_sseu@invalid-args.html
* igt@gem_exec_balancer@bonded-dual:
- shard-dg1: NOTRUN -> [SKIP][24] ([i915#4771]) +1 other test skip
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-dg1-12/igt@gem_exec_balancer@bonded-dual.html
* igt@gem_exec_balancer@invalid-bonds:
- shard-dg1: NOTRUN -> [SKIP][25] ([i915#4036])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-dg1-12/igt@gem_exec_balancer@invalid-bonds.html
* igt@gem_exec_balancer@parallel-balancer:
- shard-rkl: NOTRUN -> [SKIP][26] ([i915#4525])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-rkl-3/igt@gem_exec_balancer@parallel-balancer.html
* igt@gem_exec_capture@capture:
- shard-mtlp: NOTRUN -> [FAIL][27] ([i915#11965]) +1 other test fail
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-mtlp-1/igt@gem_exec_capture@capture.html
* igt@gem_exec_capture@capture-invisible:
- shard-tglu-1: NOTRUN -> [SKIP][28] ([i915#6334]) +1 other test skip
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-tglu-1/igt@gem_exec_capture@capture-invisible.html
* igt@gem_exec_fence@submit3:
- shard-dg2: NOTRUN -> [SKIP][29] ([i915#4812])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-dg2-6/igt@gem_exec_fence@submit3.html
* igt@gem_exec_flush@basic-uc-ro-default:
- shard-dg1: NOTRUN -> [SKIP][30] ([i915#3539] / [i915#4852]) +2 other tests skip
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-dg1-12/igt@gem_exec_flush@basic-uc-ro-default.html
* igt@gem_exec_flush@basic-wb-ro-default:
- shard-dg2: NOTRUN -> [SKIP][31] ([i915#3539] / [i915#4852])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-dg2-4/igt@gem_exec_flush@basic-wb-ro-default.html
* igt@gem_exec_reloc@basic-gtt:
- shard-dg2: NOTRUN -> [SKIP][32] ([i915#3281]) +11 other tests skip
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-dg2-8/igt@gem_exec_reloc@basic-gtt.html
* igt@gem_exec_reloc@basic-wc-read-active:
- shard-dg1: NOTRUN -> [SKIP][33] ([i915#3281]) +4 other tests skip
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-dg1-18/igt@gem_exec_reloc@basic-wc-read-active.html
* igt@gem_exec_reloc@basic-write-read-active:
- shard-rkl: NOTRUN -> [SKIP][34] ([i915#3281]) +4 other tests skip
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-rkl-3/igt@gem_exec_reloc@basic-write-read-active.html
* igt@gem_exec_schedule@preempt-queue:
- shard-dg1: NOTRUN -> [SKIP][35] ([i915#4812])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-dg1-12/igt@gem_exec_schedule@preempt-queue.html
* igt@gem_fence_thrash@bo-copy:
- shard-dg2: NOTRUN -> [SKIP][36] ([i915#4860]) +1 other test skip
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-dg2-6/igt@gem_fence_thrash@bo-copy.html
* igt@gem_fenced_exec_thrash@2-spare-fences:
- shard-dg1: NOTRUN -> [SKIP][37] ([i915#4860])
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-dg1-18/igt@gem_fenced_exec_thrash@2-spare-fences.html
* igt@gem_huc_copy@huc-copy:
- shard-tglu: NOTRUN -> [SKIP][38] ([i915#2190])
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-tglu-7/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_swapping@heavy-verify-multi:
- shard-tglu-1: NOTRUN -> [SKIP][39] ([i915#4613]) +1 other test skip
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-tglu-1/igt@gem_lmem_swapping@heavy-verify-multi.html
* igt@gem_lmem_swapping@heavy-verify-random-ccs:
- shard-tglu: NOTRUN -> [SKIP][40] ([i915#4613]) +1 other test skip
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-tglu-8/igt@gem_lmem_swapping@heavy-verify-random-ccs.html
* igt@gem_lmem_swapping@parallel-random:
- shard-mtlp: NOTRUN -> [SKIP][41] ([i915#4613])
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-mtlp-1/igt@gem_lmem_swapping@parallel-random.html
* igt@gem_lmem_swapping@parallel-random-verify-ccs:
- shard-rkl: NOTRUN -> [SKIP][42] ([i915#4613]) +2 other tests skip
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-rkl-1/igt@gem_lmem_swapping@parallel-random-verify-ccs.html
* igt@gem_lmem_swapping@smem-oom@lmem0:
- shard-dg1: NOTRUN -> [TIMEOUT][43] ([i915#5493]) +1 other test timeout
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-dg1-12/igt@gem_lmem_swapping@smem-oom@lmem0.html
* igt@gem_media_fill@media-fill:
- shard-mtlp: NOTRUN -> [SKIP][44] ([i915#8289])
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-mtlp-1/igt@gem_media_fill@media-fill.html
* igt@gem_media_vme:
- shard-dg2: NOTRUN -> [SKIP][45] ([i915#284])
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-dg2-4/igt@gem_media_vme.html
* igt@gem_mmap_gtt@basic:
- shard-mtlp: NOTRUN -> [SKIP][46] ([i915#4077]) +1 other test skip
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-mtlp-1/igt@gem_mmap_gtt@basic.html
* igt@gem_mmap_gtt@basic-write:
- shard-dg2: NOTRUN -> [SKIP][47] ([i915#4077]) +4 other tests skip
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-dg2-4/igt@gem_mmap_gtt@basic-write.html
* igt@gem_mmap_gtt@medium-copy-odd:
- shard-dg1: NOTRUN -> [SKIP][48] ([i915#4077]) +15 other tests skip
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-dg1-12/igt@gem_mmap_gtt@medium-copy-odd.html
* igt@gem_mmap_wc@fault-concurrent:
- shard-dg2: NOTRUN -> [SKIP][49] ([i915#4083]) +4 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-dg2-4/igt@gem_mmap_wc@fault-concurrent.html
* igt@gem_mmap_wc@read-write-distinct:
- shard-dg1: NOTRUN -> [SKIP][50] ([i915#4083]) +1 other test skip
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-dg1-12/igt@gem_mmap_wc@read-write-distinct.html
* igt@gem_partial_pwrite_pread@write:
- shard-dg2: NOTRUN -> [SKIP][51] ([i915#3282]) +2 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-dg2-4/igt@gem_partial_pwrite_pread@write.html
* igt@gem_pread@display:
- shard-mtlp: NOTRUN -> [SKIP][52] ([i915#3282])
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-mtlp-2/igt@gem_pread@display.html
* igt@gem_pwrite@basic-exhaustion:
- shard-dg1: NOTRUN -> [SKIP][53] ([i915#3282]) +4 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-dg1-12/igt@gem_pwrite@basic-exhaustion.html
* igt@gem_pxp@create-protected-buffer:
- shard-rkl: NOTRUN -> [SKIP][54] ([i915#4270]) +1 other test skip
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-rkl-3/igt@gem_pxp@create-protected-buffer.html
* igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted:
- shard-dg2: NOTRUN -> [SKIP][55] ([i915#4270]) +1 other test skip
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-dg2-10/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html
* igt@gem_pxp@hw-rejects-pxp-buffer:
- shard-rkl: NOTRUN -> [TIMEOUT][56] ([i915#12917] / [i915#12964]) +1 other test timeout
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-rkl-1/igt@gem_pxp@hw-rejects-pxp-buffer.html
* igt@gem_pxp@reject-modify-context-protection-off-3:
- shard-dg1: NOTRUN -> [SKIP][57] ([i915#4270]) +2 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-dg1-12/igt@gem_pxp@reject-modify-context-protection-off-3.html
* igt@gem_render_copy@y-tiled:
- shard-mtlp: NOTRUN -> [SKIP][58] ([i915#8428]) +2 other tests skip
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-mtlp-2/igt@gem_render_copy@y-tiled.html
* igt@gem_render_copy@y-tiled-ccs-to-linear:
- shard-dg2: NOTRUN -> [SKIP][59] ([i915#5190] / [i915#8428]) +5 other tests skip
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-dg2-4/igt@gem_render_copy@y-tiled-ccs-to-linear.html
* igt@gem_set_tiling_vs_blt@tiled-to-untiled:
- shard-rkl: NOTRUN -> [SKIP][60] ([i915#8411]) +1 other test skip
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-rkl-1/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html
* igt@gem_set_tiling_vs_blt@untiled-to-tiled:
- shard-dg2: NOTRUN -> [SKIP][61] ([i915#4079])
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-dg2-6/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html
* igt@gem_tiled_pread_basic:
- shard-rkl: NOTRUN -> [SKIP][62] ([i915#3282]) +1 other test skip
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-rkl-1/igt@gem_tiled_pread_basic.html
* igt@gem_tiled_swapping@non-threaded:
- shard-snb: NOTRUN -> [ABORT][63] ([i915#13449])
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-snb7/igt@gem_tiled_swapping@non-threaded.html
* igt@gem_userptr_blits@access-control:
- shard-tglu: NOTRUN -> [SKIP][64] ([i915#3297])
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-tglu-7/igt@gem_userptr_blits@access-control.html
* igt@gem_userptr_blits@create-destroy-unsync:
- shard-mtlp: NOTRUN -> [SKIP][65] ([i915#3297])
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-mtlp-2/igt@gem_userptr_blits@create-destroy-unsync.html
* igt@gem_userptr_blits@dmabuf-sync:
- shard-tglu: NOTRUN -> [SKIP][66] ([i915#3297] / [i915#3323])
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-tglu-7/igt@gem_userptr_blits@dmabuf-sync.html
* igt@gem_userptr_blits@relocations:
- shard-dg2: NOTRUN -> [SKIP][67] ([i915#3281] / [i915#3297])
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-dg2-6/igt@gem_userptr_blits@relocations.html
* igt@gem_userptr_blits@sd-probe:
- shard-dg1: NOTRUN -> [SKIP][68] ([i915#3297] / [i915#4958])
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-dg1-12/igt@gem_userptr_blits@sd-probe.html
* igt@gem_userptr_blits@unsync-unmap:
- shard-dg1: NOTRUN -> [SKIP][69] ([i915#3297])
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-dg1-18/igt@gem_userptr_blits@unsync-unmap.html
* igt@gem_userptr_blits@unsync-unmap-after-close:
- shard-tglu-1: NOTRUN -> [SKIP][70] ([i915#3297]) +1 other test skip
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-tglu-1/igt@gem_userptr_blits@unsync-unmap-after-close.html
- shard-dg2: NOTRUN -> [SKIP][71] ([i915#3297])
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-dg2-6/igt@gem_userptr_blits@unsync-unmap-after-close.html
* igt@gen7_exec_parse@chained-batch:
- shard-rkl: NOTRUN -> [SKIP][72] +11 other tests skip
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-rkl-3/igt@gen7_exec_parse@chained-batch.html
* igt@gen9_exec_parse@allowed-all:
- shard-glk: [PASS][73] -> [ABORT][74] ([i915#5566])
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15924/shard-glk2/igt@gen9_exec_parse@allowed-all.html
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-glk5/igt@gen9_exec_parse@allowed-all.html
* igt@gen9_exec_parse@batch-invalid-length:
- shard-rkl: NOTRUN -> [SKIP][75] ([i915#2527])
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-rkl-1/igt@gen9_exec_parse@batch-invalid-length.html
* igt@gen9_exec_parse@bb-chained:
- shard-tglu-1: NOTRUN -> [SKIP][76] ([i915#2527] / [i915#2856]) +2 other tests skip
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-tglu-1/igt@gen9_exec_parse@bb-chained.html
* igt@gen9_exec_parse@bb-secure:
- shard-dg1: NOTRUN -> [SKIP][77] ([i915#2527]) +2 other tests skip
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-dg1-12/igt@gen9_exec_parse@bb-secure.html
* igt@gen9_exec_parse@bb-start-cmd:
- shard-tglu: NOTRUN -> [SKIP][78] ([i915#2527] / [i915#2856]) +3 other tests skip
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-tglu-7/igt@gen9_exec_parse@bb-start-cmd.html
* igt@gen9_exec_parse@unaligned-access:
- shard-dg2: NOTRUN -> [SKIP][79] ([i915#2856]) +3 other tests skip
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-dg2-8/igt@gen9_exec_parse@unaligned-access.html
* igt@i915_fb_tiling:
- shard-dg2: NOTRUN -> [SKIP][80] ([i915#4881])
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-dg2-5/igt@i915_fb_tiling.html
* igt@i915_module_load@reload-no-display:
- shard-tglu-1: NOTRUN -> [DMESG-WARN][81] ([i915#13029])
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-tglu-1/igt@i915_module_load@reload-no-display.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-dg1: [PASS][82] -> [DMESG-WARN][83] ([i915#13475])
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15924/shard-dg1-12/igt@i915_module_load@reload-with-fault-injection.html
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-dg1-13/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_pm_freq_api@freq-reset:
- shard-tglu: NOTRUN -> [SKIP][84] ([i915#8399])
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-tglu-7/igt@i915_pm_freq_api@freq-reset.html
* igt@i915_pm_rps@min-max-config-loaded:
- shard-dg2: NOTRUN -> [SKIP][85] ([i915#11681] / [i915#6621])
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-dg2-5/igt@i915_pm_rps@min-max-config-loaded.html
* igt@i915_pm_rps@thresholds:
- shard-mtlp: NOTRUN -> [SKIP][86] ([i915#11681])
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-mtlp-1/igt@i915_pm_rps@thresholds.html
* igt@i915_power@sanity:
- shard-mtlp: [PASS][87] -> [SKIP][88] ([i915#7984])
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15924/shard-mtlp-2/igt@i915_power@sanity.html
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-mtlp-5/igt@i915_power@sanity.html
* igt@i915_query@hwconfig_table:
- shard-tglu: NOTRUN -> [SKIP][89] ([i915#6245])
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-tglu-8/igt@i915_query@hwconfig_table.html
* igt@i915_query@test-query-geometry-subslices:
- shard-dg1: NOTRUN -> [SKIP][90] ([i915#5723])
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-dg1-12/igt@i915_query@test-query-geometry-subslices.html
* igt@i915_suspend@basic-s3-without-i915:
- shard-rkl: NOTRUN -> [INCOMPLETE][91] ([i915#4817])
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-rkl-3/igt@i915_suspend@basic-s3-without-i915.html
* igt@intel_hwmon@hwmon-read:
- shard-mtlp: NOTRUN -> [SKIP][92] ([i915#7707])
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-mtlp-2/igt@intel_hwmon@hwmon-read.html
* igt@intel_hwmon@hwmon-write:
- shard-tglu: NOTRUN -> [SKIP][93] ([i915#7707])
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-tglu-7/igt@intel_hwmon@hwmon-write.html
* igt@kms_addfb_basic@basic-x-tiled-legacy:
- shard-dg2: NOTRUN -> [SKIP][94] ([i915#4212])
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-dg2-6/igt@kms_addfb_basic@basic-x-tiled-legacy.html
* igt@kms_addfb_basic@basic-y-tiled-legacy:
- shard-dg1: NOTRUN -> [SKIP][95] ([i915#4215])
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-dg1-18/igt@kms_addfb_basic@basic-y-tiled-legacy.html
* igt@kms_addfb_basic@clobberred-modifier:
- shard-mtlp: NOTRUN -> [SKIP][96] ([i915#4212])
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-mtlp-2/igt@kms_addfb_basic@clobberred-modifier.html
* igt@kms_addfb_basic@invalid-smem-bo-on-discrete:
- shard-rkl: NOTRUN -> [SKIP][97] ([i915#12454] / [i915#12712])
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-rkl-3/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html
* igt@kms_async_flips@alternate-sync-async-flip:
- shard-mtlp: [PASS][98] -> [FAIL][99] ([i915#10991]) +1 other test fail
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15924/shard-mtlp-3/igt@kms_async_flips@alternate-sync-async-flip.html
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-mtlp-1/igt@kms_async_flips@alternate-sync-async-flip.html
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-a-hdmi-a-3-y-rc-ccs-cc:
- shard-dg1: NOTRUN -> [SKIP][100] ([i915#8709]) +7 other tests skip
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-dg1-13/igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-a-hdmi-a-3-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][101] ([i915#8709]) +7 other tests skip
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-tglu-7/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-1-y-rc-ccs.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-dg1: NOTRUN -> [SKIP][102] ([i915#1769] / [i915#3555])
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-dg1-12/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-dg2: NOTRUN -> [SKIP][103] ([i915#1769] / [i915#3555])
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-dg2-10/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
- shard-tglu: NOTRUN -> [SKIP][104] ([i915#1769] / [i915#3555])
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-tglu-8/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-3:
- shard-dg1: NOTRUN -> [FAIL][105] ([i915#5956]) +1 other test fail
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-dg1-12/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-3.html
* igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-1:
- shard-tglu: [PASS][106] -> [FAIL][107] ([i915#11808]) +1 other test fail
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15924/shard-tglu-3/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-1.html
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-tglu-8/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-1.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-0:
- shard-rkl: NOTRUN -> [SKIP][108] ([i915#5286]) +3 other tests skip
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-rkl-1/igt@kms_big_fb@4-tiled-32bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][109] ([i915#4538] / [i915#5286]) +3 other tests skip
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-dg1-18/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-180:
- shard-tglu: NOTRUN -> [SKIP][110] ([i915#5286]) +4 other tests skip
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-tglu-7/igt@kms_big_fb@4-tiled-8bpp-rotate-180.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
- shard-tglu-1: NOTRUN -> [SKIP][111] ([i915#5286]) +3 other tests skip
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-tglu-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
* igt@kms_big_fb@linear-8bpp-rotate-270:
- shard-dg1: NOTRUN -> [SKIP][112] ([i915#3638]) +3 other tests skip
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-dg1-12/igt@kms_big_fb@linear-8bpp-rotate-270.html
* igt@kms_big_fb@linear-8bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][113] ([i915#3638]) +2 other tests skip
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-rkl-1/igt@kms_big_fb@linear-8bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
- shard-dg2: NOTRUN -> [SKIP][114] ([i915#4538] / [i915#5190]) +9 other tests skip
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-dg2-8/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@yf-tiled-64bpp-rotate-270:
- shard-dg1: NOTRUN -> [SKIP][115] ([i915#4538]) +2 other tests skip
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-dg1-12/igt@kms_big_fb@yf-tiled-64bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0:
- shard-mtlp: NOTRUN -> [SKIP][116] +2 other tests skip
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-mtlp-1/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0.html
* igt@kms_ccs@bad-pixel-format-y-tiled-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][117] ([i915#10307] / [i915#10434] / [i915#6095]) +2 other tests skip
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-dg2-8/igt@kms_ccs@bad-pixel-format-y-tiled-ccs@pipe-d-hdmi-a-1.html
* igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][118] ([i915#6095]) +50 other tests skip
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-rkl-3/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs@pipe-a-hdmi-a-2.html
* igt@kms_ccs@ccs-on-another-bo-yf-tiled-ccs@pipe-a-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][119] ([i915#10307] / [i915#6095]) +186 other tests skip
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-dg2-3/igt@kms_ccs@ccs-on-another-bo-yf-tiled-ccs@pipe-a-hdmi-a-3.html
* igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs:
- shard-rkl: NOTRUN -> [SKIP][120] ([i915#12313]) +2 other tests skip
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-rkl-3/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-basic-yf-tiled-ccs@pipe-d-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][121] ([i915#6095]) +102 other tests skip
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-dg1-17/igt@kms_ccs@crc-primary-basic-yf-tiled-ccs@pipe-d-hdmi-a-4.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs:
- shard-dg2: NOTRUN -> [SKIP][122] ([i915#12313])
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-dg2-8/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-dg2: NOTRUN -> [SKIP][123] ([i915#12805])
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-dg2-4/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-c-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][124] ([i915#6095]) +19 other tests skip
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-mtlp-1/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-c-edp-1.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-1:
- shard-tglu-1: NOTRUN -> [SKIP][125] ([i915#6095]) +39 other tests skip
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-tglu-1/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-1.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-a-dp-4:
- shard-dg2: NOTRUN -> [SKIP][126] ([i915#6095]) +12 other tests skip
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-dg2-10/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-a-dp-4.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs:
- shard-mtlp: NOTRUN -> [SKIP][127] ([i915#12313])
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-mtlp-2/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][128] ([i915#6095]) +59 other tests skip
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-tglu-7/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-1.html
* igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs:
- shard-tglu-1: NOTRUN -> [SKIP][129] ([i915#12313]) +1 other test skip
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-tglu-1/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
* igt@kms_cdclk@mode-transition:
- shard-tglu: NOTRUN -> [SKIP][130] ([i915#3742])
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-tglu-7/igt@kms_cdclk@mode-transition.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-dg1: NOTRUN -> [SKIP][131] ([i915#3742])
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-dg1-12/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][132] ([i915#7213]) +3 other tests skip
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-dg2-7/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3.html
* igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][133] ([i915#4087]) +3 other tests skip
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-dg2-8/igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-1.html
* igt@kms_chamelium_audio@dp-audio:
- shard-mtlp: NOTRUN -> [SKIP][134] ([i915#7828]) +2 other tests skip
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-mtlp-1/igt@kms_chamelium_audio@dp-audio.html
* igt@kms_chamelium_edid@hdmi-mode-timings:
- shard-tglu: NOTRUN -> [SKIP][135] ([i915#7828]) +4 other tests skip
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-tglu-7/igt@kms_chamelium_edid@hdmi-mode-timings.html
* igt@kms_chamelium_frames@vga-frame-dump:
- shard-rkl: NOTRUN -> [SKIP][136] ([i915#7828]) +4 other tests skip
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-rkl-4/igt@kms_chamelium_frames@vga-frame-dump.html
* igt@kms_chamelium_hpd@hdmi-hpd-storm-disable:
- shard-dg1: NOTRUN -> [SKIP][137] ([i915#7828]) +5 other tests skip
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-dg1-18/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html
* igt@kms_chamelium_hpd@vga-hpd-after-suspend:
- shard-dg2: NOTRUN -> [SKIP][138] ([i915#7828]) +8 other tests skip
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-dg2-8/igt@kms_chamelium_hpd@vga-hpd-after-suspend.html
* igt@kms_chamelium_hpd@vga-hpd-fast:
- shard-tglu-1: NOTRUN -> [SKIP][139] ([i915#7828]) +5 other tests skip
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-tglu-1/igt@kms_chamelium_hpd@vga-hpd-fast.html
* igt@kms_content_protection@atomic:
- shard-tglu: NOTRUN -> [SKIP][140] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424])
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-tglu-8/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@atomic@pipe-a-dp-4:
- shard-dg2: NOTRUN -> [TIMEOUT][141] ([i915#7173]) +1 other test timeout
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-dg2-10/igt@kms_content_protection@atomic@pipe-a-dp-4.html
* igt@kms_content_protection@content-type-change:
- shard-tglu: NOTRUN -> [SKIP][142] ([i915#6944] / [i915#9424])
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-tglu-7/igt@kms_content_protection@content-type-change.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-dg1: NOTRUN -> [SKIP][143] ([i915#3299])
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-dg1-12/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_content_protection@lic-type-0:
- shard-rkl: NOTRUN -> [SKIP][144] ([i915#9424])
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-rkl-1/igt@kms_content_protection@lic-type-0.html
* igt@kms_content_protection@lic-type-1:
- shard-dg1: NOTRUN -> [SKIP][145] ([i915#9424])
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-dg1-12/igt@kms_content_protection@lic-type-1.html
* igt@kms_content_protection@mei-interface:
- shard-dg2: NOTRUN -> [SKIP][146] ([i915#9424])
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-dg2-5/igt@kms_content_protection@mei-interface.html
* igt@kms_content_protection@srm:
- shard-dg2: NOTRUN -> [SKIP][147] ([i915#7118])
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-dg2-6/igt@kms_content_protection@srm.html
- shard-tglu-1: NOTRUN -> [SKIP][148] ([i915#6944] / [i915#7116] / [i915#7118])
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-tglu-1/igt@kms_content_protection@srm.html
* igt@kms_cursor_crc@cursor-offscreen-max-size:
- shard-tglu-1: NOTRUN -> [SKIP][149] ([i915#3555]) +2 other tests skip
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-tglu-1/igt@kms_cursor_crc@cursor-offscreen-max-size.html
* igt@kms_cursor_crc@cursor-onscreen-32x32:
- shard-rkl: NOTRUN -> [SKIP][150] ([i915#3555]) +2 other tests skip
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-rkl-1/igt@kms_cursor_crc@cursor-onscreen-32x32.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-dg1: NOTRUN -> [SKIP][151] ([i915#13049]) +1 other test skip
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-dg1-18/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-dg2: NOTRUN -> [SKIP][152] ([i915#13049]) +1 other test skip
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-dg2-5/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_cursor_crc@cursor-sliding-512x170:
- shard-rkl: NOTRUN -> [SKIP][153] ([i915#13049])
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-rkl-3/igt@kms_cursor_crc@cursor-sliding-512x170.html
* igt@kms_cursor_crc@cursor-suspend@pipe-d-hdmi-a-4:
- shard-dg1: [PASS][154] -> [DMESG-WARN][155] ([i915#4423]) +2 other tests dmesg-warn
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15924/shard-dg1-14/igt@kms_cursor_crc@cursor-suspend@pipe-d-hdmi-a-4.html
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-dg1-14/igt@kms_cursor_crc@cursor-suspend@pipe-d-hdmi-a-4.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- shard-tglu-1: NOTRUN -> [SKIP][156] ([i915#4103]) +1 other test skip
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-tglu-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-toggle:
- shard-mtlp: NOTRUN -> [SKIP][157] ([i915#9809])
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-mtlp-1/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size:
- shard-dg2: NOTRUN -> [SKIP][158] ([i915#13046] / [i915#5354]) +1 other test skip
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-dg2-4/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html
* igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot:
- shard-tglu: NOTRUN -> [SKIP][159] ([i915#9067])
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-tglu-7/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
- shard-rkl: NOTRUN -> [SKIP][160] ([i915#4103])
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-rkl-3/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
- shard-dg2: NOTRUN -> [SKIP][161] ([i915#4103] / [i915#4213]) +1 other test skip
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-dg2-5/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
* igt@kms_display_modes@mst-extended-mode-negative:
- shard-dg1: NOTRUN -> [SKIP][162] ([i915#8588])
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-dg1-12/igt@kms_display_modes@mst-extended-mode-negative.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc:
- shard-tglu-1: NOTRUN -> [SKIP][163] ([i915#1769] / [i915#3555] / [i915#3804])
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-tglu-1/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1:
- shard-tglu-1: NOTRUN -> [SKIP][164] ([i915#3804])
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-tglu-1/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html
* igt@kms_dp_aux_dev:
- shard-dg1: NOTRUN -> [SKIP][165] ([i915#1257])
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-dg1-12/igt@kms_dp_aux_dev.html
* igt@kms_dsc@dsc-fractional-bpp-with-bpc:
- shard-rkl: NOTRUN -> [SKIP][166] ([i915#3840])
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-rkl-1/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
* igt@kms_dsc@dsc-with-bpc:
- shard-dg1: NOTRUN -> [SKIP][167] ([i915#3555] / [i915#3840])
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-dg1-18/igt@kms_dsc@dsc-with-bpc.html
* igt@kms_dsc@dsc-with-bpc-formats:
- shard-dg2: NOTRUN -> [SKIP][168] ([i915#3555] / [i915#3840])
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-dg2-6/igt@kms_dsc@dsc-with-bpc-formats.html
- shard-tglu-1: NOTRUN -> [SKIP][169] ([i915#3555] / [i915#3840])
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-tglu-1/igt@kms_dsc@dsc-with-bpc-formats.html
* igt@kms_dsc@dsc-with-formats:
- shard-tglu: NOTRUN -> [SKIP][170] ([i915#3555] / [i915#3840])
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-tglu-7/igt@kms_dsc@dsc-with-formats.html
* igt@kms_dsc@dsc-with-output-formats-with-bpc:
- shard-tglu: NOTRUN -> [SKIP][171] ([i915#3840] / [i915#9053])
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-tglu-7/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-dg1: NOTRUN -> [SKIP][172] ([i915#3469])
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-dg1-18/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_feature_discovery@display-3x:
- shard-dg1: NOTRUN -> [SKIP][173] ([i915#1839])
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-dg1-12/igt@kms_feature_discovery@display-3x.html
* igt@kms_feature_discovery@display-4x:
- shard-tglu: NOTRUN -> [SKIP][174] ([i915#1839])
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-tglu-8/igt@kms_feature_discovery@display-4x.html
- shard-dg2: NOTRUN -> [SKIP][175] ([i915#1839])
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-dg2-10/igt@kms_feature_discovery@display-4x.html
* igt@kms_feature_discovery@psr2:
- shard-dg1: NOTRUN -> [SKIP][176] ([i915#658])
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-dg1-18/igt@kms_feature_discovery@psr2.html
* igt@kms_fence_pin_leak:
- shard-dg1: NOTRUN -> [SKIP][177] ([i915#4881])
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-dg1-12/igt@kms_fence_pin_leak.html
* igt@kms_flip@2x-blocking-absolute-wf_vblank:
- shard-tglu: NOTRUN -> [SKIP][178] ([i915#3637]) +7 other tests skip
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-tglu-7/igt@kms_flip@2x-blocking-absolute-wf_vblank.html
* igt@kms_flip@2x-flip-vs-fences:
- shard-tglu-1: NOTRUN -> [SKIP][179] ([i915#3637]) +4 other tests skip
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-tglu-1/igt@kms_flip@2x-flip-vs-fences.html
* igt@kms_flip@2x-flip-vs-fences-interruptible:
- shard-mtlp: NOTRUN -> [SKIP][180] ([i915#8381])
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-mtlp-2/igt@kms_flip@2x-flip-vs-fences-interruptible.html
* igt@kms_flip@2x-flip-vs-modeset-vs-hang:
- shard-rkl: NOTRUN -> [SKIP][181] ([i915#9934]) +2 other tests skip
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-rkl-1/igt@kms_flip@2x-flip-vs-modeset-vs-hang.html
* igt@kms_flip@2x-flip-vs-panning-interruptible:
- shard-mtlp: NOTRUN -> [SKIP][182] ([i915#3637]) +1 other test skip
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-mtlp-2/igt@kms_flip@2x-flip-vs-panning-interruptible.html
* igt@kms_flip@2x-flip-vs-panning-vs-hang:
- shard-dg1: NOTRUN -> [SKIP][183] ([i915#9934]) +3 other tests skip
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-dg1-12/igt@kms_flip@2x-flip-vs-panning-vs-hang.html
* igt@kms_flip@2x-wf_vblank-ts-check:
- shard-dg2: NOTRUN -> [SKIP][184] ([i915#9934]) +6 other tests skip
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-dg2-5/igt@kms_flip@2x-wf_vblank-ts-check.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible:
- shard-glk: [PASS][185] -> [FAIL][186] ([i915#13027]) +1 other test fail
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15924/shard-glk7/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-glk2/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling:
- shard-dg2: NOTRUN -> [SKIP][187] ([i915#2672] / [i915#3555])
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-dg2-6/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode:
- shard-tglu-1: NOTRUN -> [SKIP][188] ([i915#2587] / [i915#2672]) +4 other tests skip
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling:
- shard-dg1: NOTRUN -> [SKIP][189] ([i915#2587] / [i915#2672] / [i915#3555])
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-dg1-18/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling:
- shard-dg2: NOTRUN -> [SKIP][190] ([i915#2672] / [i915#3555] / [i915#5190]) +2 other tests skip
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-dg2-10/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][191] ([i915#2672]) +3 other tests skip
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-dg2-10/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling:
- shard-tglu: NOTRUN -> [SKIP][192] ([i915#2672] / [i915#3555]) +2 other tests skip
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-tglu-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling@pipe-a-valid-mode:
- shard-tglu: NOTRUN -> [SKIP][193] ([i915#2587] / [i915#2672]) +2 other tests skip
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-tglu-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][194] ([i915#2672]) +1 other test skip
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-rkl-4/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling:
- shard-mtlp: NOTRUN -> [SKIP][195] ([i915#3555] / [i915#8810] / [i915#8813])
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-mtlp-1/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][196] ([i915#3555] / [i915#8810])
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-mtlp-1/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling:
- shard-tglu-1: NOTRUN -> [SKIP][197] ([i915#2672] / [i915#3555]) +4 other tests skip
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling:
- shard-rkl: NOTRUN -> [SKIP][198] ([i915#2672] / [i915#3555]) +1 other test skip
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-rkl-3/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling:
- shard-dg1: NOTRUN -> [SKIP][199] ([i915#2672] / [i915#3555]) +1 other test skip
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-dg1-12/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode:
- shard-dg1: NOTRUN -> [SKIP][200] ([i915#2587] / [i915#2672]) +2 other tests skip
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-dg1-12/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@fbc-1p-indfb-fliptrack-mmap-gtt:
- shard-rkl: NOTRUN -> [DMESG-WARN][201] ([i915#12917] / [i915#12964])
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-rkl-1/igt@kms_frontbuffer_tracking@fbc-1p-indfb-fliptrack-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-blt:
- shard-dg2: [PASS][202] -> [FAIL][203] ([i915#6880])
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15924/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-blt.html
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-blt:
- shard-dg2: NOTRUN -> [FAIL][204] ([i915#6880])
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt:
- shard-glk: [PASS][205] -> [DMESG-FAIL][206] ([i915#118])
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15924/shard-glk9/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-glk7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc:
- shard-rkl: NOTRUN -> [SKIP][207] ([i915#1825]) +29 other tests skip
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-rkl-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu:
- shard-tglu-1: NOTRUN -> [SKIP][208] +64 other tests skip
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-tglu-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][209] ([i915#8708]) +15 other tests skip
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-dg2-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-cpu:
- shard-mtlp: NOTRUN -> [SKIP][210] ([i915#1825]) +6 other tests skip
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-cpu:
- shard-dg2: NOTRUN -> [SKIP][211] ([i915#5354]) +25 other tests skip
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][212] ([i915#8708]) +9 other tests skip
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-dg1-18/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render:
- shard-dg2: NOTRUN -> [SKIP][213] ([i915#3458]) +19 other tests skip
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-dg2-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-pgflip-blt:
- shard-tglu: NOTRUN -> [SKIP][214] +68 other tests skip
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-tglu-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff:
- shard-dg1: NOTRUN -> [SKIP][215] +30 other tests skip
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-dg1-12/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][216] ([i915#8708])
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-mtlp-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-4:
- shard-tglu-1: NOTRUN -> [SKIP][217] ([i915#5439])
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html
* igt@kms_frontbuffer_tracking@pipe-fbc-rte:
- shard-tglu: NOTRUN -> [SKIP][218] ([i915#9766])
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-tglu-7/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu:
- shard-dg2: NOTRUN -> [SKIP][219] ([i915#10433] / [i915#3458]) +2 other tests skip
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psr-modesetfrombusy:
- shard-rkl: NOTRUN -> [SKIP][220] ([i915#3023]) +14 other tests skip
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-modesetfrombusy.html
* igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-cpu:
- shard-dg1: NOTRUN -> [SKIP][221] ([i915#3458]) +9 other tests skip
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-dg1-12/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-cpu.html
* igt@kms_hdr@bpc-switch-suspend:
- shard-tglu: NOTRUN -> [SKIP][222] ([i915#3555] / [i915#8228]) +2 other tests skip
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-tglu-8/igt@kms_hdr@bpc-switch-suspend.html
* igt@kms_hdr@invalid-metadata-sizes:
- shard-rkl: NOTRUN -> [SKIP][223] ([i915#3555] / [i915#8228])
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-rkl-4/igt@kms_hdr@invalid-metadata-sizes.html
* igt@kms_hdr@static-toggle:
- shard-dg1: NOTRUN -> [SKIP][224] ([i915#3555] / [i915#8228])
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-dg1-12/igt@kms_hdr@static-toggle.html
* igt@kms_histogram@algo-basic:
- shard-dg1: NOTRUN -> [SKIP][225] ([i915#13389])
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-dg1-18/igt@kms_histogram@algo-basic.html
* igt@kms_histogram@algo-color:
- shard-rkl: NOTRUN -> [SKIP][226] ([i915#13389])
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-rkl-1/igt@kms_histogram@algo-color.html
* igt@kms_histogram@global-basic:
- shard-dg2: NOTRUN -> [SKIP][227] ([i915#13388])
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-dg2-5/igt@kms_histogram@global-basic.html
* igt@kms_joiner@basic-big-joiner:
- shard-dg1: NOTRUN -> [SKIP][228] ([i915#10656])
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-dg1-18/igt@kms_joiner@basic-big-joiner.html
* igt@kms_joiner@basic-ultra-joiner:
- shard-dg1: NOTRUN -> [SKIP][229] ([i915#12339])
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-dg1-12/igt@kms_joiner@basic-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-force-big-joiner:
- shard-dg2: [PASS][230] -> [SKIP][231] ([i915#12388])
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15924/shard-dg2-10/igt@kms_joiner@invalid-modeset-force-big-joiner.html
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-dg2-3/igt@kms_joiner@invalid-modeset-force-big-joiner.html
- shard-rkl: NOTRUN -> [SKIP][232] ([i915#12388]) +1 other test skip
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-rkl-3/igt@kms_joiner@invalid-modeset-force-big-joiner.html
* igt@kms_joiner@invalid-modeset-force-ultra-joiner:
- shard-rkl: NOTRUN -> [SKIP][233] ([i915#12394])
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-rkl-4/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-ultra-joiner:
- shard-dg2: NOTRUN -> [SKIP][234] ([i915#12339])
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-dg2-4/igt@kms_joiner@invalid-modeset-ultra-joiner.html
* igt@kms_panel_fitting@legacy:
- shard-tglu-1: NOTRUN -> [SKIP][235] ([i915#6301])
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-tglu-1/igt@kms_panel_fitting@legacy.html
* igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes:
- shard-dg2: NOTRUN -> [SKIP][236] +16 other tests skip
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-dg2-5/igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes.html
* igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [DMESG-FAIL][237] ([i915#12964])
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-rkl-1/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-2.html
* igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [DMESG-WARN][238] ([i915#12964]) +4 other tests dmesg-warn
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-rkl-5/igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-b-hdmi-a-2.html
* igt@kms_plane_multiple@tiling-yf:
- shard-dg1: NOTRUN -> [SKIP][239] ([i915#3555]) +4 other tests skip
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-dg1-12/igt@kms_plane_multiple@tiling-yf.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-tglu: NOTRUN -> [FAIL][240] ([i915#8292]) +1 other test fail
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-tglu-7/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c:
- shard-tglu: NOTRUN -> [SKIP][241] ([i915#12247]) +8 other tests skip
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-tglu-7/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d:
- shard-dg1: NOTRUN -> [SKIP][242] ([i915#12247]) +4 other tests skip
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-dg1-12/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25:
- shard-tglu-1: NOTRUN -> [SKIP][243] ([i915#12247] / [i915#6953])
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-tglu-1/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c:
- shard-tglu-1: NOTRUN -> [SKIP][244] ([i915#12247]) +3 other tests skip
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-tglu-1/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25:
- shard-rkl: NOTRUN -> [SKIP][245] ([i915#12247] / [i915#6953])
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-rkl-4/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-a:
- shard-rkl: NOTRUN -> [SKIP][246] ([i915#12247]) +4 other tests skip
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-rkl-4/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-a.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25:
- shard-tglu: NOTRUN -> [SKIP][247] ([i915#12247] / [i915#6953])
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-tglu-7/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25.html
* igt@kms_pm_backlight@brightness-with-dpms:
- shard-rkl: NOTRUN -> [SKIP][248] ([i915#12343])
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-rkl-4/igt@kms_pm_backlight@brightness-with-dpms.html
* igt@kms_pm_backlight@fade:
- shard-tglu-1: NOTRUN -> [SKIP][249] ([i915#9812])
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-tglu-1/igt@kms_pm_backlight@fade.html
* igt@kms_pm_backlight@fade-with-suspend:
- shard-tglu: NOTRUN -> [SKIP][250] ([i915#9812])
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-tglu-8/igt@kms_pm_backlight@fade-with-suspend.html
* igt@kms_pm_dc@dc3co-vpb-simulation:
- shard-dg1: NOTRUN -> [SKIP][251] ([i915#9685])
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-dg1-12/igt@kms_pm_dc@dc3co-vpb-simulation.html
* igt@kms_pm_dc@dc9-dpms:
- shard-tglu-1: NOTRUN -> [SKIP][252] ([i915#4281])
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-tglu-1/igt@kms_pm_dc@dc9-dpms.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-dg1: NOTRUN -> [SKIP][253] ([i915#9340])
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-dg1-18/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_lpsp@screens-disabled:
- shard-tglu-1: NOTRUN -> [SKIP][254] ([i915#8430])
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-tglu-1/igt@kms_pm_lpsp@screens-disabled.html
* igt@kms_pm_rpm@dpms-mode-unset-lpsp:
- shard-dg1: NOTRUN -> [SKIP][255] ([i915#9519])
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-dg1-18/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
* igt@kms_pm_rpm@dpms-mode-unset-non-lpsp:
- shard-rkl: NOTRUN -> [SKIP][256] ([i915#9519]) +1 other test skip
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-rkl-4/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
* igt@kms_pm_rpm@dpms-non-lpsp:
- shard-tglu-1: NOTRUN -> [SKIP][257] ([i915#9519])
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-tglu-1/igt@kms_pm_rpm@dpms-non-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp:
- shard-tglu: NOTRUN -> [SKIP][258] ([i915#9519])
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-tglu-7/igt@kms_pm_rpm@modeset-non-lpsp.html
* igt@kms_prime@basic-crc-hybrid:
- shard-tglu: NOTRUN -> [SKIP][259] ([i915#6524])
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-tglu-7/igt@kms_prime@basic-crc-hybrid.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf:
- shard-tglu: NOTRUN -> [SKIP][260] ([i915#11520]) +8 other tests skip
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-tglu-8/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf:
- shard-snb: NOTRUN -> [SKIP][261] ([i915#11520]) +6 other tests skip
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-snb5/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area:
- shard-rkl: NOTRUN -> [SKIP][262] ([i915#11520]) +6 other tests skip
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-rkl-1/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf:
- shard-tglu-1: NOTRUN -> [SKIP][263] ([i915#11520]) +2 other tests skip
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-tglu-1/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf:
- shard-dg1: NOTRUN -> [SKIP][264] ([i915#11520]) +3 other tests skip
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-dg1-12/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@psr2-cursor-plane-update-sf:
- shard-dg2: NOTRUN -> [SKIP][265] ([i915#11520]) +6 other tests skip
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-dg2-10/igt@kms_psr2_sf@psr2-cursor-plane-update-sf.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-dg2: NOTRUN -> [SKIP][266] ([i915#9683])
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-dg2-6/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr2_su@page_flip-p010:
- shard-dg1: NOTRUN -> [SKIP][267] ([i915#9683])
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-dg1-12/igt@kms_psr2_su@page_flip-p010.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-tglu-1: NOTRUN -> [SKIP][268] ([i915#9683]) +1 other test skip
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-tglu-1/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@fbc-pr-cursor-blt:
- shard-mtlp: NOTRUN -> [SKIP][269] ([i915#9688]) +1 other test skip
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-mtlp-1/igt@kms_psr@fbc-pr-cursor-blt.html
* igt@kms_psr@fbc-pr-sprite-render:
- shard-dg1: NOTRUN -> [SKIP][270] ([i915#1072] / [i915#9732]) +15 other tests skip
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-dg1-12/igt@kms_psr@fbc-pr-sprite-render.html
* igt@kms_psr@fbc-psr2-sprite-mmap-gtt:
- shard-tglu-1: NOTRUN -> [SKIP][271] ([i915#9732]) +15 other tests skip
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-tglu-1/igt@kms_psr@fbc-psr2-sprite-mmap-gtt.html
* igt@kms_psr@pr-sprite-plane-move:
- shard-tglu: NOTRUN -> [SKIP][272] ([i915#9732]) +17 other tests skip
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-tglu-7/igt@kms_psr@pr-sprite-plane-move.html
* igt@kms_psr@psr-cursor-mmap-cpu:
- shard-rkl: NOTRUN -> [SKIP][273] ([i915#1072] / [i915#9732]) +15 other tests skip
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-rkl-3/igt@kms_psr@psr-cursor-mmap-cpu.html
* igt@kms_psr@psr2-cursor-blt:
- shard-dg2: NOTRUN -> [SKIP][274] ([i915#1072] / [i915#9732]) +18 other tests skip
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-dg2-10/igt@kms_psr@psr2-cursor-blt.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-0:
- shard-dg2: NOTRUN -> [SKIP][275] ([i915#5190]) +1 other test skip
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-dg2-10/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
- shard-tglu: NOTRUN -> [SKIP][276] ([i915#5289])
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-tglu-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-dg1: NOTRUN -> [SKIP][277] ([i915#5289])
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-dg1-18/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
- shard-rkl: NOTRUN -> [SKIP][278] ([i915#5289])
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-rkl-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:
- shard-dg2: NOTRUN -> [SKIP][279] ([i915#12755] / [i915#5190])
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-dg2-4/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
* igt@kms_rotation_crc@sprite-rotation-90-pos-100-0:
- shard-dg2: NOTRUN -> [SKIP][280] ([i915#12755]) +1 other test skip
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-dg2-4/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html
* igt@kms_scaling_modes@scaling-mode-full:
- shard-tglu: NOTRUN -> [SKIP][281] ([i915#3555]) +3 other tests skip
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-tglu-7/igt@kms_scaling_modes@scaling-mode-full.html
* igt@kms_scaling_modes@scaling-mode-full-aspect:
- shard-dg2: NOTRUN -> [SKIP][282] ([i915#3555]) +1 other test skip
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-dg2-4/igt@kms_scaling_modes@scaling-mode-full-aspect.html
* igt@kms_selftest@drm_framebuffer:
- shard-tglu: NOTRUN -> [ABORT][283] ([i915#13179]) +1 other test abort
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-tglu-7/igt@kms_selftest@drm_framebuffer.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-mtlp: NOTRUN -> [SKIP][284] ([i915#8623])
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-mtlp-1/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_vblank@query-forked-busy:
- shard-rkl: [PASS][285] -> [DMESG-WARN][286] ([i915#12964]) +5 other tests dmesg-warn
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15924/shard-rkl-2/igt@kms_vblank@query-forked-busy.html
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-rkl-7/igt@kms_vblank@query-forked-busy.html
* igt@kms_vrr@seamless-rr-switch-drrs:
- shard-tglu: NOTRUN -> [SKIP][287] ([i915#9906])
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-tglu-7/igt@kms_vrr@seamless-rr-switch-drrs.html
* igt@kms_vrr@seamless-rr-switch-virtual:
- shard-rkl: NOTRUN -> [SKIP][288] ([i915#9906])
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-rkl-3/igt@kms_vrr@seamless-rr-switch-virtual.html
* igt@kms_vrr@seamless-rr-switch-vrr:
- shard-dg1: NOTRUN -> [SKIP][289] ([i915#9906])
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-dg1-12/igt@kms_vrr@seamless-rr-switch-vrr.html
* igt@kms_writeback@writeback-check-output-xrgb2101010:
- shard-dg2: NOTRUN -> [SKIP][290] ([i915#2437] / [i915#9412])
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-dg2-10/igt@kms_writeback@writeback-check-output-xrgb2101010.html
* igt@kms_writeback@writeback-fb-id-xrgb2101010:
- shard-tglu: NOTRUN -> [SKIP][291] ([i915#2437] / [i915#9412]) +1 other test skip
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-tglu-7/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
* igt@kms_writeback@writeback-invalid-parameters:
- shard-tglu-1: NOTRUN -> [SKIP][292] ([i915#2437]) +1 other test skip
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-tglu-1/igt@kms_writeback@writeback-invalid-parameters.html
* igt@perf@gen8-unprivileged-single-ctx-counters:
- shard-rkl: NOTRUN -> [SKIP][293] ([i915#2436])
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-rkl-4/igt@perf@gen8-unprivileged-single-ctx-counters.html
* igt@perf_pmu@busy-accuracy-98:
- shard-snb: NOTRUN -> [SKIP][294] +250 other tests skip
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-snb5/igt@perf_pmu@busy-accuracy-98.html
* igt@perf_pmu@frequency@gt0:
- shard-dg2: NOTRUN -> [FAIL][295] ([i915#12549] / [i915#6806]) +1 other test fail
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-dg2-6/igt@perf_pmu@frequency@gt0.html
* igt@perf_pmu@most-busy-check-all:
- shard-rkl: [PASS][296] -> [FAIL][297] ([i915#4349]) +1 other test fail
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15924/shard-rkl-7/igt@perf_pmu@most-busy-check-all.html
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-rkl-2/igt@perf_pmu@most-busy-check-all.html
* igt@prime_mmap@test_aperture_limit:
- shard-dg2: NOTRUN -> [WARN][298] ([i915#9351])
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-dg2-5/igt@prime_mmap@test_aperture_limit.html
* igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem:
- shard-dg2: NOTRUN -> [CRASH][299] ([i915#9351])
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-dg2-5/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html
* igt@prime_vgem@basic-fence-flip:
- shard-dg2: NOTRUN -> [SKIP][300] ([i915#3708])
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-dg2-10/igt@prime_vgem@basic-fence-flip.html
* igt@prime_vgem@basic-gtt:
- shard-dg2: NOTRUN -> [SKIP][301] ([i915#3708] / [i915#4077])
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-dg2-6/igt@prime_vgem@basic-gtt.html
* igt@sriov_basic@bind-unbind-vf@vf-4:
- shard-tglu: NOTRUN -> [FAIL][302] ([i915#12910]) +18 other tests fail
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-tglu-7/igt@sriov_basic@bind-unbind-vf@vf-4.html
* igt@sriov_basic@enable-vfs-autoprobe-off@numvfs-all:
- shard-tglu-1: NOTRUN -> [FAIL][303] ([i915#12910]) +9 other tests fail
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-tglu-1/igt@sriov_basic@enable-vfs-autoprobe-off@numvfs-all.html
* igt@sriov_basic@enable-vfs-autoprobe-on:
- shard-dg2: NOTRUN -> [SKIP][304] ([i915#9917]) +2 other tests skip
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-dg2-4/igt@sriov_basic@enable-vfs-autoprobe-on.html
* igt@tools_test@sysfs_l3_parity:
- shard-dg1: NOTRUN -> [SKIP][305] ([i915#4818])
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-dg1-12/igt@tools_test@sysfs_l3_parity.html
#### Possible fixes ####
* igt@gem_create@create-ext-cpu-access-big:
- shard-dg2: [ABORT][306] ([i915#13427]) -> [PASS][307]
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15924/shard-dg2-1/igt@gem_create@create-ext-cpu-access-big.html
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-dg2-5/igt@gem_create@create-ext-cpu-access-big.html
* igt@gem_eio@context-create:
- shard-mtlp: [ABORT][308] -> [PASS][309]
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15924/shard-mtlp-4/igt@gem_eio@context-create.html
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-mtlp-1/igt@gem_eio@context-create.html
* igt@gem_eio@create-ext:
- shard-dg1: [DMESG-WARN][310] ([i915#4423]) -> [PASS][311] +1 other test pass
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15924/shard-dg1-17/igt@gem_eio@create-ext.html
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-dg1-14/igt@gem_eio@create-ext.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-tglu: [DMESG-WARN][312] ([i915#13475]) -> [PASS][313]
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15924/shard-tglu-3/igt@i915_module_load@reload-with-fault-injection.html
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-tglu-10/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_pm_freq_api@freq-suspend@gt0:
- shard-dg2: [INCOMPLETE][314] ([i915#12455]) -> [PASS][315] +1 other test pass
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15924/shard-dg2-10/igt@i915_pm_freq_api@freq-suspend@gt0.html
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-dg2-8/igt@i915_pm_freq_api@freq-suspend@gt0.html
* igt@i915_selftest@live@workarounds:
- shard-mtlp: [DMESG-FAIL][316] ([i915#13393]) -> [PASS][317] +1 other test pass
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15924/shard-mtlp-3/igt@i915_selftest@live@workarounds.html
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-mtlp-8/igt@i915_selftest@live@workarounds.html
* igt@kms_async_flips@alternate-sync-async-flip-atomic:
- shard-glk: [FAIL][318] ([i915#10991] / [i915#13335]) -> [PASS][319]
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15924/shard-glk9/igt@kms_async_flips@alternate-sync-async-flip-atomic.html
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-glk2/igt@kms_async_flips@alternate-sync-async-flip-atomic.html
* igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-a-hdmi-a-2:
- shard-glk: [FAIL][320] ([i915#13335]) -> [PASS][321]
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15924/shard-glk9/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-a-hdmi-a-2.html
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-glk2/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-a-hdmi-a-2.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
- shard-glk: [FAIL][322] ([i915#2346]) -> [PASS][323]
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15924/shard-glk5/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-glk1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
* igt@kms_flip@flip-vs-blocking-wf-vblank@a-hdmi-a1:
- shard-tglu: [FAIL][324] ([i915#11989]) -> [PASS][325] +1 other test pass
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15924/shard-tglu-4/igt@kms_flip@flip-vs-blocking-wf-vblank@a-hdmi-a1.html
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-tglu-9/igt@kms_flip@flip-vs-blocking-wf-vblank@a-hdmi-a1.html
* igt@kms_pm_rpm@dpms-mode-unset-non-lpsp:
- shard-dg2: [SKIP][326] ([i915#9519]) -> [PASS][327]
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15924/shard-dg2-4/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-dg2-3/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
- shard-rkl: [SKIP][328] ([i915#9519]) -> [PASS][329]
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15924/shard-rkl-7/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-rkl-1/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
* igt@kms_sequence@get-forked-busy:
- shard-rkl: [DMESG-WARN][330] ([i915#12964]) -> [PASS][331] +3 other tests pass
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15924/shard-rkl-7/igt@kms_sequence@get-forked-busy.html
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-rkl-2/igt@kms_sequence@get-forked-busy.html
* igt@kms_universal_plane@cursor-fb-leak:
- shard-mtlp: [FAIL][332] ([i915#9196]) -> [PASS][333] +1 other test pass
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15924/shard-mtlp-7/igt@kms_universal_plane@cursor-fb-leak.html
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-mtlp-2/igt@kms_universal_plane@cursor-fb-leak.html
- shard-dg2: [FAIL][334] ([i915#9196]) -> [PASS][335]
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15924/shard-dg2-11/igt@kms_universal_plane@cursor-fb-leak.html
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-dg2-7/igt@kms_universal_plane@cursor-fb-leak.html
* igt@perf_pmu@module-unload:
- shard-snb: [INCOMPLETE][336] -> [PASS][337]
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15924/shard-snb5/igt@perf_pmu@module-unload.html
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-snb2/igt@perf_pmu@module-unload.html
#### Warnings ####
* igt@i915_module_load@reload-with-fault-injection:
- shard-mtlp: [ABORT][338] ([i915#10131] / [i915#10887]) -> [DMESG-WARN][339] ([i915#13475])
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15924/shard-mtlp-4/igt@i915_module_load@reload-with-fault-injection.html
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-mtlp-2/igt@i915_module_load@reload-with-fault-injection.html
- shard-dg2: [DMESG-WARN][340] ([i915#10887] / [i915#13475]) -> [ABORT][341] ([i915#9820])
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15924/shard-dg2-7/igt@i915_module_load@reload-with-fault-injection.html
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-dg2-1/igt@i915_module_load@reload-with-fault-injection.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-270:
- shard-dg1: [SKIP][342] ([i915#4538] / [i915#5286]) -> [SKIP][343] ([i915#4423] / [i915#4538] / [i915#5286])
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15924/shard-dg1-14/igt@kms_big_fb@4-tiled-16bpp-rotate-270.html
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-dg1-14/igt@kms_big_fb@4-tiled-16bpp-rotate-270.html
* igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-4:
- shard-dg1: [SKIP][344] ([i915#6095]) -> [SKIP][345] ([i915#4423] / [i915#6095]) +1 other test skip
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15924/shard-dg1-14/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-4.html
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-dg1-14/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-4.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible:
- shard-glk: [INCOMPLETE][346] ([i915#12314] / [i915#12745] / [i915#4839]) -> [INCOMPLETE][347] ([i915#12745] / [i915#4839])
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15924/shard-glk8/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-glk3/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt:
- shard-dg1: [SKIP][348] -> [SKIP][349] ([i915#4423])
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15924/shard-dg1-12/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt.html
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-dg1-12/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-wc:
- shard-dg1: [SKIP][350] ([i915#8708]) -> [SKIP][351] ([i915#4423] / [i915#8708])
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15924/shard-dg1-14/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-wc.html
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-dg1-14/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary:
- shard-dg2: [SKIP][352] ([i915#10433] / [i915#3458]) -> [SKIP][353] ([i915#3458]) +3 other tests skip
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15924/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-rkl: [SKIP][354] ([i915#4816]) -> [SKIP][355] ([i915#4070] / [i915#4816])
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15924/shard-rkl-3/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/shard-rkl-5/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[i915#10131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10131
[i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307
[i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433
[i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434
[i915#10656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10656
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#10887]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10887
[i915#1099]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099
[i915#10991]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10991
[i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078
[i915#11441]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11441
[i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520
[i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681
[i915#118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/118
[i915#11808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11808
[i915#11965]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11965
[i915#11989]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11989
[i915#12247]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247
[i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313
[i915#12314]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12314
[i915#12339]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12339
[i915#12343]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12343
[i915#12388]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12388
[i915#12392]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12392
[i915#12394]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12394
[i915#12454]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12454
[i915#12455]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12455
[i915#12549]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12549
[i915#1257]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1257
[i915#12712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12712
[i915#12745]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12745
[i915#12755]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755
[i915#12805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12805
[i915#12817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12817
[i915#12910]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12910
[i915#12917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12917
[i915#12964]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964
[i915#13008]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13008
[i915#13027]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13027
[i915#13029]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13029
[i915#13046]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046
[i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049
[i915#13179]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13179
[i915#13304]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13304
[i915#13335]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13335
[i915#13388]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13388
[i915#13389]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13389
[i915#13393]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13393
[i915#13427]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13427
[i915#13449]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13449
[i915#13475]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13475
[i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769
[i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825
[i915#1839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839
[i915#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190
[i915#2346]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2346
[i915#2436]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2436
[i915#2437]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437
[i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527
[i915#2587]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587
[i915#2672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672
[i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280
[i915#284]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/284
[i915#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#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297
[i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299
[i915#3323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3323
[i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458
[i915#3469]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3469
[i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539
[i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
[i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637
[i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638
[i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
[i915#3742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742
[i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804
[i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
[i915#4036]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4036
[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#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
[i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212
[i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213
[i915#4215]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4215
[i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270
[i915#4281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4281
[i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349
[i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423
[i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525
[i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538
[i915#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#4818]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4818
[i915#4839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839
[i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852
[i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860
[i915#4881]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4881
[i915#4958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4958
[i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190
[i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286
[i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289
[i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
[i915#5439]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5439
[i915#5493]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5493
[i915#5507]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5507
[i915#5566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5566
[i915#5723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5723
[i915#5956]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5956
[i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095
[i915#6230]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6230
[i915#6245]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6245
[i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301
[i915#6334]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334
[i915#6335]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335
[i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524
[i915#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658
[i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621
[i915#6805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6805
[i915#6806]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6806
[i915#6880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6880
[i915#6944]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944
[i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953
[i915#7116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7116
[i915#7118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118
[i915#7173]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7173
[i915#7213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7213
[i915#7297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7297
[i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697
[i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707
[i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828
[i915#7984]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7984
[i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228
[i915#8289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8289
[i915#8292]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8292
[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#8562]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8562
[i915#8588]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8588
[i915#8623]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623
[i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708
[i915#8709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8709
[i915#8806]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8806
[i915#8810]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8810
[i915#8813]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8813
[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#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323
[i915#9340]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340
[i915#9351]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9351
[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#9683]: https://gitlab.fre
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v3/index.html
[-- Attachment #2: Type: text/html, Size: 123873 bytes --]
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [PATCH 2/3] drm/i915/guc/slpc: Enable GuC SLPC default strategies
2025-01-09 5:18 ` Dixit, Ashutosh
@ 2025-01-09 19:00 ` Rodrigo Vivi
2025-01-09 21:32 ` Dixit, Ashutosh
0 siblings, 1 reply; 14+ messages in thread
From: Rodrigo Vivi @ 2025-01-09 19:00 UTC (permalink / raw)
To: Dixit, Ashutosh; +Cc: Belgaumkar, Vinay, intel-gfx
On Wed, Jan 08, 2025 at 09:18:41PM -0800, Dixit, Ashutosh wrote:
> On Wed, 08 Jan 2025 13:19:16 -0800, Rodrigo Vivi wrote:
> >
>
> Hi Rodrigo,
>
> > On Wed, Jan 08, 2025 at 11:30:59AM -0800, Dixit, Ashutosh wrote:
> > > On Wed, 08 Jan 2025 11:11:53 -0800, Belgaumkar, Vinay wrote:
> > > >
> > > >
> > > > On 1/8/2025 6:13 AM, Rodrigo Vivi wrote:
> > > > > The Balancer and DCC strategies were left off on a fear that
> > > > > these strategies would conflict with the i915's waitboost.
> > > > > However, these strategies are only active in certain conditions where
> > > > > the system is TDP limited. So, they don't conflict, but help the
> > > > > waitboost by guaranteeing a bit more of GT frequency.
> > > > >
> > > > > Without these strategies we were likely leaving some performance
> > > > > behind on some scenarious.
> > > >
> > > > s/scenarious/scenarios
> >
> > I do need to re-enable my spell checker during git commit :)
> >
> > > >
> > > > We should also mention that the platform defaults for enabling/disabling
> > > > DCC/Balancer will now be chosen by GuC.
> > > >
> > > > Reviewed-by: Vinay Belgaumkar <vinay.belgaumkar@intel.com>
> > > >
> > > > >
> > > > > Cc: Vinay Belgaumkar <vinay.belgaumkar@intel.com>
> > > > > Signed-off-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
> > >
> > > Does this need a Fixes: and Cc:stable?
> >
> > nope... this is more like enabling a new feature...
>
> Hmm, if this really improves performance, as the commit message seems to
> suggest, why wouldn't we want this in stable, or at least LTS, kernels? So
> why isn't this a performance bug fix?
hmm... performance is not listed in the stable-rules as a obvious case, and
it is not a regression, is really a new feature, that has the potential to
find some later corner cases. So, safer to just enable as a new feature...
Also a feature that is really a corner case for the end user... needs to
be using both cpu and gpu with high utilization and a limited power budget.
General benchmarks and usages don't hit this scenario very easily.
>
> Ashutosh
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [PATCH 2/3] drm/i915/guc/slpc: Enable GuC SLPC default strategies
2025-01-09 19:00 ` Rodrigo Vivi
@ 2025-01-09 21:32 ` Dixit, Ashutosh
0 siblings, 0 replies; 14+ messages in thread
From: Dixit, Ashutosh @ 2025-01-09 21:32 UTC (permalink / raw)
To: Rodrigo Vivi; +Cc: Belgaumkar, Vinay, intel-gfx
On Thu, 09 Jan 2025 11:00:36 -0800, Rodrigo Vivi wrote:
>
> On Wed, Jan 08, 2025 at 09:18:41PM -0800, Dixit, Ashutosh wrote:
> > On Wed, 08 Jan 2025 13:19:16 -0800, Rodrigo Vivi wrote:
> > >
> >
> > Hi Rodrigo,
> >
> > > On Wed, Jan 08, 2025 at 11:30:59AM -0800, Dixit, Ashutosh wrote:
> > > > On Wed, 08 Jan 2025 11:11:53 -0800, Belgaumkar, Vinay wrote:
> > > > >
> > > > >
> > > > > On 1/8/2025 6:13 AM, Rodrigo Vivi wrote:
> > > > > > The Balancer and DCC strategies were left off on a fear that
> > > > > > these strategies would conflict with the i915's waitboost.
> > > > > > However, these strategies are only active in certain conditions where
> > > > > > the system is TDP limited. So, they don't conflict, but help the
> > > > > > waitboost by guaranteeing a bit more of GT frequency.
> > > > > >
> > > > > > Without these strategies we were likely leaving some performance
> > > > > > behind on some scenarious.
> > > > >
> > > > > s/scenarious/scenarios
> > >
> > > I do need to re-enable my spell checker during git commit :)
> > >
> > > > >
> > > > > We should also mention that the platform defaults for enabling/disabling
> > > > > DCC/Balancer will now be chosen by GuC.
> > > > >
> > > > > Reviewed-by: Vinay Belgaumkar <vinay.belgaumkar@intel.com>
> > > > >
> > > > > >
> > > > > > Cc: Vinay Belgaumkar <vinay.belgaumkar@intel.com>
> > > > > > Signed-off-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
> > > >
> > > > Does this need a Fixes: and Cc:stable?
> > >
> > > nope... this is more like enabling a new feature...
> >
> > Hmm, if this really improves performance, as the commit message seems to
> > suggest, why wouldn't we want this in stable, or at least LTS, kernels? So
> > why isn't this a performance bug fix?
>
> hmm... performance is not listed in the stable-rules as a obvious case, and
> it is not a regression, is really a new feature, that has the potential to
> find some later corner cases. So, safer to just enable as a new feature...
>
> Also a feature that is really a corner case for the end user... needs to
> be using both cpu and gpu with high utilization and a limited power budget.
> General benchmarks and usages don't hit this scenario very easily.
OK, fair enough :)
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [PATCH 0/3] Enable GuC SLPC default balancing strategies v2
2025-01-08 14:13 [PATCH 0/3] Enable GuC SLPC default balancing strategies v2 Rodrigo Vivi
` (4 preceding siblings ...)
2025-01-09 18:06 ` ✓ i915.CI.Full: " Patchwork
@ 2025-01-09 22:28 ` Rodrigo Vivi
5 siblings, 0 replies; 14+ messages in thread
From: Rodrigo Vivi @ 2025-01-09 22:28 UTC (permalink / raw)
To: intel-gfx
On Wed, Jan 08, 2025 at 09:13:14AM -0500, Rodrigo Vivi wrote:
> The goal here is to improve the GPU performance in some cases
> where we are TDP limited, with both GPU and CPU with high
> utilization and PCODE without power to fulfill both sides.
> Of course, only matters for integrated parts with GuC
> SLPC enabled: ADL and MTL.
>
> Apparently the ADL on our CI was not happy about that
> with the igt_spinners timming out [1]. So, this new attempt
> also lift the BAT restriction on the igt_spinner with the
> first patch.
>
> Another possibility would be to make this change for MTL
> only, but I'm afraid that this is not the ideal, because:
> 1. ADL users couldn't get the performance benefit of this change
> 2. This would sound like a hack to bypass CI, where the ADL there
> might have some TDP limitation and MTL there having more power.
For the records, I have changed my mind here. IBC on ADL was doing
balancing even when not TDP limited and perhaps even depending on
display metrics. Let's enable it only on MTL+
>
> [1] - https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142676v2/bat-twl-2/igt@i915_selftest@live@gt_engines.html
>
> Thanks,
> Rodrigo.
>
> Rodrigo Vivi (3):
> drm/i915: Increase the timeout of the spinners
> drm/i915/guc/slpc: Enable GuC SLPC default strategies
> drm/i915/guc/slpc: Print more SLPC debug status information
>
> drivers/gpu/drm/i915/gt/uc/intel_guc_slpc.c | 34 ++++++++++----------
> drivers/gpu/drm/i915/selftests/igt_spinner.c | 2 +-
> 2 files changed, 18 insertions(+), 18 deletions(-)
>
> --
> 2.47.1
>
^ permalink raw reply [flat|nested] 14+ messages in thread
end of thread, other threads:[~2025-01-09 22:29 UTC | newest]
Thread overview: 14+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-01-08 14:13 [PATCH 0/3] Enable GuC SLPC default balancing strategies v2 Rodrigo Vivi
2025-01-08 14:13 ` [PATCH 1/3] drm/i915: Increase the timeout of the spinners Rodrigo Vivi
2025-01-08 14:13 ` [PATCH 2/3] drm/i915/guc/slpc: Enable GuC SLPC default strategies Rodrigo Vivi
2025-01-08 19:11 ` Belgaumkar, Vinay
2025-01-08 19:30 ` Dixit, Ashutosh
2025-01-08 21:19 ` Rodrigo Vivi
2025-01-09 5:18 ` Dixit, Ashutosh
2025-01-09 19:00 ` Rodrigo Vivi
2025-01-09 21:32 ` Dixit, Ashutosh
2025-01-08 14:13 ` [PATCH 3/3] drm/i915/guc/slpc: Print more SLPC debug status information Rodrigo Vivi
2025-01-08 19:08 ` Belgaumkar, Vinay
2025-01-08 16:10 ` ✓ i915.CI.BAT: success for Enable GuC SLPC default balancing strategies (rev3) Patchwork
2025-01-09 18:06 ` ✓ i915.CI.Full: " Patchwork
2025-01-09 22:28 ` [PATCH 0/3] Enable GuC SLPC default balancing strategies v2 Rodrigo Vivi
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.