Intel-XE Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] drm/i915/dp: Fix the computation for compressed_bpp for DISPLAY < 13
@ 2024-03-05  5:44 Ankit Nautiyal
  2024-03-05  6:53 ` ✓ CI.Patch_applied: success for " Patchwork
                   ` (7 more replies)
  0 siblings, 8 replies; 10+ messages in thread
From: Ankit Nautiyal @ 2024-03-05  5:44 UTC (permalink / raw)
  To: intel-gfx
  Cc: intel-xe, ankit.k.nautiyal, stanislav.lisovskiy, jani.nikula,
	stable

For DISPLAY < 13, compressed bpp is chosen from a list of
supported compressed bpps. Fix the condition to choose the
appropriate compressed bpp from the list.

Fixes: 1c56e9a39833 ("drm/i915/dp: Get optimal link config to have best compressed bpp")
Cc: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
Cc: Stanislav Lisovskiy <stanislav.lisovskiy@intel.com>
Cc: Jani Nikula <jani.nikula@linux.intel.com>
Cc: <stable@vger.kernel.org> # v6.7+
Closes: https://gitlab.freedesktop.org/drm/intel/-/issues/10162
Signed-off-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
---
 drivers/gpu/drm/i915/display/intel_dp.c | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/drivers/gpu/drm/i915/display/intel_dp.c b/drivers/gpu/drm/i915/display/intel_dp.c
index e13121dc3a03..d579195f84ee 100644
--- a/drivers/gpu/drm/i915/display/intel_dp.c
+++ b/drivers/gpu/drm/i915/display/intel_dp.c
@@ -1918,8 +1918,9 @@ icl_dsc_compute_link_config(struct intel_dp *intel_dp,
 	dsc_max_bpp = min(dsc_max_bpp, pipe_bpp - 1);
 
 	for (i = 0; i < ARRAY_SIZE(valid_dsc_bpp); i++) {
-		if (valid_dsc_bpp[i] < dsc_min_bpp ||
-		    valid_dsc_bpp[i] > dsc_max_bpp)
+		if (valid_dsc_bpp[i] < dsc_min_bpp)
+			continue;
+		if (valid_dsc_bpp[i] > dsc_max_bpp)
 			break;
 
 		ret = dsc_compute_link_config(intel_dp,
-- 
2.40.1


^ permalink raw reply related	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2024-04-02  5:58 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-03-05  5:44 [PATCH] drm/i915/dp: Fix the computation for compressed_bpp for DISPLAY < 13 Ankit Nautiyal
2024-03-05  6:53 ` ✓ CI.Patch_applied: success for " Patchwork
2024-03-05  6:53 ` ✓ CI.checkpatch: " Patchwork
2024-03-05  6:54 ` ✓ CI.KUnit: " Patchwork
2024-03-05  7:04 ` ✓ CI.Build: " Patchwork
2024-03-05  7:05 ` ✓ CI.Hooks: " Patchwork
2024-03-05  7:06 ` ✗ CI.checksparse: warning " Patchwork
2024-03-05  7:26 ` ✓ CI.BAT: success " Patchwork
2024-03-27  4:05 ` [PATCH] " Kandpal, Suraj
2024-04-02  5:57   ` Nautiyal, Ankit K

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox