Re: PCI Failed to allocate mem for PCI ROM

2008-01-12 Thread Ivan Kokshaysky
On Sat, Jan 12, 2008 at 12:27:05AM -0700, Grant Grundler wrote:
> Looking at setup-bus.c:pci_bridge_check_ranges(), I'm concluding that:
> [7] is IO Range.
> [8] is MMIO
> [9] is Prefetchable MMIO
> [10] no clue...maybe used by host PCI bus controllers.

#10 is for cardbus bridges, IIRC.

> 0x10 is 1MB and would be the minimum MMIO range that can be allocated.
> So that looks right too. Probably need to find out what is allocating
> 0xe000 instead.

I believe that the setup-bus code just tried to allocate 1M ROM of some
device using prefetchable window of the bridge :00:00.0. That failed,
probably because there is no MEM space left on the root bus, which is
perfectly OK. Then, the ROM might be successfully allocated in the
non-prefetchable MMIO space.

So, I don't see any problem in this situation. The only thing I could
suggest is to lower the log level in that message from KERN_ERR to
KERN_WARNING...

Ivan.
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


Re: PCI Failed to allocate mem for PCI ROM

2008-01-12 Thread Ivan Kokshaysky
On Sat, Jan 12, 2008 at 12:27:05AM -0700, Grant Grundler wrote:
 Looking at setup-bus.c:pci_bridge_check_ranges(), I'm concluding that:
 [7] is IO Range.
 [8] is MMIO
 [9] is Prefetchable MMIO
 [10] no clue...maybe used by host PCI bus controllers.

#10 is for cardbus bridges, IIRC.

 0x10 is 1MB and would be the minimum MMIO range that can be allocated.
 So that looks right too. Probably need to find out what is allocating
 0xe000 instead.

I believe that the setup-bus code just tried to allocate 1M ROM of some
device using prefetchable window of the bridge :00:00.0. That failed,
probably because there is no MEM space left on the root bus, which is
perfectly OK. Then, the ROM might be successfully allocated in the
non-prefetchable MMIO space.

So, I don't see any problem in this situation. The only thing I could
suggest is to lower the log level in that message from KERN_ERR to
KERN_WARNING...

Ivan.
--
To unsubscribe from this list: send the line unsubscribe linux-kernel in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


Re: PCI Failed to allocate mem for PCI ROM

2008-01-11 Thread Grant Grundler
On Fri, Jan 11, 2008 at 02:27:16PM -0600, Kumar Gala wrote:
>>> I'm getting the following message from the kernel on an embedded ppc32
>>> system:
>>>
>>> PCI: Failed to allocate mem resource #9:[EMAIL PROTECTED] for :00:00.0
>>>
>>> The HW setup is a PCIe host controller and an e1000 NIC card.
...
> I'm happy to debug, is the fact that the resno == 9 ok or does that seem 
> wrong?

That is fine for the Bridge. See include/linux/pci.h :
#define PCI_ROM_RESOURCE6
#define PCI_BRIDGE_RESOURCES7
#define PCI_NUM_RESOURCES   11

IIRC, Bridges may have two 32-bit or one 64-bit BAR, Expansion ROM BAR and
three "range" registers: IO Port, MMIO (Prefetchable and non-prefetchable).
The BRIDGE_RESOURCES (7-10) are what failed to be assigned for some reason.

Looking at setup-bus.c:pci_bridge_check_ranges(), I'm concluding that:
[7] is IO Range.
[8] is MMIO
[9] is Prefetchable MMIO
[10] no clue...maybe used by host PCI bus controllers.

0x10 is 1MB and would be the minimum MMIO range that can be allocated.
So that looks right too. Probably need to find out what is allocating
0xe000 instead.

hth,
grant
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


Re: PCI Failed to allocate mem for PCI ROM

2008-01-11 Thread Kumar Gala


On Jan 11, 2008, at 11:50 AM, Greg KH wrote:


On Fri, Jan 11, 2008 at 02:29:28AM -0600, Kumar Gala wrote:

Greg,

I'm getting the following message from the kernel on an embedded  
ppc32

system:

PCI: Failed to allocate mem resource #9:[EMAIL PROTECTED] for  
:00:00.0


The HW setup is a PCIe host controller and an e1000 NIC card.  It  
appears
that pci_bus_assign_resources() is trying to call  
pci_assign_resource() for
the ROM and the resource for the ROM is [10:1f] where the  
PHB is

[c000:dfff].

It seems like the resno that pci_assign_resource is getting called  
with is

wrong and thus pci_update_resource() doesn't get called.

any ideas?


