[PATCH 15/15] drm/i915/dsc: Allow DSC only with fractional bpp when forced from debugfs
Ankit Nautiyal
ankit.k.nautiyal at intel.com
Wed May 3 11:06:53 UTC 2023
From: Swati Sharma <swati2.sharma at intel.com>
If force_dsc_fractional_bpp_en is set through debugfs allow DSC iff
compressed bpp is fractional. Continue if we computed compressed bpp is
computed as integer.
Signed-off-by: Swati Sharma <swati2.sharma at intel.com>
---
drivers/gpu/drm/i915/display/intel_dp.c | 8 ++++++++
1 file changed, 8 insertions(+)
diff --git a/drivers/gpu/drm/i915/display/intel_dp.c b/drivers/gpu/drm/i915/display/intel_dp.c
index 6c35f7466c0a..cf232c6d49ce 100644
--- a/drivers/gpu/drm/i915/display/intel_dp.c
+++ b/drivers/gpu/drm/i915/display/intel_dp.c
@@ -1708,6 +1708,9 @@ static int dsc_compute_compressed_bpp(struct intel_dp *intel_dp,
for (compressed_bppx16 = dsc_max_bppx16;
compressed_bppx16 >= dsc_min_bppx16;
compressed_bppx16 -= bppx16_step) {
+ if (intel_dp->force_dsc_fractional_bpp_en &&
+ !dsc_fractional_compressed_bpp(compressed_bppx16))
+ continue;
ret = dsc_compute_link_config(intel_dp,
pipe_config,
limits,
@@ -1716,6 +1719,11 @@ static int dsc_compute_compressed_bpp(struct intel_dp *intel_dp,
timeslots);
if (ret == 0) {
pipe_config->dsc.compressed_bpp = compressed_bppx16;
+
+ if (intel_dp->force_dsc_fractional_bpp_en &&
+ dsc_fractional_compressed_bpp(compressed_bppx16))
+ drm_dbg_kms(&dev_priv->drm, "Forcing DSC fractional bpp\n");
+
return 0;
}
}
--
2.25.1
More information about the Intel-gfx-trybot
mailing list