From: "Ville Syrjälä" <ville.syrjala@linux.intel.com>
To: Daniel Vetter <daniel@ffwll.ch>
Cc: James Bottomley <James.Bottomley@HansenPartnership.com>,
intel-gfx@lists.freedesktop.org,
drm-intel-fixes@lists.freedesktop.org
Subject: Re: [PATCH] drm/i915: Ignore panel type from OpRegion on SKL
Date: Wed, 13 Jul 2016 16:09:38 +0300 [thread overview]
Message-ID: <20160713130938.GX4329@intel.com> (raw)
In-Reply-To: <20160713120443.GG23520@phenom.ffwll.local>
On Wed, Jul 13, 2016 at 02:04:43PM +0200, Daniel Vetter wrote:
> On Tue, Jul 12, 2016 at 03:00:37PM +0300, ville.syrjala@linux.intel.com wrote:
> > From: Ville Syrjälä <ville.syrjala@linux.intel.com>
> >
> > Dell XPS 13 9350 apparently doesn't like it when we use the panel type
> > from OpRegion. The OpRegion panel type (0) tells us to use use low
> > vswing for eDP, whereas the VBT panel type (2) tells us to use normal
> > vswing. The problem is that low vswing results in some display flickers.
> > Since no one seems to know how this stuff is supposed to be handled,
> > let's just ignore the OpRegion panel type on SKL for now.
> >
> > Reported-by: James Bottomley <James.Bottomley@HansenPartnership.com>
> > Cc: James Bottomley <James.Bottomley@HansenPartnership.com>
> > Cc: drm-intel-fixes@lists.freedesktop.org
> > References: https://lists.freedesktop.org/archives/intel-gfx/2016-June/098826.html
> > Fixes: a05628195a0d ("drm/i915: Get panel_type from OpRegion panel details")
> > Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
>
> Oh well, but not really a better option unfortunately.
>
> Reviewed-by: Daniel Vetter <daniel.vetter@ffwll.ch>
>
> Could also be that this is more general on newer machines ... Did you
> check latest OpRegion spec to make sure this isn't deprecated?
I found one version of the spec specifically for SKL:
"IGD OpRegion/Software SCI/ _DSM for Skylake Processors" and it still
has all the panel type stuff in it.
In fact it's the panel type in the VBT that is actually marked as
deprecated. Last time I tried to ask around as to why it's deprecated
and what we should use instead, I couldn't get a decent answer.
> -Daniel
>
> > ---
> > drivers/gpu/drm/i915/intel_opregion.c | 11 +++++++++++
> > 1 file changed, 11 insertions(+)
> >
> > diff --git a/drivers/gpu/drm/i915/intel_opregion.c b/drivers/gpu/drm/i915/intel_opregion.c
> > index c27d5eb063d0..259760f12d16 100644
> > --- a/drivers/gpu/drm/i915/intel_opregion.c
> > +++ b/drivers/gpu/drm/i915/intel_opregion.c
> > @@ -1072,5 +1072,16 @@ intel_opregion_get_panel_type(struct drm_i915_private *dev_priv)
> > return -ENODEV;
> > }
> >
> > + /*
> > + * FIXME On Dell XPS 13 9350 the OpRegion panel type (0) gives us
> > + * low vswing for eDP, whereas the VBT panel type (2) gives us normal
> > + * vswing instead. Low vswing results in some display flickers, so
> > + * let's simply ignore the OpRegion panel type on SKL for now.
> > + */
> > + if (IS_SKYLAKE(dev_priv)) {
> > + DRM_DEBUG_KMS("Ignoring OpRegion panel type (%d)\n", ret);
> > + return -ENODEV;
> > + }
> > +
> > return ret - 1;
> > }
> > --
> > 2.7.4
> >
> > _______________________________________________
> > Intel-gfx mailing list
> > Intel-gfx@lists.freedesktop.org
> > https://lists.freedesktop.org/mailman/listinfo/intel-gfx
>
> --
> Daniel Vetter
> Software Engineer, Intel Corporation
> http://blog.ffwll.ch
--
Ville Syrjälä
Intel OTC
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx
next prev parent reply other threads:[~2016-07-13 13:09 UTC|newest]
Thread overview: 44+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-05-30 19:59 Bad flicker on skylake HQD due to code in the 4.7 merge window James Bottomley
2016-05-31 7:51 ` Jani Nikula
2016-05-31 13:33 ` James Bottomley
2016-06-13 10:14 ` Jani Nikula
2016-06-16 21:15 ` James Bottomley
2016-06-16 21:24 ` Daniel Vetter
2016-06-16 21:29 ` [Intel-gfx] " James Bottomley
2016-06-16 22:42 ` James Bottomley
2016-06-17 7:28 ` Daniel Vetter
2016-06-17 13:34 ` Jani Nikula
2016-06-17 16:08 ` [Intel-gfx] " James Bottomley
2016-06-17 23:06 ` James Bottomley
2016-06-19 21:53 ` James Bottomley
2016-06-20 8:03 ` [Intel-gfx] " Jani Nikula
2016-06-21 13:53 ` James Bottomley
2016-06-21 15:44 ` Ville Syrjälä
2016-06-21 21:00 ` James Bottomley
2016-06-23 11:25 ` [Intel-gfx] " James Bottomley
2016-07-02 6:24 ` Thorsten Leemhuis
2016-07-07 16:14 ` [Intel-gfx] " Ville Syrjälä
2016-07-07 16:55 ` James Bottomley
2016-07-07 19:19 ` James Bottomley
2016-07-08 10:19 ` Ville Syrjälä
2016-07-08 14:48 ` James Bottomley
2016-07-08 16:56 ` Ville Syrjälä
2016-07-12 12:00 ` [PATCH] drm/i915: Ignore panel type from OpRegion on SKL ville.syrjala
2016-07-13 12:04 ` Daniel Vetter
2016-07-13 13:09 ` Ville Syrjälä [this message]
2016-07-13 13:33 ` James Bottomley
2016-07-13 13:36 ` Ville Syrjälä
2016-07-14 13:12 ` Ville Syrjälä
2016-07-12 13:12 ` ✗ Ro.CI.BAT: warning for " Patchwork
2016-07-14 13:02 ` Ville Syrjälä
2016-09-11 14:10 ` [Intel-gfx] Bad flicker on skylake HQD due to code in the 4.7 merge window James Hogan
2016-09-13 13:59 ` Jani Nikula
2016-06-23 12:52 ` Steven Newbury
2016-06-23 12:59 ` Jani Nikula
2016-06-23 13:14 ` Steven Newbury
2016-06-24 10:59 ` Chris Wilson
2016-06-24 11:48 ` [Intel-gfx] " Steven Newbury
2016-06-24 12:42 ` Chris Wilson
2016-07-12 10:08 ` Daniel Vetter
2016-09-14 9:43 ` Jani Nikula
2016-06-17 8:12 ` Chris Wilson
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=20160713130938.GX4329@intel.com \
--to=ville.syrjala@linux.intel.com \
--cc=James.Bottomley@HansenPartnership.com \
--cc=daniel@ffwll.ch \
--cc=drm-intel-fixes@lists.freedesktop.org \
--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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).