Linux PARISC architecture development
 help / color / mirror / Atom feed
* Re: [patch 5/6] PARISC: move PERR & SERR enables out of pcibios_enable_resources()
       [not found] ` <20080228001053.209248743@ldl.fc.hp.com>
@ 2008-02-28 17:31   ` Grant Grundler
  2008-03-03 18:30     ` Jesse Barnes
  2008-02-28 17:38   ` Kyle McMartin
  1 sibling, 1 reply; 12+ messages in thread
From: Grant Grundler @ 2008-02-28 17:31 UTC (permalink / raw)
  To: Bjorn Helgaas
  Cc: linux-pci, linux-arch, Russell King, linux-arm-kernel,
	Kyle McMartin, Matthew Wilcox, Grant Grundler, linux-parisc,
	Paul Mackerras, Benjamin Herrenschmidt, linuxppc-dev,
	Chris Zankel

On Wed, Feb 27, 2008 at 05:04:42PM -0700, Bjorn Helgaas wrote:
> Move PERR and SERR enables from pcibios_enable_resources() to
> platform_pci_enable_device() so the former matches other
> architectures and can be shared.
> 
> Signed-off-by: Bjorn Helgaas <bjorn.helgaas@hp.com>

Ack-By: Grant Grundler <grundler@parisc-linux.org>

This patch sequence is heading in the right direction.
I've not tested this particular one yet but I'm pretty sure it's ok.
I'll fixup any breakage for parisc.

...
> +/*
> + * A driver is enabling the device.  We enable the PERR and SERR bits
> + * unconditionally.  Drivers that do not need parity (eg graphics and
> + * possibly networking) can clear these bits if they want.
> + */
> +static int platform_pci_enable_device(struct pci_dev *dev)

Thanks for preserving this comment.

In general, I'm wondering if the check for device class would be
sufficient here to NOT enable PERR/SERR for graphics automatically.
While disabling PERR was "the right thing" for older "mostly write"
devices of the 1990's and early 2000, it might not be correct for
current 3-D graphics devices which use host mem to buffer processed
results. I'm thinking of Intel graphics controllers in particular
but I don't know any details of how they actually work.

I'm also a bit concerned about this now becuase (IIRC) AGP didn't
implement parity though it looked like PCI protocol. PCI-e certainly
does but it's possible BIOS/Firmware disable parity generation
on the host bridge when connected to a gfx device.
We wouldn't want to enable parity checking on a PCI-e gfx device in this
case and I hope someone (perhaps at Intel) could double check this.

thanks,
grant

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [patch 5/6] PARISC: move PERR & SERR enables out of pcibios_enable_resources()
       [not found] ` <20080228001053.209248743@ldl.fc.hp.com>
  2008-02-28 17:31   ` [patch 5/6] PARISC: move PERR & SERR enables out of pcibios_enable_resources() Grant Grundler
@ 2008-02-28 17:38   ` Kyle McMartin
  1 sibling, 0 replies; 12+ messages in thread
From: Kyle McMartin @ 2008-02-28 17:38 UTC (permalink / raw)
  To: Bjorn Helgaas
  Cc: linux-pci, linux-arch, Russell King, linux-arm-kernel,
	Kyle McMartin, Matthew Wilcox, Grant Grundler, linux-parisc,
	Paul Mackerras, Benjamin Herrenschmidt, linuxppc-dev,
	Chris Zankel

On Wed, Feb 27, 2008 at 05:04:42PM -0700, Bjorn Helgaas wrote:
> Move PERR and SERR enables from pcibios_enable_resources() to
> platform_pci_enable_device() so the former matches other
> architectures and can be shared.
> 

I don't have any problems with this, but I think the naming needs to
change. pcibios_* namespace should probably remain arch dependent.
Renaming the unified implementation to pci_enable_resources, and adding
a weak function pcibios_enable_resources that can be overridden by
parisc and arm to enable PERR/SERR after calling the generic
pci_enable_resources function. No?

regards, Kyle

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [patch 6/6] PCI: consolidate several pcibios_enable_resources() implementations
       [not found] ` <20080228001053.404893334@ldl.fc.hp.com>
@ 2008-02-28 17:55   ` David Howells
       [not found]   ` <20080228001053.404893334-e+Ta4ugHZmL3oGB3hsPCZA@public.gmane.org>
  1 sibling, 0 replies; 12+ messages in thread
