blob: 8e40b3e6da77d14ebeaa5ce1d0e40bcc9d525413 [file] [log] [blame]
Bjorn Helgaas7328c8f2018-01-26 11:45:16 -06001// SPDX-License-Identifier: GPL-2.0
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 * From setup-res.c, by:
4 * Dave Rusling (david.rusling@reo.mts.dec.com)
5 * David Mosberger (davidm@cs.arizona.edu)
6 * David Miller (davem@redhat.com)
7 * Ivan Kokshaysky (ink@jurassic.park.msu.ru)
8 */
9#include <linux/module.h>
10#include <linux/kernel.h>
11#include <linux/pci.h>
12#include <linux/errno.h>
13#include <linux/ioport.h>
14#include <linux/proc_fs.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090015#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016
17#include "pci.h"
18
Bjorn Helgaas0efd5aa2012-02-23 20:19:00 -070019void pci_add_resource_offset(struct list_head *resources, struct resource *res,
20 resource_size_t offset)
Bjorn Helgaas45ca9e92011-10-28 16:25:35 -060021{
Jiang Liu14d76b62015-02-05 13:44:44 +080022 struct resource_entry *entry;
Bjorn Helgaas45ca9e92011-10-28 16:25:35 -060023
Jiang Liu14d76b62015-02-05 13:44:44 +080024 entry = resource_list_create_entry(res, 0);
25 if (!entry) {
Mohan Kumar25da8db2019-04-20 07:03:46 +030026 pr_err("PCI: can't add host bridge window %pR\n", res);
Bjorn Helgaas45ca9e92011-10-28 16:25:35 -060027 return;
28 }
29
Jiang Liu14d76b62015-02-05 13:44:44 +080030 entry->offset = offset;
31 resource_list_add_tail(entry, resources);
Bjorn Helgaas0efd5aa2012-02-23 20:19:00 -070032}
33EXPORT_SYMBOL(pci_add_resource_offset);
34
35void pci_add_resource(struct list_head *resources, struct resource *res)
36{
37 pci_add_resource_offset(resources, res, 0);
Bjorn Helgaas45ca9e92011-10-28 16:25:35 -060038}
39EXPORT_SYMBOL(pci_add_resource);
40
41void pci_free_resource_list(struct list_head *resources)
42{
Jiang Liu14d76b62015-02-05 13:44:44 +080043 resource_list_free(resources);
Bjorn Helgaas45ca9e92011-10-28 16:25:35 -060044}
45EXPORT_SYMBOL(pci_free_resource_list);
46
Bjorn Helgaas2fe2abf2010-02-23 10:24:36 -070047void pci_bus_add_resource(struct pci_bus *bus, struct resource *res,
48 unsigned int flags)
49{
50 struct pci_bus_resource *bus_res;
51
52 bus_res = kzalloc(sizeof(struct pci_bus_resource), GFP_KERNEL);
53 if (!bus_res) {
54 dev_err(&bus->dev, "can't add %pR resource\n", res);
55 return;
56 }
57
58 bus_res->res = res;
59 bus_res->flags = flags;
60 list_add_tail(&bus_res->list, &bus->resources);
61}
62
63struct resource *pci_bus_resource_n(const struct pci_bus *bus, int n)
64{
65 struct pci_bus_resource *bus_res;
66
67 if (n < PCI_BRIDGE_RESOURCE_NUM)
68 return bus->resource[n];
69
70 n -= PCI_BRIDGE_RESOURCE_NUM;
71 list_for_each_entry(bus_res, &bus->resources, list) {
72 if (n-- == 0)
73 return bus_res->res;
74 }
75 return NULL;
76}
77EXPORT_SYMBOL_GPL(pci_bus_resource_n);
78
79void pci_bus_remove_resources(struct pci_bus *bus)
80{
Bjorn Helgaas2fe2abf2010-02-23 10:24:36 -070081 int i;
Yinghai Lu817a2682012-09-14 17:48:41 -070082 struct pci_bus_resource *bus_res, *tmp;
Bjorn Helgaas2fe2abf2010-02-23 10:24:36 -070083
84 for (i = 0; i < PCI_BRIDGE_RESOURCE_NUM; i++)
Stephen Hemminger7736a052010-06-01 09:00:16 -070085 bus->resource[i] = NULL;
Bjorn Helgaas2fe2abf2010-02-23 10:24:36 -070086
Yinghai Lu817a2682012-09-14 17:48:41 -070087 list_for_each_entry_safe(bus_res, tmp, &bus->resources, list) {
88 list_del(&bus_res->list);
89 kfree(bus_res);
90 }
Bjorn Helgaas2fe2abf2010-02-23 10:24:36 -070091}
92
Bjorn Helgaas950334b2016-05-28 18:09:16 -050093int devm_request_pci_bus_resources(struct device *dev,
94 struct list_head *resources)
95{
96 struct resource_entry *win;
97 struct resource *parent, *res;
98 int err;
99
100 resource_list_for_each_entry(win, resources) {
101 res = win->res;
102 switch (resource_type(res)) {
103 case IORESOURCE_IO:
104 parent = &ioport_resource;
105 break;
106 case IORESOURCE_MEM:
107 parent = &iomem_resource;
108 break;
109 default:
110 continue;
111 }
112
113 err = devm_request_resource(dev, parent, res);
114 if (err)
115 return err;
116 }
117
118 return 0;
119}
120EXPORT_SYMBOL_GPL(devm_request_pci_bus_resources);
121
Yinghai Luf75b99d2013-12-20 09:57:37 -0700122static struct pci_bus_region pci_32_bit = {0, 0xffffffffULL};
Christoph Hellwig8e639072018-04-03 16:40:54 +0200123#ifdef CONFIG_ARCH_DMA_ADDR_T_64BIT
Yinghai Luf75b99d2013-12-20 09:57:37 -0700124static struct pci_bus_region pci_64_bit = {0,
Yinghai Lu3a9ad0b2015-05-27 17:23:51 -0700125 (pci_bus_addr_t) 0xffffffffffffffffULL};
126static struct pci_bus_region pci_high = {(pci_bus_addr_t) 0x100000000ULL,
127 (pci_bus_addr_t) 0xffffffffffffffffULL};
Yinghai Luf75b99d2013-12-20 09:57:37 -0700128#endif
129
130/*
131 * @res contains CPU addresses. Clip it so the corresponding bus addresses
132 * on @bus are entirely within @region. This is used to control the bus
133 * addresses of resources we allocate, e.g., we may need a resource that
134 * can be mapped by a 32-bit BAR.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 */
Yinghai Luf75b99d2013-12-20 09:57:37 -0700136static void pci_clip_resource_to_region(struct pci_bus *bus,
137 struct resource *res,
138 struct pci_bus_region *region)
139{
140 struct pci_bus_region r;
141
142 pcibios_resource_to_bus(bus, &r, res);
143 if (r.start < region->start)
144 r.start = region->start;
145 if (r.end > region->end)
146 r.end = region->end;
147
148 if (r.end < r.start)
149 res->end = res->start - 1;
150 else
151 pcibios_bus_to_resource(bus, res, &r);
152}
153
154static int pci_bus_alloc_from_region(struct pci_bus *bus, struct resource *res,
Greg Kroah-Hartmane31dd6e2006-06-12 17:06:02 -0700155 resource_size_t size, resource_size_t align,
Bjorn Helgaas664c2842014-03-07 13:51:12 -0700156 resource_size_t min, unsigned long type_mask,
Dominik Brodowskib26b2d42010-01-01 17:40:49 +0100157 resource_size_t (*alignf)(void *,
Dominik Brodowski3b7a17f2010-01-01 17:40:50 +0100158 const struct resource *,
Dominik Brodowskib26b2d42010-01-01 17:40:49 +0100159 resource_size_t,
160 resource_size_t),
Yinghai Luf75b99d2013-12-20 09:57:37 -0700161 void *alignf_data,
162 struct pci_bus_region *region)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163{
Yinghai Luf75b99d2013-12-20 09:57:37 -0700164 int i, ret;
165 struct resource *r, avail;
166 resource_size_t max;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167
Bjorn Helgaasaa11fc52014-03-07 13:39:01 -0700168 type_mask |= IORESOURCE_TYPE_BITS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169
Bjorn Helgaas6db45b72010-12-16 10:38:36 -0700170 pci_bus_for_each_resource(bus, r, i) {
Christoph Biedl3460baa2015-12-23 16:51:57 +0100171 resource_size_t min_used = min;
172
Bjorn Helgaas6db45b72010-12-16 10:38:36 -0700173 if (!r)
174 continue;
175
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 /* type_mask must match */
177 if ((res->flags ^ r->flags) & type_mask)
178 continue;
179
180 /* We cannot allocate a non-prefetching resource
181 from a pre-fetching area */
182 if ((r->flags & IORESOURCE_PREFETCH) &&
183 !(res->flags & IORESOURCE_PREFETCH))
184 continue;
185
Yinghai Luf75b99d2013-12-20 09:57:37 -0700186 avail = *r;
187 pci_clip_resource_to_region(bus, &avail, region);
Yinghai Luf75b99d2013-12-20 09:57:37 -0700188
189 /*
190 * "min" is typically PCIBIOS_MIN_IO or PCIBIOS_MIN_MEM to
191 * protect badly documented motherboard resources, but if
192 * this is an already-configured bridge window, its start
193 * overrides "min".
194 */
195 if (avail.start)
Christoph Biedl3460baa2015-12-23 16:51:57 +0100196 min_used = avail.start;
Yinghai Luf75b99d2013-12-20 09:57:37 -0700197
198 max = avail.end;
199
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 /* Ok, try it out.. */
Christoph Biedl3460baa2015-12-23 16:51:57 +0100201 ret = allocate_resource(r, res, size, min_used, max,
Yinghai Luf75b99d2013-12-20 09:57:37 -0700202 align, alignf, alignf_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 if (ret == 0)
Yinghai Luf75b99d2013-12-20 09:57:37 -0700204 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 }
Yinghai Luf75b99d2013-12-20 09:57:37 -0700206 return -ENOMEM;
207}
208
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209/**
210 * pci_bus_alloc_resource - allocate a resource from a parent bus
211 * @bus: PCI bus
212 * @res: resource to allocate
213 * @size: size of resource to allocate
214 * @align: alignment of resource to allocate
215 * @min: minimum /proc/iomem address to allocate
216 * @type_mask: IORESOURCE_* type flags
217 * @alignf: resource alignment function
218 * @alignf_data: data argument for resource alignment function
219 *
220 * Given the PCI bus a device resides on, the size, minimum address,
221 * alignment and type, try to find an acceptable resource allocation
222 * for a specific device resource.
223 */
Yinghai Lud56dbf52013-12-20 10:55:44 -0700224int pci_bus_alloc_resource(struct pci_bus *bus, struct resource *res,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 resource_size_t size, resource_size_t align,
Bjorn Helgaas664c2842014-03-07 13:51:12 -0700226 resource_size_t min, unsigned long type_mask,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 resource_size_t (*alignf)(void *,
228 const struct resource *,
229 resource_size_t,
230 resource_size_t),
231 void *alignf_data)
232{
Christoph Hellwig8e639072018-04-03 16:40:54 +0200233#ifdef CONFIG_ARCH_DMA_ADDR_T_64BIT
Yinghai Lud56dbf52013-12-20 10:55:44 -0700234 int rc;
235
236 if (res->flags & IORESOURCE_MEM_64) {
237 rc = pci_bus_alloc_from_region(bus, res, size, align, min,
238 type_mask, alignf, alignf_data,
239 &pci_high);
240 if (rc == 0)
241 return 0;
242
Yinghai Luf75b99d2013-12-20 09:57:37 -0700243 return pci_bus_alloc_from_region(bus, res, size, align, min,
244 type_mask, alignf, alignf_data,
245 &pci_64_bit);
Yinghai Lud56dbf52013-12-20 10:55:44 -0700246 }
Yinghai Luf75b99d2013-12-20 09:57:37 -0700247#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248
Yinghai Luf75b99d2013-12-20 09:57:37 -0700249 return pci_bus_alloc_from_region(bus, res, size, align, min,
250 type_mask, alignf, alignf_data,
251 &pci_32_bit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252}
Ryan Desfossesb7fe9432014-04-25 14:32:25 -0600253EXPORT_SYMBOL(pci_bus_alloc_resource);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254
Yinghai Lu0f7e7ae2015-01-15 16:21:49 -0600255/*
256 * The @idx resource of @dev should be a PCI-PCI bridge window. If this
257 * resource fits inside a window of an upstream bridge, do nothing. If it
258 * overlaps an upstream window but extends outside it, clip the resource so
259 * it fits completely inside.
260 */
261bool pci_bus_clip_resource(struct pci_dev *dev, int idx)
262{
263 struct pci_bus *bus = dev->bus;
264 struct resource *res = &dev->resource[idx];
265 struct resource orig_res = *res;
266 struct resource *r;
267 int i;
268
269 pci_bus_for_each_resource(bus, r, i) {
270 resource_size_t start, end;
271
272 if (!r)
273 continue;
274
275 if (resource_type(res) != resource_type(r))
276 continue;
277
278 start = max(r->start, res->start);
279 end = min(r->end, res->end);
280
281 if (start > end)
282 continue; /* no overlap */
283
284 if (res->start == start && res->end == end)
285 return false; /* no change */
286
287 res->start = start;
288 res->end = end;
Bjorn Helgaasb838b392015-09-22 17:03:54 -0500289 res->flags &= ~IORESOURCE_UNSET;
290 orig_res.flags &= ~IORESOURCE_UNSET;
Mohan Kumar34c6b712019-04-20 07:07:20 +0300291 pci_info(dev, "%pR clipped to %pR\n", &orig_res, res);
Yinghai Lu0f7e7ae2015-01-15 16:21:49 -0600292
293 return true;
294 }
295
296 return false;
297}
298
Yinghai Lu3c449ed2012-11-03 21:39:31 -0700299void __weak pcibios_resource_survey_bus(struct pci_bus *bus) { }
300
Wei Yang7b770612016-03-04 10:53:04 +1100301void __weak pcibios_bus_add_device(struct pci_dev *pdev) { }
302
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303/**
Yinghai Lu4f535092013-01-21 13:20:52 -0800304 * pci_bus_add_device - start driver for a single device
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 * @dev: device to add
306 *
Yinghai Lu4f535092013-01-21 13:20:52 -0800307 * This adds add sysfs entries and start device drivers
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 */
Yijing Wangc893d132014-05-30 11:01:03 +0800309void pci_bus_add_device(struct pci_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310{
Greg Kroah-Hartmanb19441a2006-08-28 11:43:25 -0700311 int retval;
Myron Stowe735bff12012-07-09 15:36:46 -0600312
Yinghai Lu4f535092013-01-21 13:20:52 -0800313 /*
314 * Can not put in pci_device_add yet because resources
315 * are not assigned yet for some devices.
316 */
Wei Yang7b770612016-03-04 10:53:04 +1100317 pcibios_bus_add_device(dev);
Yinghai Lue253aaf2013-05-07 14:35:44 -0600318 pci_fixup_device(pci_fixup_final, dev);
Yinghai Lu4f535092013-01-21 13:20:52 -0800319 pci_create_sysfs_dev_files(dev);
Yinghai Luef377022013-11-30 14:40:28 -0800320 pci_proc_attach_device(dev);
Lukas Wunner1ed276a2016-10-28 10:52:06 +0200321 pci_bridge_d3_update(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322
Yinghai Lu58d9a382013-01-21 13:20:51 -0800323 dev->match_driver = true;
324 retval = device_attach(&dev->dev);
Lukas Wunner9a2a5a62016-05-02 13:48:31 -0500325 if (retval < 0 && retval != -EPROBE_DEFER) {
Frederick Lawler7506dc72018-01-18 12:55:24 -0600326 pci_warn(dev, "device attach failed (%d)\n", retval);
Bjorn Helgaasab1a1872016-01-27 07:35:07 -0600327 pci_proc_detach_device(dev);
328 pci_remove_sysfs_dev_files(dev);
329 return;
330 }
Yinghai Lu58d9a382013-01-21 13:20:51 -0800331
Hari Vyas44bda4b2018-07-03 14:35:41 +0530332 pci_dev_assign_added(dev, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333}
Ryan Desfossesb7fe9432014-04-25 14:32:25 -0600334EXPORT_SYMBOL_GPL(pci_bus_add_device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335
336/**
Yinghai Lu4f535092013-01-21 13:20:52 -0800337 * pci_bus_add_devices - start driver for PCI devices
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 * @bus: bus to check for new devices
339 *
Yinghai Lu4f535092013-01-21 13:20:52 -0800340 * Start driver for PCI devices and add some sysfs entries.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 */
akpm@linux-foundation.orgc48f1672009-02-03 15:45:26 -0800342void pci_bus_add_devices(const struct pci_bus *bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343{
344 struct pci_dev *dev;
Yu Zhao3fa16fd2008-11-22 02:41:45 +0800345 struct pci_bus *child;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346
347 list_for_each_entry(dev, &bus->devices, bus_list) {
Greg Kroah-Hartman8a1bc902008-02-14 14:56:56 -0800348 /* Skip already-added devices */
Hari Vyas44bda4b2018-07-03 14:35:41 +0530349 if (pci_dev_is_added(dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 continue;
Yijing Wangc893d132014-05-30 11:01:03 +0800351 pci_bus_add_device(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 }
353
354 list_for_each_entry(dev, &bus->devices, bus_list) {
Lukas Wunner1e398ea2016-05-02 13:48:25 -0500355 /* Skip if device attach failed */
Hari Vyas44bda4b2018-07-03 14:35:41 +0530356 if (!pci_dev_is_added(dev))
Lukas Wunner1e398ea2016-05-02 13:48:25 -0500357 continue;
Yu Zhao3fa16fd2008-11-22 02:41:45 +0800358 child = dev->subordinate;
Jiang Liu981cf9e2013-04-12 05:44:16 +0000359 if (child)
360 pci_bus_add_devices(child);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 }
362}
Ryan Desfossesb7fe9432014-04-25 14:32:25 -0600363EXPORT_SYMBOL(pci_bus_add_devices);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364
Paul Mackerrascecf4862005-08-18 14:33:01 +1000365/** pci_walk_bus - walk devices on/under bus, calling callback.
366 * @top bus whose devices should be walked
367 * @cb callback to be called for each device found
368 * @userdata arbitrary pointer to be passed to callback.
369 *
370 * Walk the given bus, including any bridged devices
371 * on buses under this bus. Call the provided callback
372 * on each device found.
Zhang, Yanmin70298c62009-06-16 13:34:38 +0800373 *
374 * We check the return of @cb each time. If it returns anything
375 * other than 0, we break out.
376 *
Paul Mackerrascecf4862005-08-18 14:33:01 +1000377 */
Zhang, Yanmin70298c62009-06-16 13:34:38 +0800378void pci_walk_bus(struct pci_bus *top, int (*cb)(struct pci_dev *, void *),
Paul Mackerrascecf4862005-08-18 14:33:01 +1000379 void *userdata)
380{
381 struct pci_dev *dev;
382 struct pci_bus *bus;
383 struct list_head *next;
Zhang, Yanmin70298c62009-06-16 13:34:38 +0800384 int retval;
Paul Mackerrascecf4862005-08-18 14:33:01 +1000385
386 bus = top;
Zhang Yanmind71374d2006-06-02 12:35:43 +0800387 down_read(&pci_bus_sem);
Paul Mackerrascecf4862005-08-18 14:33:01 +1000388 next = top->devices.next;
389 for (;;) {
390 if (next == &bus->devices) {
391 /* end of this bus, go up or finish */
392 if (bus == top)
393 break;
394 next = bus->self->bus_list.next;
395 bus = bus->self->bus;
396 continue;
397 }
398 dev = list_entry(next, struct pci_dev, bus_list);
Paul Mackerrascecf4862005-08-18 14:33:01 +1000399 if (dev->subordinate) {
400 /* this is a pci-pci bridge, do its devices next */
401 next = dev->subordinate->devices.next;
402 bus = dev->subordinate;
403 } else
404 next = dev->bus_list.next;
Paul Mackerrascecf4862005-08-18 14:33:01 +1000405
Zhang, Yanmin70298c62009-06-16 13:34:38 +0800406 retval = cb(dev, userdata);
Zhang, Yanmin70298c62009-06-16 13:34:38 +0800407 if (retval)
408 break;
Paul Mackerrascecf4862005-08-18 14:33:01 +1000409 }
Zhang Yanmind71374d2006-06-02 12:35:43 +0800410 up_read(&pci_bus_sem);
Paul Mackerrascecf4862005-08-18 14:33:01 +1000411}
Konrad Rzeszutek Wilk7c94def2009-12-22 14:49:45 -0500412EXPORT_SYMBOL_GPL(pci_walk_bus);
Paul Mackerrascecf4862005-08-18 14:33:01 +1000413
Jiang Liufe830ef2013-05-25 21:48:29 +0800414struct pci_bus *pci_bus_get(struct pci_bus *bus)
415{
416 if (bus)
417 get_device(&bus->dev);
418 return bus;
419}
Jiang Liufe830ef2013-05-25 21:48:29 +0800420
421void pci_bus_put(struct pci_bus *bus)
422{
423 if (bus)
424 put_device(&bus->dev);
425}