Nope, sorry, any help debugging this is appreciated, pci resource
allocation is "tricky" :)


I'm happy to debug, is the fact that the resno == 9 ok or does that  
seem wrong?


- k
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


Re: PCI Failed to allocate mem for PCI ROM

2008-01-11 Thread Greg KH
On Fri, Jan 11, 2008 at 02:29:28AM -0600, Kumar Gala wrote:
> Greg,
>
> I'm getting the following message from the kernel on an embedded ppc32 
> system:
>
> PCI: Failed to allocate mem resource #9:[EMAIL PROTECTED] for :00:00.0
>
> The HW setup is a PCIe host controller and an e1000 NIC card.  It appears 
> that pci_bus_assign_resources() is trying to call pci_assign_resource() for 
> the ROM and the resource for the ROM is [10:1f] where the PHB is 
> [c000:dfff].
>
> It seems like the resno that pci_assign_resource is getting called with is 
> wrong and thus pci_update_resource() doesn't get called.
>
> any ideas?

Nope, sorry, any help debugging this is appreciated, pci resource
allocation is "tricky" :)

thanks,

greg k-h
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


Re: PCI Failed to allocate mem for PCI ROM

2008-01-11 Thread Greg KH
On Fri, Jan 11, 2008 at 10:13:23AM +0100, Jiri Slaby wrote:
> On 01/11/2008 10:07 AM, Kumar Gala wrote:
>> On Jan 11, 2008, at 2:41 AM, Jiri Slaby wrote:
>>> On 01/11/2008 09:29 AM, Kumar Gala wrote:
 Greg,
 I'm getting the following message from the kernel on an embedded ppc32 
 system:
 PCI: Failed to allocate mem resource #9:[EMAIL PROTECTED] for :00:00.0
 The HW setup is a PCIe host controller and an e1000 NIC card.  It 
 appears that pci_bus_assign_resources() is trying to call 
 pci_assign_resource() for the ROM and the resource for the ROM is 
 [10:1f] where the PHB is [c000:dfff].
 It seems like the resno that pci_assign_resource is getting called with 
 is wrong and thus pci_update_resource() doesn't get called.
 any ideas?
>>>
>>> Kernel version, please.
>> Sorry, its 2.6.24-rc7 + some ppc patches queued for 2.6.25
>
> Could you try this patch?
> http://git.kernel.org/?p=linux/kernel/git/gregkh/patches.git;a=blob_plain;f=pci/pci-remove-default-pci-expansion-rom-memory-allocation.patch
>
> Greg: is this 2.6.25 material, please? We need this for SP2.

Yes, this is queued up for 2.6.25, and I have no objection to adding it
for SLE10 SP2 if needed.  But I think there is another patch in the
series that also goes with this, ask IBM, they know what is needed here.

thanks,

greg k-h
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


Re: PCI Failed to allocate mem for PCI ROM

2008-01-11 Thread Jiri Slaby
Kumar Gala napsal(a):
> I saw that patch, but if you notice that its just x86 specific and I'm
> having the issue on a powerpc 32-bit system.

My bad, sorry.
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


Re: PCI Failed to allocate mem for PCI ROM

2008-01-11 Thread Kumar Gala


On Jan 11, 2008, at 3:13 AM, Jiri Slaby wrote:


On 01/11/2008 10:07 AM, Kumar Gala wrote:

On Jan 11, 2008, at 2:41 AM, Jiri Slaby wrote:

On 01/11/2008 09:29 AM, Kumar Gala wrote:

Greg,
I'm getting the following message from the kernel on an embedded  
ppc32 system:
PCI: Failed to allocate mem resource #9:[EMAIL PROTECTED] for  
:00:00.0
The HW setup is a PCIe host controller and an e1000 NIC card.  It  
appears that pci_bus_assign_resources() is trying to call  
pci_assign_resource() for the ROM and the resource for the ROM is  
[10:1f] where the PHB is [c000:dfff].
It seems like the resno that pci_assign_resource is getting  
called with is wrong and thus pci_update_resource() doesn't get  
called.

any ideas?


Kernel version, please.

Sorry, its 2.6.24-rc7 + some ppc patches queued for 2.6.25


Could you try this patch?
http://git.kernel.org/?p=linux/kernel/git/gregkh/patches.git;a=blob_plain;f=pci/pci-remove-default-pci-expansion-rom-memory-allocation.patch

Greg: is this 2.6.25 material, please? We need this for SP2.


I saw that patch, but if you notice that its just x86 specific and I'm  
having the issue on a powerpc 32-bit system.


- k
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


Re: PCI Failed to allocate mem for PCI ROM