From: David Howells @ 2008-02-28 17:55 UTC (permalink / raw)
  To: Bjorn Helgaas
  Cc: Chris Zankel, Grant Grundler, linux-parisc, Matthew Wilcox,
	Kyle McMartin, linuxppc-dev, Paul Mackerras, linux-arm-kernel,
	Russell King

Bjorn Helgaas <bjorn.helgaas@hp.com> wrote:

> 
>     frv: checks only 6 resources at (1), has a different ROM
> 	resource check at (4) and (6) that ignores IORESOURCE_ROM_ENABLE
> ...
>     mn10300: checks only 6 resources at (1), has no IORESOURCE_{IO,MEM}
> 	check at (3), has a different ROM resource check at (4) and (6)
> 	that ignores IORESOURCE_ROM_ENABLE

Both parts:

Acked-by: David Howells <dhowells@redhat.com>

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [patch 4/6] ARM: move bridge enable out of pcibios_enable_resources()
       [not found] ` <20080228001053.013269726@ldl.fc.hp.com>
@ 2008-03-03 17:59   ` Jesse Barnes
  2008-03-03 20:35     ` Benjamin Herrenschmidt
  2008-03-06 15:06   ` Russell King - ARM Linux
  1 sibling, 1 reply; 12+ messages in thread
From: Jesse Barnes @ 2008-03-03 17:59 UTC (permalink / raw)
  To: linux-pci
  Cc: linux-arch, Chris Zankel, Grant Grundler, linux-parisc,
	Matthew Wilcox, Kyle McMartin, linuxppc-dev, Paul Mackerras,
	linux-arm-kernel, Russell King, Bjorn Helgaas

On Wednesday, February 27, 2008 4:04 pm Bjorn Helgaas wrote:
> Move bridge enable from pcibios_enable_resources() to
> platform_pci_enable_device() so the former matches other
> architectures and can be shared.

I really like the direction of these patches.  Getting PCI resources assigned 
& devices setup correctly for new arches has always been a bit more trouble 
than it should be...

