Thomas Gleixner | 2874c5f | 2019-05-27 08:55:01 +0200 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0-or-later |
Benjamin Herrenschmidt | 7eebde7 | 2006-11-11 17:24:59 +1100 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (C) 2006 Benjamin Herrenschmidt, IBM Corp. |
| 4 | * <benh@kernel.crashing.org> |
Benjamin Herrenschmidt | 4c9d280 | 2006-11-11 17:25:08 +1100 | [diff] [blame] | 5 | * and Arnd Bergmann, IBM Corp. |
Benjamin Herrenschmidt | 7eebde7 | 2006-11-11 17:24:59 +1100 | [diff] [blame] | 6 | */ |
| 7 | |
| 8 | #undef DEBUG |
| 9 | |
| 10 | #include <linux/string.h> |
| 11 | #include <linux/kernel.h> |
| 12 | #include <linux/init.h> |
Paul Gortmaker | 4b16f8e | 2011-07-22 18:24:23 -0400 | [diff] [blame] | 13 | #include <linux/export.h> |
Benjamin Herrenschmidt | 7eebde7 | 2006-11-11 17:24:59 +1100 | [diff] [blame] | 14 | #include <linux/mod_devicetable.h> |
Benjamin Herrenschmidt | 4c9d280 | 2006-11-11 17:25:08 +1100 | [diff] [blame] | 15 | #include <linux/pci.h> |
Grant Likely | 283029d | 2008-01-09 06:20:40 +1100 | [diff] [blame] | 16 | #include <linux/of.h> |
Stephen Rothwell | cd6eed3 | 2007-09-21 18:08:17 +1000 | [diff] [blame] | 17 | #include <linux/of_device.h> |
| 18 | #include <linux/of_platform.h> |
Gavin Shan | eb740b5 | 2012-02-27 20:04:04 +0000 | [diff] [blame] | 19 | #include <linux/atomic.h> |
Benjamin Herrenschmidt | 7eebde7 | 2006-11-11 17:24:59 +1100 | [diff] [blame] | 20 | |
| 21 | #include <asm/errno.h> |
Benjamin Herrenschmidt | 12d04ee | 2006-11-11 17:25:02 +1100 | [diff] [blame] | 22 | #include <asm/topology.h> |
Benjamin Herrenschmidt | 4c9d280 | 2006-11-11 17:25:08 +1100 | [diff] [blame] | 23 | #include <asm/pci-bridge.h> |
| 24 | #include <asm/ppc-pci.h> |
Gavin Shan | eb740b5 | 2012-02-27 20:04:04 +0000 | [diff] [blame] | 25 | #include <asm/eeh.h> |
Benjamin Herrenschmidt | 9309180 | 2006-11-21 14:56:37 +1100 | [diff] [blame] | 26 | |
Benjamin Herrenschmidt | 4c9d280 | 2006-11-11 17:25:08 +1100 | [diff] [blame] | 27 | #ifdef CONFIG_PPC_OF_PLATFORM_PCI |
| 28 | |
| 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. |
| 33 | */ |
| 34 | |
Greg Kroah-Hartman | cad5cef | 2012-12-21 14:04:10 -0800 | [diff] [blame] | 35 | static int of_pci_phb_probe(struct platform_device *dev) |
Benjamin Herrenschmidt | 4c9d280 | 2006-11-11 17:25:08 +1100 | [diff] [blame] | 36 | { |
| 37 | struct pci_controller *phb; |
| 38 | |
| 39 | /* Check if we can do that ... */ |
| 40 | if (ppc_md.pci_setup_phb == NULL) |
| 41 | return -ENODEV; |
| 42 | |
Rob Herring | b7c670d | 2017-08-21 10:16:47 -0500 | [diff] [blame] | 43 | pr_info("Setting up PCI bus %pOF\n", dev->dev.of_node); |
Benjamin Herrenschmidt | 4c9d280 | 2006-11-11 17:25:08 +1100 | [diff] [blame] | 44 | |
| 45 | /* Alloc and setup PHB data structure */ |
Grant Likely | 61c7a08 | 2010-04-13 16:12:29 -0700 | [diff] [blame] | 46 | phb = pcibios_alloc_controller(dev->dev.of_node); |
Benjamin Herrenschmidt | 4c9d280 | 2006-11-11 17:25:08 +1100 | [diff] [blame] | 47 | if (!phb) |
| 48 | return -ENODEV; |
| 49 | |
| 50 | /* Setup parent in sysfs */ |
| 51 | phb->parent = &dev->dev; |
| 52 | |
| 53 | /* Setup the PHB using arch provided callback */ |
| 54 | if (ppc_md.pci_setup_phb(phb)) { |
| 55 | pcibios_free_controller(phb); |
| 56 | return -ENODEV; |
| 57 | } |
| 58 | |
| 59 | /* Process "ranges" property */ |
Grant Likely | 61c7a08 | 2010-04-13 16:12:29 -0700 | [diff] [blame] | 60 | pci_process_bridge_OF_ranges(phb, dev->dev.of_node, 0); |
Benjamin Herrenschmidt | 4c9d280 | 2006-11-11 17:25:08 +1100 | [diff] [blame] | 61 | |
Benjamin Herrenschmidt | 4c9d280 | 2006-11-11 17:25:08 +1100 | [diff] [blame] | 62 | /* Init pci_dn data structures */ |
| 63 | pci_devs_phb_init_dynamic(phb); |
| 64 | |
Oliver O'Halloran | 475028e | 2020-07-25 18:12:18 +1000 | [diff] [blame] | 65 | /* Create EEH PE for the PHB */ |
| 66 | eeh_phb_pe_create(phb); |
Gavin Shan | eb740b5 | 2012-02-27 20:04:04 +0000 | [diff] [blame] | 67 | |
Benjamin Herrenschmidt | 4c9d280 | 2006-11-11 17:25:08 +1100 | [diff] [blame] | 68 | /* Scan the bus */ |
Grant Likely | b5d937d | 2011-02-04 11:24:11 -0700 | [diff] [blame] | 69 | pcibios_scan_phb(phb); |
Ishizaki Kou | 7cfb62a | 2008-04-24 19:21:10 +1000 | [diff] [blame] | 70 | if (phb->bus == NULL) |
| 71 | return -ENXIO; |
Benjamin Herrenschmidt | 4c9d280 | 2006-11-11 17:25:08 +1100 | [diff] [blame] | 72 | |
| 73 | /* Claim resources. This might need some rework as well depending |
Adam Buchbinder | 48fc7f7 | 2012-09-19 21:48:00 -0400 | [diff] [blame] | 74 | * whether we are doing probe-only or not, like assigning unassigned |
Benjamin Herrenschmidt | 4c9d280 | 2006-11-11 17:25:08 +1100 | [diff] [blame] | 75 | * resources etc... |
| 76 | */ |
| 77 | pcibios_claim_one_bus(phb->bus); |
| 78 | |
Benjamin Herrenschmidt | 4c9d280 | 2006-11-11 17:25:08 +1100 | [diff] [blame] | 79 | /* Add probed PCI devices to the device model */ |
| 80 | pci_bus_add_devices(phb->bus); |
| 81 | |
| 82 | return 0; |
| 83 | } |
| 84 | |
Uwe Kleine-König | ce6d73c | 2014-09-10 21:56:38 +0200 | [diff] [blame] | 85 | static const struct of_device_id of_pci_phb_ids[] = { |
Benjamin Herrenschmidt | 4c9d280 | 2006-11-11 17:25:08 +1100 | [diff] [blame] | 86 | { .type = "pci", }, |
| 87 | { .type = "pcix", }, |
| 88 | { .type = "pcie", }, |
| 89 | { .type = "pciex", }, |
| 90 | { .type = "ht", }, |
| 91 | {} |
| 92 | }; |
| 93 | |
Grant Likely | 0000612 | 2011-02-22 19:59:54 -0700 | [diff] [blame] | 94 | static struct platform_driver of_pci_phb_driver = { |
Stephen Rothwell | cd6eed3 | 2007-09-21 18:08:17 +1000 | [diff] [blame] | 95 | .probe = of_pci_phb_probe, |
| 96 | .driver = { |
| 97 | .name = "of-pci", |
Grant Likely | 4018294 | 2010-04-13 16:13:02 -0700 | [diff] [blame] | 98 | .of_match_table = of_pci_phb_ids, |
Stephen Rothwell | cd6eed3 | 2007-09-21 18:08:17 +1000 | [diff] [blame] | 99 | }, |
Benjamin Herrenschmidt | 4c9d280 | 2006-11-11 17:25:08 +1100 | [diff] [blame] | 100 | }; |
| 101 | |
Geliang Tang | ebb242d | 2016-11-23 22:58:56 +0800 | [diff] [blame] | 102 | builtin_platform_driver(of_pci_phb_driver); |
Benjamin Herrenschmidt | 4c9d280 | 2006-11-11 17:25:08 +1100 | [diff] [blame] | 103 | |
| 104 | #endif /* CONFIG_PPC_OF_PLATFORM_PCI */ |