All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Souza, Jose" <jose.souza@intel.com>
To: "ville.syrjala@linux.intel.com" <ville.syrjala@linux.intel.com>,
	"intel-gfx@lists.freedesktop.org"
	<intel-gfx@lists.freedesktop.org>
Subject: Re: [Intel-gfx] [PATCH 4/6] drm/i915: Check sink deep color capabilitis during HDMI .mode_valid()
Date: Fri, 14 May 2021 17:33:55 +0000	[thread overview]
Message-ID: <f877bb51958bf7fe34d931a0c9d8aa5fe6898381.camel@intel.com> (raw)
In-Reply-To: <20210511160532.21446-5-ville.syrjala@linux.intel.com>

On Tue, 2021-05-11 at 19:05 +0300, Ville Syrjala wrote:
> From: Ville Syrjälä <ville.syrjala@linux.intel.com>
> 
> Currently HDMI .mode_valid() only checks whether the source can do
> deep color. Let's check whether the sink can do it as well.
> 

Reviewed-by: José Roberto de Souza <jose.souza@intel.com>

> Cc: Werner Sembach <wse@tuxedocomputers.com>
> Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
> ---
>  drivers/gpu/drm/i915/display/intel_hdmi.c | 16 +++++++++-------
>  1 file changed, 9 insertions(+), 7 deletions(-)
> 
> diff --git a/drivers/gpu/drm/i915/display/intel_hdmi.c b/drivers/gpu/drm/i915/display/intel_hdmi.c
> index 56ac53eab90c..874fb897005a 100644
> --- a/drivers/gpu/drm/i915/display/intel_hdmi.c
> +++ b/drivers/gpu/drm/i915/display/intel_hdmi.c
> @@ -1901,10 +1901,10 @@ static bool intel_hdmi_bpc_possible(struct drm_connector *connector,
>  }
>  
>  static enum drm_mode_status
> -intel_hdmi_mode_clock_valid(struct intel_hdmi *hdmi, int clock, bool has_hdmi_sink)
> +intel_hdmi_mode_clock_valid(struct drm_connector *connector, int clock,
> +			    bool has_hdmi_sink, bool ycbcr420_output)
>  {
> -	struct drm_device *dev = intel_hdmi_to_dev(hdmi);
> -	struct drm_i915_private *dev_priv = to_i915(dev);
> +	struct intel_hdmi *hdmi = intel_attached_hdmi(to_intel_connector(connector));
>  	enum drm_mode_status status;
>  
>  	/* check if we can do 8bpc */
> @@ -1913,12 +1913,14 @@ intel_hdmi_mode_clock_valid(struct intel_hdmi *hdmi, int clock, bool has_hdmi_si
>  
>  	if (has_hdmi_sink) {
>  		/* if we can't do 8bpc we may still be able to do 12bpc */
> -		if (status != MODE_OK && !HAS_GMCH(dev_priv))
> +		if (status != MODE_OK &&
> +		    intel_hdmi_bpc_possible(connector, 12, has_hdmi_sink, ycbcr420_output))
>  			status = hdmi_port_clock_valid(hdmi, intel_hdmi_port_clock(clock, 12),
>  						       true, has_hdmi_sink);
>  
>  		/* if we can't do 8,12bpc we may still be able to do 10bpc */
> -		if (status != MODE_OK && DISPLAY_VER(dev_priv) >= 11)
> +		if (status != MODE_OK &&
> +		    intel_hdmi_bpc_possible(connector, 10, has_hdmi_sink, ycbcr420_output))
>  			status = hdmi_port_clock_valid(hdmi, intel_hdmi_port_clock(clock, 10),
>  						       true, has_hdmi_sink);
>  	}
> @@ -1958,7 +1960,7 @@ intel_hdmi_mode_valid(struct drm_connector *connector,
>  	if (ycbcr_420_only)
>  		clock /= 2;
>  
> -	status = intel_hdmi_mode_clock_valid(hdmi, clock, has_hdmi_sink);
> +	status = intel_hdmi_mode_clock_valid(connector, clock, has_hdmi_sink, ycbcr_420_only);
>  	if (status != MODE_OK) {
>  		if (ycbcr_420_only ||
>  		    !connector->ycbcr_420_allowed ||
> @@ -1966,7 +1968,7 @@ intel_hdmi_mode_valid(struct drm_connector *connector,
>  			return status;
>  
>  		clock /= 2;
> -		status = intel_hdmi_mode_clock_valid(hdmi, clock, has_hdmi_sink);
> +		status = intel_hdmi_mode_clock_valid(connector, clock, has_hdmi_sink, true);
>  		if (status != MODE_OK)
>  			return status;
>  	}

_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

  reply	other threads:[~2021-05-14 17:33 UTC|newest]

Thread overview: 20+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-05-11 16:05 [Intel-gfx] [PATCH 0/6] drm/i915: Check HDMI sink deep color capabilities during .mode_valid() Ville Syrjala
2021-05-11 16:05 ` [Intel-gfx] [PATCH 1/6] drm/i915: Extract intel_hdmi_bpc_possible() Ville Syrjala
2021-05-14 17:33   ` Souza, Jose
2021-05-11 16:05 ` [Intel-gfx] [PATCH 2/6] drm/i915: Move has_hdmi_sink check into intel_hdmi_bpc_possible() Ville Syrjala
2021-05-14 17:33   ` Souza, Jose
2021-05-11 16:05 ` [Intel-gfx] [PATCH 3/6] drm/i915: Move platform checks " Ville Syrjala
2021-05-14 17:33   ` Souza, Jose
2021-05-11 16:05 ` [Intel-gfx] [PATCH 4/6] drm/i915: Check sink deep color capabilitis during HDMI .mode_valid() Ville Syrjala
2021-05-14 17:33   ` Souza, Jose [this message]
2021-05-11 16:05 ` [Intel-gfx] [PATCH 5/6] drm/i915: Move the TMDS clock division into intel_hdmi_mode_clock_valid() Ville Syrjala
2021-05-14 17:28   ` Souza, Jose
2021-05-14 17:36     ` Ville Syrjälä
2021-05-14 17:44       ` Souza, Jose
2021-05-11 16:05 ` [Intel-gfx] [PATCH 6/6] drm/i915: Drop redundant has_hdmi_sink check Ville Syrjala
2021-05-14 17:34   ` Souza, Jose
2021-05-11 19:02 ` [Intel-gfx] ✗ Fi.CI.BAT: failure for drm/i915: Check HDMI sink deep color capabilities during .mode_valid() Patchwork
2021-05-12 20:40 ` [Intel-gfx] ✓ Fi.CI.BAT: success for drm/i915: Check HDMI sink deep color capabilities during .mode_valid() (rev2) Patchwork
2021-05-13  3:10 ` [Intel-gfx] ✗ Fi.CI.IGT: failure " Patchwork
2021-05-25 17:57 ` [Intel-gfx] ✓ Fi.CI.BAT: success for drm/i915: Check HDMI sink deep color capabilities during .mode_valid() (rev3) Patchwork
2021-05-25 23:23 ` [Intel-gfx] ✗ Fi.CI.IGT: failure " Patchwork

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=f877bb51958bf7fe34d931a0c9d8aa5fe6898381.camel@intel.com \
    --to=jose.souza@intel.com \
    --cc=intel-gfx@lists.freedesktop.org \
    --cc=ville.syrjala@linux.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.