From mboxrd@z Thu Jan 1 00:00:00 1970 From: Alex Riesen Subject: Re: Linux 2.6.37-rc8 (no fb) Date: Wed, 29 Dec 2010 22:11:09 +0100 Message-ID: References: <20101229102127.06c0e505.randy.dunlap@oracle.com> <20101229121601.179983b7@jbarnes-desktop> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: QUOTED-PRINTABLE Return-path: In-Reply-To: <20101229121601.179983b7@jbarnes-desktop> Sender: linux-kernel-owner@vger.kernel.org To: Jesse Barnes Cc: Linus Torvalds , Randy Dunlap , Linux Kernel Mailing List , dri-devel@lists.freedesktop.org, Jeff Chua List-Id: dri-devel@lists.freedesktop.org On Wed, Dec 29, 2010 at 21:16, Jesse Barnes = wrote: > On Wed, 29 Dec 2010 11:40:04 -0800 > Linus Torvalds wrote: >> Chris - why did that lvds_ssc_freq thing suddenly start mattering? C= an >> we please just disable spread-spectrum entirely? Or perhaps only if = we >> notice that it was enabled already? Or something? > > Randy, Jeff and Alex, does the below help at all? =C2=A0If so, it may= be the > minimal fix we want for 2.6.37. Something broke your patch: whitespace instead of tabs. > diff --git a/drivers/gpu/drm/i915/intel_bios.c b/drivers/gpu/drm/i915= /intel_bios > index 2b20786..d27d016 100644 > --- a/drivers/gpu/drm/i915/intel_bios.c > +++ b/drivers/gpu/drm/i915/intel_bios.c > @@ -263,6 +263,9 @@ parse_general_features(struct drm_i915_private *d= ev_priv, > =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0dev_priv->int_= tv_support =3D general->int_tv_support; > =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0dev_priv->int_= crt_support =3D general->int_crt_support; > =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0dev_priv->lvds= _use_ssc =3D general->enable_ssc; > + =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 /* force disable u= ntil we can parse this correctly */ This comment seems to imply that SSC wasn't used at all until recently,= right? > + =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 if (IS_GEN5(dev) |= | IS_GEN6(dev)) > + =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0= =C2=A0 dev_priv->lvds_use_ssc =3D 0; Doesn't change anything here. Display stays blank.