blob: e2b7e4f9cc3180d7a1059cb4983c3739ca4be19c [file] [log] [blame]
Liviu Dudaud1e6dc92014-09-29 15:29:31 +01001/*
2 * Code borrowed from powerpc/kernel/pci-common.c
3 *
4 * Copyright (C) 2003 Anton Blanchard <anton@au.ibm.com>, IBM
5 * Copyright (C) 2014 ARM Ltd.
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * version 2 as published by the Free Software Foundation.
10 *
11 */
12
Hanjun Guoa9cb97f2015-03-24 14:02:40 +000013#include <linux/acpi.h>
Liviu Dudaud1e6dc92014-09-29 15:29:31 +010014#include <linux/init.h>
15#include <linux/io.h>
16#include <linux/kernel.h>
17#include <linux/mm.h>
18#include <linux/of_pci.h>
19#include <linux/of_platform.h>
Tomasz Nowicki2ab51dd2016-06-10 15:36:26 -050020#include <linux/pci.h>
Tomasz Nowicki0cb07862016-06-10 21:55:19 +020021#include <linux/pci-acpi.h>
22#include <linux/pci-ecam.h>
Liviu Dudaud1e6dc92014-09-29 15:29:31 +010023#include <linux/slab.h>
24
Liviu Dudaud1e6dc92014-09-29 15:29:31 +010025/*
26 * Called after each bus is probed, but before its children are examined
27 */
28void pcibios_fixup_bus(struct pci_bus *bus)
29{
30 /* nothing to do, expected to be removed in the future */
31}
32
33/*
34 * We don't have to worry about legacy ISA devices, so nothing to do here
35 */
36resource_size_t pcibios_align_resource(void *data, const struct resource *res,
37 resource_size_t size, resource_size_t align)
38{
39 return res->start;
40}
41
Lorenzo Pieralisi769b4612017-06-28 15:14:12 -050042#ifdef CONFIG_ACPI
Liviu Dudaud1e6dc92014-09-29 15:29:31 +010043/*
Tomasz Nowickid8ed75d2016-06-10 21:55:17 +020044 * Try to assign the IRQ number when probing a new device
Liviu Dudaud1e6dc92014-09-29 15:29:31 +010045 */
Tomasz Nowickid8ed75d2016-06-10 21:55:17 +020046int pcibios_alloc_irq(struct pci_dev *dev)
Liviu Dudaud1e6dc92014-09-29 15:29:31 +010047{
Lorenzo Pieralisi769b4612017-06-28 15:14:12 -050048 if (!acpi_disabled)
49 acpi_pci_irq_enable(dev);
Liviu Dudaud1e6dc92014-09-29 15:29:31 +010050
51 return 0;
52}
Lorenzo Pieralisi769b4612017-06-28 15:14:12 -050053#endif
Hanjun Guoa9cb97f2015-03-24 14:02:40 +000054
55/*
56 * raw_pci_read/write - Platform-specific PCI config space access.
57 */
58int raw_pci_read(unsigned int domain, unsigned int bus,
59 unsigned int devfn, int reg, int len, u32 *val)
60{
Tomasz Nowickif058f4f2016-06-10 21:55:18 +020061 struct pci_bus *b = pci_find_bus(domain, bus);
62
63 if (!b)
64 return PCIBIOS_DEVICE_NOT_FOUND;
65 return b->ops->read(b, devfn, reg, len, val);
Hanjun Guoa9cb97f2015-03-24 14:02:40 +000066}
67
68int raw_pci_write(unsigned int domain, unsigned int bus,
69 unsigned int devfn, int reg, int len, u32 val)
70{
Tomasz Nowickif058f4f2016-06-10 21:55:18 +020071 struct pci_bus *b = pci_find_bus(domain, bus);
72
73 if (!b)
74 return PCIBIOS_DEVICE_NOT_FOUND;
75 return b->ops->write(b, devfn, reg, len, val);
Hanjun Guoa9cb97f2015-03-24 14:02:40 +000076}
77
Ganapatrao Kulkarni1a2db302016-04-08 15:50:27 -070078#ifdef CONFIG_NUMA
79
80int pcibus_to_node(struct pci_bus *bus)
81{
82 return dev_to_node(&bus->dev);
83}
84EXPORT_SYMBOL(pcibus_to_node);
85
86#endif
87
Hanjun Guoa9cb97f2015-03-24 14:02:40 +000088#ifdef CONFIG_ACPI
Tomasz Nowicki2ab51dd2016-06-10 15:36:26 -050089
Tomasz Nowicki0cb07862016-06-10 21:55:19 +020090struct acpi_pci_generic_root_info {
91 struct acpi_pci_root_info common;
92 struct pci_config_window *cfg; /* config space mapping */
93};
94
Tomasz Nowicki2ab51dd2016-06-10 15:36:26 -050095int acpi_pci_bus_find_domain_nr(struct pci_bus *bus)
96{
Tomasz Nowicki0cb07862016-06-10 21:55:19 +020097 struct pci_config_window *cfg = bus->sysdata;
98 struct acpi_device *adev = to_acpi_device(cfg->parent);
99 struct acpi_pci_root *root = acpi_driver_data(adev);
100
101 return root->segment;
102}
103
104int pcibios_root_bridge_prepare(struct pci_host_bridge *bridge)
105{
106 if (!acpi_disabled) {
107 struct pci_config_window *cfg = bridge->bus->sysdata;
108 struct acpi_device *adev = to_acpi_device(cfg->parent);
Lorenzo Pieralisidb46a722017-05-24 18:22:19 +0100109 struct device *bus_dev = &bridge->bus->dev;
110
Tomasz Nowicki0cb07862016-06-10 21:55:19 +0200111 ACPI_COMPANION_SET(&bridge->dev, adev);
Lorenzo Pieralisidb46a722017-05-24 18:22:19 +0100112 set_dev_node(bus_dev, acpi_get_node(acpi_device_handle(adev)));
Tomasz Nowicki0cb07862016-06-10 21:55:19 +0200113 }
114
Tomasz Nowicki2ab51dd2016-06-10 15:36:26 -0500115 return 0;
116}
117
Bjorn Helgaas8fd43912016-12-02 17:25:54 -0600118static int pci_acpi_root_prepare_resources(struct acpi_pci_root_info *ci)
119{
120 struct resource_entry *entry, *tmp;
121 int status;
122
123 status = acpi_pci_probe_root_resources(ci);
124 resource_list_for_each_entry_safe(entry, tmp, &ci->resources) {
125 if (!(entry->res->flags & IORESOURCE_WINDOW))
126 resource_list_destroy_entry(entry);
127 }
128 return status;
129}
130
Tomasz Nowicki0cb07862016-06-10 21:55:19 +0200131/*
132 * Lookup the bus range for the domain in MCFG, and set up config space
133 * mapping.
134 */
135static struct pci_config_window *
136pci_acpi_setup_ecam_mapping(struct acpi_pci_root *root)
137{
Bjorn Helgaasdfd19722016-12-01 11:33:57 -0600138 struct device *dev = &root->device->dev;
Tomasz Nowicki0cb07862016-06-10 21:55:19 +0200139 struct resource *bus_res = &root->secondary;
140 u16 seg = root->segment;
Tomasz Nowicki13983eb2016-09-09 21:24:03 +0200141 struct pci_ecam_ops *ecam_ops;
Tomasz Nowicki0cb07862016-06-10 21:55:19 +0200142 struct resource cfgres;
Bjorn Helgaas08b1c192016-11-30 14:48:33 -0600143 struct acpi_device *adev;
144 struct pci_config_window *cfg;
Tomasz Nowicki13983eb2016-09-09 21:24:03 +0200145 int ret;
Tomasz Nowicki0cb07862016-06-10 21:55:19 +0200146
Tomasz Nowicki13983eb2016-09-09 21:24:03 +0200147 ret = pci_mcfg_lookup(root, &cfgres, &ecam_ops);
148 if (ret) {
Bjorn Helgaasdfd19722016-12-01 11:33:57 -0600149 dev_err(dev, "%04x:%pR ECAM region not found\n", seg, bus_res);
Tomasz Nowicki0cb07862016-06-10 21:55:19 +0200150 return NULL;
151 }
152
Bjorn Helgaas08b1c192016-11-30 14:48:33 -0600153 adev = acpi_resource_consumer(&cfgres);
154 if (adev)
155 dev_info(dev, "ECAM area %pR reserved by %s\n", &cfgres,
156 dev_name(&adev->dev));
157 else
158 dev_warn(dev, FW_BUG "ECAM area %pR not reserved in ACPI namespace\n",
159 &cfgres);
160
Tomasz Nowicki13983eb2016-09-09 21:24:03 +0200161 cfg = pci_ecam_create(dev, &cfgres, bus_res, ecam_ops);
Tomasz Nowicki0cb07862016-06-10 21:55:19 +0200162 if (IS_ERR(cfg)) {
Bjorn Helgaasdfd19722016-12-01 11:33:57 -0600163 dev_err(dev, "%04x:%pR error %ld mapping ECAM\n", seg, bus_res,
164 PTR_ERR(cfg));
Tomasz Nowicki0cb07862016-06-10 21:55:19 +0200165 return NULL;
166 }
167
168 return cfg;
169}
170
171/* release_info: free resources allocated by init_info */
172static void pci_acpi_generic_release_info(struct acpi_pci_root_info *ci)
173{
174 struct acpi_pci_generic_root_info *ri;
175
176 ri = container_of(ci, struct acpi_pci_generic_root_info, common);
177 pci_ecam_free(ri->cfg);
Tomasz Nowicki093d24a2016-11-24 12:05:23 +0100178 kfree(ci->ops);
Tomasz Nowicki0cb07862016-06-10 21:55:19 +0200179 kfree(ri);
180}
181
Tomasz Nowicki0cb07862016-06-10 21:55:19 +0200182/* Interface called from ACPI code to setup PCI host controller */
Hanjun Guoa9cb97f2015-03-24 14:02:40 +0000183struct pci_bus *pci_acpi_scan_root(struct acpi_pci_root *root)
184{
Tomasz Nowicki0cb07862016-06-10 21:55:19 +0200185 int node = acpi_get_node(root->device->handle);
186 struct acpi_pci_generic_root_info *ri;
187 struct pci_bus *bus, *child;
Tomasz Nowicki093d24a2016-11-24 12:05:23 +0100188 struct acpi_pci_root_ops *root_ops;
Tomasz Nowicki0cb07862016-06-10 21:55:19 +0200189
190 ri = kzalloc_node(sizeof(*ri), GFP_KERNEL, node);
191 if (!ri)
192 return NULL;
193
Tomasz Nowicki093d24a2016-11-24 12:05:23 +0100194 root_ops = kzalloc_node(sizeof(*root_ops), GFP_KERNEL, node);
Timmy Li717902c2017-05-22 16:48:28 +0100195 if (!root_ops) {
196 kfree(ri);
Tomasz Nowicki093d24a2016-11-24 12:05:23 +0100197 return NULL;
Timmy Li717902c2017-05-22 16:48:28 +0100198 }
Tomasz Nowicki093d24a2016-11-24 12:05:23 +0100199
Tomasz Nowicki0cb07862016-06-10 21:55:19 +0200200 ri->cfg = pci_acpi_setup_ecam_mapping(root);
201 if (!ri->cfg) {
202 kfree(ri);
Tomasz Nowicki093d24a2016-11-24 12:05:23 +0100203 kfree(root_ops);
Tomasz Nowicki0cb07862016-06-10 21:55:19 +0200204 return NULL;
205 }
206
Tomasz Nowicki093d24a2016-11-24 12:05:23 +0100207 root_ops->release_info = pci_acpi_generic_release_info;
Bjorn Helgaas8fd43912016-12-02 17:25:54 -0600208 root_ops->prepare_resources = pci_acpi_root_prepare_resources;
Tomasz Nowicki093d24a2016-11-24 12:05:23 +0100209 root_ops->pci_ops = &ri->cfg->ops->pci_ops;
210 bus = acpi_pci_root_create(root, root_ops, &ri->common, ri->cfg);
Tomasz Nowicki0cb07862016-06-10 21:55:19 +0200211 if (!bus)
212 return NULL;
213
214 pci_bus_size_bridges(bus);
215 pci_bus_assign_resources(bus);
216
217 list_for_each_entry(child, &bus->children, node)
218 pcie_bus_configure_settings(child);
219
220 return bus;
Hanjun Guoa9cb97f2015-03-24 14:02:40 +0000221}
Tomasz Nowicki0cb07862016-06-10 21:55:19 +0200222
223void pcibios_add_bus(struct pci_bus *bus)
224{
225 acpi_pci_add_bus(bus);
226}
227
228void pcibios_remove_bus(struct pci_bus *bus)
229{
230 acpi_pci_remove_bus(bus);
231}
232
Hanjun Guoa9cb97f2015-03-24 14:02:40 +0000233#endif