]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - drivers/pci/host/pci-host-generic.c
PCI: generic: Fix address window calculation for non-zero starting bus
[mirror_ubuntu-artful-kernel.git] / drivers / pci / host / pci-host-generic.c
CommitLineData
ce292991
WD
1/*
2 * Simple, generic PCI host controller driver targetting firmware-initialised
3 * systems and virtual machines (e.g. the PCI emulation provided by kvmtool).
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2 as
7 * published by the Free Software Foundation.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program. If not, see <http://www.gnu.org/licenses/>.
16 *
17 * Copyright (C) 2014 ARM Limited
18 *
19 * Author: Will Deacon <will.deacon@arm.com>
20 */
21
22#include <linux/kernel.h>
23#include <linux/module.h>
24#include <linux/of_address.h>
25#include <linux/of_pci.h>
26#include <linux/platform_device.h>
27
28struct gen_pci_cfg_bus_ops {
29 u32 bus_shift;
9a280337 30 struct pci_ops ops;
ce292991
WD
31};
32
33struct gen_pci_cfg_windows {
34 struct resource res;
dbf9826d 35 struct resource *bus_range;
ce292991
WD
36 void __iomem **win;
37
9a280337 38 struct gen_pci_cfg_bus_ops *ops;
ce292991
WD
39};
40
499733e0
J
41/*
42 * ARM pcibios functions expect the ARM struct pci_sys_data as the PCI
43 * sysdata. Add pci_sys_data as the first element in struct gen_pci so
44 * that when we use a gen_pci pointer as sysdata, it is also a pointer to
45 * a struct pci_sys_data.
46 */
ce292991 47struct gen_pci {
499733e0
J
48#ifdef CONFIG_ARM
49 struct pci_sys_data sys;
50#endif
ce292991
WD
51 struct pci_host_bridge host;
52 struct gen_pci_cfg_windows cfg;
53 struct list_head resources;
54};
55
56static void __iomem *gen_pci_map_cfg_bus_cam(struct pci_bus *bus,
57 unsigned int devfn,
58 int where)
59{
499733e0 60 struct gen_pci *pci = bus->sysdata;
dbf9826d 61 resource_size_t idx = bus->number - pci->cfg.bus_range->start;
ce292991
WD
62
63 return pci->cfg.win[idx] + ((devfn << 8) | where);
64}
65
66static struct gen_pci_cfg_bus_ops gen_pci_cfg_cam_bus_ops = {
67 .bus_shift = 16,
9a280337
DD
68 .ops = {
69 .map_bus = gen_pci_map_cfg_bus_cam,
70 .read = pci_generic_config_read,
71 .write = pci_generic_config_write,
72 }
ce292991
WD
73};
74
75static void __iomem *gen_pci_map_cfg_bus_ecam(struct pci_bus *bus,
76 unsigned int devfn,
77 int where)
78{
499733e0 79 struct gen_pci *pci = bus->sysdata;
dbf9826d 80 resource_size_t idx = bus->number - pci->cfg.bus_range->start;
ce292991
WD
81
82 return pci->cfg.win[idx] + ((devfn << 12) | where);
83}
84
85static struct gen_pci_cfg_bus_ops gen_pci_cfg_ecam_bus_ops = {
86 .bus_shift = 20,
9a280337
DD
87 .ops = {
88 .map_bus = gen_pci_map_cfg_bus_ecam,
89 .read = pci_generic_config_read,
90 .write = pci_generic_config_write,
91 }
ce292991
WD
92};
93
94static const struct of_device_id gen_pci_of_match[] = {
95 { .compatible = "pci-host-cam-generic",
96 .data = &gen_pci_cfg_cam_bus_ops },
97
98 { .compatible = "pci-host-ecam-generic",
99 .data = &gen_pci_cfg_ecam_bus_ops },
100
101 { },
102};
103MODULE_DEVICE_TABLE(of, gen_pci_of_match);
104
ce292991
WD
105static void gen_pci_release_of_pci_ranges(struct gen_pci *pci)
106{
ce292991
WD
107 pci_free_resource_list(&pci->resources);
108}
109
110static int gen_pci_parse_request_of_pci_ranges(struct gen_pci *pci)
111{
ce292991
WD
112 int err, res_valid = 0;
113 struct device *dev = pci->host.dev.parent;
114 struct device_node *np = dev->of_node;
dbf9826d 115 resource_size_t iobase;
14d76b68 116 struct resource_entry *win;
ce292991 117
dbf9826d
LP
118 err = of_pci_get_host_bridge_resources(np, 0, 0xff, &pci->resources,
119 &iobase);
120 if (err)
121 return err;
ce292991 122
14d76b68 123 resource_list_for_each_entry(win, &pci->resources) {
dbf9826d 124 struct resource *parent, *res = win->res;
ce292991 125
dbf9826d 126 switch (resource_type(res)) {
ce292991
WD
127 case IORESOURCE_IO:
128 parent = &ioport_resource;
dbf9826d
LP
129 err = pci_remap_iospace(res, iobase);
130 if (err) {
131 dev_warn(dev, "error %d: failed to map resource %pR\n",
132 err, res);
133 continue;
134 }
ce292991
WD
135 break;
136 case IORESOURCE_MEM:
137 parent = &iomem_resource;
dbf9826d 138 res_valid |= !(res->flags & IORESOURCE_PREFETCH);
ce292991 139 break;
dbf9826d
LP
140 case IORESOURCE_BUS:
141 pci->cfg.bus_range = res;
ce292991 142 default:
ce292991
WD
143 continue;
144 }
145
dbf9826d 146 err = devm_request_resource(dev, parent, res);
ce292991
WD
147 if (err)
148 goto out_release_res;
ce292991
WD
149 }
150
151 if (!res_valid) {
152 dev_err(dev, "non-prefetchable memory resource required\n");
153 err = -EINVAL;
154 goto out_release_res;
155 }
156
157 return 0;
158
159out_release_res:
160 gen_pci_release_of_pci_ranges(pci);
161 return err;
162}
163
164static int gen_pci_parse_map_cfg_windows(struct gen_pci *pci)
165{
166 int err;
167 u8 bus_max;
168 resource_size_t busn;
169 struct resource *bus_range;
170 struct device *dev = pci->host.dev.parent;
171 struct device_node *np = dev->of_node;
f6225c3a 172 u32 sz = 1 << pci->cfg.ops->bus_shift;
ce292991 173
ce292991
WD
174 err = of_address_to_resource(np, 0, &pci->cfg.res);
175 if (err) {
176 dev_err(dev, "missing \"reg\" property\n");
177 return err;
178 }
179
ce292991 180 /* Limit the bus-range to fit within reg */
dbf9826d 181 bus_max = pci->cfg.bus_range->start +
ce292991 182 (resource_size(&pci->cfg.res) >> pci->cfg.ops->bus_shift) - 1;
dbf9826d
LP
183 pci->cfg.bus_range->end = min_t(resource_size_t,
184 pci->cfg.bus_range->end, bus_max);
ce292991 185
dbf9826d 186 pci->cfg.win = devm_kcalloc(dev, resource_size(pci->cfg.bus_range),
a5525b24
LP
187 sizeof(*pci->cfg.win), GFP_KERNEL);
188 if (!pci->cfg.win)
189 return -ENOMEM;
190
ce292991
WD
191 /* Map our Configuration Space windows */
192 if (!devm_request_mem_region(dev, pci->cfg.res.start,
193 resource_size(&pci->cfg.res),
194 "Configuration Space"))
195 return -ENOMEM;
196
dbf9826d 197 bus_range = pci->cfg.bus_range;
ce292991
WD
198 for (busn = bus_range->start; busn <= bus_range->end; ++busn) {
199 u32 idx = busn - bus_range->start;
ce292991
WD
200
201 pci->cfg.win[idx] = devm_ioremap(dev,
f6225c3a 202 pci->cfg.res.start + idx * sz,
ce292991
WD
203 sz);
204 if (!pci->cfg.win[idx])
205 return -ENOMEM;
206 }
207
ce292991
WD
208 return 0;
209}
210
ce292991
WD
211static int gen_pci_probe(struct platform_device *pdev)
212{
213 int err;
214 const char *type;
215 const struct of_device_id *of_id;
ce292991
WD
216 struct device *dev = &pdev->dev;
217 struct device_node *np = dev->of_node;
218 struct gen_pci *pci = devm_kzalloc(dev, sizeof(*pci), GFP_KERNEL);
499733e0 219 struct pci_bus *bus, *child;
ce292991
WD
220
221 if (!pci)
222 return -ENOMEM;
223
224 type = of_get_property(np, "device_type", NULL);
225 if (!type || strcmp(type, "pci")) {
226 dev_err(dev, "invalid \"device_type\" %s\n", type);
227 return -EINVAL;
228 }
229
a07245d1 230 of_pci_check_probe_only();
ce292991
WD
231
232 of_id = of_match_node(gen_pci_of_match, np);
9a280337 233 pci->cfg.ops = (struct gen_pci_cfg_bus_ops *)of_id->data;
ce292991
WD
234 pci->host.dev.parent = dev;
235 INIT_LIST_HEAD(&pci->host.windows);
236 INIT_LIST_HEAD(&pci->resources);
237
238 /* Parse our PCI ranges and request their resources */
239 err = gen_pci_parse_request_of_pci_ranges(pci);
240 if (err)
241 return err;
242
243 /* Parse and map our Configuration Space windows */
244 err = gen_pci_parse_map_cfg_windows(pci);
245 if (err) {
246 gen_pci_release_of_pci_ranges(pci);
247 return err;
248 }
249
499733e0
J
250 /* Do not reassign resources if probe only */
251 if (!pci_has_flag(PCI_PROBE_ONLY))
252 pci_add_flags(PCI_REASSIGN_ALL_RSRC | PCI_REASSIGN_ALL_BUS);
253
47ddb949
DD
254
255 bus = pci_scan_root_bus(dev, pci->cfg.bus_range->start,
9a280337 256 &pci->cfg.ops->ops, pci, &pci->resources);
499733e0
J
257 if (!bus) {
258 dev_err(dev, "Scanning rootbus failed");
259 return -ENODEV;
260 }
261
262 pci_fixup_irqs(pci_common_swizzle, of_irq_parse_and_map_pci);
263
264 if (!pci_has_flag(PCI_PROBE_ONLY)) {
265 pci_bus_size_bridges(bus);
266 pci_bus_assign_resources(bus);
267
268 list_for_each_entry(child, &bus->children, node)
269 pcie_bus_configure_settings(child);
270 }
271
272 pci_bus_add_devices(bus);
ce292991
WD
273 return 0;
274}
275
276static struct platform_driver gen_pci_driver = {
277 .driver = {
278 .name = "pci-host-generic",
ce292991
WD
279 .of_match_table = gen_pci_of_match,
280 },
281 .probe = gen_pci_probe,
282};
283module_platform_driver(gen_pci_driver);
284
285MODULE_DESCRIPTION("Generic PCI host driver");
286MODULE_AUTHOR("Will Deacon <will.deacon@arm.com>");
eed6542d 287MODULE_LICENSE("GPL v2");