Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932438Ab0GTP0x (ORCPT ); Tue, 20 Jul 2010 11:26:53 -0400 Received: from ogre.sisk.pl ([217.79.144.158]:41285 "EHLO ogre.sisk.pl" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932177Ab0GTP0v (ORCPT ); Tue, 20 Jul 2010 11:26:51 -0400 From: "Rafael J. Wysocki" To: Shawn Starr Subject: Re: 2.6.35-rc4-git3: Reported regressions from 2.6.34 Date: Tue, 20 Jul 2010 17:24:56 +0200 User-Agent: KMail/1.13.5 (Linux/2.6.35-rc5-rjw+; KDE/4.4.4; x86_64; ; ) Cc: Linux Kernel Mailing List , Kernel Testers List References: <-IGZ64uxA6G.A.P0H.bLmNMB@chimera> <201007192112.08468.shawn.starr@rogers.com> <201007192213.01304.shawn.starr@rogers.com> In-Reply-To: <201007192213.01304.shawn.starr@rogers.com> MIME-Version: 1.0 Content-Type: Text/Plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <201007201724.57049.rjw@sisk.pl> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 3541 Lines: 85 On Tuesday, July 20, 2010, Shawn Starr wrote: > On Monday, July 19, 2010 09:12:08 pm Shawn Starr wrote: > > On Monday, July 19, 2010 08:33:30 pm Shawn Starr wrote: > > > On Thursday, July 08, 2010 11:36:25 pm Shawn Starr wrote: > > > > > > > > > > > > > > > Bug-Entry : http://bugzilla.kernel.org/show_bug.cgi?id=16311 > > > > > > Subject : [REGRESSION][SUSPEND] 2.6.35-rcX won't suspend > > > > > > Lenovo W500 laptop Submitter : Shawn Starr > > > > > > Date : 2010-06-28 0:45 (11 days > > > > > > old) > > > > > > Message-ID : <201006272045.17004.shawn.starr@rogers.com> > > > > > > References : > > > > > > http://marc.info/?l=linux-kernel&m=127768633705286&w=2 > > > > > > > > > > I think this might be usefully bisected. Shawn? > > > > > > > > I'll have to try bisecting this weekend. It continues in Linux sh0n.net > > > > 2.6.35-rc4+ #1 SMP Wed Jul 7 23:58:41 EDT 2010 x86_64 x86_64 x86_64 > > > > GNU/Linux > > > > > > This continues even with no USB devices plugged in. Will try with today's > > > snapshot build from Linus's tree. If this still happens, I'll see about > > > bisecting. > > > > > > Thanks, > > > Shawn. > > > > I also am testing this patch I noticed in anholt's tree, this may be GPU > > suspend issue. > > > > diff --git a/drivers/gpu/drm/i915/i915_suspend.c > > b/drivers/gpu/drm/i915/i915_suspend.c > > index 60a5800..6e20252 100644 (file) > > --- a/drivers/gpu/drm/i915/i915_suspend.c > > +++ b/drivers/gpu/drm/i915/i915_suspend.c > > @@ -602,7 +602,9 @@ void i915_save_display(struct drm_device *dev) > > > > /* Only save FBC state on the platform that supports FBC */ > > if (I915_HAS_FBC(dev)) { > > - if (IS_GM45(dev)) { > > + if (IS_IRONLAKE_M(dev)) { > > + dev_priv->saveDPFC_CB_BASE = > > I915_READ(ILK_DPFC_CB_BASE); > > + } else if (IS_GM45(dev)) { > > dev_priv->saveDPFC_CB_BASE = > > I915_READ(DPFC_CB_BASE); } else { > > dev_priv->saveFBC_CFB_BASE = > > I915_READ(FBC_CFB_BASE); @@ -706,7 +708,10 @@ void > > i915_restore_display(struct drm_device *dev) > > > > /* only restore FBC info on the platform that supports FBC*/ > > if (I915_HAS_FBC(dev)) { > > - if (IS_GM45(dev)) { > > + if (IS_IRONLAKE_M(dev)) { > > + ironlake_disable_fbc(dev); > > + I915_WRITE(ILK_DPFC_CB_BASE, dev_priv- > > > > >saveDPFC_CB_BASE); > > > > + } else if (IS_GM45(dev)) { > > g4x_disable_fbc(dev); > > I915_WRITE(DPFC_CB_BASE, > > dev_priv->saveDPFC_CB_BASE); } else { > > > Made no difference, today's git snapshot, 2.6.35-rc5-git4 w/ airlied + anholt > drm git trees still hangs attempting to suspend. in Fedora, it drops to the > Fedora logo w/ KMS mode then fails to finish suspending (moon light flashes > off and on), I do hear the disk heads parking though. Thanks for the update. > I will look at bisecting this week when time permits. If anyone else might > know what might be the issue it would save some time in the bisecting. Well, nothing comes to mind immediately at the moment. Rafael -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/