>
> Signed-off-by: Bjorn Helgaas <bjorn.helgaas@hp.com>
>
> Index: work6/arch/arm/kernel/bios32.c
> ===================================================================
> --- work6.orig/arch/arm/kernel/bios32.c	2008-02-27 11:25:29.000000000 -0700
> +++ work6/arch/arm/kernel/bios32.c	2008-02-27 11:55:59.000000000 -0700
> @@ -683,15 +683,32 @@
>  			cmd |= PCI_COMMAND_MEMORY;
>  	}
>
> +	if (cmd != old_cmd) {
> +		printk("PCI: enabling device %s (%04x -> %04x)\n",
> +		       pci_name(dev), old_cmd, cmd);

Probably worth giving this printk a prefix at some point (doesn't matter for 
this patchset though since you're just moving it around).

Rest of it looks good.

Jesse

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [patch 5/6] PARISC: move PERR & SERR enables out of pcibios_enable_resources()
  2008-02-28 17:31   ` [patch 5/6] PARISC: move PERR & SERR enables out of pcibios_enable_resources() Grant Grundler
@ 2008-03-03 18:30     ` Jesse Barnes
  0 siblings, 0 replies; 12+ messages in thread
From: Jesse Barnes @ 2008-03-03 18:30 UTC (permalink / raw)
  To: linux-pci
  Cc: Grant Grundler, Bjorn Helgaas, linux-arch, Russell King,
	linux-arm-kernel, Kyle McMartin, Matthew Wilcox, linux-parisc,
	Paul Mackerras, Benjamin Herrenschmidt, linuxppc-dev,
	Chris Zankel

On Thursday, February 28, 2008 9:31 am Grant Grundler wrote:
> In general, I'm wondering if the check for device class would be
> sufficient here to NOT enable PERR/SERR for graphics automatically.
> While disabling PERR was "the right thing" for older "mostly write"
> devices of the 1990's and early 2000, it might not be correct for
> current 3-D graphics devices which use host mem to buffer processed
> results. I'm thinking of Intel graphics controllers in particular
> but I don't know any details of how they actually work.

Well, in general chipset devices aren't required to support parity checking, 
AIUI; Intel gfx devices don't bother (PERR enable is hardwired to 0).

> I'm also a bit concerned about this now becuase (IIRC) AGP didn't
> implement parity though it looked like PCI protocol. PCI-e certainly
> does but it's possible BIOS/Firmware disable parity generation
> on the host bridge when connected to a gfx device.
> We wouldn't want to enable parity checking on a PCI-e gfx device in this
> case and I hope someone (perhaps at Intel) could double check this.

I'd have to ping our BIOS folks to see if that's the case, but I doubt it.  It 
would be a bad idea to disable any PCIe error reporting (including legacy 
error mapping) just because a gfx device was attached.  Apparently the AMD 
PCIe parts include PERR generation, so disabling upstream reporting at boot 
time seems like it would be an outright bug; it should be left up to driver & 
OS software.

Jesse



^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [patch 6/6] PCI: consolidate several pcibios_enable_resources() implementations
       [not found]   ` <20080228001053.404893334-e+Ta4ugHZmL3oGB3hsPCZA@public.gmane.org>
@ 2008-03-03 18:45     ` Jesse Barnes
       [not found]       ` <200803031045.07054.jbarnes-Y1mF5jBUw70BENJcbMCuUQ@public.gmane.org>
  0 siblings, 1 reply; 12+ messages in thread
From: Jesse Barnes @ 2008-03-03 18:45 UTC (permalink / raw)
  To: linux-pci-jyMamyUUXNJG4ohzP4jBZS1Fcj925eT/
  Cc: Bjorn Helgaas, linux-arch-u79uwXL29TY76Z2rM5mHXA, Russell King,
	linux-arm-kernel-xIg/pKzrS19vn6HldHNs0ANdhmdF6hFW, Kyle McMartin,
	Matthew Wilcox, Grant Grundler,
	linux-parisc-u79uwXL29TY76Z2rM5mHXA, Paul Mackerras,
	Benjamin Herrenschmidt, linuxppc-dev-mnsaURCQ41sdnm+yROfE0A,
	Chris Zankel

On Wednesday, February 27, 2008 4:04 pm Bjorn Helgaas wrote:
> There are many implementations of pcibios_enable_resources() that differ
> in minor ways that look more like bugs than architectural differences.
>
> This patch consolidates most of them to use the version annotated below.
> This is the original x86 version, except that it uses the resource
> collision check from powerpc at (5):

Looks really good to me, definitely a step in the right direction.

> The mips/pmc-sierra implementation of pcibios_enable_resources() is
> cluttered with a bunch of titan stuff, so I can't immediately consolidate
> it with the others.  So I made the generic version "weak" so pmc-sierra
> can override it.
>
> Not-Yet-Signed-off-by: Bjorn Helgaas <bjorn.helgaas-VXdhtT5mjnY@public.gmane.org>

So you'd like to see the MIPS stuff cleaned up a bit more first before actual 
sign-off?  Or just more testing?

>  18 files changed, 43 insertions(+), 507 deletions(-)

Nice diffstat. :)

Jesse
--
To unsubscribe from this list: send the line "unsubscribe linux-arch" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [patch 6/6] PCI: consolidate several pcibios_enable_resources() implementations
       [not found]       ` <200803031045.07054.jbarnes-Y1mF5jBUw70BENJcbMCuUQ@public.gmane.org>
@ 2008-03-03 19:10         ` Bjorn Helgaas
  0 siblings, 0 replies; 12+ messages in thread
From: Bjorn Helgaas @ 2008-03-03 19:10 UTC (permalink / raw)
  To: Jesse Barnes
  Cc: linux-pci-jyMamyUUXNJG4ohzP4jBZS1Fcj925eT/,
	linux-arch-u79uwXL29TY76Z2rM5mHXA, Russell King,
	linux-arm-kernel-xIg/pKzrS19vn6HldHNs0ANdhmdF6hFW, Kyle McMartin,
	Matthew Wilcox, Grant Grundler,
	linux-parisc-u79uwXL29TY76Z2rM5mHXA, Paul Mackerras,
	Benjamin Herrenschmidt, linuxppc-dev-mnsaURCQ41sdnm+yROfE0A,
	Chris Zankel

On Monday 03 March 2008 11:45:06 am Jesse Barnes wrote:
> On Wednesday, February 27, 2008 4:04 pm Bjorn Helgaas wrote:
> >
> > Not-Yet-Signed-off-by: Bjorn Helgaas <bjorn.helgaas-VXdhtT5mjnY@public.gmane.org>
> 
> So you'd like to see the MIPS stuff cleaned up a bit more first before actual 
> sign-off?  Or just more testing?

I think it'd be *nice* if that MIPS stuff got cleaned up, but that's
way beyond my scope.  I just want to address Kyle's comments and make
sure I don't screw up ARM and PARISC.

Bjorn
--
To unsubscribe from this list: send the line "unsubscribe linux-arch" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [patch 0/6] RFC: PCI: consolidate pcibios_enable_resources() implementations, v2
       [not found] ` <20080228000437.880811124-e+Ta4ugHZmL3oGB3hsPCZA@public.gmane.org>
@ 2008-03-03 19:44   ` Russell King
  0 siblings, 0 replies; 12+ messages in thread
From: Russell King @ 2008-03-03 19:44 UTC (permalink / raw)
  To: Bjorn Helgaas
  Cc: linux-pci-jyMamyUUXNJG4ohzP4jBZS1Fcj925eT/,
	linux-arch-u79uwXL29TY76Z2rM5mHXA,
	linux-arm-kernel-xIg/pKzrS19vn6HldHNs0ANdhmdF6hFW, Kyle McMartin,
	Matthew Wilcox, Grant Grundler,
	linux-parisc-u79uwXL29TY76Z2rM5mHXA, Paul Mackerras,
	Benjamin Herrenschmidt, linuxppc-dev-mnsaURCQ41sdnm+yROfE0A,
	Chris Zankel

On Wed, Feb 27, 2008 at 05:04:37PM -0700, Bjorn Helgaas wrote:
> There are many implementations of pcibios_enable_resources() that differ
> in minor ways that look more like bugs than architectural differences.
> This patch series consolidates most of them to use the x86 version.
> 
> Changes between v1 and v2:
> 
>   - Moved ARM bridge enable to new platform_pci_enable_device(),
>     called by pcibios_enable_device()

Looks fine.  However, long term I've no idea what to do about this because
I don't remember the reasoning behind it.  So to change it risks breakage
of one sort or another.

It might have been something to do with the Mobility Cardbus docking
station, which adds a pair of P2P bridges onto the PCI chain downstream
of the Cardbus controller, and then a full PCI bus containing USB, VGA,
and other peripherals.

This _once_ used to work with Linux but I suspect as a result of "fixing"
other issues its now utterly broken.

In any case, that docking station isn't ARM specific in any way; merely
a toy Alan Cox sent me.  When I gave up my PCMCIA maintainership, I gave
up trying to keep it supported by Linux.

-- 
Russell King
 Linux kernel    2.6 ARM Linux   - http://www.arm.linux.org.uk/
 maintainer of:
--
To unsubscribe from this list: send the line "unsubscribe linux-arch" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [patch 4/6] ARM: move bridge enable out of pcibios_enable_resources()
  2008-03-03 17:59   ` [patch 4/6] ARM: move bridge enable out of pcibios_enable_resources() Jesse Barnes
@ 2008-03-03 20:35     ` Benjamin Herrenschmidt
  2008-03-03 20:43       ` Jesse Barnes
  0 siblings, 1 reply; 12+ messages in thread
From: Benjamin Herrenschmidt @ 2008-03-03 20:35 UTC (permalink / raw)
  To: Jesse Barnes
  Cc: linux-arch, Chris Zankel, Grant Grundler, linux-parisc,
	Matthew Wilcox, Kyle McMartin, linuxppc-dev, Paul Mackerras,
	linux-pci, linux-arm-kernel, Russell King, Bjorn Helgaas


On Mon, 2008-03-03 at 09:59 -0800, Jesse Barnes wrote:
> On Wednesday, February 27, 2008 4:04 pm Bjorn Helgaas wrote:
> > Move bridge enable from pcibios_enable_resources() to
> > platform_pci_enable_device() so the former matches other
> > architectures and can be shared.
> 
> I really like the direction of these patches.  Getting PCI resources assigned 
> & devices setup correctly for new arches has always been a bit more trouble 
> than it should be...

You'll noticed that I recently moved powerpc to something more common to
x86 in the are of resource allocation. Still -slightly- different but I
do believe there is room for somebody with some skills to try to turn
some of that into generic code.

Ben.

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [patch 4/6] ARM: move bridge enable out of pcibios_enable_resources()
  2008-03-03 20:35     ` Benjamin Herrenschmidt
@ 2008-03-03 20:43       ` Jesse Barnes
  0 siblings, 0 replies; 12+ messages in thread
From: Jesse Barnes @ 2008-03-03 20:43 UTC (permalink / raw)
  To: benh
  Cc: linux-pci, Bjorn Helgaas, linux-arch, Russell King,
	linux-arm-kernel, Kyle McMartin, Matthew Wilcox, Grant Grundler,
	linux-parisc, Paul Mackerras, linuxppc-dev, Chris Zankel

On Monday, March 03, 2008 12:35 pm Benjamin Herrenschmidt wrote:
> On Mon, 2008-03-03 at 09:59 -0800, Jesse Barnes wrote:
> > On Wednesday, February 27, 2008 4:04 pm Bjorn Helgaas wrote:
> > > Move bridge enable from pcibios_enable_resources() to
> > > platform_pci_enable_device() so the former matches other
> > > architectures and can be shared.
> >
> > I really like the direction of these patches.  Getting PCI resources
> > assigned & devices setup correctly for new arches has always been a bit
> > more trouble than it should be...
>
> You'll noticed that I recently moved powerpc to something more common to
> x86 in the are of resource allocation. Still -slightly- different but I
> do believe there is room for somebody with some skills to try to turn
> some of that into generic code.

Yeah, I think that would be a good thing to shoot for.  Even on PCs there are 
times when we need resource allocation to be done (or re-done) by the kernel 
for hotplug or just because the platform is pared down enough that it doesn't 
to it all by itself.

I might be able to find time to look into that myself in the next few weeks; I 
think we even have some open PCI bugs that could be solved by better resource 
allocation.

Jesse

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [patch 4/6] ARM: move bridge enable out of pcibios_enable_resources()
       [not found] ` <20080228001053.013269726@ldl.fc.hp.com>
  2008-03-03 17:59   ` [patch 4/6] ARM: move bridge enable out of pcibios_enable_resources() Jesse Barnes
@ 2008-03-06 15:06   ` Russell King - ARM Linux
       [not found]     ` <20080306150640.GL3283-f404yB8NqCZvn6HldHNs0ANdhmdF6hFW@public.gmane.org>
  1 sibling, 1 reply; 12+ messages in thread
From: Russell King - ARM Linux @ 2008-03-06 15:06 UTC (permalink / raw)
  To: Bjorn Helgaas
  Cc: linux-arch, Chris Zankel, Grant Grundler, linux-parisc,
	Matthew Wilcox, Benjamin Herrenschmidt, Kyle McMartin,
	linuxppc-dev, Paul Mackerras, linux-pci, linux-arm-kernel

On Wed, Feb 27, 2008 at 05:04:41PM -0700, Bjorn Helgaas wrote:
> Move bridge enable from pcibios_enable_resources() to
> platform_pci_enable_device() so the former matches other
> architectures and can be shared.
> 
> Signed-off-by: Bjorn Helgaas <bjorn.helgaas@hp.com>
> 
> Index: work6/arch/arm/kernel/bios32.c
> ===================================================================
> --- work6.orig/arch/arm/kernel/bios32.c	2008-02-27 11:25:29.000000000 -0700
> +++ work6/arch/arm/kernel/bios32.c	2008-02-27 11:55:59.000000000 -0700
> @@ -683,15 +683,32 @@
>  			cmd |= PCI_COMMAND_MEMORY;
>  	}
>  
> +	if (cmd != old_cmd) {
> +		printk("PCI: enabling device %s (%04x -> %04x)\n",
> +		       pci_name(dev), old_cmd, cmd);

Should be dev_info().

Apart from that...

Acked-by: Russell King <rmk+kernel@arm.linux.org.uk>

-------------------------------------------------------------------
List admin: http://lists.arm.linux.org.uk/mailman/listinfo/linux-arm-kernel
FAQ:        http://www.arm.linux.org.uk/mailinglists/faq.php
Etiquette:  http://www.arm.linux.org.uk/mailinglists/etiquette.php

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [patch 4/6] ARM: move bridge enable out of pcibios_enable_resources()
       [not found]     ` <20080306150640.GL3283-f404yB8NqCZvn6HldHNs0ANdhmdF6hFW@public.gmane.org>
@ 2008-03-06 15:42       ` Bjorn Helgaas
  0 siblings, 0 replies; 12+ messages in thread
From: Bjorn Helgaas @ 2008-03-06 15:42 UTC (permalink / raw)
  To: Russell King - ARM Linux
  Cc: linux-pci-jyMamyUUXNJG4ohzP4jBZS1Fcj925eT/,
	linux-arch-u79uwXL29TY76Z2rM5mHXA, Chris Zankel, Grant Grundler,
	linux-parisc-u79uwXL29TY76Z2rM5mHXA, Matthew Wilcox,
	Benjamin Herrenschmidt, Kyle McMartin,
	linuxppc-dev-mnsaURCQ41sdnm+yROfE0A, Paul Mackerras,
	linux-arm-kernel-xIg/pKzrS19vn6HldHNs0ANdhmdF6hFW

On Thursday 06 March 2008 08:06:40 am Russell King - ARM Linux wrote:
> On Wed, Feb 27, 2008 at 05:04:41PM -0700, Bjorn Helgaas wrote:
> > Move bridge enable from pcibios_enable_resources() to
> > platform_pci_enable_device() so the former matches other
> > architectures and can be shared.
> > 
> > Signed-off-by: Bjorn Helgaas <bjorn.helgaas-VXdhtT5mjnY@public.gmane.org>
> > 
> > Index: work6/arch/arm/kernel/bios32.c
> > ===================================================================
> > --- work6.orig/arch/arm/kernel/bios32.c	2008-02-27 11:25:29.000000000 -0700
> > +++ work6/arch/arm/kernel/bios32.c	2008-02-27 11:55:59.000000000 -0700
> > @@ -683,15 +683,32 @@
> >  			cmd |= PCI_COMMAND_MEMORY;
> >  	}
> >  
> > +	if (cmd != old_cmd) {
> > +		printk("PCI: enabling device %s (%04x -> %04x)\n",
> > +		       pci_name(dev), old_cmd, cmd);
> 
> Should be dev_info().
> 
> Apart from that...
> 
> Acked-by: Russell King <rmk+kernel-lFZ/pmaqli7XmaaqVzeoHQ@public.gmane.org>

I fixed that in the v3 patch that Greg KH put in his tree.

Thanks,
  Bjorn
--
To unsubscribe from this list: send the line "unsubscribe linux-arch" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 12+ messages in thread

end of thread, other threads:[~2008-03-06 15:42 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <20080228000437.880811124@ldl.fc.hp.com>
     [not found] ` <20080228001053.209248743@ldl.fc.hp.com>
2008-02-28 17:31   ` [patch 5/6] PARISC: move PERR & SERR enables out of pcibios_enable_resources() Grant Grundler
2008-03-03 18:30     ` Jesse Barnes
2008-02-28 17:38   ` Kyle McMartin
     [not found] ` <20080228001053.404893334@ldl.fc.hp.com>
2008-02-28 17:55   ` [patch 6/6] PCI: consolidate several pcibios_enable_resources() implementations David Howells
     [not found]   ` <20080228001053.404893334-e+Ta4ugHZmL3oGB3hsPCZA@public.gmane.org>
2008-03-03 18:45     ` Jesse Barnes
     [not found]       ` <200803031045.07054.jbarnes-Y1mF5jBUw70BENJcbMCuUQ@public.gmane.org>
2008-03-03 19:10         ` Bjorn Helgaas
     [not found] ` <20080228001053.013269726@ldl.fc.hp.com>
2008-03-03 17:59   ` [patch 4/6] ARM: move bridge enable out of pcibios_enable_resources() Jesse Barnes
2008-03-03 20:35     ` Benjamin Herrenschmidt
2008-03-03 20:43       ` Jesse Barnes
2008-03-06 15:06   ` Russell King - ARM Linux
     [not found]     ` <20080306150640.GL3283-f404yB8NqCZvn6HldHNs0ANdhmdF6hFW@public.gmane.org>
2008-03-06 15:42       ` Bjorn Helgaas
     [not found] ` <20080228000437.880811124-e+Ta4ugHZmL3oGB3hsPCZA@public.gmane.org>
2008-03-03 19:44   ` [patch 0/6] RFC: PCI: consolidate pcibios_enable_resources() implementations, v2 Russell King

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox