aboutsummaryrefslogtreecommitdiffstats
path: root/arch/powerpc/kernel
diff options
context:
space:
mode:
authorKumar Gala <galak@kernel.crashing.org>2007-06-27 02:17:57 -0400
committerKumar Gala <galak@kernel.crashing.org>2007-06-29 02:58:37 -0400
commit5516b540e98de6f7474a4e7149470ad6a0bbc54a (patch)
tree9eb57336d892eb8c0e76584285030868df82f626 /arch/powerpc/kernel
parent6a506238b33efd93e60c1585d654b37e292183de (diff)
[POWERPC] Use global_number in ppc32 pci_controller
Make the pci_controller struct use global_number for the PHB domain number instead of index to match what ppc64 does and reuse its pci_domain_nr code. Introduced a pci-common.c to handle shared code between ppc32 & ppc64. Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
Diffstat (limited to 'arch/powerpc/kernel')
-rw-r--r--arch/powerpc/kernel/Makefile2
-rw-r--r--arch/powerpc/kernel/pci-common.c53
-rw-r--r--arch/powerpc/kernel/pci_32.c6
-rw-r--r--arch/powerpc/kernel/pci_64.c16
4 files changed, 57 insertions, 20 deletions
diff --git a/arch/powerpc/kernel/Makefile b/arch/powerpc/kernel/Makefile
index eb6a33e90d7e..42c42ecad00c 100644
--- a/arch/powerpc/kernel/Makefile
+++ b/arch/powerpc/kernel/Makefile
@@ -68,7 +68,7 @@ obj-$(CONFIG_MODULES) += $(module-y)
68 68
69pci64-$(CONFIG_PPC64) += pci_64.o pci_dn.o isa-bridge.o 69pci64-$(CONFIG_PPC64) += pci_64.o pci_dn.o isa-bridge.o
70pci32-$(CONFIG_PPC32) := pci_32.o 70pci32-$(CONFIG_PPC32) := pci_32.o
71obj-$(CONFIG_PCI) += $(pci64-y) $(pci32-y) 71obj-$(CONFIG_PCI) += $(pci64-y) $(pci32-y) pci-common.o
72obj-$(CONFIG_PCI_MSI) += msi.o 72obj-$(CONFIG_PCI_MSI) += msi.o
73kexec-$(CONFIG_PPC64) := machine_kexec_64.o 73kexec-$(CONFIG_PPC64) := machine_kexec_64.o
74kexec-$(CONFIG_PPC32) := machine_kexec_32.o 74kexec-$(CONFIG_PPC32) := machine_kexec_32.o
diff --git a/arch/powerpc/kernel/pci-common.c b/arch/powerpc/kernel/pci-common.c
new file mode 100644
index 000000000000..3ca8cfb99dc2
--- /dev/null
+++ b/arch/powerpc/kernel/pci-common.c
@@ -0,0 +1,53 @@
1/*
2 * Contains common pci routines for ALL ppc platform
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation; either version
7 * 2 of the License, or (at your option) any later version.
8 */
9
10#undef DEBUG
11
12#include <linux/kernel.h>
13#include <linux/pci.h>
14#include <linux/string.h>
15#include <linux/init.h>
16#include <linux/bootmem.h>
17#include <linux/mm.h>
18#include <linux/list.h>
19#include <linux/syscalls.h>
20#include <linux/irq.h>
21#include <linux/vmalloc.h>
22
23#include <asm/processor.h>
24#include <asm/io.h>
25#include <asm/prom.h>
26#include <asm/pci-bridge.h>
27#include <asm/byteorder.h>
28#include <asm/machdep.h>
29#include <asm/ppc-pci.h>
30#include <asm/firmware.h>
31
32#ifdef DEBUG
33#include <asm/udbg.h>
34#define DBG(fmt...) printk(fmt)
35#else
36#define DBG(fmt...)
37#endif
38
39/*
40 * Return the domain number for this bus.
41 */
42int pci_domain_nr(struct pci_bus *bus)
43{
44 if (firmware_has_feature(FW_FEATURE_ISERIES))
45 return 0;
46 else {
47 struct pci_controller *hose = pci_bus_to_host(bus);
48
49 return hose->global_number;
50 }
51}
52
53EXPORT_SYMBOL(pci_domain_nr);
diff --git a/arch/powerpc/kernel/pci_32.c b/arch/powerpc/kernel/pci_32.c
index 2d4a1c4f4e31..56deb316efd3 100644
--- a/arch/powerpc/kernel/pci_32.c
+++ b/arch/powerpc/kernel/pci_32.c
@@ -620,7 +620,7 @@ pcibios_alloc_controller(void)
620 *hose_tail = hose; 620 *hose_tail = hose;
621 hose_tail = &hose->next; 621 hose_tail = &hose->next;
622 622
623 hose->index = next_controller_index++; 623 hose->global_number = next_controller_index++;
624 624
625 return hose; 625 return hose;
626} 626}
@@ -1336,7 +1336,7 @@ void __init pcibios_fixup_bus(struct pci_bus *bus)
1336 if (!res->flags) { 1336 if (!res->flags) {
1337 if (io_offset) 1337 if (io_offset)
1338 printk(KERN_ERR "I/O resource not set for host" 1338 printk(KERN_ERR "I/O resource not set for host"
1339 " bridge %d\n", hose->index); 1339 " bridge %d\n", hose->global_number);
1340 res->start = 0; 1340 res->start = 0;
1341 res->end = IO_SPACE_LIMIT; 1341 res->end = IO_SPACE_LIMIT;
1342 res->flags = IORESOURCE_IO; 1342 res->flags = IORESOURCE_IO;
@@ -1350,7 +1350,7 @@ void __init pcibios_fixup_bus(struct pci_bus *bus)
1350 if (i > 0) 1350 if (i > 0)
1351 continue; 1351 continue;
1352 printk(KERN_ERR "Memory resource not set for " 1352 printk(KERN_ERR "Memory resource not set for "
1353 "host bridge %d\n", hose->index); 1353 "host bridge %d\n", hose->global_number);
1354 res->start = hose->pci_mem_offset; 1354 res->start = hose->pci_mem_offset;
1355 res->end = ~0U; 1355 res->end = ~0U;
1356 res->flags = IORESOURCE_MEM; 1356 res->flags = IORESOURCE_MEM;
diff --git a/arch/powerpc/kernel/pci_64.c b/arch/powerpc/kernel/pci_64.c
index 9fa2ecb8c1e4..57bdcd88f04a 100644
--- a/arch/powerpc/kernel/pci_64.c
+++ b/arch/powerpc/kernel/pci_64.c
@@ -636,22 +636,6 @@ int pcibios_enable_device(struct pci_dev *dev, int mask)
636 return 0; 636 return 0;
637} 637}
638 638
639/*
640 * Return the domain number for this bus.
641 */
642int pci_domain_nr(struct pci_bus *bus)
643{
644 if (firmware_has_feature(FW_FEATURE_ISERIES))
645 return 0;
646 else {
647 struct pci_controller *hose = pci_bus_to_host(bus);
648
649 return hose->global_number;
650 }
651}
652
653EXPORT_SYMBOL(pci_domain_nr);
654
655/* Decide whether to display the domain number in /proc */ 639/* Decide whether to display the domain number in /proc */
656int pci_proc_domain(struct pci_bus *bus) 640int pci_proc_domain(struct pci_bus *bus)
657{ 641{