1 // SPDX-License-Identifier: GPL-2.0
3 * 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)
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>
15 #include <linux/slab.h>
19 void pci_add_resource_offset(struct list_head *resources, struct resource *res,
20 resource_size_t offset)
22 struct resource_entry *entry;
24 entry = resource_list_create_entry(res, 0);
26 pr_err("PCI: can't add host bridge window %pR\n", res);
30 entry->offset = offset;
31 resource_list_add_tail(entry, resources);
33 EXPORT_SYMBOL(pci_add_resource_offset);
35 void pci_add_resource(struct list_head *resources, struct resource *res)
37 pci_add_resource_offset(resources, res, 0);
39 EXPORT_SYMBOL(pci_add_resource);
41 void pci_free_resource_list(struct list_head *resources)
43 resource_list_free(resources);
45 EXPORT_SYMBOL(pci_free_resource_list);
47 void pci_bus_add_resource(struct pci_bus *bus, struct resource *res,
50 struct pci_bus_resource *bus_res;
52 bus_res = kzalloc(sizeof(struct pci_bus_resource), GFP_KERNEL);
54 dev_err(&bus->dev, "can't add %pR resource\n", res);
59 bus_res->flags = flags;
60 list_add_tail(&bus_res->list, &bus->resources);
63 struct resource *pci_bus_resource_n(const struct pci_bus *bus, int n)
65 struct pci_bus_resource *bus_res;
67 if (n < PCI_BRIDGE_RESOURCE_NUM)
68 return bus->resource[n];
70 n -= PCI_BRIDGE_RESOURCE_NUM;
71 list_for_each_entry(bus_res, &bus->resources, list) {
77 EXPORT_SYMBOL_GPL(pci_bus_resource_n);
79 void pci_bus_remove_resource(struct pci_bus *bus, struct resource *res)
81 struct pci_bus_resource *bus_res, *tmp;
84 for (i = 0; i < PCI_BRIDGE_RESOURCE_NUM; i++) {
85 if (bus->resource[i] == res) {
86 bus->resource[i] = NULL;
91 list_for_each_entry_safe(bus_res, tmp, &bus->resources, list) {
92 if (bus_res->res == res) {
93 list_del(&bus_res->list);
100 void pci_bus_remove_resources(struct pci_bus *bus)
103 struct pci_bus_resource *bus_res, *tmp;
105 for (i = 0; i < PCI_BRIDGE_RESOURCE_NUM; i++)
106 bus->resource[i] = NULL;
108 list_for_each_entry_safe(bus_res, tmp, &bus->resources, list) {
109 list_del(&bus_res->list);
114 int devm_request_pci_bus_resources(struct device *dev,
115 struct list_head *resources)
117 struct resource_entry *win;
118 struct resource *parent, *res;
121 resource_list_for_each_entry(win, resources) {
123 switch (resource_type(res)) {
125 parent = &ioport_resource;
128 parent = &iomem_resource;
134 err = devm_request_resource(dev, parent, res);
141 EXPORT_SYMBOL_GPL(devm_request_pci_bus_resources);
143 static struct pci_bus_region pci_32_bit = {0, 0xffffffffULL};
144 #ifdef CONFIG_ARCH_DMA_ADDR_T_64BIT
145 static struct pci_bus_region pci_64_bit = {0,
146 (pci_bus_addr_t) 0xffffffffffffffffULL};
147 static struct pci_bus_region pci_high = {(pci_bus_addr_t) 0x100000000ULL,
148 (pci_bus_addr_t) 0xffffffffffffffffULL};
152 * @res contains CPU addresses. Clip it so the corresponding bus addresses
153 * on @bus are entirely within @region. This is used to control the bus
154 * addresses of resources we allocate, e.g., we may need a resource that
155 * can be mapped by a 32-bit BAR.
157 static void pci_clip_resource_to_region(struct pci_bus *bus,
158 struct resource *res,
159 struct pci_bus_region *region)
161 struct pci_bus_region r;
163 pcibios_resource_to_bus(bus, &r, res);
164 if (r.start < region->start)
165 r.start = region->start;
166 if (r.end > region->end)
170 res->end = res->start - 1;
172 pcibios_bus_to_resource(bus, res, &r);
175 static int pci_bus_alloc_from_region(struct pci_bus *bus, struct resource *res,
176 resource_size_t size, resource_size_t align,
177 resource_size_t min, unsigned long type_mask,
178 resource_size_t (*alignf)(void *,
179 const struct resource *,
183 struct pci_bus_region *region)
185 struct resource *r, avail;
189 type_mask |= IORESOURCE_TYPE_BITS;
191 pci_bus_for_each_resource(bus, r) {
192 resource_size_t min_used = min;
197 /* type_mask must match */
198 if ((res->flags ^ r->flags) & type_mask)
201 /* We cannot allocate a non-prefetching resource
202 from a pre-fetching area */
203 if ((r->flags & IORESOURCE_PREFETCH) &&
204 !(res->flags & IORESOURCE_PREFETCH))
208 pci_clip_resource_to_region(bus, &avail, region);
211 * "min" is typically PCIBIOS_MIN_IO or PCIBIOS_MIN_MEM to
212 * protect badly documented motherboard resources, but if
213 * this is an already-configured bridge window, its start
217 min_used = avail.start;
221 /* Don't bother if available space isn't large enough */
222 if (size > max - min_used + 1)
225 /* Ok, try it out.. */
226 ret = allocate_resource(r, res, size, min_used, max,
227 align, alignf, alignf_data);
235 * pci_bus_alloc_resource - allocate a resource from a parent bus
237 * @res: resource to allocate
238 * @size: size of resource to allocate
239 * @align: alignment of resource to allocate
240 * @min: minimum /proc/iomem address to allocate
241 * @type_mask: IORESOURCE_* type flags
242 * @alignf: resource alignment function
243 * @alignf_data: data argument for resource alignment function
245 * Given the PCI bus a device resides on, the size, minimum address,
246 * alignment and type, try to find an acceptable resource allocation
247 * for a specific device resource.
249 int pci_bus_alloc_resource(struct pci_bus *bus, struct resource *res,
250 resource_size_t size, resource_size_t align,
251 resource_size_t min, unsigned long type_mask,
252 resource_size_t (*alignf)(void *,
253 const struct resource *,
258 #ifdef CONFIG_ARCH_DMA_ADDR_T_64BIT
261 if (res->flags & IORESOURCE_MEM_64) {
262 rc = pci_bus_alloc_from_region(bus, res, size, align, min,
263 type_mask, alignf, alignf_data,
268 return pci_bus_alloc_from_region(bus, res, size, align, min,
269 type_mask, alignf, alignf_data,
274 return pci_bus_alloc_from_region(bus, res, size, align, min,
275 type_mask, alignf, alignf_data,
278 EXPORT_SYMBOL(pci_bus_alloc_resource);
281 * The @idx resource of @dev should be a PCI-PCI bridge window. If this
282 * resource fits inside a window of an upstream bridge, do nothing. If it
283 * overlaps an upstream window but extends outside it, clip the resource so
284 * it fits completely inside.
286 bool pci_bus_clip_resource(struct pci_dev *dev, int idx)
288 struct pci_bus *bus = dev->bus;
289 struct resource *res = &dev->resource[idx];
290 struct resource orig_res = *res;
293 pci_bus_for_each_resource(bus, r) {
294 resource_size_t start, end;
299 if (resource_type(res) != resource_type(r))
302 start = max(r->start, res->start);
303 end = min(r->end, res->end);
306 continue; /* no overlap */
308 if (res->start == start && res->end == end)
309 return false; /* no change */
313 res->flags &= ~IORESOURCE_UNSET;
314 orig_res.flags &= ~IORESOURCE_UNSET;
315 pci_info(dev, "%pR clipped to %pR\n", &orig_res, res);
323 void __weak pcibios_resource_survey_bus(struct pci_bus *bus) { }
325 void __weak pcibios_bus_add_device(struct pci_dev *pdev) { }
328 * pci_bus_add_device - start driver for a single device
329 * @dev: device to add
331 * This adds add sysfs entries and start device drivers
333 void pci_bus_add_device(struct pci_dev *dev)
338 * Can not put in pci_device_add yet because resources
339 * are not assigned yet for some devices.
341 pcibios_bus_add_device(dev);
342 pci_fixup_device(pci_fixup_final, dev);
343 pci_create_sysfs_dev_files(dev);
344 pci_proc_attach_device(dev);
345 pci_bridge_d3_update(dev);
347 dev->match_driver = true;
348 retval = device_attach(&dev->dev);
349 if (retval < 0 && retval != -EPROBE_DEFER)
350 pci_warn(dev, "device attach failed (%d)\n", retval);
352 pci_dev_assign_added(dev, true);
354 EXPORT_SYMBOL_GPL(pci_bus_add_device);
357 * pci_bus_add_devices - start driver for PCI devices
358 * @bus: bus to check for new devices
360 * Start driver for PCI devices and add some sysfs entries.
362 void pci_bus_add_devices(const struct pci_bus *bus)
365 struct pci_bus *child;
367 list_for_each_entry(dev, &bus->devices, bus_list) {
368 /* Skip already-added devices */
369 if (pci_dev_is_added(dev))
371 pci_bus_add_device(dev);
374 list_for_each_entry(dev, &bus->devices, bus_list) {
375 /* Skip if device attach failed */
376 if (!pci_dev_is_added(dev))
378 child = dev->subordinate;
380 pci_bus_add_devices(child);
383 EXPORT_SYMBOL(pci_bus_add_devices);
385 /** pci_walk_bus - walk devices on/under bus, calling callback.
386 * @top bus whose devices should be walked
387 * @cb callback to be called for each device found
388 * @userdata arbitrary pointer to be passed to callback.
390 * Walk the given bus, including any bridged devices
391 * on buses under this bus. Call the provided callback
392 * on each device found.
394 * We check the return of @cb each time. If it returns anything
395 * other than 0, we break out.
398 void pci_walk_bus(struct pci_bus *top, int (*cb)(struct pci_dev *, void *),
403 struct list_head *next;
407 down_read(&pci_bus_sem);
408 next = top->devices.next;
410 if (next == &bus->devices) {
411 /* end of this bus, go up or finish */
414 next = bus->self->bus_list.next;
415 bus = bus->self->bus;
418 dev = list_entry(next, struct pci_dev, bus_list);
419 if (dev->subordinate) {
420 /* this is a pci-pci bridge, do its devices next */
421 next = dev->subordinate->devices.next;
422 bus = dev->subordinate;
424 next = dev->bus_list.next;
426 retval = cb(dev, userdata);
430 up_read(&pci_bus_sem);
432 EXPORT_SYMBOL_GPL(pci_walk_bus);
434 struct pci_bus *pci_bus_get(struct pci_bus *bus)
437 get_device(&bus->dev);
441 void pci_bus_put(struct pci_bus *bus)
444 put_device(&bus->dev);