* [Intel-gfx] [PATCH v2 1/2] drm/i915/display: Fix HPD short pulse handling for eDP
@ 2022-03-11 18:51 José Roberto de Souza
2022-03-11 18:51 ` [Intel-gfx] [PATCH v2 2/2] drm/i915/display: Do not re-enable PSR after it was marked as not reliable José Roberto de Souza
` (3 more replies)
0 siblings, 4 replies; 6+ messages in thread
From: José Roberto de Souza @ 2022-03-11 18:51 UTC (permalink / raw)
To: intel-gfx; +Cc: Jani Nikula
Commit 13ea6db2cf24 ("drm/i915/edp: Ignore short pulse when panel
powered off") completely broke short pulse handling for eDP as it is
usually generated by sink when it is displaying image and there is
some error or status that source needs to handle.
When power panel is enabled, this state is enough to power aux
transactions and VDD override is disabled, so intel_pps_have_power()
is always returning false causing short pulses to be ignored.
So here better naming this function that intends to check if aux
lines are powered to avoid the endless cycle mentioned in the commit
being fixed and fixing the check for what it is intended.
v2:
- renamed to intel_pps_have_panel_power_or_vdd()
- fixed indentation
Fixes: 13ea6db2cf24 ("drm/i915/edp: Ignore short pulse when panel powered off")
Cc: Anshuman Gupta <anshuman.gupta@intel.com>
Cc: Jani Nikula <jani.nikula@intel.com>
Cc: Uma Shankar <uma.shankar@intel.com>
Cc: Ville Syrjälä <ville.syrjala@linux.intel.com>
Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Signed-off-by: José Roberto de Souza <jose.souza@intel.com>
---
drivers/gpu/drm/i915/display/intel_dp.c | 2 +-
drivers/gpu/drm/i915/display/intel_pps.c | 6 +++---
drivers/gpu/drm/i915/display/intel_pps.h | 2 +-
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/intel_dp.c b/drivers/gpu/drm/i915/display/intel_dp.c
index 619546441eae5..e83947fe2411a 100644
--- a/drivers/gpu/drm/i915/display/intel_dp.c
+++ b/drivers/gpu/drm/i915/display/intel_dp.c
@@ -4867,7 +4867,7 @@ intel_dp_hpd_pulse(struct intel_digital_port *dig_port, bool long_hpd)
struct intel_dp *intel_dp = &dig_port->dp;
if (dig_port->base.type == INTEL_OUTPUT_EDP &&
- (long_hpd || !intel_pps_have_power(intel_dp))) {
+ (long_hpd || !intel_pps_have_panel_power_or_vdd(intel_dp))) {
/*
* vdd off can generate a long/short pulse on eDP which
* would require vdd on to handle it, and thus we
diff --git a/drivers/gpu/drm/i915/display/intel_pps.c b/drivers/gpu/drm/i915/display/intel_pps.c
index 9c986e8932f87..64bd4ca0edd47 100644
--- a/drivers/gpu/drm/i915/display/intel_pps.c
+++ b/drivers/gpu/drm/i915/display/intel_pps.c
@@ -1075,14 +1075,14 @@ static void intel_pps_vdd_sanitize(struct intel_dp *intel_dp)
edp_panel_vdd_schedule_off(intel_dp);
}
-bool intel_pps_have_power(struct intel_dp *intel_dp)
+bool intel_pps_have_panel_power_or_vdd(struct intel_dp *intel_dp)
{
intel_wakeref_t wakeref;
bool have_power = false;
with_intel_pps_lock(intel_dp, wakeref) {
- have_power = edp_have_panel_power(intel_dp) &&
- edp_have_panel_vdd(intel_dp);
+ have_power = edp_have_panel_power(intel_dp) ||
+ edp_have_panel_vdd(intel_dp);
}
return have_power;
diff --git a/drivers/gpu/drm/i915/display/intel_pps.h b/drivers/gpu/drm/i915/display/intel_pps.h
index fbb47f6f453e4..e64144659d31f 100644
--- a/drivers/gpu/drm/i915/display/intel_pps.h
+++ b/drivers/gpu/drm/i915/display/intel_pps.h
@@ -37,7 +37,7 @@ void intel_pps_vdd_on(struct intel_dp *intel_dp);
void intel_pps_on(struct intel_dp *intel_dp);
void intel_pps_off(struct intel_dp *intel_dp);
void intel_pps_vdd_off_sync(struct intel_dp *intel_dp);
-bool intel_pps_have_power(struct intel_dp *intel_dp);
+bool intel_pps_have_panel_power_or_vdd(struct intel_dp *intel_dp);
void intel_pps_wait_power_cycle(struct intel_dp *intel_dp);
void intel_pps_init(struct intel_dp *intel_dp);
--
2.35.1
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [Intel-gfx] [PATCH v2 2/2] drm/i915/display: Do not re-enable PSR after it was marked as not reliable
2022-03-11 18:51 [Intel-gfx] [PATCH v2 1/2] drm/i915/display: Fix HPD short pulse handling for eDP José Roberto de Souza
@ 2022-03-11 18:51 ` José Roberto de Souza
2022-03-15 13:29 ` Hogander, Jouni
2022-03-11 21:20 ` [Intel-gfx] ✗ Fi.CI.BAT: failure for series starting with [v2,1/2] drm/i915/display: Fix HPD short pulse handling for eDP Patchwork
` (2 subsequent siblings)
3 siblings, 1 reply; 6+ messages in thread
From: José Roberto de Souza @ 2022-03-11 18:51 UTC (permalink / raw)
To: intel-gfx; +Cc: Charlton Lin
If a error happens and sink_not_reliable is set, PSR should be disabled
for good but that is not happening.
It would be disabled by the function handling the PSR error but then
on the next fastset it would be enabled again in
_intel_psr_post_plane_update().
It would only be disabled for good in the next modeset where has_psr
will be set false.
v2:
- release psr lock before continue
Fixes: 9ce5884e5139 ("drm/i915/display: Only keep PSR enabled if there is active planes")
Reported-by: Khaled Almahallawy <khaled.almahallawy@intel.com>
Reported-by: Charlton Lin <charlton.lin@intel.com>
Cc: Jouni Högander <jouni.hogander@intel.com>
Signed-off-by: José Roberto de Souza <jose.souza@intel.com>
---
drivers/gpu/drm/i915/display/intel_psr.c | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/drivers/gpu/drm/i915/display/intel_psr.c b/drivers/gpu/drm/i915/display/intel_psr.c
index bbd581ed08159..80002ca6a6ebe 100644
--- a/drivers/gpu/drm/i915/display/intel_psr.c
+++ b/drivers/gpu/drm/i915/display/intel_psr.c
@@ -1853,6 +1853,9 @@ static void _intel_psr_post_plane_update(const struct intel_atomic_state *state,
mutex_lock(&psr->lock);
+ if (psr->sink_not_reliable)
+ goto exit;
+
drm_WARN_ON(&dev_priv->drm, psr->enabled && !crtc_state->active_planes);
/* Only enable if there is active planes */
@@ -1863,6 +1866,7 @@ static void _intel_psr_post_plane_update(const struct intel_atomic_state *state,
if (crtc_state->crc_enabled && psr->enabled)
psr_force_hw_tracking_exit(intel_dp);
+exit:
mutex_unlock(&psr->lock);
}
}
--
2.35.1
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [Intel-gfx] ✗ Fi.CI.BAT: failure for series starting with [v2,1/2] drm/i915/display: Fix HPD short pulse handling for eDP
2022-03-11 18:51 [Intel-gfx] [PATCH v2 1/2] drm/i915/display: Fix HPD short pulse handling for eDP José Roberto de Souza
2022-03-11 18:51 ` [Intel-gfx] [PATCH v2 2/2] drm/i915/display: Do not re-enable PSR after it was marked as not reliable José Roberto de Souza
@ 2022-03-11 21:20 ` Patchwork
2022-03-14 14:45 ` [Intel-gfx] ✓ Fi.CI.BAT: success for series starting with [v2,1/2] drm/i915/display: Fix HPD short pulse handling for eDP (rev2) Patchwork
2022-03-14 17:38 ` [Intel-gfx] ✗ Fi.CI.IGT: failure " Patchwork
3 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2022-03-11 21:20 UTC (permalink / raw)
To: José Roberto de Souza; +Cc: intel-gfx
[-- Attachment #1: Type: text/plain, Size: 8713 bytes --]
== Series Details ==
Series: series starting with [v2,1/2] drm/i915/display: Fix HPD short pulse handling for eDP
URL : https://patchwork.freedesktop.org/series/101299/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_11353 -> Patchwork_22545
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with Patchwork_22545 absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in Patchwork_22545, please notify your bug team to allow them
to document this new failure mode, which will reduce false positives in CI.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22545/index.html
Participating hosts (40 -> 39)
------------------------------
Additional (2): fi-kbl-soraka fi-bwr-2160
Missing (3): fi-bsw-cyan fi-bdw-samus fi-pnv-d510
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in Patchwork_22545:
### IGT changes ###
#### Possible regressions ####
* igt@kms_pipe_crc_basic@read-crc-pipe-c:
- fi-tgl-1115g4: [PASS][1] -> [DMESG-WARN][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11353/fi-tgl-1115g4/igt@kms_pipe_crc_basic@read-crc-pipe-c.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22545/fi-tgl-1115g4/igt@kms_pipe_crc_basic@read-crc-pipe-c.html
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* igt@kms_flip@basic-flip-vs-modeset@a-edp1:
- {bat-adlp-6}: [PASS][3] -> [DMESG-WARN][4]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11353/bat-adlp-6/igt@kms_flip@basic-flip-vs-modeset@a-edp1.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22545/bat-adlp-6/igt@kms_flip@basic-flip-vs-modeset@a-edp1.html
Known issues
------------
Here are the changes found in Patchwork_22545 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@amdgpu/amd_cs_nop@sync-gfx0:
- fi-bsw-n3050: NOTRUN -> [SKIP][5] ([fdo#109271]) +17 similar issues
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22545/fi-bsw-n3050/igt@amdgpu/amd_cs_nop@sync-gfx0.html
* igt@gem_exec_fence@basic-busy@bcs0:
- fi-kbl-soraka: NOTRUN -> [SKIP][6] ([fdo#109271]) +9 similar issues
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22545/fi-kbl-soraka/igt@gem_exec_fence@basic-busy@bcs0.html
* igt@gem_exec_suspend@basic-s3:
- fi-bwr-2160: NOTRUN -> [SKIP][7] ([fdo#109271]) +66 similar issues
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22545/fi-bwr-2160/igt@gem_exec_suspend@basic-s3.html
* igt@gem_huc_copy@huc-copy:
- fi-kbl-soraka: NOTRUN -> [SKIP][8] ([fdo#109271] / [i915#2190])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22545/fi-kbl-soraka/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_swapping@basic:
- fi-kbl-soraka: NOTRUN -> [SKIP][9] ([fdo#109271] / [i915#4613]) +3 similar issues
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22545/fi-kbl-soraka/igt@gem_lmem_swapping@basic.html
* igt@i915_selftest@live@gt_pm:
- fi-kbl-soraka: NOTRUN -> [DMESG-FAIL][10] ([i915#1886])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22545/fi-kbl-soraka/igt@i915_selftest@live@gt_pm.html
* igt@i915_selftest@live@hangcheck:
- fi-snb-2600: [PASS][11] -> [INCOMPLETE][12] ([i915#3921])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11353/fi-snb-2600/igt@i915_selftest@live@hangcheck.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22545/fi-snb-2600/igt@i915_selftest@live@hangcheck.html
* igt@kms_chamelium@common-hpd-after-suspend:
- fi-kbl-soraka: NOTRUN -> [SKIP][13] ([fdo#109271] / [fdo#111827]) +8 similar issues
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22545/fi-kbl-soraka/igt@kms_chamelium@common-hpd-after-suspend.html
* igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-d:
- fi-kbl-soraka: NOTRUN -> [SKIP][14] ([fdo#109271] / [i915#533])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22545/fi-kbl-soraka/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-d.html
* igt@runner@aborted:
- fi-tgl-1115g4: NOTRUN -> [FAIL][15] ([i915#4312] / [i915#5257])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22545/fi-tgl-1115g4/igt@runner@aborted.html
#### Possible fixes ####
* igt@i915_pm_rpm@module-reload:
- {bat-rpls-2}: [FAIL][16] -> [PASS][17]
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11353/bat-rpls-2/igt@i915_pm_rpm@module-reload.html
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22545/bat-rpls-2/igt@i915_pm_rpm@module-reload.html
* igt@i915_selftest@live@late_gt_pm:
- fi-bsw-n3050: [DMESG-FAIL][18] ([i915#2927] / [i915#3428]) -> [PASS][19]
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11353/fi-bsw-n3050/igt@i915_selftest@live@late_gt_pm.html
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22545/fi-bsw-n3050/igt@i915_selftest@live@late_gt_pm.html
* igt@kms_busy@basic@modeset:
- {bat-adlp-6}: [DMESG-WARN][20] -> [PASS][21]
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11353/bat-adlp-6/igt@kms_busy@basic@modeset.html
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22545/bat-adlp-6/igt@kms_busy@basic@modeset.html
* igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-b:
- fi-cfl-8109u: [DMESG-WARN][22] ([i915#295]) -> [PASS][23] +11 similar issues
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11353/fi-cfl-8109u/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-b.html
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22545/fi-cfl-8109u/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-b.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
[i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
[i915#1155]: https://gitlab.freedesktop.org/drm/intel/issues/1155
[i915#1886]: https://gitlab.freedesktop.org/drm/intel/issues/1886
[i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190
[i915#2927]: https://gitlab.freedesktop.org/drm/intel/issues/2927
[i915#295]: https://gitlab.freedesktop.org/drm/intel/issues/295
[i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291
[i915#3428]: https://gitlab.freedesktop.org/drm/intel/issues/3428
[i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
[i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
[i915#3921]: https://gitlab.freedesktop.org/drm/intel/issues/3921
[i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077
[i915#4312]: https://gitlab.freedesktop.org/drm/intel/issues/4312
[i915#4391]: https://gitlab.freedesktop.org/drm/intel/issues/4391
[i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
[i915#4983]: https://gitlab.freedesktop.org/drm/intel/issues/4983
[i915#5127]: https://gitlab.freedesktop.org/drm/intel/issues/5127
[i915#5153]: https://gitlab.freedesktop.org/drm/intel/issues/5153
[i915#5193]: https://gitlab.freedesktop.org/drm/intel/issues/5193
[i915#5195]: https://gitlab.freedesktop.org/drm/intel/issues/5195
[i915#5257]: https://gitlab.freedesktop.org/drm/intel/issues/5257
[i915#5270]: https://gitlab.freedesktop.org/drm/intel/issues/5270
[i915#5275]: https://gitlab.freedesktop.org/drm/intel/issues/5275
[i915#5276]: https://gitlab.freedesktop.org/drm/intel/issues/5276
[i915#5278]: https://gitlab.freedesktop.org/drm/intel/issues/5278
[i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533
Build changes
-------------
* Linux: CI_DRM_11353 -> Patchwork_22545
CI-20190529: 20190529
CI_DRM_11353: 3b3183b6f5343a9e149ff1f6656b131d72445adc @ git://anongit.freedesktop.org/gfx-ci/linux
IGT_6378: 9c79047f49acdb6450368ee13fd8b6d28f3fb8e1 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
Patchwork_22545: ce8362fecddc8bf65f7a5eb1abccda3470cf7e75 @ git://anongit.freedesktop.org/gfx-ci/linux
== Linux commits ==
ce8362fecddc drm/i915/display: Do not re-enable PSR after it was marked as not reliable
2b493e26c482 drm/i915/display: Fix HPD short pulse handling for eDP
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22545/index.html
[-- Attachment #2: Type: text/html, Size: 9066 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* [Intel-gfx] ✓ Fi.CI.BAT: success for series starting with [v2,1/2] drm/i915/display: Fix HPD short pulse handling for eDP (rev2)
2022-03-11 18:51 [Intel-gfx] [PATCH v2 1/2] drm/i915/display: Fix HPD short pulse handling for eDP José Roberto de Souza
2022-03-11 18:51 ` [Intel-gfx] [PATCH v2 2/2] drm/i915/display: Do not re-enable PSR after it was marked as not reliable José Roberto de Souza
2022-03-11 21:20 ` [Intel-gfx] ✗ Fi.CI.BAT: failure for series starting with [v2,1/2] drm/i915/display: Fix HPD short pulse handling for eDP Patchwork
@ 2022-03-14 14:45 ` Patchwork
2022-03-14 17:38 ` [Intel-gfx] ✗ Fi.CI.IGT: failure " Patchwork
3 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2022-03-14 14:45 UTC (permalink / raw)
To: José Roberto de Souza; +Cc: intel-gfx
[-- Attachment #1: Type: text/plain, Size: 7719 bytes --]
== Series Details ==
Series: series starting with [v2,1/2] drm/i915/display: Fix HPD short pulse handling for eDP (rev2)
URL : https://patchwork.freedesktop.org/series/101299/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_11358 -> Patchwork_22556
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22556/index.html
Participating hosts (40 -> 30)
------------------------------
Additional (2): fi-icl-u2 fi-kbl-8809g
Missing (12): fi-kbl-soraka fi-bdw-samus shard-tglu shard-rkl bat-dg2-9 fi-bsw-cyan bat-adlp-6 bat-adlp-4 bat-rpls-2 shard-dg1 bat-jsl-2 bat-jsl-1
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in Patchwork_22556:
### IGT changes ###
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* igt@gem_exec_store@basic:
- {fi-tgl-dsi}: [PASS][1] -> [DMESG-WARN][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11358/fi-tgl-dsi/igt@gem_exec_store@basic.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22556/fi-tgl-dsi/igt@gem_exec_store@basic.html
Known issues
------------
Here are the changes found in Patchwork_22556 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@amdgpu/amd_cs_nop@fork-gfx0:
- fi-icl-u2: NOTRUN -> [SKIP][3] ([fdo#109315]) +17 similar issues
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22556/fi-icl-u2/igt@amdgpu/amd_cs_nop@fork-gfx0.html
* igt@gem_exec_suspend@basic-s0@smem:
- fi-kbl-8809g: NOTRUN -> [DMESG-WARN][4] ([i915#4962]) +1 similar issue
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22556/fi-kbl-8809g/igt@gem_exec_suspend@basic-s0@smem.html
- fi-glk-dsi: [PASS][5] -> [DMESG-WARN][6] ([i915#2943])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11358/fi-glk-dsi/igt@gem_exec_suspend@basic-s0@smem.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22556/fi-glk-dsi/igt@gem_exec_suspend@basic-s0@smem.html
* igt@gem_huc_copy@huc-copy:
- fi-kbl-8809g: NOTRUN -> [SKIP][7] ([fdo#109271] / [i915#2190])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22556/fi-kbl-8809g/igt@gem_huc_copy@huc-copy.html
- fi-icl-u2: NOTRUN -> [SKIP][8] ([i915#2190])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22556/fi-icl-u2/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_swapping@parallel-random-engines:
- fi-icl-u2: NOTRUN -> [SKIP][9] ([i915#4613]) +3 similar issues
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22556/fi-icl-u2/igt@gem_lmem_swapping@parallel-random-engines.html
* igt@gem_lmem_swapping@random-engines:
- fi-kbl-8809g: NOTRUN -> [SKIP][10] ([fdo#109271] / [i915#4613]) +3 similar issues
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22556/fi-kbl-8809g/igt@gem_lmem_swapping@random-engines.html
* igt@kms_chamelium@hdmi-edid-read:
- fi-kbl-8809g: NOTRUN -> [SKIP][11] ([fdo#109271] / [fdo#111827]) +8 similar issues
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22556/fi-kbl-8809g/igt@kms_chamelium@hdmi-edid-read.html
* igt@kms_chamelium@hdmi-hpd-fast:
- fi-icl-u2: NOTRUN -> [SKIP][12] ([fdo#111827]) +8 similar issues
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22556/fi-icl-u2/igt@kms_chamelium@hdmi-hpd-fast.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- fi-icl-u2: NOTRUN -> [SKIP][13] ([fdo#109278]) +2 similar issues
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22556/fi-icl-u2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_force_connector_basic@force-load-detect:
- fi-icl-u2: NOTRUN -> [SKIP][14] ([fdo#109285])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22556/fi-icl-u2/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-d:
- fi-kbl-8809g: NOTRUN -> [SKIP][15] ([fdo#109271] / [i915#533])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22556/fi-kbl-8809g/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-d.html
* igt@kms_psr@cursor_plane_move:
- fi-kbl-8809g: NOTRUN -> [SKIP][16] ([fdo#109271]) +55 similar issues
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22556/fi-kbl-8809g/igt@kms_psr@cursor_plane_move.html
* igt@kms_setmode@basic-clone-single-crtc:
- fi-icl-u2: NOTRUN -> [SKIP][17] ([i915#3555])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22556/fi-icl-u2/igt@kms_setmode@basic-clone-single-crtc.html
* igt@prime_vgem@basic-userptr:
- fi-icl-u2: NOTRUN -> [SKIP][18] ([i915#3301])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22556/fi-icl-u2/igt@prime_vgem@basic-userptr.html
#### Possible fixes ####
* igt@gem_exec_suspend@basic-s3@smem:
- {fi-rkl-11600}: [INCOMPLETE][19] ([i915#5127]) -> [PASS][20]
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11358/fi-rkl-11600/igt@gem_exec_suspend@basic-s3@smem.html
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22556/fi-rkl-11600/igt@gem_exec_suspend@basic-s3@smem.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[fdo#109278]: https://bugs.freedesktop.org/show_bug.cgi?id=109278
[fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285
[fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315
[fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
[i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
[i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190
[i915#2943]: https://gitlab.freedesktop.org/drm/intel/issues/2943
[i915#3012]: https://gitlab.freedesktop.org/drm/intel/issues/3012
[i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282
[i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291
[i915#3301]: https://gitlab.freedesktop.org/drm/intel/issues/3301
[i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
[i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
[i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070
[i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098
[i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103
[i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
[i915#4962]: https://gitlab.freedesktop.org/drm/intel/issues/4962
[i915#5127]: https://gitlab.freedesktop.org/drm/intel/issues/5127
[i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533
Build changes
-------------
* Linux: CI_DRM_11358 -> Patchwork_22556
CI-20190529: 20190529
CI_DRM_11358: 478c7a5a20f2c2a0e694418a6c0d3f412db97837 @ git://anongit.freedesktop.org/gfx-ci/linux
IGT_6380: 5d9ef79ab61fc4e9abc8b565f298e0515265e616 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
Patchwork_22556: 2c7d99504de3ab55da801f9a4899c6917980b29c @ git://anongit.freedesktop.org/gfx-ci/linux
== Linux commits ==
2c7d99504de3 drm/i915/display: Do not re-enable PSR after it was marked as not reliable
ec77e235dd18 drm/i915/display: Fix HPD short pulse handling for eDP
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22556/index.html
[-- Attachment #2: Type: text/html, Size: 8670 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* [Intel-gfx] ✗ Fi.CI.IGT: failure for series starting with [v2,1/2] drm/i915/display: Fix HPD short pulse handling for eDP (rev2)
2022-03-11 18:51 [Intel-gfx] [PATCH v2 1/2] drm/i915/display: Fix HPD short pulse handling for eDP José Roberto de Souza
` (2 preceding siblings ...)
2022-03-14 14:45 ` [Intel-gfx] ✓ Fi.CI.BAT: success for series starting with [v2,1/2] drm/i915/display: Fix HPD short pulse handling for eDP (rev2) Patchwork
@ 2022-03-14 17:38 ` Patchwork
3 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2022-03-14 17:38 UTC (permalink / raw)
To: José Roberto de Souza; +Cc: intel-gfx
[-- Attachment #1: Type: text/plain, Size: 30315 bytes --]
== Series Details ==
Series: series starting with [v2,1/2] drm/i915/display: Fix HPD short pulse handling for eDP (rev2)
URL : https://patchwork.freedesktop.org/series/101299/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_11358_full -> Patchwork_22556_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with Patchwork_22556_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in Patchwork_22556_full, please notify your bug team to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (12 -> 12)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in Patchwork_22556_full:
### IGT changes ###
#### Possible regressions ####
* igt@drm_mm@all@insert:
- shard-skl: [PASS][1] -> [INCOMPLETE][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11358/shard-skl3/igt@drm_mm@all@insert.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22556/shard-skl5/igt@drm_mm@all@insert.html
* igt@kms_ccs@pipe-a-crc-primary-basic-yf_tiled_ccs:
- shard-glk: [PASS][3] -> [FAIL][4]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11358/shard-glk1/igt@kms_ccs@pipe-a-crc-primary-basic-yf_tiled_ccs.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22556/shard-glk2/igt@kms_ccs@pipe-a-crc-primary-basic-yf_tiled_ccs.html
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* igt@gem_softpin@allocator-evict@bcs0:
- {shard-rkl}: [PASS][5] -> [INCOMPLETE][6]
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11358/shard-rkl-1/igt@gem_softpin@allocator-evict@bcs0.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22556/shard-rkl-5/igt@gem_softpin@allocator-evict@bcs0.html
Known issues
------------
Here are the changes found in Patchwork_22556_full that come from known issues:
### CI changes ###
#### Issues hit ####
* boot:
- shard-apl: ([PASS][7], [PASS][8], [PASS][9], [PASS][10], [PASS][11], [PASS][12], [PASS][13], [PASS][14], [PASS][15], [PASS][16], [PASS][17], [PASS][18], [PASS][19], [PASS][20], [PASS][21], [PASS][22], [PASS][23], [PASS][24], [PASS][25], [PASS][26], [PASS][27], [PASS][28], [PASS][29], [PASS][30], [PASS][31]) -> ([FAIL][32], [PASS][33], [PASS][34], [PASS][35], [PASS][36], [PASS][37], [PASS][38], [PASS][39], [PASS][40], [PASS][41], [PASS][42], [PASS][43], [PASS][44], [PASS][45], [PASS][46], [PASS][47], [PASS][48], [PASS][49], [PASS][50], [PASS][51], [PASS][52], [PASS][53], [PASS][54], [PASS][55], [PASS][56]) ([i915#4386])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11358/shard-apl1/boot.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11358/shard-apl1/boot.html
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11358/shard-apl1/boot.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11358/shard-apl1/boot.html
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11358/shard-apl2/boot.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11358/shard-apl2/boot.html
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11358/shard-apl2/boot.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11358/shard-apl2/boot.html
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11358/shard-apl3/boot.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11358/shard-apl3/boot.html
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11358/shard-apl4/boot.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11358/shard-apl4/boot.html
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11358/shard-apl4/boot.html
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11358/shard-apl6/boot.html
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11358/shard-apl6/boot.html
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11358/shard-apl6/boot.html
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11358/shard-apl7/boot.html
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11358/shard-apl7/boot.html
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11358/shard-apl7/boot.html
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11358/shard-apl8/boot.html
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11358/shard-apl8/boot.html
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11358/shard-apl8/boot.html
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11358/shard-apl8/boot.html
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11358/shard-apl8/boot.html
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11358/shard-apl8/boot.html
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22556/shard-apl1/boot.html
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22556/shard-apl1/boot.html
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22556/shard-apl1/boot.html
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22556/shard-apl1/boot.html
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22556/shard-apl2/boot.html
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22556/shard-apl2/boot.html
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22556/shard-apl2/boot.html
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22556/shard-apl3/boot.html
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22556/shard-apl3/boot.html
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22556/shard-apl3/boot.html
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22556/shard-apl4/boot.html
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22556/shard-apl4/boot.html
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22556/shard-apl4/boot.html
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22556/shard-apl4/boot.html
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22556/shard-apl6/boot.html
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22556/shard-apl6/boot.html
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22556/shard-apl6/boot.html
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22556/shard-apl7/boot.html
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22556/shard-apl7/boot.html
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22556/shard-apl7/boot.html
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22556/shard-apl7/boot.html
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22556/shard-apl8/boot.html
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22556/shard-apl8/boot.html
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22556/shard-apl8/boot.html
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22556/shard-apl8/boot.html
#### Possible fixes ####
* boot:
- shard-glk: ([PASS][57], [PASS][58], [PASS][59], [PASS][60], [PASS][61], [PASS][62], [PASS][63], [PASS][64], [PASS][65], [PASS][66], [PASS][67], [PASS][68], [PASS][69], [PASS][70], [PASS][71], [FAIL][72], [PASS][73], [PASS][74], [PASS][75], [PASS][76], [PASS][77], [PASS][78], [PASS][79], [PASS][80], [PASS][81]) ([i915#4392]) -> ([PASS][82], [PASS][83], [PASS][84], [PASS][85], [PASS][86], [PASS][87], [PASS][88], [PASS][89], [PASS][90], [PASS][91], [PASS][92], [PASS][93], [PASS][94], [PASS][95], [PASS][96], [PASS][97], [PASS][98], [PASS][99], [PASS][100], [PASS][101], [PASS][102], [PASS][103], [PASS][104], [PASS][105], [PASS][106])
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11358/shard-glk9/boot.html
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11358/shard-glk9/boot.html
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11358/shard-glk8/boot.html
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11358/shard-glk8/boot.html
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11358/shard-glk8/boot.html
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11358/shard-glk7/boot.html
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11358/shard-glk7/boot.html
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11358/shard-glk7/boot.html
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11358/shard-glk6/boot.html
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11358/shard-glk6/boot.html
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11358/shard-glk6/boot.html
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11358/shard-glk5/boot.html
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11358/shard-glk5/boot.html
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11358/shard-glk4/boot.html
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11358/shard-glk4/boot.html
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11358/shard-glk4/boot.html
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11358/shard-glk4/boot.html
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11358/shard-glk3/boot.html
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11358/shard-glk3/boot.html
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11358/shard-glk3/boot.html
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11358/shard-glk2/boot.html
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11358/shard-glk2/boot.html
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11358/shard-glk2/boot.html
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11358/shard-glk1/boot.html
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11358/shard-glk1/boot.html
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22556/shard-glk1/boot.html
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22556/shard-glk1/boot.html
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22556/shard-glk1/boot.html
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22556/shard-glk2/boot.html
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22556/shard-glk2/boot.html
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22556/shard-glk3/boot.html
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22556/shard-glk3/boot.html
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22556/shard-glk3/boot.html
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22556/shard-glk4/boot.html
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22556/shard-glk4/boot.html
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22556/shard-glk4/boot.html
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22556/shard-glk5/boot.html
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22556/shard-glk5/boot.html
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22556/shard-glk5/boot.html
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22556/shard-glk6/boot.html
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22556/shard-glk6/boot.html
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22556/shard-glk6/boot.html
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22556/shard-glk7/boot.html
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22556/shard-glk7/boot.html
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22556/shard-glk7/boot.html
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22556/shard-glk8/boot.html
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22556/shard-glk8/boot.html
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22556/shard-glk8/boot.html
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22556/shard-glk9/boot.html
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22556/shard-glk9/boot.html
- {shard-rkl}: ([PASS][107], [PASS][108], [PASS][109], [PASS][110], [PASS][111], [PASS][112], [PASS][113], [FAIL][114], [PASS][115], [PASS][116], [PASS][117], [PASS][118], [PASS][119], [PASS][120], [PASS][121], [PASS][122], [PASS][123], [PASS][124], [PASS][125], [PASS][126], [PASS][127]) ([i915#5131]) -> ([PASS][128], [PASS][129], [PASS][130], [PASS][131], [PASS][132], [PASS][133], [PASS][134], [PASS][135], [PASS][136], [PASS][137], [PASS][138], [PASS][139], [PASS][140], [PASS][141], [PASS][142], [PASS][143], [PASS][144], [PASS][145], [PASS][146], [PASS][147], [PASS][148])
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11358/shard-rkl-2/boot.html
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11358/shard-rkl-1/boot.html
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11358/shard-rkl-1/boot.html
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11358/shard-rkl-1/boot.html
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11358/shard-rkl-1/boot.html
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11358/shard-rkl-6/boot.html
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11358/shard-rkl-6/boot.html
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11358/shard-rkl-5/boot.html
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11358/shard-rkl-5/boot.html
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11358/shard-rkl-5/boot.html
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11358/shard-rkl-5/boot.html
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11358/shard-rkl-5/boot.html
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11358/shard-rkl-5/boot.html
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11358/shard-rkl-4/boot.html
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11358/shard-rkl-4/boot.html
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11358/shard-rkl-4/boot.html
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11358/shard-rkl-2/boot.html
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11358/shard-rkl-2/boot.html
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11358/shard-rkl-2/boot.html
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11358/shard-rkl-2/boot.html
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11358/shard-rkl-2/boot.html
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22556/shard-rkl-4/boot.html
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22556/shard-rkl-1/boot.html
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22556/shard-rkl-6/boot.html
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22556/shard-rkl-6/boot.html
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22556/shard-rkl-6/boot.html
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22556/shard-rkl-5/boot.html
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22556/shard-rkl-5/boot.html
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22556/shard-rkl-5/boot.html
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22556/shard-rkl-4/boot.html
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22556/shard-rkl-4/boot.html
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22556/shard-rkl-4/boot.html
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22556/shard-rkl-2/boot.html
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22556/shard-rkl-2/boot.html
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22556/shard-rkl-2/boot.html
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22556/shard-rkl-2/boot.html
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22556/shard-rkl-2/boot.html
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22556/shard-rkl-2/boot.html
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22556/shard-rkl-1/boot.html
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22556/shard-rkl-1/boot.html
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22556/shard-rkl-1/boot.html
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22556/shard-rkl-1/boot.html
### IGT changes ###
#### Issues hit ####
* igt@gem_ccs@block-copy-compressed:
- shard-tglb: NOTRUN -> [SKIP][149] ([i915#5325])
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22556/shard-tglb1/igt@gem_ccs@block-copy-compressed.html
* igt@gem_create@create-massive:
- shard-iclb: NOTRUN -> [DMESG-WARN][150] ([i915#4991]) +1 similar issue
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22556/shard-iclb2/igt@gem_create@create-massive.html
* igt@gem_exec_fair@basic-none-share@rcs0:
- shard-iclb: [PASS][151] -> [FAIL][152] ([i915#2842])
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11358/shard-iclb5/igt@gem_exec_fair@basic-none-share@rcs0.html
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22556/shard-iclb7/igt@gem_exec_fair@basic-none-share@rcs0.html
* igt@gem_exec_fair@basic-none@vcs0:
- shard-kbl: [PASS][153] -> [FAIL][154] ([i915#2842]) +4 similar issues
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11358/shard-kbl3/igt@gem_exec_fair@basic-none@vcs0.html
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22556/shard-kbl7/igt@gem_exec_fair@basic-none@vcs0.html
* igt@gem_exec_fair@basic-none@vcs1:
- shard-iclb: NOTRUN -> [FAIL][155] ([i915#2842])
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22556/shard-iclb4/igt@gem_exec_fair@basic-none@vcs1.html
* igt@gem_exec_params@secure-non-root:
- shard-iclb: NOTRUN -> [SKIP][156] ([fdo#112283])
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22556/shard-iclb5/igt@gem_exec_params@secure-non-root.html
* igt@gem_exec_suspend@basic-s3@smem:
- shard-apl: [PASS][157] -> [DMESG-WARN][158] ([i915#180])
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11358/shard-apl1/igt@gem_exec_suspend@basic-s3@smem.html
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22556/shard-apl7/igt@gem_exec_suspend@basic-s3@smem.html
* igt@gem_huc_copy@huc-copy:
- shard-tglb: [PASS][159] -> [SKIP][160] ([i915#2190])
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11358/shard-tglb8/igt@gem_huc_copy@huc-copy.html
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22556/shard-tglb6/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_swapping@heavy-verify-multi:
- shard-apl: NOTRUN -> [SKIP][161] ([fdo#109271] / [i915#4613])
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22556/shard-apl4/igt@gem_lmem_swapping@heavy-verify-multi.html
* igt@gem_lmem_swapping@random-engines:
- shard-iclb: NOTRUN -> [SKIP][162] ([i915#4613]) +1 similar issue
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22556/shard-iclb2/igt@gem_lmem_swapping@random-engines.html
* igt@gem_lmem_swapping@verify-random:
- shard-skl: NOTRUN -> [SKIP][163] ([fdo#109271] / [i915#4613]) +1 similar issue
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22556/shard-skl7/igt@gem_lmem_swapping@verify-random.html
* igt@gem_ppgtt@flink-and-close-vma-leak:
- shard-glk: [PASS][164] -> [FAIL][165] ([i915#644])
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11358/shard-glk2/igt@gem_ppgtt@flink-and-close-vma-leak.html
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22556/shard-glk1/igt@gem_ppgtt@flink-and-close-vma-leak.html
* igt@gem_pxp@reject-modify-context-protection-off-3:
- shard-iclb: NOTRUN -> [SKIP][166] ([i915#4270]) +2 similar issues
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22556/shard-iclb7/igt@gem_pxp@reject-modify-context-protection-off-3.html
* igt@gem_pxp@verify-pxp-stale-ctx-execution:
- shard-tglb: NOTRUN -> [SKIP][167] ([i915#4270])
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22556/shard-tglb1/igt@gem_pxp@verify-pxp-stale-ctx-execution.html
* igt@gem_render_copy@y-tiled-mc-ccs-to-y-tiled-ccs:
- shard-iclb: NOTRUN -> [SKIP][168] ([i915#768]) +1 similar issue
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22556/shard-iclb5/igt@gem_render_copy@y-tiled-mc-ccs-to-y-tiled-ccs.html
* igt@gem_userptr_blits@unsync-overlap:
- shard-iclb: NOTRUN -> [SKIP][169] ([i915#3297])
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22556/shard-iclb5/igt@gem_userptr_blits@unsync-overlap.html
* igt@gen7_exec_parse@basic-offset:
- shard-tglb: NOTRUN -> [SKIP][170] ([fdo#109289])
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22556/shard-tglb1/igt@gen7_exec_parse@basic-offset.html
* igt@gen9_exec_parse@batch-zero-length:
- shard-iclb: NOTRUN -> [SKIP][171] ([i915#2856]) +2 similar issues
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22556/shard-iclb7/igt@gen9_exec_parse@batch-zero-length.html
* igt@i915_pm_dc@dc6-psr:
- shard-skl: [PASS][172] -> [FAIL][173] ([i915#454])
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11358/shard-skl8/igt@i915_pm_dc@dc6-psr.html
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22556/shard-skl10/igt@i915_pm_dc@dc6-psr.html
* igt@i915_pm_rpm@modeset-non-lpsp:
- shard-iclb: NOTRUN -> [SKIP][174] ([fdo#110892])
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22556/shard-iclb7/igt@i915_pm_rpm@modeset-non-lpsp.html
* igt@kms_addfb_basic@invalid-get-prop-any:
- shard-skl: [PASS][175] -> [DMESG-WARN][176] ([i915#1982])
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11358/shard-skl4/igt@kms_addfb_basic@invalid-get-prop-any.html
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22556/shard-skl2/igt@kms_addfb_basic@invalid-get-prop-any.html
* igt@kms_addfb_basic@invalid-smem-bo-on-discrete:
- shard-iclb: NOTRUN -> [SKIP][177] ([i915#3826])
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22556/shard-iclb5/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html
* igt@kms_atomic@atomic_plane_damage:
- shard-iclb: NOTRUN -> [SKIP][178] ([i915#4765])
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22556/shard-iclb7/igt@kms_atomic@atomic_plane_damage.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-270:
- shard-iclb: NOTRUN -> [SKIP][179] ([i915#5286]) +4 similar issues
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22556/shard-iclb4/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-270:
- shard-tglb: NOTRUN -> [SKIP][180] ([i915#5286])
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22556/shard-tglb1/igt@kms_big_fb@4-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-16bpp-rotate-270:
- shard-iclb: NOTRUN -> [SKIP][181] ([fdo#110725] / [fdo#111614]) +1 similar issue
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22556/shard-iclb5/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-skl: NOTRUN -> [FAIL][182] ([i915#3743])
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22556/shard-skl7/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
- shard-apl: NOTRUN -> [SKIP][183] ([fdo#109271] / [i915#3777]) +1 similar issue
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22556/shard-apl3/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@y-tiled-32bpp-rotate-0:
- shard-glk: [PASS][184] -> [DMESG-WARN][185] ([i915#118]) +2 similar issues
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11358/shard-glk1/igt@kms_big_fb@y-tiled-32bpp-rotate-0.html
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22556/shard-glk2/igt@kms_big_fb@y-tiled-32bpp-rotate-0.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip:
- shard-glk: NOTRUN -> [SKIP][186] ([fdo#109271] / [i915#3777])
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22556/shard-glk9/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-async-flip:
- shard-iclb: NOTRUN -> [SKIP][187] ([fdo#110723])
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22556/shard-iclb7/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html
* igt@kms_ccs@pipe-a-crc-primary-basic-yf_tiled_ccs:
- shard-tglb: NOTRUN -> [SKIP][188] ([fdo#111615] / [i915#3689])
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22556/shard-tglb1/igt@kms_ccs@pipe-a-crc-primary-basic-yf_tiled_ccs.html
* igt@kms_ccs@pipe-a-crc-primary-rotation-180-y_tiled_gen12_mc_ccs:
- shard-kbl: NOTRUN -> [SKIP][189] ([fdo#109271] / [i915#3886])
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22556/shard-kbl1/igt@kms_ccs@pipe-a-crc-primary-rotation-180-y_tiled_gen12_mc_ccs.html
* igt@kms_ccs@pipe-c-bad-pixel-format-y_tiled_gen12_rc_ccs_cc:
- shard-glk: NOTRUN -> [SKIP][190] ([fdo#109271] / [i915#3886])
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22556/shard-glk9/igt@kms_ccs@pipe-c-bad-pixel-format-y_tiled_gen12_rc_ccs_cc.html
* igt@kms_ccs@pipe-c-bad-rotation-90-y_tiled_gen12_mc_ccs:
- shard-apl: NOTRUN -> [SKIP][191] ([fdo#109271] / [i915#3886]) +4 similar issues
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22556/shard-apl1/igt@kms_ccs@pipe-c-bad-rotation-90-y_tiled_gen12_mc_ccs.html
* igt@kms_ccs@pipe-c-ccs-on-another-bo-y_tiled_gen12_rc_ccs_cc:
- shard-iclb: NOTRUN -> [SKIP][192] ([fdo#109278] / [i915#3886]) +6 similar issues
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22556/shard-iclb4/igt@kms_ccs@pipe-c-ccs-on-another-bo-y_tiled_gen12_rc_ccs_cc.html
- shard-skl: NOTRUN -> [SKIP][193] ([fdo#109271] / [i915#3886]) +4 similar issues
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22556/shard-skl6/igt@kms_ccs@pipe-c-ccs-on-another-bo-y_tiled_gen12_rc_ccs_cc.html
* igt@kms_ccs@pipe-c-random-ccs-data-y_tiled_gen12_rc_ccs:
- shard-apl: NOTRUN -> [SKIP][194] ([fdo#109271]) +113 similar issues
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22556/shard-apl1/igt@kms_ccs@pipe-c-random-ccs-data-y_tiled_gen12_rc_ccs.html
* igt@kms_ccs@pipe-d-bad-aux-stride-y_tiled_gen12_mc_ccs:
- shard-tglb: NOTRUN -> [SKIP][195] ([i915#3689])
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22556/shard-tglb1/igt@kms_ccs@pipe-d-bad-aux-stride-y_tiled_gen12_mc_ccs.html
* igt@kms_chamelium@dp-crc-fast:
- shard-skl: NOTRUN -> [SKIP][196] ([fdo#109271] / [fdo#111827] / [i915#1888])
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22556/shard-skl7/igt@kms_chamelium@dp-crc-fast.html
* igt@kms_chamelium@dp-hpd-storm-disable:
- shard-glk: NOTRUN -> [SKIP][197] ([fdo#109271] / [fdo#111827]) +2 similar issues
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22556/shard-glk9/igt@kms_chamelium@dp-hpd-storm-disable.html
* igt@kms_chamelium@hdmi-audio:
- shard-iclb: NOTRUN -> [SKIP][198] ([fdo#109284] / [fdo#111827]) +4 similar issues
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22556/shard-iclb5/igt@kms_chamelium@hdmi-audio.html
* igt@kms_chamelium@hdmi-crc-multiple:
- shard-kbl: NOTRUN -> [SKIP][199] ([fdo#109271] / [fdo#111827])
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22556/shard-kbl1/igt@kms_chamelium@hdmi-crc-multiple.html
* igt@kms_chamelium@vga-hpd:
- shard-skl: NOTRUN -> [SKIP][200] ([fdo#109271] / [fdo#111827]) +9 similar issues
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22556/shard-skl9/igt@kms_chamelium@vga-hpd.html
* igt@kms_color@pipe-d-ctm-green-to-red:
- shard-iclb: NOTRUN -> [SKIP][201] ([fdo#109278] / [i915#1149]) +1 similar issue
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22556/shard-iclb7/igt@kms_color@pipe-d-ctm-green-to-red.html
* igt@kms_color_chamelium@pipe-a-ctm-limited-range:
- shard-apl: NOTRUN -> [SKIP][202] ([fdo#109271] / [fdo#111827]) +5 similar issues
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22556/shard-apl3/igt@kms_color_chamelium@pipe-a-ctm-limited-range.html
* igt@kms_color_chamelium@pipe-d-ctm-green-to-red:
- shard-iclb: NOTRUN -> [SKIP][203] ([fdo#109278] / [fdo#109284] / [fdo#111827]) +1 similar issue
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22556/shard-iclb8/igt@kms_color_chamelium@pipe-d-ctm-green-to-red.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-iclb: NOTRUN -> [SKIP][204] ([i915#3116]) +1 similar issue
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22556/shard-iclb7/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_cursor_crc@pipe-a-cursor-128x42-offscreen:
- shard-glk: [PASS][205] -> [FAIL][206] ([i915#3444])
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11358/shard-glk7/igt@kms_cursor_crc@pipe-a-cursor-128x42-offscreen.html
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22556/shard-glk3/igt@kms_cursor_crc@pipe-a-cursor-128x42-offscreen.html
* igt@kms_cursor_crc@pipe-a-cursor-max-size-random:
- shard-tglb: NOTRUN -> [SKIP][207] ([i915#3359])
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22556/shard-tglb1/igt@kms_cursor_crc@pipe-a-cursor-max-size-random.html
* igt@kms_cursor_crc@pipe-b-cursor-512x512-slidi
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22556/index.html
[-- Attachment #2: Type: text/html, Size: 32538 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [Intel-gfx] [PATCH v2 2/2] drm/i915/display: Do not re-enable PSR after it was marked as not reliable
2022-03-11 18:51 ` [Intel-gfx] [PATCH v2 2/2] drm/i915/display: Do not re-enable PSR after it was marked as not reliable José Roberto de Souza
@ 2022-03-15 13:29 ` Hogander, Jouni
0 siblings, 0 replies; 6+ messages in thread
From: Hogander, Jouni @ 2022-03-15 13:29 UTC (permalink / raw)
To: intel-gfx@lists.freedesktop.org, Souza, Jose; +Cc: Lin, Charlton
On Fri, 2022-03-11 at 10:51 -0800, José Roberto de Souza wrote:
> If a error happens and sink_not_reliable is set, PSR should be
> disabled
> for good but that is not happening.
> It would be disabled by the function handling the PSR error but then
> on the next fastset it would be enabled again in
> _intel_psr_post_plane_update().
> It would only be disabled for good in the next modeset where has_psr
> will be set false.
>
> v2:
> - release psr lock before continue
Reviewed-by: Jouni Högander <jouni.hogander@intel.com>
>
> Fixes: 9ce5884e5139 ("drm/i915/display: Only keep PSR enabled if
> there is active planes")
> Reported-by: Khaled Almahallawy <khaled.almahallawy@intel.com>
> Reported-by: Charlton Lin <charlton.lin@intel.com>
> Cc: Jouni Högander <jouni.hogander@intel.com>
> Signed-off-by: José Roberto de Souza <jose.souza@intel.com>
> ---
> drivers/gpu/drm/i915/display/intel_psr.c | 4 ++++
> 1 file changed, 4 insertions(+)
>
> diff --git a/drivers/gpu/drm/i915/display/intel_psr.c
> b/drivers/gpu/drm/i915/display/intel_psr.c
> index bbd581ed08159..80002ca6a6ebe 100644
> --- a/drivers/gpu/drm/i915/display/intel_psr.c
> +++ b/drivers/gpu/drm/i915/display/intel_psr.c
> @@ -1853,6 +1853,9 @@ static void _intel_psr_post_plane_update(const
> struct intel_atomic_state *state,
>
> mutex_lock(&psr->lock);
>
> + if (psr->sink_not_reliable)
> + goto exit;
> +
> drm_WARN_ON(&dev_priv->drm, psr->enabled &&
> !crtc_state->active_planes);
>
> /* Only enable if there is active planes */
> @@ -1863,6 +1866,7 @@ static void _intel_psr_post_plane_update(const
> struct intel_atomic_state *state,
> if (crtc_state->crc_enabled && psr->enabled)
> psr_force_hw_tracking_exit(intel_dp);
>
> +exit:
> mutex_unlock(&psr->lock);
> }
> }
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2022-03-15 13:29 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-03-11 18:51 [Intel-gfx] [PATCH v2 1/2] drm/i915/display: Fix HPD short pulse handling for eDP José Roberto de Souza
2022-03-11 18:51 ` [Intel-gfx] [PATCH v2 2/2] drm/i915/display: Do not re-enable PSR after it was marked as not reliable José Roberto de Souza
2022-03-15 13:29 ` Hogander, Jouni
2022-03-11 21:20 ` [Intel-gfx] ✗ Fi.CI.BAT: failure for series starting with [v2,1/2] drm/i915/display: Fix HPD short pulse handling for eDP Patchwork
2022-03-14 14:45 ` [Intel-gfx] ✓ Fi.CI.BAT: success for series starting with [v2,1/2] drm/i915/display: Fix HPD short pulse handling for eDP (rev2) Patchwork
2022-03-14 17:38 ` [Intel-gfx] ✗ Fi.CI.IGT: failure " Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox