Re: [PATCH 2/7] drm/i915: Extract intel_dp_has_dsc()

2024-05-22 Thread Jani Nikula
On Tue, 21 May 2024, Ville Syrjälä wrote: > On Tue, May 21, 2024 at 12:51:03PM +0300, Jani Nikula wrote: >> On Mon, 20 May 2024, Ville Syrjälä wrote: >> > On Mon, May 20, 2024 at 01:47:34PM +0300, Jani Nikula wrote: >> >> On Fri, 17 May 2024, Ville Syrjala wrote: >> >> > From: Ville Syrjälä >>

Re: [PATCH 2/7] drm/i915: Extract intel_dp_has_dsc()

2024-05-21 Thread Ville Syrjälä
On Tue, May 21, 2024 at 12:51:03PM +0300, Jani Nikula wrote: > On Mon, 20 May 2024, Ville Syrjälä wrote: > > On Mon, May 20, 2024 at 01:47:34PM +0300, Jani Nikula wrote: > >> On Fri, 17 May 2024, Ville Syrjala wrote: > >> > From: Ville Syrjälä > >> > > >> > Extract a helper to check whether the

Re: [PATCH 2/7] drm/i915: Extract intel_dp_has_dsc()

2024-05-21 Thread Jani Nikula
On Mon, 20 May 2024, Ville Syrjälä wrote: > On Mon, May 20, 2024 at 01:47:34PM +0300, Jani Nikula wrote: >> On Fri, 17 May 2024, Ville Syrjala wrote: >> > From: Ville Syrjälä >> > >> > Extract a helper to check whether the source+sink combo >> > supports DSC. That basic check is needed both

Re: [PATCH 2/7] drm/i915: Extract intel_dp_has_dsc()

2024-05-20 Thread Ville Syrjälä
On Mon, May 20, 2024 at 01:47:34PM +0300, Jani Nikula wrote: > On Fri, 17 May 2024, Ville Syrjala wrote: > > From: Ville Syrjälä > > > > Extract a helper to check whether the source+sink combo > > supports DSC. That basic check is needed both during mode > > validation and compute config. We'll

Re: [PATCH 2/7] drm/i915: Extract intel_dp_has_dsc()

2024-05-20 Thread Jani Nikula
On Fri, 17 May 2024, Ville Syrjala wrote: > From: Ville Syrjälä > > Extract a helper to check whether the source+sink combo > supports DSC. That basic check is needed both during mode > validation and compute config. We'll also need to add extra > checks to both places, so having a single place

[PATCH 2/7] drm/i915: Extract intel_dp_has_dsc()

2024-05-17 Thread Ville Syrjala
From: Ville Syrjälä Extract a helper to check whether the source+sink combo supports DSC. That basic check is needed both during mode validation and compute config. We'll also need to add extra checks to both places, so having a single place for it is nicer. Signed-off-by: Ville Syrjälä ---