All of lore.kernel.org
 help / color / mirror / Atom feed
From: Jani Nikula <jani.nikula@linux.intel.com>
To: Sonika Jindal <sonika.jindal@intel.com>, intel-gfx@lists.freedesktop.org
Subject: Re: [PATCH] drm/i915/skl: Add module parameter to select	edp vswing table
Date: Tue, 05 May 2015 14:39:48 +0300	[thread overview]
Message-ID: <87pp6f6ynv.fsf@intel.com> (raw)
In-Reply-To: <1430819164-22609-1-git-send-email-sonika.jindal@intel.com>

On Tue, 05 May 2015, Sonika Jindal <sonika.jindal@intel.com> wrote:
> This provides an option to override the value set by VBT
> for selecting edp Vswing Pre-emph setting table.
>
> https://bugs.freedesktop.org/show_bug.cgi?id=89554
> Signed-off-by: Sonika Jindal <sonika.jindal@intel.com>
> ---
>  drivers/gpu/drm/i915/i915_drv.h    |    4 +++-
>  drivers/gpu/drm/i915/i915_params.c |    7 +++++++
>  drivers/gpu/drm/i915/intel_bios.c  |    9 +++++++--
>  drivers/gpu/drm/i915/intel_ddi.c   |    2 +-
>  drivers/gpu/drm/i915/intel_dp.c    |    2 +-
>  5 files changed, 19 insertions(+), 5 deletions(-)
>
> diff --git a/drivers/gpu/drm/i915/i915_drv.h b/drivers/gpu/drm/i915/i915_drv.h
> index 136d42a..1c3ee66 100644
> --- a/drivers/gpu/drm/i915/i915_drv.h
> +++ b/drivers/gpu/drm/i915/i915_drv.h
> @@ -1364,7 +1364,6 @@ struct intel_vbt_data {
>  	bool edp_initialized;
>  	bool edp_support;
>  	int edp_bpp;
> -	bool edp_low_vswing;
>  	struct edp_power_seq edp_pps;
>  
>  	struct {
> @@ -1846,6 +1845,8 @@ struct drm_i915_private {
>  		void (*stop_ring)(struct intel_engine_cs *ring);
>  	} gt;
>  
> +	bool edp_low_vswing;
> +
>  	/*
>  	 * NOTE: This is the dri1/ums dungeon, don't add stuff here. Your patch
>  	 * will be rejected. Instead look for a better place.
> @@ -2515,6 +2516,7 @@ struct i915_params {
>  	int mmio_debug;
>  	bool verbose_state_checks;
>  	bool nuclear_pageflip;
> +	int edp_vswing;
>  };
>  extern struct i915_params i915 __read_mostly;
>  
> diff --git a/drivers/gpu/drm/i915/i915_params.c b/drivers/gpu/drm/i915/i915_params.c
> index bb64415..d245ac5 100644
> --- a/drivers/gpu/drm/i915/i915_params.c
> +++ b/drivers/gpu/drm/i915/i915_params.c
> @@ -53,6 +53,7 @@ struct i915_params i915 __read_mostly = {
>  	.mmio_debug = 0,
>  	.verbose_state_checks = 1,
>  	.nuclear_pageflip = 0,
> +	.edp_vswing = 0,
>  };
>  
>  module_param_named(modeset, i915.modeset, int, 0400);
> @@ -184,3 +185,9 @@ MODULE_PARM_DESC(verbose_state_checks,
>  module_param_named_unsafe(nuclear_pageflip, i915.nuclear_pageflip, bool, 0600);
>  MODULE_PARM_DESC(nuclear_pageflip,
>  		 "Force atomic modeset functionality; only planes work for now (default: false).");
> +
> +module_param_named_unsafe(edp_vswing, i915.edp_vswing, int, 0600);
> +MODULE_PARM_DESC(edp_vswing,
> +		 "Ignore/Override vswing pre-emph table selection from VBT "
> +		 "(0=use value from vbt [default], 1=low power swing(200mV),"
> +		 "2=default swing(400mV))");
> diff --git a/drivers/gpu/drm/i915/intel_bios.c b/drivers/gpu/drm/i915/intel_bios.c
> index c08368c..cee596d 100644
> --- a/drivers/gpu/drm/i915/intel_bios.c
> +++ b/drivers/gpu/drm/i915/intel_bios.c
> @@ -672,8 +672,13 @@ parse_edp(struct drm_i915_private *dev_priv, struct bdb_header *bdb)
>  	if (bdb->version >= 173) {
>  		uint8_t vswing;
>  
> -		vswing = (edp->edp_vswing_preemph >> (panel_type * 4)) & 0xF;
> -		dev_priv->vbt.edp_low_vswing = vswing == 0;
> +		/* Don't read from VBT if module parameter has valid value*/
> +		if (i915.edp_vswing) {
> +			dev_priv->edp_low_vswing = i915.edp_vswing == 1;
> +		} else {
> +			vswing = (edp->edp_vswing_preemph >> (panel_type * 4)) & 0xF;
> +			dev_priv->edp_low_vswing = vswing == 0;
> +		}

Please keep dev_priv->vbt.edp_low_vswing as it is, and check the module
parameter where that is used. If we're adding a module parameter, it
will be immensely useful to be able to change the value at runtime to
check if it makes a difference. What you suggest requires a module
reload.

There's still the question whether we can default to using the vbt value
if that can be broken...

BR,
Jani.


>  	}
>  }
>  
> diff --git a/drivers/gpu/drm/i915/intel_ddi.c b/drivers/gpu/drm/i915/intel_ddi.c
> index 9c1e74a..2539f22 100644
> --- a/drivers/gpu/drm/i915/intel_ddi.c
> +++ b/drivers/gpu/drm/i915/intel_ddi.c
> @@ -282,7 +282,7 @@ static void intel_prepare_ddi_buffers(struct drm_device *dev, enum port port,
>  		ddi_translations_fdi = NULL;
>  		ddi_translations_dp = skl_ddi_translations_dp;
>  		n_dp_entries = ARRAY_SIZE(skl_ddi_translations_dp);
> -		if (dev_priv->vbt.edp_low_vswing) {
> +		if (dev_priv->edp_low_vswing) {
>  			ddi_translations_edp = skl_ddi_translations_edp;
>  			n_edp_entries = ARRAY_SIZE(skl_ddi_translations_edp);
>  		} else {
> diff --git a/drivers/gpu/drm/i915/intel_dp.c b/drivers/gpu/drm/i915/intel_dp.c
> index bacdec5..5f53666 100644
> --- a/drivers/gpu/drm/i915/intel_dp.c
> +++ b/drivers/gpu/drm/i915/intel_dp.c
> @@ -2894,7 +2894,7 @@ intel_dp_voltage_max(struct intel_dp *intel_dp)
>  	if (IS_BROXTON(dev))
>  		return DP_TRAIN_VOLTAGE_SWING_LEVEL_3;
>  	else if (INTEL_INFO(dev)->gen >= 9) {
> -		if (dev_priv->vbt.edp_low_vswing && port == PORT_A)
> +		if (dev_priv->edp_low_vswing && port == PORT_A)
>  			return DP_TRAIN_VOLTAGE_SWING_LEVEL_3;
>  		return DP_TRAIN_VOLTAGE_SWING_LEVEL_2;
>  	} else if (IS_VALLEYVIEW(dev))
> -- 
> 1.7.10.4
>
> _______________________________________________
> Intel-gfx mailing list
> Intel-gfx@lists.freedesktop.org
> http://lists.freedesktop.org/mailman/listinfo/intel-gfx

-- 
Jani Nikula, Intel Open Source Technology Center
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx

  reply	other threads:[~2015-05-05 11:37 UTC|newest]

Thread overview: 13+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-05-05  9:46 [PATCH] drm/i915/skl: Add module parameter to select edp vswing table Sonika Jindal
2015-05-05 11:39 ` Jani Nikula [this message]
2015-05-05 13:00   ` Damien Lespiau
2015-05-05 13:58     ` Jani Nikula
2015-05-06  5:43       ` Jindal, Sonika
2015-05-06  6:57         ` Jani Nikula
2015-05-06 10:13           ` Sonika Jindal
2015-05-06 10:28             ` Jani Nikula
2015-05-06 12:05               ` Sonika Jindal
2015-05-06 14:09                 ` Daniel Vetter
2015-05-07 12:27                 ` shuang.he
2015-05-07  9:15             ` shuang.he
2015-05-05 16:52 ` shuang.he

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=87pp6f6ynv.fsf@intel.com \
    --to=jani.nikula@linux.intel.com \
    --cc=intel-gfx@lists.freedesktop.org \
    --cc=sonika.jindal@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.