From: "Ville Syrjälä" <ville.syrjala@linux.intel.com>
To: Imre Deak <imre.deak@intel.com>
Cc: Luca Coelho <luciano.coelho@intel.com>, intel-gfx@lists.freedesktop.org
Subject: Re: [Intel-gfx] [PATCH 00/11] drm/i915: Improve BW management on FDI links
Date: Wed, 27 Sep 2023 16:58:35 +0300 [thread overview]
Message-ID: <ZRQ1CzYk_HsERTsg@intel.com> (raw)
In-Reply-To: <20230921195159.2646027-1-imre.deak@intel.com>
On Thu, Sep 21, 2023 at 10:51:48PM +0300, Imre Deak wrote:
> This is the first half of patchset [1] enabling the BW management on FDI
> links, addressing the review comments and adding R-bs.
>
> [1] https://lore.kernel.org/all/20230914192659.757475-1-imre.deak@intel.com
>
> Cc: Jani Nikula <jani.nikula@linux.intel.com>
> Cc: Stanislav Lisovskiy <stanislav.lisovskiy@intel.com>
> Cc: Lyude Paul <lyude@redhat.com>
> Cc: Ville Syrjälä <ville.syrjala@linux.intel.com>
> Cc: Luca Coelho <luciano.coelho@intel.com>
>
> Imre Deak (11):
> drm/i915/dp: Factor out helpers to compute the link limits
> drm/i915/dp: Track the pipe and link bpp limits separately
> drm/i915/dp: Skip computing a non-DSC link config if DSC is needed
> drm/i915/dp: Update the link bpp limits for DSC mode
> drm/i915/dp: Limit the output link bpp in DSC mode
> drm/i915: Add helper to modeset a set of pipes
> drm/i915: Rename intel_modeset_all_pipes() to
> intel_modeset_all_pipes_late()
> drm/i915: Factor out a helper to check/compute all the CRTC states
> drm/i915: Add helpers for BW management on shared display links
> drm/i915/fdi: Improve FDI BW sharing between pipe B and C
> drm/i915/fdi: Recompute state for affected CRTCs on FDI links
Series is
Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
>
> drivers/gpu/drm/i915/Makefile | 1 +
> drivers/gpu/drm/i915/display/g4x_hdmi.c | 6 +-
> drivers/gpu/drm/i915/display/intel_cdclk.c | 2 +-
> drivers/gpu/drm/i915/display/intel_crt.c | 7 +
> drivers/gpu/drm/i915/display/intel_crtc.c | 1 +
> drivers/gpu/drm/i915/display/intel_display.c | 261 +++++++++++++-----
> drivers/gpu/drm/i915/display/intel_display.h | 6 +-
> .../drm/i915/display/intel_display_types.h | 26 +-
> drivers/gpu/drm/i915/display/intel_dp.c | 170 +++++++++---
> drivers/gpu/drm/i915/display/intel_dp.h | 15 +-
> drivers/gpu/drm/i915/display/intel_dp_mst.c | 106 ++++---
> drivers/gpu/drm/i915/display/intel_fdi.c | 162 +++++++++--
> drivers/gpu/drm/i915/display/intel_fdi.h | 8 +
> drivers/gpu/drm/i915/display/intel_link_bw.c | 212 ++++++++++++++
> drivers/gpu/drm/i915/display/intel_link_bw.h | 37 +++
> drivers/gpu/drm/i915/display/intel_lvds.c | 10 +-
> drivers/gpu/drm/i915/display/intel_sdvo.c | 11 +-
> drivers/gpu/drm/i915/display/skl_watermark.c | 2 +-
> 18 files changed, 872 insertions(+), 171 deletions(-)
> create mode 100644 drivers/gpu/drm/i915/display/intel_link_bw.c
> create mode 100644 drivers/gpu/drm/i915/display/intel_link_bw.h
>
> --
> 2.37.2
--
Ville Syrjälä
Intel
prev parent reply other threads:[~2023-09-27 13:58 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-09-21 19:51 [Intel-gfx] [PATCH 00/11] drm/i915: Improve BW management on FDI links Imre Deak
2023-09-21 19:51 ` [Intel-gfx] [PATCH 01/11] drm/i915/dp: Factor out helpers to compute the link limits Imre Deak
2023-09-21 19:51 ` [Intel-gfx] [PATCH 02/11] drm/i915/dp: Track the pipe and link bpp limits separately Imre Deak
2023-09-21 19:51 ` [Intel-gfx] [PATCH 03/11] drm/i915/dp: Skip computing a non-DSC link config if DSC is needed Imre Deak
2023-09-21 19:51 ` [Intel-gfx] [PATCH 04/11] drm/i915/dp: Update the link bpp limits for DSC mode Imre Deak
2023-09-21 19:51 ` [Intel-gfx] [PATCH 05/11] drm/i915/dp: Limit the output link bpp in " Imre Deak
2023-09-21 19:51 ` [Intel-gfx] [PATCH 06/11] drm/i915: Add helper to modeset a set of pipes Imre Deak
2023-09-21 19:51 ` [Intel-gfx] [PATCH 07/11] drm/i915: Rename intel_modeset_all_pipes() to intel_modeset_all_pipes_late() Imre Deak
2023-09-21 19:51 ` [Intel-gfx] [PATCH 08/11] drm/i915: Factor out a helper to check/compute all the CRTC states Imre Deak
2023-09-21 19:51 ` [Intel-gfx] [PATCH 09/11] drm/i915: Add helpers for BW management on shared display links Imre Deak
2023-09-21 19:51 ` [Intel-gfx] [PATCH 10/11] drm/i915/fdi: Improve FDI BW sharing between pipe B and C Imre Deak
2023-09-21 19:51 ` [Intel-gfx] [PATCH 11/11] drm/i915/fdi: Recompute state for affected CRTCs on FDI links Imre Deak
2023-09-22 8:07 ` [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for drm/i915: Improve BW management " Patchwork
2023-09-22 8:07 ` [Intel-gfx] ✗ Fi.CI.SPARSE: " Patchwork
2023-09-22 8:26 ` [Intel-gfx] ✓ Fi.CI.BAT: success " Patchwork
2023-09-23 7:10 ` [Intel-gfx] ✓ Fi.CI.IGT: " Patchwork
2023-09-28 10:02 ` Imre Deak
2023-09-27 13:58 ` Ville Syrjälä [this message]
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=ZRQ1CzYk_HsERTsg@intel.com \
--to=ville.syrjala@linux.intel.com \
--cc=imre.deak@intel.com \
--cc=intel-gfx@lists.freedesktop.org \
--cc=luciano.coelho@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