blob: 946382fd4ea19f7fdaa6c6a8a4587d475047bf76 [file] [log] [blame]
David Daney4e64dbe2016-03-11 15:35:55 -06001/*
Paul Gortmaker4068bd12016-08-22 17:59:48 -04002 * Generic PCI host driver common code
3 *
David Daney4e64dbe2016-03-11 15:35:55 -06004 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this program. If not, see <http://www.gnu.org/licenses/>.
15 *
16 * Copyright (C) 2014 ARM Limited
17 *
18 * Author: Will Deacon <will.deacon@arm.com>
19 */
20
21#include <linux/kernel.h>
David Daney4e64dbe2016-03-11 15:35:55 -060022#include <linux/of_address.h>
23#include <linux/of_pci.h>
Jayachandran C80955f92016-06-10 21:55:09 +020024#include <linux/pci-ecam.h>
David Daney4e64dbe2016-03-11 15:35:55 -060025#include <linux/platform_device.h>
26
Jayachandran C1958e712016-05-11 17:34:46 -050027static int gen_pci_parse_request_of_pci_ranges(struct device *dev,
28 struct list_head *resources, struct resource **bus_range)
David Daney4e64dbe2016-03-11 15:35:55 -060029{
30 int err, res_valid = 0;
David Daney4e64dbe2016-03-11 15:35:55 -060031 struct device_node *np = dev->of_node;
32 resource_size_t iobase;
33 struct resource_entry *win;
34
Jayachandran C1958e712016-05-11 17:34:46 -050035 err = of_pci_get_host_bridge_resources(np, 0, 0xff, resources, &iobase);
David Daney4e64dbe2016-03-11 15:35:55 -060036 if (err)
37 return err;
38
Bjorn Helgaasb7f957a2016-05-31 12:05:05 -050039 err = devm_request_pci_bus_resources(dev, resources);
40 if (err)
Bjorn Helgaas5aa182a2016-05-28 18:28:51 -050041 return err;
Bjorn Helgaasb7f957a2016-05-31 12:05:05 -050042
Jayachandran C1958e712016-05-11 17:34:46 -050043 resource_list_for_each_entry(win, resources) {
Bjorn Helgaasb7f957a2016-05-31 12:05:05 -050044 struct resource *res = win->res;
David Daney4e64dbe2016-03-11 15:35:55 -060045
46 switch (resource_type(res)) {
47 case IORESOURCE_IO:
David Daney4e64dbe2016-03-11 15:35:55 -060048 err = pci_remap_iospace(res, iobase);
Bjorn Helgaas5aa182a2016-05-28 18:28:51 -050049 if (err)
David Daney4e64dbe2016-03-11 15:35:55 -060050 dev_warn(dev, "error %d: failed to map resource %pR\n",
51 err, res);
David Daney4e64dbe2016-03-11 15:35:55 -060052 break;
53 case IORESOURCE_MEM:
David Daney4e64dbe2016-03-11 15:35:55 -060054 res_valid |= !(res->flags & IORESOURCE_PREFETCH);
55 break;
56 case IORESOURCE_BUS:
Jayachandran C1958e712016-05-11 17:34:46 -050057 *bus_range = res;
Bjorn Helgaas5aa182a2016-05-28 18:28:51 -050058 break;
David Daney4e64dbe2016-03-11 15:35:55 -060059 }
David Daney4e64dbe2016-03-11 15:35:55 -060060 }
61
Bjorn Helgaas5aa182a2016-05-28 18:28:51 -050062 if (res_valid)
63 return 0;
David Daney4e64dbe2016-03-11 15:35:55 -060064
Bjorn Helgaas5aa182a2016-05-28 18:28:51 -050065 dev_err(dev, "non-prefetchable memory resource required\n");
66 return -EINVAL;
David Daney4e64dbe2016-03-11 15:35:55 -060067}
68
Jayachandran C1958e712016-05-11 17:34:46 -050069static void gen_pci_unmap_cfg(void *ptr)
70{
71 pci_ecam_free((struct pci_config_window *)ptr);
72}
73
74static struct pci_config_window *gen_pci_init(struct device *dev,
75 struct list_head *resources, struct pci_ecam_ops *ops)
David Daney4e64dbe2016-03-11 15:35:55 -060076{
77 int err;
Jayachandran C1958e712016-05-11 17:34:46 -050078 struct resource cfgres;
79 struct resource *bus_range = NULL;
80 struct pci_config_window *cfg;
David Daney4e64dbe2016-03-11 15:35:55 -060081
Jayachandran C1958e712016-05-11 17:34:46 -050082 /* Parse our PCI ranges and request their resources */
83 err = gen_pci_parse_request_of_pci_ranges(dev, resources, &bus_range);
84 if (err)
85 goto err_out;
86
87 err = of_address_to_resource(dev->of_node, 0, &cfgres);
David Daney4e64dbe2016-03-11 15:35:55 -060088 if (err) {
89 dev_err(dev, "missing \"reg\" property\n");
Jayachandran C1958e712016-05-11 17:34:46 -050090 goto err_out;
David Daney4e64dbe2016-03-11 15:35:55 -060091 }
92
Jayachandran C1958e712016-05-11 17:34:46 -050093 cfg = pci_ecam_create(dev, &cfgres, bus_range, ops);
94 if (IS_ERR(cfg)) {
95 err = PTR_ERR(cfg);
96 goto err_out;
David Daney4e64dbe2016-03-11 15:35:55 -060097 }
98
Jayachandran C1958e712016-05-11 17:34:46 -050099 err = devm_add_action(dev, gen_pci_unmap_cfg, cfg);
100 if (err) {
101 gen_pci_unmap_cfg(cfg);
102 goto err_out;
103 }
104 return cfg;
105
106err_out:
107 pci_free_resource_list(resources);
108 return ERR_PTR(err);
David Daney4e64dbe2016-03-11 15:35:55 -0600109}
110
111int pci_host_common_probe(struct platform_device *pdev,
Jayachandran C1958e712016-05-11 17:34:46 -0500112 struct pci_ecam_ops *ops)
David Daney4e64dbe2016-03-11 15:35:55 -0600113{
David Daney4e64dbe2016-03-11 15:35:55 -0600114 const char *type;
115 struct device *dev = &pdev->dev;
116 struct device_node *np = dev->of_node;
117 struct pci_bus *bus, *child;
Jayachandran C1958e712016-05-11 17:34:46 -0500118 struct pci_config_window *cfg;
119 struct list_head resources;
David Daney4e64dbe2016-03-11 15:35:55 -0600120
121 type = of_get_property(np, "device_type", NULL);
122 if (!type || strcmp(type, "pci")) {
123 dev_err(dev, "invalid \"device_type\" %s\n", type);
124 return -EINVAL;
125 }
126
127 of_pci_check_probe_only();
128
David Daney4e64dbe2016-03-11 15:35:55 -0600129 /* Parse and map our Configuration Space windows */
Jayachandran C1958e712016-05-11 17:34:46 -0500130 INIT_LIST_HEAD(&resources);
131 cfg = gen_pci_init(dev, &resources, ops);
132 if (IS_ERR(cfg))
133 return PTR_ERR(cfg);
David Daney4e64dbe2016-03-11 15:35:55 -0600134
135 /* Do not reassign resources if probe only */
136 if (!pci_has_flag(PCI_PROBE_ONLY))
137 pci_add_flags(PCI_REASSIGN_ALL_RSRC | PCI_REASSIGN_ALL_BUS);
138
Jayachandran C1958e712016-05-11 17:34:46 -0500139 bus = pci_scan_root_bus(dev, cfg->busr.start, &ops->pci_ops, cfg,
140 &resources);
David Daney4e64dbe2016-03-11 15:35:55 -0600141 if (!bus) {
142 dev_err(dev, "Scanning rootbus failed");
143 return -ENODEV;
144 }
145
146 pci_fixup_irqs(pci_common_swizzle, of_irq_parse_and_map_pci);
147
Lorenzo Pieralisidcce0f1532016-06-08 12:04:48 +0100148 /*
149 * We insert PCI resources into the iomem_resource and
150 * ioport_resource trees in either pci_bus_claim_resources()
151 * or pci_bus_assign_resources().
152 */
153 if (pci_has_flag(PCI_PROBE_ONLY)) {
154 pci_bus_claim_resources(bus);
155 } else {
David Daney4e64dbe2016-03-11 15:35:55 -0600156 pci_bus_size_bridges(bus);
157 pci_bus_assign_resources(bus);
158
159 list_for_each_entry(child, &bus->children, node)
160 pcie_bus_configure_settings(child);
161 }
162
163 pci_bus_add_devices(bus);
164 return 0;
165}