2008-01-11 Thread Jiri Slaby

On 01/11/2008 10:07 AM, Kumar Gala wrote:


On Jan 11, 2008, at 2:41 AM, Jiri Slaby wrote:


On 01/11/2008 09:29 AM, Kumar Gala wrote:

Greg,
I'm getting the following message from the kernel on an embedded 
ppc32 system:

PCI: Failed to allocate mem resource #9:[EMAIL PROTECTED] for :00:00.0
The HW setup is a PCIe host controller and an e1000 NIC card.  It 
appears that pci_bus_assign_resources() is trying to call 
pci_assign_resource() for the ROM and the resource for the ROM is 
[10:1f] where the PHB is [c000:dfff].
It seems like the resno that pci_assign_resource is getting called 
with is wrong and thus pci_update_resource() doesn't get called.

any ideas?


Kernel version, please.


Sorry, its 2.6.24-rc7 + some ppc patches queued for 2.6.25


Could you try this patch?
http://git.kernel.org/?p=linux/kernel/git/gregkh/patches.git;a=blob_plain;f=pci/pci-remove-default-pci-expansion-rom-memory-allocation.patch

Greg: is this 2.6.25 material, please? We need this for SP2.

thanks,
--
Jiri Slaby
Faculty of Informatics, Masaryk University
Suse Labs
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


Re: PCI Failed to allocate mem for PCI ROM

2008-01-11 Thread Kumar Gala


On Jan 11, 2008, at 2:41 AM, Jiri Slaby wrote:


On 01/11/2008 09:29 AM, Kumar Gala wrote:

Greg,
I'm getting the following message from the kernel on an embedded  
ppc32 system:
PCI: Failed to allocate mem resource #9:[EMAIL PROTECTED] for  
:00:00.0
The HW setup is a PCIe host controller and an e1000 NIC card.  It  
appears that pci_bus_assign_resources() is trying to call  
pci_assign_resource() for the ROM and the resource for the ROM is  
[10:1f] where the PHB is [c000:dfff].
It seems like the resno that pci_assign_resource is getting called  
with is wrong and thus pci_update_resource() doesn't get called.

any ideas?


Kernel version, please.


Sorry, its 2.6.24-rc7 + some ppc patches queued for 2.6.25

- k

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


Re: PCI Failed to allocate mem for PCI ROM

2008-01-11 Thread Jiri Slaby

On 01/11/2008 09:29 AM, Kumar Gala wrote:

Greg,

I'm getting the following message from the kernel on an embedded ppc32 
system:


PCI: Failed to allocate mem resource #9:[EMAIL PROTECTED] for :00:00.0

The HW setup is a PCIe host controller and an e1000 NIC card.  It 
appears that pci_bus_assign_resources() is trying to call 
pci_assign_resource() for the ROM and the resource for the ROM is 
[10:1f] where the PHB is [c000:dfff].


It seems like the resno that pci_assign_resource is getting called with 
is wrong and thus pci_update_resource() doesn't get called.


any ideas?


Kernel version, please.
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


PCI Failed to allocate mem for PCI ROM

2008-01-11 Thread Kumar Gala

Greg,

I'm getting the following message from the kernel on an embedded ppc32  
system:


PCI: Failed to allocate mem resource #9:[EMAIL PROTECTED] for :00:00.0

The HW setup is a PCIe host controller and an e1000 NIC card.  It  
appears that pci_bus_assign_resources() is trying to call  
pci_assign_resource() for the ROM and the resource for the ROM is  
[10:1f] where the PHB is [c000:dfff].


It seems like the resno that pci_assign_resource is getting called  
with is wrong and thus pci_update_resource() doesn't get called.


any ideas?

- k
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


PCI Failed to allocate mem for PCI ROM

2008-01-11 Thread Kumar Gala

Greg,

I'm getting the following message from the kernel on an embedded ppc32  
system:


PCI: Failed to allocate mem resource #9:[EMAIL PROTECTED] for :00:00.0

The HW setup is a PCIe host controller and an e1000 NIC card.  It  
appears that pci_bus_assign_resources() is trying to call  
pci_assign_resource() for the ROM and the resource for the ROM is  
[10:1f] where the PHB is [c000:dfff].


It seems like the resno that pci_assign_resource is getting called  
with is wrong and thus pci_update_resource() doesn't get called.


any ideas?

- k
--
To unsubscribe from this list: send the line unsubscribe linux-kernel in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


Re: PCI Failed to allocate mem for PCI ROM

2008-01-11 Thread Jiri Slaby

On 01/11/2008 09:29 AM, Kumar Gala wrote:

