From: Imre Deak <imre.deak@intel.com>
To: Thomas Zimmermann <tzimmermann@suse.de>,
Maarten Lankhorst <maarten.lankhorst@linux.intel.com>,
Maxime Ripard <mripard@kernel.org>
Cc: "Ankit Nautiyal" <ankit.k.nautiyal@intel.com>,
"Luca Coelho" <luciano.coelho@intel.com>,
"Jouni Högander" <jouni.hogander@intel.com>,
"Vinod Govindapillai" <vinod.govindapillai@intel.com>,
dri-devel@lists.freedesktop.org, intel-gfx@lists.freedesktop.org,
intel-xe@lists.freedesktop.org
Subject: Re: [PATCH 00/16] drm/i915/dp: Clean up link BW/DSC slice config computation (fixes)
Date: Tue, 16 Dec 2025 19:30:40 +0200 [thread overview]
Message-ID: <aUGW6XAOyXlhfy4H@ideak-desk> (raw)
In-Reply-To: <20251215192357.172201-1-imre.deak@intel.com>
Hi Thomas, Maarten, Maxime,
could you ack merging patch 1 and 2 in this patchset containing changes
in drm_dp_helper.c via the Intel trees? They fix an issue in the i915/xe
drivers' DP DSC slice-count handling and do not affect other drivers.
Thanks,
Imre
On Mon, Dec 15, 2025 at 09:23:40PM +0200, Imre Deak wrote:
> This is the first part of patchset [1] containing only the fixes for the
> link BW and DSC slice computation. The remaining patches in [1] refactor
> the link BW and DSC slice computation simplifying these, to be sent as a
> follow-up to this patchset.
>
> I moved patches 13-15 in [1] later in the patchset to be sent as part of
> the follow-up, as these patches are not a dependency for the fixes in
> this patchset.
>
> [1] https://lore.kernel.org/all/20251127175023.1522538-1-imre.deak@intel.com
>
> Cc: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
> Cc: Luca Coelho <luciano.coelho@intel.com>
> Cc: Jouni Högander <jouni.hogander@intel.com>
> Cc: Vinod Govindapillai <vinod.govindapillai@intel.com>
>
> Imre Deak (16):
> drm/dp: Parse all DSC slice count caps for eDP 1.5
> drm/dp: Add drm_dp_dsc_sink_slice_count_mask()
> drm/i915/dp: Fix DSC sink's slice count capability check
> drm/i915/dp: Return a fixed point BPP value from intel_dp_output_bpp()
> drm/i915/dp: Use a mode's crtc_clock vs. clock during state
> computation
> drm/i915/dp: Factor out intel_dp_link_bw_overhead()
> drm/i915/dp: Fix BW check in is_bw_sufficient_for_dsc_config()
> drm/i915/dp: Use the effective data rate for DP BW calculation
> drm/i915/dp: Use the effective data rate for DP compressed BW
> calculation
> drm/i915/dp: Account with MST, SSC BW overhead for uncompressed DP-MST
> stream BW
> drm/i915/dp: Account with DSC BW overhead for compressed DP-SST stream
> BW
> drm/i915/dp: Account with pipe joiner max compressed BPP limit for
> DP-MST and eDP
> drm/i915/dp: Fail state computation for invalid min/max link BPP
> values
> drm/i915/dp: Fail state computation for invalid max throughput BPP
> value
> drm/i915/dp: Fail state computation for invalid max sink compressed
> BPP value
> drm/i915/dp: Fail state computation for invalid DSC source input BPP
> values
>
> drivers/gpu/drm/display/drm_dp_helper.c | 103 ++++++---
> drivers/gpu/drm/i915/display/intel_dp.c | 211 ++++++++++++------
> drivers/gpu/drm/i915/display/intel_dp.h | 9 +-
> .../drm/i915/display/intel_dp_link_training.c | 4 +-
> drivers/gpu/drm/i915/display/intel_dp_mst.c | 33 ++-
> include/drm/display/drm_dp_helper.h | 3 +
> 6 files changed, 234 insertions(+), 129 deletions(-)
>
> --
> 2.49.1
>
next prev parent reply other threads:[~2025-12-16 17:30 UTC|newest]
Thread overview: 23+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-12-15 19:23 [PATCH 00/16] drm/i915/dp: Clean up link BW/DSC slice config computation (fixes) Imre Deak
2025-12-15 19:23 ` [PATCH 01/16] drm/dp: Parse all DSC slice count caps for eDP 1.5 Imre Deak
2025-12-15 19:23 ` [PATCH 02/16] drm/dp: Add drm_dp_dsc_sink_slice_count_mask() Imre Deak
2025-12-15 19:23 ` [PATCH 03/16] drm/i915/dp: Fix DSC sink's slice count capability check Imre Deak
2025-12-15 19:23 ` [PATCH 04/16] drm/i915/dp: Return a fixed point BPP value from intel_dp_output_bpp() Imre Deak
2025-12-15 19:23 ` [PATCH 05/16] drm/i915/dp: Use a mode's crtc_clock vs. clock during state computation Imre Deak
2025-12-15 19:23 ` [PATCH 06/16] drm/i915/dp: Factor out intel_dp_link_bw_overhead() Imre Deak
2025-12-15 19:23 ` [PATCH 07/16] drm/i915/dp: Fix BW check in is_bw_sufficient_for_dsc_config() Imre Deak
2025-12-15 19:23 ` [PATCH 08/16] drm/i915/dp: Use the effective data rate for DP BW calculation Imre Deak
2025-12-15 19:23 ` [PATCH 09/16] drm/i915/dp: Use the effective data rate for DP compressed " Imre Deak
2025-12-15 19:23 ` [PATCH 10/16] drm/i915/dp: Account with MST, SSC BW overhead for uncompressed DP-MST stream BW Imre Deak
2025-12-15 19:23 ` [PATCH 11/16] drm/i915/dp: Account with DSC BW overhead for compressed DP-SST " Imre Deak
2025-12-15 19:23 ` [PATCH 12/16] drm/i915/dp: Account with pipe joiner max compressed BPP limit for DP-MST and eDP Imre Deak
2025-12-15 19:23 ` [PATCH 13/16] drm/i915/dp: Fail state computation for invalid min/max link BPP values Imre Deak
2025-12-15 19:23 ` [PATCH 14/16] drm/i915/dp: Fail state computation for invalid max throughput BPP value Imre Deak
2025-12-15 19:23 ` [PATCH 15/16] drm/i915/dp: Fail state computation for invalid max sink compressed " Imre Deak
2025-12-15 19:23 ` [PATCH 16/16] drm/i915/dp: Fail state computation for invalid DSC source input BPP values Imre Deak
2025-12-15 20:21 ` ✓ i915.CI.BAT: success for drm/i915/dp: Clean up link BW/DSC slice config computation (fixes) Patchwork
2025-12-16 2:20 ` ✓ i915.CI.Full: " Patchwork
2025-12-19 15:21 ` Imre Deak
2025-12-16 17:30 ` Imre Deak [this message]
2025-12-18 12:00 ` [PATCH 00/16] " Imre Deak
2025-12-19 13:28 ` Maarten Lankhorst
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=aUGW6XAOyXlhfy4H@ideak-desk \
--to=imre.deak@intel.com \
--cc=ankit.k.nautiyal@intel.com \
--cc=dri-devel@lists.freedesktop.org \
--cc=intel-gfx@lists.freedesktop.org \
--cc=intel-xe@lists.freedesktop.org \
--cc=jouni.hogander@intel.com \
--cc=luciano.coelho@intel.com \
--cc=maarten.lankhorst@linux.intel.com \
--cc=mripard@kernel.org \
--cc=tzimmermann@suse.de \
--cc=vinod.govindapillai@intel.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox