From: Kumar Gala <galak@kernel.crashing.org>
To: Jon Loeliger <jdl@freescale.com>
Cc: "linuxppc-dev@ozlabs.org" <linuxppc-dev@ozlabs.org>
Subject: Re: The transparent PCI-Express bridge problem
Date: Fri, 9 Mar 2007 16:22:01 -0600 [thread overview]
Message-ID: <891B901D-FC5E-4AFC-9C79-EFAEFD9C59DB@kernel.crashing.org> (raw)
In-Reply-To: <1173471495.23776.241.camel@ld0161-tx32>
On Mar 9, 2007, at 2:18 PM, Jon Loeliger wrote:
> Kumar,
>
> Here is a lspci -xv from the 8544 DS board. This is
> the same board as the 8641 HPCN board, so they both have
> the same "root complex is really a transparent bridge"
> problem that needs to be resolved.
>
> Please let me know if you need further or different info here.
>
> HTH,
> jdl
>
>
>
>
> # lspci -xv
> 00:00.0 Power PC: Unknown device 1957:0030 (rev 10)
> !!! Invalid class 0b20 for header type 01
> Flags: bus master, fast devsel, latency 0
> Bus: primary=00, secondary=01, subordinate=02, sec-latency=0
> I/O behind bridge: 00000000-00000fff
> Memory behind bridge: 00000000-000fffff
> Prefetchable memory behind bridge:
> 0000000000000000-0000000000000000
> Capabilities: [44] Power Management version 2
> Capabilities: [4c] #10 [0041]
> 00: 57 19 30 00 06 01 10 00 10 00 20 0b 00 00 01 00
> 10: 00 00 00 00 00 00 00 00 00 01 02 00 00 00 00 20
> 20: 00 00 00 00 01 00 01 00 00 00 00 00 00 00 00 00
> 30: 00 00 00 00 44 00 00 00 00 00 00 00 00 00 00 00
(Mainly responding for anyone else reading this)
After some discussion, and reading of the PCI-Express specs the issue
is that the class information is not being set properly. Try a quirk
like the following to fixup and see what happens.
static void __devinit early_fsl_pcie(struct pci_dev *dev)
{
dev->class &= 0xff;
dev->class |= (PCI_CLASS_BRIDGE_PCI << 8)
}
DECLARE_PCI_FIXUP_EARLY(0x1957, 0x0030, early_fsl_pcie);
I think this may resolve the following issues:
* Do not skip PCI Express to PCI bridge when scanning OF node
* All the driver/pci/probe.c changes
- k
prev parent reply other threads:[~2007-03-09 22:23 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2007-03-09 20:18 The transparent PCI-Express bridge problem Jon Loeliger
2007-03-09 22:22 ` Kumar Gala [this message]
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=891B901D-FC5E-4AFC-9C79-EFAEFD9C59DB@kernel.crashing.org \
--to=galak@kernel.crashing.org \
--cc=jdl@freescale.com \
--cc=linuxppc-dev@ozlabs.org \
/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;
as well as URLs for NNTP newsgroup(s).