Greg,

I'm getting the following message from the kernel on an embedded ppc32 
system:


PCI: Failed to allocate mem resource #9:[EMAIL PROTECTED] for :00:00.0

The HW setup is a PCIe host controller and an e1000 NIC card.  It 
appears that pci_bus_assign_resources() is trying to call 
pci_assign_resource() for the ROM and the resource for the ROM is 
[10:1f] where the PHB is [c000:dfff].


It seems like the resno that pci_assign_resource is getting called with 
is wrong and thus pci_update_resource() doesn't get called.


any ideas?


Kernel version, please.
--
To unsubscribe from this list: send the line unsubscribe linux-kernel in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


Re: PCI Failed to allocate mem for PCI ROM

2008-01-11 Thread Kumar Gala


On Jan 11, 2008, at 2:41 AM, Jiri Slaby wrote:


On 01/11/2008 09:29 AM, Kumar Gala wrote:

Greg,
I'm getting the following message from the kernel on an embedded  
ppc32 system:
PCI: Failed to allocate mem resource #9:[EMAIL PROTECTED] for  
:00:00.0
The HW setup is a PCIe host controller and an e1000 NIC card.  It  
appears that pci_bus_assign_resources() is trying to call  
pci_assign_resource() for the ROM and the resource for the ROM is  
[10:1f] where the PHB is [c000:dfff].
It seems like the resno that pci_assign_resource is getting called  
with is wrong and thus pci_update_resource() doesn't get called.

any ideas?


Kernel version, please.


Sorry, its 2.6.24-rc7 + some ppc patches queued for 2.6.25

- k

--
To unsubscribe from this list: send the line unsubscribe linux-kernel in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


Re: PCI Failed to allocate mem for PCI ROM

2008-01-11 Thread Jiri Slaby

On 01/11/2008 10:07 AM, Kumar Gala wrote:


On Jan 11, 2008, at 2:41 AM, Jiri Slaby wrote:


On 01/11/2008 09:29 AM, Kumar Gala wrote:

Greg,
I'm getting the following message from the kernel on an embedded 
ppc32 system:

PCI: Failed to allocate mem resource #9:[EMAIL PROTECTED] for :00:00.0
The HW setup is a PCIe host controller and an e1000 NIC card.  It 
appears that pci_bus_assign_resources() is trying to call 
pci_assign_resource() for the ROM and the resource for the ROM is 
[10:1f] where the PHB is [c000:dfff].
It seems like the resno that pci_assign_resource is getting called 
with is wrong and thus pci_update_resource() doesn't get called.

any ideas?


Kernel version, please.


Sorry, its 2.6.24-rc7 + some ppc patches queued for 2.6.25


Could you try this patch?
http://git.kernel.org/?p=linux/kernel/git/gregkh/patches.git;a=blob_plain;f=pci/pci-remove-default-pci-expansion-rom-memory-allocation.patch

Greg: is this 2.6.25 material, please? We need this for SP2.

thanks,
--
Jiri Slaby
Faculty of Informatics, Masaryk University
Suse Labs
--
To unsubscribe from this list: send the line unsubscribe linux-kernel in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


Re: PCI Failed to allocate mem for PCI ROM

2008-01-11 Thread Kumar Gala


On Jan 11, 2008, at 3:13 AM, Jiri Slaby wrote:


On 01/11/2008 10:07 AM, Kumar Gala wrote:

On Jan 11, 2008, at 2:41 AM, Jiri Slaby wrote:

On 01/11/2008 09:29 AM, Kumar Gala wrote:

Greg,
I'm getting the following message from the kernel on an embedded  
ppc32 system:
PCI: Failed to allocate mem resource #9:[EMAIL PROTECTED] for  
:00:00.0
The HW setup is a PCIe host controller and an e1000 NIC card.  It  
appears that pci_bus_assign_resources() is trying to call  
pci_assign_resource() for the ROM and the resource for the ROM is  
[10:1f] where the PHB is [c000:dfff].
It seems like the resno that pci_assign_resource is getting  
called with is wrong and thus pci_update_resource() doesn't get  
called.

any ideas?


Kernel version, please.

Sorry, its 2.6.24-rc7 + some ppc patches queued for 2.6.25


Could you try this patch?
http://git.kernel.org/?p=linux/kernel/git/gregkh/patches.git;a=blob_plain;f=pci/pci-remove-default-pci-expansion-rom-memory-allocation.patch

Greg: is this 2.6.25 material, please? We need this for SP2.


I saw that patch, but if you notice that its just x86 specific and I'm  
having the issue on a powerpc 32-bit system.


