public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: Takashi Iwai <tiwai@suse.de>
To: Hugh Dickins <hughd@google.com>
Cc: Daniel Vetter <daniel.vetter@ffwll.ch>,
	Linus Torvalds <torvalds@linux-foundation.org>,
	Chris Wilson <chris@chris-wilson.co.uk>,
	Giacomo Comes <comes@naic.edu>,
	Paulo Zanoni <paulo.r.zanoni@intel.com>,
	linux-kernel@vger.kernel.org
Subject: Re: i915 regression on 3.6-rc1: lid blanks screen
Date: Sat, 11 Aug 2012 08:45:54 +0200	[thread overview]
Message-ID: <s5hvcgq7wpp.wl%tiwai@suse.de> (raw)
In-Reply-To: <alpine.LSU.2.00.1208101145440.2648@eggly.anvils>

At Fri, 10 Aug 2012 11:53:51 -0700 (PDT),
Hugh Dickins wrote:
> 
> On Fri, 10 Aug 2012, Takashi Iwai wrote:
> > At Fri, 10 Aug 2012 14:35:13 +0200,
> > Daniel Vetter wrote:
> > > 
> > > On Fri, Aug 10, 2012 at 1:59 PM, Takashi Iwai <tiwai@suse.de> wrote:
> > > > At Mon, 6 Aug 2012 11:25:30 -0700 (PDT),
> > > > Hugh Dickins wrote:
> > > >>
> > > >> On Mon, 6 Aug 2012, Daniel Vetter wrote:
> > > >> > On Mon, Aug 6, 2012 at 6:21 AM, Hugh Dickins <hughd@google.com> wrote:
> > > >> > > On Sun, 5 Aug 2012, Takashi Iwai wrote:
> > > >> > >> At Sat, 4 Aug 2012 10:01:13 -0700 (PDT),
> > > >> > >> Hugh Dickins wrote:
> > > >> > >> >
> > > >> > >> > Sorry to report that with 3.6-rc1, closing and opening the lid on
> > > >> > >> > this ThinkPad T420s leaves the screen blank, and I have to reboot.
> > > >> > >> >
> > > >> > >> > Bisection led to this commit, and reverting indeed gets my screen back:
> > > >> > >> >
> > > >> > >> > commit 520c41cf2fa029d1e8b923ac2026f96664f17c4b
> > > >> > >> > Author: Daniel Vetter <daniel.vetter@ffwll.ch>
> > > >> > >> > Date:   Wed Jul 11 16:27:52 2012 +0200
> > > >> > >> >
> > > >> > >> >     drm/i915/lvds: ditch ->prepare special case
> > > >> > > ...
> > > >> > >>
> > > >> > >> Hm, it's surprising.
> > > >> > >>
> > > >> > >> Could you check whether the counter-part intel_lvds_enable() is
> > > >> > >> called?  If the prepare callback affects, it must be from the mode
> > > >> > >> setting (drm_crtc_helper_set_mode()).
> > > >> > >
> > > >> > > Yes, I put a dump_stack() in both, and intel_lvds_enable() gets called
> > > >> > > about 0.28 seconds after the intel_lvds_disable() when I lift the lid;
> > > >> > > but with no video display until I revert that commit.
> > > >> >
> > > >> > Can you please boot with drm.debug=0xe added to your kernel cmdline,
> > > >> > reproduce the issue (with the two dump_stack calls added) and then
> > > >> > attach the full dmesg?
> > > >>
> > > >> Collected, I'll send it to you both privately in a moment.
> > > >>
> > > >> >
> > > >> > Also a few other things to try: What happens if you do a modeset on
> > > >> > the LVDS while it's still working, e.g.
> > > >>
> > > >> In the dmesg, I've only gone to runlevel 3, simply working on the
> > > >> console without startx.  For these xrandrs to work, I did startx
> > > >> and used the graphics screen.
> > > >
> > > > OK, now I can see the problem here, too.  The key is that it happens
> > > > only on Linux console, not on X.  That's why no one else reported.
> > > > I guess the problem can be seen on many laptops with LVDS on PCH.
> 
> A correction there: for me it was happening both on X and on console;
> but once I found that it happened even on the simple console, I mostly
> stuck to bisecting and testing on that.

