aboutsummaryrefslogtreecommitdiffstats
path: root/arch/powerpc/kernel/pci_64.c
diff options
context:
space:
mode:
authors.hauer@pengutronix.de <s.hauer@pengutronix.de>2006-11-02 07:56:06 -0500
committerPaul Mackerras <paulus@samba.org>2006-11-12 22:44:59 -0500
commit99a565bab1a41819b9f85c8c069a2f3fc6e27d55 (patch)
treeda395b0e146118a533fe831f0b4ce36fcdeb08ae /arch/powerpc/kernel/pci_64.c
parenta7a1ed305043961ed06e0ee5e7a4a2cc1250f4b5 (diff)
[PATCH] Remove occurences of PPC_MULTIPLATFORM in pci_64.c
Since iSeries is merged to MULTIPLATFORM, there is no way to build a 64bit kernel without MULTIPLATFORM, so PPC_MULTIPLATFORM can be removed in 64bit-only files. Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de> Acked-by: Benjamin Herrenschmidt <benh@kernel.crashing.org> Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'arch/powerpc/kernel/pci_64.c')
-rw-r--r--arch/powerpc/kernel/pci_64.c14
1 files changed, 2 insertions, 12 deletions
diff --git a/arch/powerpc/kernel/pci_64.c b/arch/powerpc/kernel/pci_64.c
index 9bae8a5bf671..80ae9ea15cdc 100644
--- a/arch/powerpc/kernel/pci_64.c
+++ b/arch/powerpc/kernel/pci_64.c
@@ -42,11 +42,9 @@
42unsigned long pci_probe_only = 1; 42unsigned long pci_probe_only = 1;
43int pci_assign_all_buses = 0; 43int pci_assign_all_buses = 0;
44 44
45#ifdef CONFIG_PPC_MULTIPLATFORM
46static void fixup_resource(struct resource *res, struct pci_dev *dev); 45static void fixup_resource(struct resource *res, struct pci_dev *dev);
47static void do_bus_setup(struct pci_bus *bus); 46static void do_bus_setup(struct pci_bus *bus);
48static void phbs_remap_io(void); 47static void phbs_remap_io(void);
49#endif
50 48
51/* pci_io_base -- the base address from which io bars are offsets. 49/* pci_io_base -- the base address from which io bars are offsets.
52 * This is the lowest I/O base address (so bar values are always positive), 50 * This is the lowest I/O base address (so bar values are always positive),
@@ -251,7 +249,6 @@ static void __init pcibios_claim_of_setup(void)
251 pcibios_claim_one_bus(b); 249 pcibios_claim_one_bus(b);
252} 250}
253 251
254#ifdef CONFIG_PPC_MULTIPLATFORM
255static u32 get_int_prop(struct device_node *np, const char *name, u32 def) 252static u32 get_int_prop(struct device_node *np, const char *name, u32 def)
256{ 253{
257 const u32 *prop; 254 const u32 *prop;
@@ -506,7 +503,6 @@ void __devinit of_scan_pci_bridge(struct device_node *node,
506 pci_scan_child_bus(bus); 503 pci_scan_child_bus(bus);
507} 504}
508EXPORT_SYMBOL(of_scan_pci_bridge); 505EXPORT_SYMBOL(of_scan_pci_bridge);
509#endif /* CONFIG_PPC_MULTIPLATFORM */
510 506
511void __devinit scan_phb(struct pci_controller *hose) 507void __devinit scan_phb(struct pci_controller *hose)
512{ 508{
@@ -540,7 +536,7 @@ void __devinit scan_phb(struct pci_controller *hose)
540 } 536 }
541 537
542 mode = PCI_PROBE_NORMAL; 538 mode = PCI_PROBE_NORMAL;
543#ifdef CONFIG_PPC_MULTIPLATFORM 539
544 if (node && ppc_md.pci_probe_mode) 540 if (node && ppc_md.pci_probe_mode)
545 mode = ppc_md.pci_probe_mode(bus); 541 mode = ppc_md.pci_probe_mode(bus);
546 DBG(" probe mode: %d\n", mode); 542 DBG(" probe mode: %d\n", mode);
@@ -548,7 +544,7 @@ void __devinit scan_phb(struct pci_controller *hose)
548 bus->subordinate = hose->last_busno; 544 bus->subordinate = hose->last_busno;
549 of_scan_bus(node, bus); 545 of_scan_bus(node, bus);
550 } 546 }
551#endif /* CONFIG_PPC_MULTIPLATFORM */ 547
552 if (mode == PCI_PROBE_NORMAL) 548 if (mode == PCI_PROBE_NORMAL)
553 hose->last_busno = bus->subordinate = pci_scan_child_bus(bus); 549 hose->last_busno = bus->subordinate = pci_scan_child_bus(bus);
554} 550}
@@ -592,11 +588,9 @@ static int __init pcibios_init(void)
592 if (ppc64_isabridge_dev != NULL) 588 if (ppc64_isabridge_dev != NULL)
593 printk(KERN_DEBUG "ISA bridge at %s\n", pci_name(ppc64_isabridge_dev)); 589 printk(KERN_DEBUG "ISA bridge at %s\n", pci_name(ppc64_isabridge_dev));
594 590
595#ifdef CONFIG_PPC_MULTIPLATFORM
596 if (!firmware_has_feature(FW_FEATURE_ISERIES)) 591 if (!firmware_has_feature(FW_FEATURE_ISERIES))
597 /* map in PCI I/O space */ 592 /* map in PCI I/O space */
598 phbs_remap_io(); 593 phbs_remap_io();
599#endif
600 594
601 printk(KERN_DEBUG "PCI: Probing PCI hardware done\n"); 595 printk(KERN_DEBUG "PCI: Probing PCI hardware done\n");
602 596
@@ -873,8 +867,6 @@ void pcibios_add_platform_entries(struct pci_dev *pdev)
873 device_create_file(&pdev->dev, &dev_attr_devspec); 867 device_create_file(&pdev->dev, &dev_attr_devspec);
874} 868}
875 869
876#ifdef CONFIG_PPC_MULTIPLATFORM
877
878#define ISA_SPACE_MASK 0x1 870#define ISA_SPACE_MASK 0x1
879#define ISA_SPACE_IO 0x1 871#define ISA_SPACE_IO 0x1
880 872
@@ -1343,8 +1335,6 @@ struct pci_controller* pci_find_hose_for_OF_device(struct device_node* node)
1343 return NULL; 1335 return NULL;
1344} 1336}
1345 1337
1346#endif /* CONFIG_PPC_MULTIPLATFORM */
1347
1348unsigned long pci_address_to_pio(phys_addr_t address) 1338unsigned long pci_address_to_pio(phys_addr_t address)
1349{ 1339{
1350 struct pci_controller *hose, *tmp; 1340 struct pci_controller *hose, *tmp;