blob: b60a67d92ebd0493e67762b9394a02caab60738a [file] [log] [blame]
Benjamin Herrenschmidt7eebde72006-11-11 17:24:59 +11001/*
2 * Copyright (C) 2006 Benjamin Herrenschmidt, IBM Corp.
3 * <benh@kernel.crashing.org>
Benjamin Herrenschmidt4c9d2802006-11-11 17:25:08 +11004 * and Arnd Bergmann, IBM Corp.
Benjamin Herrenschmidt7eebde72006-11-11 17:24:59 +11005 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
10 *
11 */
12
13#undef DEBUG
14
15#include <linux/string.h>
16#include <linux/kernel.h>
17#include <linux/init.h>
Paul Gortmaker4b16f8e2011-07-22 18:24:23 -040018#include <linux/export.h>
Benjamin Herrenschmidt7eebde72006-11-11 17:24:59 +110019#include <linux/mod_devicetable.h>
Benjamin Herrenschmidt4c9d2802006-11-11 17:25:08 +110020#include <linux/pci.h>
Grant Likely283029d2008-01-09 06:20:40 +110021#include <linux/of.h>
Stephen Rothwellcd6eed32007-09-21 18:08:17 +100022#include <linux/of_device.h>
23#include <linux/of_platform.h>
Gavin Shaneb740b52012-02-27 20:04:04 +000024#include <linux/atomic.h>
Benjamin Herrenschmidt7eebde72006-11-11 17:24:59 +110025
26#include <asm/errno.h>
Benjamin Herrenschmidt12d04ee2006-11-11 17:25:02 +110027#include <asm/topology.h>
Benjamin Herrenschmidt4c9d2802006-11-11 17:25:08 +110028#include <asm/pci-bridge.h>
29#include <asm/ppc-pci.h>
Gavin Shaneb740b52012-02-27 20:04:04 +000030#include <asm/eeh.h>
Benjamin Herrenschmidt93091802006-11-21 14:56:37 +110031
Benjamin Herrenschmidt4c9d2802006-11-11 17:25:08 +110032#ifdef CONFIG_PPC_OF_PLATFORM_PCI
33
34/* The probing of PCI controllers from of_platform is currently
35 * 64 bits only, mostly due to gratuitous differences between
36 * the 32 and 64 bits PCI code on PowerPC and the 32 bits one
37 * lacking some bits needed here.
38 */
39
Greg Kroah-Hartmancad5cef2012-12-21 14:04:10 -080040static int of_pci_phb_probe(struct platform_device *dev)
Benjamin Herrenschmidt4c9d2802006-11-11 17:25:08 +110041{
42 struct pci_controller *phb;
43
44 /* Check if we can do that ... */
45 if (ppc_md.pci_setup_phb == NULL)
46 return -ENODEV;
47
Grant Likely61c7a082010-04-13 16:12:29 -070048 pr_info("Setting up PCI bus %s\n", dev->dev.of_node->full_name);
Benjamin Herrenschmidt4c9d2802006-11-11 17:25:08 +110049
50 /* Alloc and setup PHB data structure */
Grant Likely61c7a082010-04-13 16:12:29 -070051 phb = pcibios_alloc_controller(dev->dev.of_node);
Benjamin Herrenschmidt4c9d2802006-11-11 17:25:08 +110052 if (!phb)
53 return -ENODEV;
54
55 /* Setup parent in sysfs */
56 phb->parent = &dev->dev;
57
58 /* Setup the PHB using arch provided callback */
59 if (ppc_md.pci_setup_phb(phb)) {
60 pcibios_free_controller(phb);
61 return -ENODEV;
62 }
63
64 /* Process "ranges" property */
Grant Likely61c7a082010-04-13 16:12:29 -070065 pci_process_bridge_OF_ranges(phb, dev->dev.of_node, 0);
Benjamin Herrenschmidt4c9d2802006-11-11 17:25:08 +110066
Benjamin Herrenschmidt4c9d2802006-11-11 17:25:08 +110067 /* Init pci_dn data structures */
68 pci_devs_phb_init_dynamic(phb);
69
Gavin Shaneb740b52012-02-27 20:04:04 +000070 /* Create EEH devices for the PHB */
71 eeh_dev_phb_init_dynamic(phb);
72
Benjamin Herrenschmidt4c9d2802006-11-11 17:25:08 +110073 /* Register devices with EEH */
Grant Likely61c7a082010-04-13 16:12:29 -070074 if (dev->dev.of_node->child)
Gavin Shanff57b452015-03-17 16:15:06 +110075 eeh_add_device_tree_early(PCI_DN(dev->dev.of_node));
Benjamin Herrenschmidt4c9d2802006-11-11 17:25:08 +110076
77 /* Scan the bus */
Grant Likelyb5d937d2011-02-04 11:24:11 -070078 pcibios_scan_phb(phb);
Ishizaki Kou7cfb62a2008-04-24 19:21:10 +100079 if (phb->bus == NULL)
80 return -ENXIO;
Benjamin Herrenschmidt4c9d2802006-11-11 17:25:08 +110081
82 /* Claim resources. This might need some rework as well depending
Adam Buchbinder48fc7f72012-09-19 21:48:00 -040083 * whether we are doing probe-only or not, like assigning unassigned
Benjamin Herrenschmidt4c9d2802006-11-11 17:25:08 +110084 * resources etc...
85 */
86 pcibios_claim_one_bus(phb->bus);
87
88 /* Finish EEH setup */
Benjamin Herrenschmidt4c9d2802006-11-11 17:25:08 +110089 eeh_add_device_tree_late(phb->bus);
Benjamin Herrenschmidt4c9d2802006-11-11 17:25:08 +110090
91 /* Add probed PCI devices to the device model */
92 pci_bus_add_devices(phb->bus);
93
Thadeu Lima de Souza Cascardo6a040ce2012-12-28 09:13:19 +000094 /* sysfs files should only be added after devices are added */
95 eeh_add_sysfs_files(phb->bus);
96
Benjamin Herrenschmidt4c9d2802006-11-11 17:25:08 +110097 return 0;
98}
99
Uwe Kleine-Königce6d73c2014-09-10 21:56:38 +0200100static const struct of_device_id of_pci_phb_ids[] = {
Benjamin Herrenschmidt4c9d2802006-11-11 17:25:08 +1100101 { .type = "pci", },
102 { .type = "pcix", },
103 { .type = "pcie", },
104 { .type = "pciex", },
105 { .type = "ht", },
106 {}
107};
108
Grant Likely00006122011-02-22 19:59:54 -0700109static struct platform_driver of_pci_phb_driver = {
Stephen Rothwellcd6eed32007-09-21 18:08:17 +1000110 .probe = of_pci_phb_probe,
111 .driver = {
112 .name = "of-pci",
Grant Likely40182942010-04-13 16:13:02 -0700113 .of_match_table = of_pci_phb_ids,
Stephen Rothwellcd6eed32007-09-21 18:08:17 +1000114 },
Benjamin Herrenschmidt4c9d2802006-11-11 17:25:08 +1100115};
116
117static __init int of_pci_phb_init(void)
118{
Grant Likely00006122011-02-22 19:59:54 -0700119 return platform_driver_register(&of_pci_phb_driver);
Benjamin Herrenschmidt4c9d2802006-11-11 17:25:08 +1100120}
121
122device_initcall(of_pci_phb_init);
123
124#endif /* CONFIG_PPC_OF_PLATFORM_PCI */