- k
--
To unsubscribe from this list: send the line unsubscribe linux-kernel in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


Re: PCI Failed to allocate mem for PCI ROM

2008-01-11 Thread Jiri Slaby
Kumar Gala napsal(a):
 I saw that patch, but if you notice that its just x86 specific and I'm
 having the issue on a powerpc 32-bit system.

My bad, sorry.
--
To unsubscribe from this list: send the line unsubscribe linux-kernel in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


Re: PCI Failed to allocate mem for PCI ROM

2008-01-11 Thread Greg KH
On Fri, Jan 11, 2008 at 02:29:28AM -0600, Kumar Gala wrote:
 Greg,

 I'm getting the following message from the kernel on an embedded ppc32 
 system:

 PCI: Failed to allocate mem resource #9:[EMAIL PROTECTED] for :00:00.0

 The HW setup is a PCIe host controller and an e1000 NIC card.  It appears 
 that pci_bus_assign_resources() is trying to call pci_assign_resource() for 
 the ROM and the resource for the ROM is [10:1f] where the PHB is 
 [c000:dfff].

 It seems like the resno that pci_assign_resource is getting called with is 
 wrong and thus pci_update_resource() doesn't get called.

 any ideas?

Nope, sorry, any help debugging this is appreciated, pci resource
allocation is tricky :)

thanks,

greg k-h
--
To unsubscribe from this list: send the line unsubscribe linux-kernel in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


Re: PCI Failed to allocate mem for PCI ROM

2008-01-11 Thread Greg KH
On Fri, Jan 11, 2008 at 10:13:23AM +0100, Jiri Slaby wrote:
 On 01/11/2008 10:07 AM, Kumar Gala wrote:
 On Jan 11, 2008, at 2:41 AM, Jiri Slaby wrote:
 On 01/11/2008 09:29 AM, Kumar Gala wrote:
 Greg,
 I'm getting the following message from the kernel on an embedded ppc32 
 system:
 PCI: Failed to allocate mem resource #9:[EMAIL PROTECTED] for :00:00.0
 The HW setup is a PCIe host controller and an e1000 NIC card.  It 
 appears that pci_bus_assign_resources() is trying to call 
 pci_assign_resource() for the ROM and the resource for the ROM is 
 [10:1f] where the PHB is [c000:dfff].
 It seems like the resno that pci_assign_resource is getting called with 
 is wrong and thus pci_update_resource() doesn't get called.
 any ideas?

 Kernel version, please.
 Sorry, its 2.6.24-rc7 + some ppc patches queued for 2.6.25

 Could you try this patch?
 http://git.kernel.org/?p=linux/kernel/git/gregkh/patches.git;a=blob_plain;f=pci/pci-remove-default-pci-expansion-rom-memory-allocation.patch

 Greg: is this 2.6.25 material, please? We need this for SP2.

Yes, this is queued up for 2.6.25, and I have no objection to adding it
for SLE10 SP2 if needed.  But I think there is another patch in the
series that also goes with this, ask IBM, they know what is needed here.

thanks,

greg k-h
--
To unsubscribe from this list: send the line unsubscribe linux-kernel in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


Re: PCI Failed to allocate mem for PCI ROM

2008-01-11 Thread Grant Grundler
On Fri, Jan 11, 2008 at 02:27:16PM -0600, Kumar Gala wrote:
 I'm getting the following message from the kernel on an embedded ppc32
 system:

 PCI: Failed to allocate mem resource #9:[EMAIL PROTECTED] for :00:00.0

 The HW setup is a PCIe host controller and an e1000 NIC card.
...
 I'm happy to debug, is the fact that the resno == 9 ok or does that seem 
 wrong?

That is fine for the Bridge. See include/linux/pci.h :
#define PCI_ROM_RESOURCE6
#define PCI_BRIDGE_RESOURCES7
#define PCI_NUM_RESOURCES   11

IIRC, Bridges may have two 32-bit or one 64-bit BAR, Expansion ROM BAR and
three range registers: IO Port, MMIO (Prefetchable and non-prefetchable).
The BRIDGE_RESOURCES (7-10) are what failed to be assigned for some reason.

Looking at setup-bus.c:pci_bridge_check_ranges(), I'm concluding that:
[7] is IO Range.
[8] is MMIO
[9] is Prefetchable MMIO
[10] no clue...maybe used by host PCI bus controllers.

0x10 is 1MB and would be the minimum MMIO range that can be allocated.
So that looks right too. Probably need to find out what is allocating
0xe000 instead.

hth,
grant
--
To unsubscribe from this list: send the line unsubscribe linux-kernel in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/