mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Zhenyu Wang <zhenyuw@linux.intel.com>
To: Miguel Ojeda <miguel.ojeda.sandonis@gmail.com>
Cc: linux-kernel@vger.kernel.org, David.Woodhouse@intel.com,
	dwmw2@infradead.org, eric@anholt.net, ben@decadent.org.uk,
	gregkh@suse.de
Subject: Re: [PATCH] intel-agp.c: Fix crash when accessing nonexistent GTT entries in i915
Date: Thu, 11 Mar 2010 16:34:04 +0800	[thread overview]
Message-ID: <20100311083404.GG6896@zhen-devel.sh.intel.com> (raw)
In-Reply-To: <ca2dc2821003102331x3d1a7a0fgadb63612e49f77db@mail.gmail.com>

[-- Attachment #1: Type: text/plain, Size: 5187 bytes --]

On 2010.03.11 08:31:57 +0100, Miguel Ojeda wrote:
> On Wed, Mar 10, 2010 at 11:09 PM, Miguel Ojeda
> <miguel.ojeda.sandonis@gmail.com> wrote:
> > Hi,
> >
> > The commit 5877960869333e42ebeb733e8d9d5630ff96d350 (included since 2.6.32.4) crashes (locks up) the 82915G/GV/910GL Controller when intel-agp.c tries to access nonexistent GTT entries at:
> >
> > -               for (i = intel_private.gtt_entries; i < current_size->num_entries; i++) {
> > +               for (i = intel_private.gtt_entries; i < intel_private.gtt_total_size; i++) {
> >
> > Rationale: I915 (gma900) has 128 MB of video memory (maximum), as per intel.com ( http://www.intel.com/support/graphics/intel915g/sb/CS-012579.htm ) and lscpi:

I think that page is wrong, and http://www.intel.com/design/chipsets/datashts/301467.htm
has info that 256K is for GTT bar, so max video memory size is 256M. On my 915G
board, I can choose 128M/256M in BIOS setup.

> >
> > 00:02.0 VGA compatible controller: Intel Corporation 82915G/GV/910GL Integrated Graphics Controller (rev 04) (prog-if 00 [VGA controller])
> >        Subsystem: Intel Corporation Device 4147
> >        Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
> >        Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
> >        Latency: 0
> >        Interrupt: pin A routed to IRQ 11
> >        Region 0: Memory at ff480000 (32-bit, non-prefetchable) [size=512K]
> >        Region 1: I/O ports at ec00 [size=8]
> >        Region 2: Memory at d8000000 (32-bit, prefetchable) [size=128M]
> >        Region 3: Memory at ff440000 (32-bit, non-prefetchable) [size=256K]

This also tells bar 3 for GTT has 256K.

> >        Capabilities: <access denied>
> >
> >
> > AFAIK, that implies that its gtt_total_size (in pages) should be 32K (as num_entries showed before the commit) instead of 64K.
> >
> > Note: The IS_I915 macro includes 945; however, only GMA900 (I915) had 128 MB as the maximum AFAIK. Therefore, I divided the IS_I915 macro. I do not know about the "E7221" (please check).
> >
> > How to reproduce: Access kernel.org in iceweasel (Debian Lenny) and the X server will crash. Sometimes, the kernel freezes.
> >

I can't produce this on my 915G board with 128M or 256M memory config. Could you
paste dmesg in your failure or just hang?

> > Please review. The fix should be applied to stable series, as well as 2.6.33 and 2.6.34-rc1.
> >
> > Signed-off-by: Miguel Ojeda <miguel.ojeda.sandonis@gmail.com>
> > ---
> > --- linux-2.6.32.stable/drivers/char/agp/intel-agp.c.old        2010-03-10 15:32:36.000000000 +0100
> > +++ linux-2.6.32.stable/drivers/char/agp/intel-agp.c    2010-03-10 22:38:23.000000000 +0100
> > @@ -65,11 +65,11 @@
> >  #define PCI_DEVICE_ID_INTEL_IGDNG_MC2_HB    0x006a
> >  #define PCI_DEVICE_ID_INTEL_IGDNG_M_IG     0x0046
> >
> > -/* cover 915 and 945 variants */
> >  #define IS_I915 (agp_bridge->dev->device == PCI_DEVICE_ID_INTEL_E7221_HB || \
> >                 agp_bridge->dev->device == PCI_DEVICE_ID_INTEL_82915G_HB || \
> > -                agp_bridge->dev->device == PCI_DEVICE_ID_INTEL_82915GM_HB || \
> > -                agp_bridge->dev->device == PCI_DEVICE_ID_INTEL_82945G_HB || \
> > +                agp_bridge->dev->device == PCI_DEVICE_ID_INTEL_82915GM_HB)
> > +
> > +#define IS_I945 (agp_bridge->dev->device == PCI_DEVICE_ID_INTEL_82945G_HB || \
> >                 agp_bridge->dev->device == PCI_DEVICE_ID_INTEL_82945GM_HB || \
> >                 agp_bridge->dev->device == PCI_DEVICE_ID_INTEL_82945GME_HB)
> >
> > @@ -724,14 +724,14 @@ static void intel_i830_init_gtt_entries(
> >                        break;
> >                case I915_GMCH_GMS_STOLEN_48M:
> >                        /* Check it's really I915G */
> > -                       if (IS_I915 || IS_I965 || IS_G33 || IS_G4X)
> > +                       if (IS_I915 || IS_I945 || IS_I965 || IS_G33 || IS_G4X)
> >                                gtt_entries = MB(48) - KB(size);
> >                        else
> >                                gtt_entries = 0;
> >                        break;
> >                case I915_GMCH_GMS_STOLEN_64M:
> >                        /* Check it's really I915G */
> > -                       if (IS_I915 || IS_I965 || IS_G33 || IS_G4X)
> > +                       if (IS_I915 || IS_I945 || IS_I965 || IS_G33 || IS_G4X)
> >                                gtt_entries = MB(64) - KB(size);
> >                        else
> >                                gtt_entries = 0;
> > @@ -1305,6 +1305,8 @@ static int intel_i915_create_gatt_table(
> >
> >        if (IS_G33)
> >            gtt_map_size = 1024 * 1024; /* 1M on G33 */
> > +       else if (IS_I915)
> > +           gtt_map_size = 128 * 1024; /* 128K on I915 */
> >        intel_private.gtt = ioremap(temp2, gtt_map_size);
> >        if (!intel_private.gtt)
> >                return -ENOMEM;
> >
> >
> >
> 
> Cc'ing the original committers.

-- 
Open Source Technology Center, Intel ltd.

$gpg --keyserver wwwkeys.pgp.net --recv-keys 4D781827

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 198 bytes --]

  reply	other threads:[~2010-03-11  8:34 UTC|newest]

Thread overview: 20+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-03-10 22:09 Miguel Ojeda
2010-03-11  7:31 ` Miguel Ojeda
2010-03-11  8:34   ` Zhenyu Wang [this message]
2010-03-11 15:54     ` Miguel Ojeda
2010-03-19 20:27       ` Andrew Morton
2010-03-20 13:04         ` Miguel Ojeda
2010-03-21 13:58           ` Zhenyu Wang
2010-03-21 15:30             ` Miguel Ojeda
2010-03-23  0:57               ` Andrew Morton
2010-03-23  4:14                 ` Christian Kujau
2010-03-23 11:40                   ` Miguel Ojeda
2010-03-24 18:14                     ` Andrew Morton
2010-03-24 19:07                       ` Miguel Ojeda
2010-03-25 16:55                       ` Miguel Ojeda
2010-04-27 17:57                         ` Andrew Morton
2010-04-27 20:06                           ` Miguel Ojeda
2010-04-27 20:26                             ` Andrew Morton
2010-04-27 21:07                               ` Miguel Ojeda
2010-03-23 10:02                 ` Miguel Ojeda
2010-04-28  7:49       ` Dave Airlie

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=20100311083404.GG6896@zhen-devel.sh.intel.com \
    --to=zhenyuw@linux.intel.com \
    --cc=David.Woodhouse@intel.com \
    --cc=ben@decadent.org.uk \
    --cc=dwmw2@infradead.org \
    --cc=eric@anholt.net \
    --cc=gregkh@suse.de \
    --cc=linux-kernel@vger.kernel.org \
    --cc=miguel.ojeda.sandonis@gmail.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®