Maybe depending on the desktop setup.  When a power-management stuff
is running, it may readjust the backlight level upon lid open, then it
fixes the issue casually.


> > > >
> > > > Looking at intel_reg_dumper output, BLC_PWM_CPU_CTL is 0 while other
> > > > registers are set correctly.  This seems coming from the rewrite of
> > > > backlight control code by commit
> > > >   24ded204: drm/i915: properly enable the blc controller on the right pipe
> > > > and
> > > >   a4f32fc3: drm/i915: don't forget the PCH backlight registers
> > > >
> > > > While the latter fixes the regression by the former commit, it still
> > > > doesn't cover this regression.
> > > >
> > > > I don't know the exact hardware behavior, but it looks like that
> > > > resetting BLC_PWM_PCH_CTL2 and BLC_PWM_PCH_CTL1 clears the
> > > > BLC_PWM_CPU_CTL (oh what confusing reg names).
> > > >
> > > > FWIW, the commit 520c41cf you mentioned is no direct cause.  This
> > > > patch works fine on the top of 3.5 kernel.  But it's like a bad drug,
> > > > the combination of this and other two commits break things.
> > > >
> > > > The patch below is my quick fix.  It worked on an HP laptop.
> > > > Hugh, could you give it a try?
> > > 
> > > Hm, this sounds eerily familiar to the backlight bug you've recently fixed in
> > > 
> > > commit 6db65cbb941f9d433659bdad02b307f6d94465df
> > > Author: Takashi Iwai <tiwai@suse.de>
> > > Date:   Thu Jun 21 15:30:41 2012 +0200
> > > 
> > >     drm/i915: Fix eDP blank screen after S3 resume on HP desktops
> > > 
> > > Have you checked other code-paths for such issues?
> > 
> > Not yet, I'd leave such a joy rather to you guys :)
> > 
> > > The resume code
> > > seems to follow this order already ... also, when you submit this
> > > patch, can you please add a small comment to explain the ordering
> > > constraint, like in the resume register restore function?
> > 
> > Sure, I'll add a comment and resubmit once when I hear it really fixes
> > on Hugh's machine, too.
> 
> Indeed, your patch really fixes it on my machine: many thanks!

OK, I'll resend the patch with more comments.


thanks,

Takashi

  reply	other threads:[~2012-08-11  6:46 UTC|newest]

Thread overview: 12+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-08-04 17:01 i915 regression on 3.6-rc1: lid blanks screen Hugh Dickins
2012-08-05  7:11 ` Takashi Iwai
2012-08-06  4:21   ` Hugh Dickins
2012-08-06  9:03     ` Daniel Vetter
2012-08-06 18:25       ` Hugh Dickins
2012-08-10 11:59         ` Takashi Iwai
2012-08-10 12:35           ` Daniel Vetter
2012-08-10 12:57             ` Takashi Iwai
2012-08-10 18:53               ` Hugh Dickins
2012-08-11  6:45                 ` Takashi Iwai [this message]
2012-08-11  6:56                   ` [PATCH v2] drm/i915: Fix blank panel at reopening lid Takashi Iwai
2012-08-11 19:15                     ` 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=s5hvcgq7wpp.wl%tiwai@suse.de \
    --to=tiwai@suse.de \
    --cc=chris@chris-wilson.co.uk \
    --cc=comes@naic.edu \
    --cc=daniel.vetter@ffwll.ch \
    --cc=hughd@google.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=paulo.r.zanoni@intel.com \
    --cc=torvalds@linux-foundation.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