summaryrefslogtreecommitdiffstats
path: root/arch/sparc64/kernel/pci_common.c
diff options
context:
space:
mode:
authorDavid S. Miller <davem@sunset.davemloft.net>2007-03-08 22:28:17 -0800
committerDavid S. Miller <davem@sunset.davemloft.net>2007-04-26 01:55:13 -0700
commit3487a1f9e719d36c9b2d4d492994b2dd815a58b7 (patch)
tree34d5ef82a837ff61413a40fa9ce6d06a9bfbc65a /arch/sparc64/kernel/pci_common.c
parent229177c7f38d6a2b1285b42da4b19d76346b4bac (diff)
downloadlinux-stable-3487a1f9e719d36c9b2d4d492994b2dd815a58b7.tar.gz
linux-stable-3487a1f9e719d36c9b2d4d492994b2dd815a58b7.tar.bz2
linux-stable-3487a1f9e719d36c9b2d4d492994b2dd815a58b7.zip
[SPARC64]: Kill PBM ranges software state.
It is only used in one spot and we can just fetch the OF property right there. Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'arch/sparc64/kernel/pci_common.c')
-rw-r--r--arch/sparc64/kernel/pci_common.c19
1 files changed, 15 insertions, 4 deletions
diff --git a/arch/sparc64/kernel/pci_common.c b/arch/sparc64/kernel/pci_common.c
index 4945d700a769..6b5c8e7a3eb0 100644
--- a/arch/sparc64/kernel/pci_common.c
+++ b/arch/sparc64/kernel/pci_common.c
@@ -73,17 +73,28 @@ static void pci_register_iommu_region(struct pci_pbm_info *pbm)
void pci_determine_mem_io_space(struct pci_pbm_info *pbm)
{
+ struct linux_prom_pci_ranges *pbm_ranges;
int i, saw_mem, saw_io;
+ int num_pbm_ranges;
saw_mem = saw_io = 0;
- for (i = 0; i < pbm->num_pbm_ranges; i++) {
- struct linux_prom_pci_ranges *pr = &pbm->pbm_ranges[i];
+ pbm_ranges = of_get_property(pbm->prom_node, "ranges", &i);
+ num_pbm_ranges = i / sizeof(*pbm_ranges);
+
+ for (i = 0; i < num_pbm_ranges; i++) {
+ struct linux_prom_pci_ranges *pr = &pbm_ranges[i];
unsigned long a;
+ u32 parent_phys_hi, parent_phys_lo;
int type;
+ parent_phys_hi = pr->parent_phys_hi;
+ parent_phys_lo = pr->parent_phys_lo;
+ if (tlb_type == hypervisor)
+ parent_phys_hi &= 0x0fffffff;
+
type = (pr->child_phys_hi >> 24) & 0x3;
- a = (((unsigned long)pr->parent_phys_hi << 32UL) |
- ((unsigned long)pr->parent_phys_lo << 0UL));
+ a = (((unsigned long)parent_phys_hi << 32UL) |
+ ((unsigned long)parent_phys_lo << 0UL));
switch (type) {
case 0: