From: Jia Hongtao <B38951@freescale.com>
To: <linuxppc-dev@lists.ozlabs.org>
Cc: B11780@freescale.com, b38951@freescale.com
Subject: [PATCH 2/2] powerpc/fsl-pci: Only scan PCI bus if configured as a host
Date: Mon, 31 Oct 2011 13:54:52 +0800 [thread overview]
Message-ID: <1320040492-6407-3-git-send-email-B38951@freescale.com> (raw)
In-Reply-To: <1320040492-6407-1-git-send-email-B38951@freescale.com>
If we're an agent/end-point or fsl_add_bridge doesn't succeed due to some
resource failure we should not scan the PCI bus. We change fsl_add_bridge()
to return -ENODEV in the case we're an agent/end-point.
Signed-off-by: Jia Hongtao <B38951@freescale.com>
Signed-off-by: Li Yang <leoli@freescale.com>
---
arch/powerpc/sysdev/fsl_pci.c | 23 ++++++++++++++---------
1 files changed, 14 insertions(+), 9 deletions(-)
diff --git a/arch/powerpc/sysdev/fsl_pci.c b/arch/powerpc/sysdev/fsl_pci.c
index 4d4536f..11c1e23 100644
--- a/arch/powerpc/sysdev/fsl_pci.c
+++ b/arch/powerpc/sysdev/fsl_pci.c
@@ -370,7 +370,7 @@ int __init fsl_add_bridge(struct device_node *dev, int is_primary)
iounmap(hose->cfg_data);
iounmap(hose->cfg_addr);
pcibios_free_controller(hose);
- return 0;
+ return -ENODEV;
}
setup_pci_cmd(hose);
@@ -418,6 +418,8 @@ void fsl_pci_setup(int primary_phb_addr)
{
struct device_node *np;
struct pci_controller *hose;
+ int ret;
+ int has_host = 0;
dma_addr_t min_dma_addr = 0xffffffff;
for_each_node_by_type(np, "pci") {
@@ -425,14 +427,17 @@ void fsl_pci_setup(int primary_phb_addr)
struct resource rsrc;
of_address_to_resource(np, 0, &rsrc);
if ((rsrc.start & 0xfffff) == primary_phb_addr)
- fsl_add_bridge(np, 1);
+ ret = fsl_add_bridge(np, 1);
else
- fsl_add_bridge(np, 0);
-
- hose = pci_find_hose_for_OF_device(np);
- min_dma_addr = min(min_dma_addr,
- hose->dma_window_base_cur
- + hose->dma_window_size);
+ ret = fsl_add_bridge(np, 0);
+
+ if (ret == 0) {
+ has_host = 1;
+ hose = pci_find_hose_for_OF_device(np);
+ min_dma_addr = min(min_dma_addr,
+ hose->dma_window_base_cur
+ + hose->dma_window_size);
+ }
}
}
@@ -442,7 +447,7 @@ void fsl_pci_setup(int primary_phb_addr)
* if we couldn't map all of DRAM via the dma windows we need SWIOTLB
* to handle buffers located outside of dma capable memory region
*/
- if (memblock_end_of_DRAM() > min_dma_addr) {
+ if (has_host && memblock_end_of_DRAM() > min_dma_addr) {
ppc_swiotlb_enable = 1;
set_pci_dma_ops(&swiotlb_dma_ops);
ppc_md.pci_dma_dev_setup = pci_dma_dev_setup_swiotlb;
--
1.7.5.1
next prev parent reply other threads:[~2011-10-31 7:07 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-10-31 5:54 [PATCH SDK1.1 v2 0/2] PCIEP Patches Description Jia Hongtao
2011-10-31 5:54 ` [PATCH 1/2] Unify pci/pcie initialization code Jia Hongtao
2011-11-22 6:20 ` Jia Hongtao-B38951
2011-11-22 6:35 ` Jia Hongtao-B38951
2011-11-24 4:50 ` Kumar Gala
[not found] ` <3F607A5180246847A760FD34122A1E052DBCD1@039-SN1MPN1-003.039d.mgd.msft.net>
[not found] ` <412C8208B4A0464FA894C5F0C278CD5DFD6BAB@039-SN1MPN1-005.039d.mgd.msft.net>
[not found] ` <3EC6F9E0-C847-4DA8-AD8C-313976982A10@kernel.crashing.org>
2011-12-02 2:21 ` [powerpc] boot up problem Jia Hongtao-B38951
2011-12-02 3:55 ` [linuxppc-release] " Tabi Timur-B04825
2011-12-02 4:12 ` Kumar Gala
2011-12-07 7:27 ` Jia Hongtao-B38951
2011-12-07 14:53 ` Kumar Gala
2011-12-07 15:13 ` Timur Tabi
2011-12-08 7:46 ` Kumar Gala
2011-12-02 4:12 ` Kumar Gala
2011-12-02 6:45 ` Jia Hongtao-B38951
2011-10-31 5:54 ` Jia Hongtao [this message]
-- strict thread matches above, loose matches on Subject: below --
2011-10-28 8:03 [PATCH 1/2] Unify pci/pcie initialization code Jia Hongtao
2011-10-28 8:03 ` [PATCH 2/2] powerpc/fsl-pci: Only scan PCI bus if configured as a host Jia Hongtao
2011-10-28 13:09 ` Kumar Gala
2011-10-31 6:58 ` Jia Hongtao-B38951
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=1320040492-6407-3-git-send-email-B38951@freescale.com \
--to=b38951@freescale.com \
--cc=B11780@freescale.com \
--cc=linuxppc-dev@lists.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).