All of lore.kernel.org
 help / color / mirror / Atom feed
From: Todd Previte <tprevite@gmail.com>
To: intel-gfx@lists.freedesktop.org
Subject: Re: [PATCH 4/4] drm/i915/dp: read DPCD PSR capability only on eDP
Date: Fri, 20 Sep 2013 13:50:10 -0700	[thread overview]
Message-ID: <523CB502.7070304@gmail.com> (raw)
In-Reply-To: <2841535a1c9a9822f989e8e1674225f5a2fecf34.1379684248.git.jani.nikula@intel.com>

On 09/20/2013 06:42 AM, Jani Nikula wrote:
> Reduce AUX transactions for non-eDP.
>
> Signed-off-by: Jani Nikula <jani.nikula@intel.com>
> ---
>   drivers/gpu/drm/i915/intel_dp.c |   13 ++++++++-----
>   1 file changed, 8 insertions(+), 5 deletions(-)
>
> diff --git a/drivers/gpu/drm/i915/intel_dp.c b/drivers/gpu/drm/i915/intel_dp.c
> index dd780bf..f2e16a1 100644
> --- a/drivers/gpu/drm/i915/intel_dp.c
> +++ b/drivers/gpu/drm/i915/intel_dp.c
> @@ -2691,11 +2691,14 @@ intel_dp_get_dpcd(struct intel_dp *intel_dp)
>   
>   	/* Check if the panel supports PSR */
>   	memset(intel_dp->psr_dpcd, 0, sizeof(intel_dp->psr_dpcd));
> -	intel_dp_aux_native_read_retry(intel_dp, DP_PSR_SUPPORT,
> -				       intel_dp->psr_dpcd,
> -				       sizeof(intel_dp->psr_dpcd));
> -	if (is_edp_psr(intel_dp))
> -		DRM_DEBUG_KMS("Detected EDP PSR Panel.\n");
> +	if (is_edp(intel_dp)) {
> +		intel_dp_aux_native_read_retry(intel_dp, DP_PSR_SUPPORT,
> +					       intel_dp->psr_dpcd,
> +					       sizeof(intel_dp->psr_dpcd));
> +		if (is_edp_psr(intel_dp))
> +			DRM_DEBUG_KMS("Detected EDP PSR Panel.\n");
> +	}
> +
>   	if (!(intel_dp->dpcd[DP_DOWNSTREAMPORT_PRESENT] &
>   	      DP_DWN_STRM_PORT_PRESENT))
>   		return true; /* native DP sink */

Couldn't you just use is_edp_psr() at the top and not need the second 
is_edp() inside the if() statement? As in:

+	if (is_edp_psr(intel_dp)) {
+		intel_dp_aux_native_read_retry(intel_dp, DP_PSR_SUPPORT,
+					       intel_dp->psr_dpcd,
+					       sizeof(intel_dp->psr_dpcd));
+		DRM_DEBUG_KMS("Detected EDP PSR Panel.\n");
+	}


-T

  reply	other threads:[~2013-09-20 20:50 UTC|newest]

Thread overview: 18+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-09-20 13:42 [PATCH 0/4] drm/i915/dp: aux and dpcd fixes Jani Nikula
2013-09-20 13:42 ` [PATCH 1/4] drm/i915/dp: retry i2c-over-aux seven times on AUX DEFER Jani Nikula
2013-09-20 20:38   ` Todd Previte
2013-09-24  6:39     ` Jani Nikula
2013-09-27 11:51     ` Jani Nikula
2013-09-27 19:07       ` Todd Previte
2013-09-27 19:59         ` Daniel Vetter
2013-09-20 13:42 ` [PATCH 2/4] drm/i915/dp: increase i2c-over-aux retry interval " Jani Nikula
2013-09-20 20:56   ` Todd Previte
2013-09-20 21:53     ` Daniel Vetter
2013-09-20 13:42 ` [PATCH 3/4] drm/i915/dp: downstream port capabilities are not present in DPCD 1.0 Jani Nikula
2013-09-20 13:42 ` [PATCH 4/4] drm/i915/dp: read DPCD PSR capability only on eDP Jani Nikula
2013-09-20 20:50   ` Todd Previte [this message]
2013-09-20 20:57     ` Paulo Zanoni
2013-09-20 22:31       ` Todd Previte
2013-09-23  7:29         ` Daniel Vetter
2013-09-23  5:59 ` [PATCH 0/4] drm/i915/dp: aux and dpcd fixes Jani Nikula
2013-09-23  7:30   ` Daniel Vetter

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=523CB502.7070304@gmail.com \
    --to=tprevite@gmail.com \
    --cc=intel-gfx@lists.freedesktop.org \
    /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.