1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * Copyright (C) 2006 Benjamin Herrenschmidt, IBM Corp.
4 * <benh@kernel.crashing.org>
5 * and Arnd Bergmann, IBM Corp.
10 #include <linux/string.h>
11 #include <linux/kernel.h>
12 #include <linux/init.h>
13 #include <linux/export.h>
14 #include <linux/mod_devicetable.h>
15 #include <linux/pci.h>
17 #include <linux/of_device.h>
18 #include <linux/of_platform.h>
19 #include <linux/atomic.h>
21 #include <asm/errno.h>
22 #include <asm/topology.h>
23 #include <asm/pci-bridge.h>
24 #include <asm/ppc-pci.h>
27 #ifdef CONFIG_PPC_OF_PLATFORM_PCI
29 /* The probing of PCI controllers from of_platform is currently
30 * 64 bits only, mostly due to gratuitous differences between
31 * the 32 and 64 bits PCI code on PowerPC and the 32 bits one
32 * lacking some bits needed here.
35 static int of_pci_phb_probe(struct platform_device
*dev
)
37 struct pci_controller
*phb
;
39 /* Check if we can do that ... */
40 if (ppc_md
.pci_setup_phb
== NULL
)
43 pr_info("Setting up PCI bus %pOF\n", dev
->dev
.of_node
);
45 /* Alloc and setup PHB data structure */
46 phb
= pcibios_alloc_controller(dev
->dev
.of_node
);
50 /* Setup parent in sysfs */
51 phb
->parent
= &dev
->dev
;
53 /* Setup the PHB using arch provided callback */
54 if (ppc_md
.pci_setup_phb(phb
)) {
55 pcibios_free_controller(phb
);
59 /* Process "ranges" property */
60 pci_process_bridge_OF_ranges(phb
, dev
->dev
.of_node
, 0);
62 /* Init pci_dn data structures */
63 pci_devs_phb_init_dynamic(phb
);
65 /* Create EEH devices for the PHB */
66 eeh_dev_phb_init_dynamic(phb
);
68 /* Register devices with EEH */
69 if (dev
->dev
.of_node
->child
)
70 eeh_add_device_tree_early(PCI_DN(dev
->dev
.of_node
));
73 pcibios_scan_phb(phb
);
77 /* Claim resources. This might need some rework as well depending
78 * whether we are doing probe-only or not, like assigning unassigned
81 pcibios_claim_one_bus(phb
->bus
);
83 /* Finish EEH setup */
84 eeh_add_device_tree_late(phb
->bus
);
86 /* Add probed PCI devices to the device model */
87 pci_bus_add_devices(phb
->bus
);
89 /* sysfs files should only be added after devices are added */
90 eeh_add_sysfs_files(phb
->bus
);
95 static const struct of_device_id of_pci_phb_ids
[] = {
104 static struct platform_driver of_pci_phb_driver
= {
105 .probe
= of_pci_phb_probe
,
108 .of_match_table
= of_pci_phb_ids
,
112 builtin_platform_driver(of_pci_phb_driver
);
114 #endif /* CONFIG_PPC_OF_PLATFORM_PCI */