]> git.proxmox.com Git - mirror_ubuntu-focal-kernel.git/blame - drivers/pci/setup-bus.c
PCI: Make rescan bus increase bridge resource size if needed
[mirror_ubuntu-focal-kernel.git] / drivers / pci / setup-bus.c
CommitLineData
1da177e4
LT
1/*
2 * drivers/pci/setup-bus.c
3 *
4 * Extruded from code written by
5 * Dave Rusling (david.rusling@reo.mts.dec.com)
6 * David Mosberger (davidm@cs.arizona.edu)
7 * David Miller (davem@redhat.com)
8 *
9 * Support routines for initializing a PCI subsystem.
10 */
11
12/*
13 * Nov 2000, Ivan Kokshaysky <ink@jurassic.park.msu.ru>
14 * PCI-PCI bridges cleanup, sorted resource allocation.
15 * Feb 2002, Ivan Kokshaysky <ink@jurassic.park.msu.ru>
16 * Converted to allocation in 3 passes, which gives
17 * tighter packing. Prefetchable range support.
18 */
19
20#include <linux/init.h>
21#include <linux/kernel.h>
22#include <linux/module.h>
23#include <linux/pci.h>
24#include <linux/errno.h>
25#include <linux/ioport.h>
26#include <linux/cache.h>
27#include <linux/slab.h>
6faf17f6 28#include "pci.h"
1da177e4 29
568ddef8
YL
30struct resource_list_x {
31 struct resource_list_x *next;
32 struct resource *res;
33 struct pci_dev *dev;
34 resource_size_t start;
35 resource_size_t end;
c8adf9a3 36 resource_size_t add_size;
2bbc6942 37 resource_size_t min_align;
568ddef8
YL
38 unsigned long flags;
39};
40
094732a5
RP
41#define free_list(type, head) do { \
42 struct type *list, *tmp; \
43 for (list = (head)->next; list;) { \
44 tmp = list; \
45 list = list->next; \
46 kfree(tmp); \
47 } \
48 (head)->next = NULL; \
49} while (0)
50
f483d392
RP
51int pci_realloc_enable = 0;
52#define pci_realloc_enabled() pci_realloc_enable
53void pci_realloc(void)
54{
55 pci_realloc_enable = 1;
56}
57
c8adf9a3
RP
58/**
59 * add_to_list() - add a new resource tracker to the list
60 * @head: Head of the list
61 * @dev: device corresponding to which the resource
62 * belongs
63 * @res: The resource to be tracked
64 * @add_size: additional size to be optionally added
65 * to the resource
66 */
ef62dfef 67static int add_to_list(struct resource_list_x *head,
c8adf9a3 68 struct pci_dev *dev, struct resource *res,
2bbc6942 69 resource_size_t add_size, resource_size_t min_align)
568ddef8
YL
70{
71 struct resource_list_x *list = head;
72 struct resource_list_x *ln = list->next;
73 struct resource_list_x *tmp;
74
75 tmp = kmalloc(sizeof(*tmp), GFP_KERNEL);
76 if (!tmp) {
c8adf9a3 77 pr_warning("add_to_list: kmalloc() failed!\n");
ef62dfef 78 return -ENOMEM;
568ddef8
YL
79 }
80
81 tmp->next = ln;
82 tmp->res = res;
83 tmp->dev = dev;
84 tmp->start = res->start;
85 tmp->end = res->end;
86 tmp->flags = res->flags;
c8adf9a3 87 tmp->add_size = add_size;
2bbc6942 88 tmp->min_align = min_align;
568ddef8 89 list->next = tmp;
ef62dfef
YL
90
91 return 0;
568ddef8
YL
92}
93
c8adf9a3
RP
94static void add_to_failed_list(struct resource_list_x *head,
95 struct pci_dev *dev, struct resource *res)
96{
2bbc6942
RP
97 add_to_list(head, dev, res,
98 0 /* dont care */,
99 0 /* dont care */);
c8adf9a3
RP
100}
101
3e6e0d80
YL
102static void remove_from_list(struct resource_list_x *realloc_head,
103 struct resource *res)
104{
105 struct resource_list_x *prev, *tmp, *list;
106
107 prev = realloc_head;
108 for (list = realloc_head->next; list;) {
109 if (list->res != res) {
110 prev = list;
111 list = list->next;
112 continue;
113 }
114 tmp = list;
115 prev->next = list = list->next;
116 kfree(tmp);
117 }
118}
119
1c372353
YL
120static resource_size_t get_res_add_size(struct resource_list_x *realloc_head,
121 struct resource *res)
122{
123 struct resource_list_x *list;
124
125 /* check if it is in realloc_head list */
126 for (list = realloc_head->next; list && list->res != res;
127 list = list->next)
128 ;
3e6e0d80
YL
129
130 if (list) {
131 dev_printk(KERN_DEBUG, &list->dev->dev,
132 "%pR get_res_add_size add_size %llx\n",
133 list->res, (unsigned long long)list->add_size);
1c372353 134 return list->add_size;
3e6e0d80 135 }
1c372353
YL
136
137 return 0;
138}
139
6841ec68
YL
140static void __dev_sort_resources(struct pci_dev *dev,
141 struct resource_list *head)
1da177e4 142{
6841ec68 143 u16 class = dev->class >> 8;
1da177e4 144
6841ec68
YL
145 /* Don't touch classless devices or host bridges or ioapics. */
146 if (class == PCI_CLASS_NOT_DEFINED || class == PCI_CLASS_BRIDGE_HOST)
147 return;
1da177e4 148
6841ec68
YL
149 /* Don't touch ioapic devices already enabled by firmware */
150 if (class == PCI_CLASS_SYSTEM_PIC) {
151 u16 command;
152 pci_read_config_word(dev, PCI_COMMAND, &command);
153 if (command & (PCI_COMMAND_IO | PCI_COMMAND_MEMORY))
154 return;
155 }
1da177e4 156
6841ec68
YL
157 pdev_sort_resources(dev, head);
158}
23186279 159
fc075e1d
RP
160static inline void reset_resource(struct resource *res)
161{
162 res->start = 0;
163 res->end = 0;
164 res->flags = 0;
165}
166
c8adf9a3 167/**
9e8bf93a 168 * reassign_resources_sorted() - satisfy any additional resource requests
c8adf9a3 169 *
9e8bf93a 170 * @realloc_head : head of the list tracking requests requiring additional
c8adf9a3
RP
171 * resources
172 * @head : head of the list tracking requests with allocated
173 * resources
174 *
9e8bf93a 175 * Walk through each element of the realloc_head and try to procure
c8adf9a3
RP
176 * additional resources for the element, provided the element
177 * is in the head list.
178 */
9e8bf93a 179static void reassign_resources_sorted(struct resource_list_x *realloc_head,
c8adf9a3 180 struct resource_list *head)
6841ec68
YL
181{
182 struct resource *res;
c8adf9a3
RP
183 struct resource_list_x *list, *tmp, *prev;
184 struct resource_list *hlist;
185 resource_size_t add_size;
6841ec68 186 int idx;
1da177e4 187
9e8bf93a
RP
188 prev = realloc_head;
189 for (list = realloc_head->next; list;) {
1da177e4 190 res = list->res;
c8adf9a3
RP
191 /* skip resource that has been reset */
192 if (!res->flags)
193 goto out;
194
195 /* skip this resource if not found in head list */
196 for (hlist = head->next; hlist && hlist->res != res;
197 hlist = hlist->next);
198 if (!hlist) { /* just skip */
199 prev = list;
200 list = list->next;
201 continue;
202 }
203
1da177e4 204 idx = res - &list->dev->resource[0];
c8adf9a3 205 add_size=list->add_size;
2bbc6942 206 if (!resource_size(res)) {
0a2daa1c 207 res->start = list->start;
2bbc6942
RP
208 res->end = res->start + add_size - 1;
209 if(pci_assign_resource(list->dev, idx))
c8adf9a3 210 reset_resource(res);
2bbc6942
RP
211 } else {
212 resource_size_t align = list->min_align;
213 res->flags |= list->flags & (IORESOURCE_STARTALIGN|IORESOURCE_SIZEALIGN);
214 if (pci_reassign_resource(list->dev, idx, add_size, align))
215 dev_printk(KERN_DEBUG, &list->dev->dev, "failed to add optional resources res=%pR\n",
216 res);
c8adf9a3
RP
217 }
218out:
219 tmp = list;
220 prev->next = list = list->next;
221 kfree(tmp);
222 }
223}
224
225/**
226 * assign_requested_resources_sorted() - satisfy resource requests
227 *
228 * @head : head of the list tracking requests for resources
229 * @failed_list : head of the list tracking requests that could
230 * not be allocated
231 *
232 * Satisfy resource requests of each element in the list. Add
233 * requests that could not satisfied to the failed_list.
234 */
235static void assign_requested_resources_sorted(struct resource_list *head,
236 struct resource_list_x *fail_head)
237{
238 struct resource *res;
239 struct resource_list *list;
240 int idx;
9a928660 241
c8adf9a3
RP
242 for (list = head->next; list; list = list->next) {
243 res = list->res;
244 idx = res - &list->dev->resource[0];
245 if (resource_size(res) && pci_assign_resource(list->dev, idx)) {
9a928660
YL
246 if (fail_head && !pci_is_root_bus(list->dev->bus)) {
247 /*
248 * if the failed res is for ROM BAR, and it will
249 * be enabled later, don't add it to the list
250 */
251 if (!((idx == PCI_ROM_RESOURCE) &&
252 (!(res->flags & IORESOURCE_ROM_ENABLE))))
253 add_to_failed_list(fail_head, list->dev, res);
254 }
fc075e1d 255 reset_resource(res);
542df5de 256 }
1da177e4
LT
257 }
258}
259
c8adf9a3 260static void __assign_resources_sorted(struct resource_list *head,
9e8bf93a 261 struct resource_list_x *realloc_head,
c8adf9a3
RP
262 struct resource_list_x *fail_head)
263{
3e6e0d80
YL
264 /*
265 * Should not assign requested resources at first.
266 * they could be adjacent, so later reassign can not reallocate
267 * them one by one in parent resource window.
268 * Try to assign requested + add_size at begining
269 * if could do that, could get out early.
270 * if could not do that, we still try to assign requested at first,
271 * then try to reassign add_size for some resources.
272 */
273 struct resource_list_x save_head, local_fail_head, *list;
274 struct resource_list *l;
275
276 /* Check if optional add_size is there */
277 if (!realloc_head || !realloc_head->next)
278 goto requested_and_reassign;
279
280 /* Save original start, end, flags etc at first */
281 save_head.next = NULL;
282 for (l = head->next; l; l = l->next)
283 if (add_to_list(&save_head, l->dev, l->res, 0, 0)) {
284 free_list(resource_list_x, &save_head);
285 goto requested_and_reassign;
286 }
287
288 /* Update res in head list with add_size in realloc_head list */
289 for (l = head->next; l; l = l->next)
290 l->res->end += get_res_add_size(realloc_head, l->res);
291
292 /* Try updated head list with add_size added */
293 local_fail_head.next = NULL;
294 assign_requested_resources_sorted(head, &local_fail_head);
295
296 /* all assigned with add_size ? */
297 if (!local_fail_head.next) {
298 /* Remove head list from realloc_head list */
299 for (l = head->next; l; l = l->next)
300 remove_from_list(realloc_head, l->res);
301 free_list(resource_list_x, &save_head);
302 free_list(resource_list, head);
303 return;
304 }
305
306 free_list(resource_list_x, &local_fail_head);
307 /* Release assigned resource */
308 for (l = head->next; l; l = l->next)
309 if (l->res->parent)
310 release_resource(l->res);
311 /* Restore start/end/flags from saved list */
312 for (list = save_head.next; list; list = list->next) {
313 struct resource *res = list->res;
314
315 res->start = list->start;
316 res->end = list->end;
317 res->flags = list->flags;
318 }
319 free_list(resource_list_x, &save_head);
320
321requested_and_reassign:
c8adf9a3
RP
322 /* Satisfy the must-have resource requests */
323 assign_requested_resources_sorted(head, fail_head);
324
0a2daa1c 325 /* Try to satisfy any additional optional resource
c8adf9a3 326 requests */
9e8bf93a
RP
327 if (realloc_head)
328 reassign_resources_sorted(realloc_head, head);
c8adf9a3
RP
329 free_list(resource_list, head);
330}
331
6841ec68 332static void pdev_assign_resources_sorted(struct pci_dev *dev,
8424d759 333 struct resource_list_x *add_head,
6841ec68
YL
334 struct resource_list_x *fail_head)
335{
336 struct resource_list head;
337
338 head.next = NULL;
339 __dev_sort_resources(dev, &head);
8424d759 340 __assign_resources_sorted(&head, add_head, fail_head);
6841ec68
YL
341
342}
343
344static void pbus_assign_resources_sorted(const struct pci_bus *bus,
9e8bf93a 345 struct resource_list_x *realloc_head,
6841ec68
YL
346 struct resource_list_x *fail_head)
347{
348 struct pci_dev *dev;
349 struct resource_list head;
350
351 head.next = NULL;
352 list_for_each_entry(dev, &bus->devices, bus_list)
353 __dev_sort_resources(dev, &head);
354
9e8bf93a 355 __assign_resources_sorted(&head, realloc_head, fail_head);
6841ec68
YL
356}
357
b3743fa4 358void pci_setup_cardbus(struct pci_bus *bus)
1da177e4
LT
359{
360 struct pci_dev *bridge = bus->self;
c7dabef8 361 struct resource *res;
1da177e4
LT
362 struct pci_bus_region region;
363
865df576
BH
364 dev_info(&bridge->dev, "CardBus bridge to [bus %02x-%02x]\n",
365 bus->secondary, bus->subordinate);
1da177e4 366
c7dabef8
BH
367 res = bus->resource[0];
368 pcibios_resource_to_bus(bridge, &region, res);
369 if (res->flags & IORESOURCE_IO) {
1da177e4
LT
370 /*
371 * The IO resource is allocated a range twice as large as it
372 * would normally need. This allows us to set both IO regs.
373 */
c7dabef8 374 dev_info(&bridge->dev, " bridge window %pR\n", res);
1da177e4
LT
375 pci_write_config_dword(bridge, PCI_CB_IO_BASE_0,
376 region.start);
377 pci_write_config_dword(bridge, PCI_CB_IO_LIMIT_0,
378 region.end);
379 }
380
c7dabef8
BH
381 res = bus->resource[1];
382 pcibios_resource_to_bus(bridge, &region, res);
383 if (res->flags & IORESOURCE_IO) {
384 dev_info(&bridge->dev, " bridge window %pR\n", res);
1da177e4
LT
385 pci_write_config_dword(bridge, PCI_CB_IO_BASE_1,
386 region.start);
387 pci_write_config_dword(bridge, PCI_CB_IO_LIMIT_1,
388 region.end);
389 }
390
c7dabef8
BH
391 res = bus->resource[2];
392 pcibios_resource_to_bus(bridge, &region, res);
393 if (res->flags & IORESOURCE_MEM) {
394 dev_info(&bridge->dev, " bridge window %pR\n", res);
1da177e4
LT
395 pci_write_config_dword(bridge, PCI_CB_MEMORY_BASE_0,
396 region.start);
397 pci_write_config_dword(bridge, PCI_CB_MEMORY_LIMIT_0,
398 region.end);
399 }
400
c7dabef8
BH
401 res = bus->resource[3];
402 pcibios_resource_to_bus(bridge, &region, res);
403 if (res->flags & IORESOURCE_MEM) {
404 dev_info(&bridge->dev, " bridge window %pR\n", res);
1da177e4
LT
405 pci_write_config_dword(bridge, PCI_CB_MEMORY_BASE_1,
406 region.start);
407 pci_write_config_dword(bridge, PCI_CB_MEMORY_LIMIT_1,
408 region.end);
409 }
410}
b3743fa4 411EXPORT_SYMBOL(pci_setup_cardbus);
1da177e4
LT
412
413/* Initialize bridges with base/limit values we have collected.
414 PCI-to-PCI Bridge Architecture Specification rev. 1.1 (1998)
415 requires that if there is no I/O ports or memory behind the
416 bridge, corresponding range must be turned off by writing base
417 value greater than limit to the bridge's base/limit registers.
418
419 Note: care must be taken when updating I/O base/limit registers
420 of bridges which support 32-bit I/O. This update requires two
421 config space writes, so it's quite possible that an I/O window of
422 the bridge will have some undesirable address (e.g. 0) after the
423 first write. Ditto 64-bit prefetchable MMIO. */
7cc5997d 424static void pci_setup_bridge_io(struct pci_bus *bus)
1da177e4
LT
425{
426 struct pci_dev *bridge = bus->self;
c7dabef8 427 struct resource *res;
1da177e4 428 struct pci_bus_region region;
7cc5997d 429 u32 l, io_upper16;
1da177e4
LT
430
431 /* Set up the top and bottom of the PCI I/O segment for this bus. */
c7dabef8
BH
432 res = bus->resource[0];
433 pcibios_resource_to_bus(bridge, &region, res);
434 if (res->flags & IORESOURCE_IO) {
1da177e4
LT
435 pci_read_config_dword(bridge, PCI_IO_BASE, &l);
436 l &= 0xffff0000;
437 l |= (region.start >> 8) & 0x00f0;
438 l |= region.end & 0xf000;
439 /* Set up upper 16 bits of I/O base/limit. */
440 io_upper16 = (region.end & 0xffff0000) | (region.start >> 16);
c7dabef8 441 dev_info(&bridge->dev, " bridge window %pR\n", res);
7cc5997d 442 } else {
1da177e4
LT
443 /* Clear upper 16 bits of I/O base/limit. */
444 io_upper16 = 0;
445 l = 0x00f0;
1da177e4
LT
446 }
447 /* Temporarily disable the I/O range before updating PCI_IO_BASE. */
448 pci_write_config_dword(bridge, PCI_IO_BASE_UPPER16, 0x0000ffff);
449 /* Update lower 16 bits of I/O base/limit. */
450 pci_write_config_dword(bridge, PCI_IO_BASE, l);
451 /* Update upper 16 bits of I/O base/limit. */
452 pci_write_config_dword(bridge, PCI_IO_BASE_UPPER16, io_upper16);
7cc5997d
YL
453}
454
455static void pci_setup_bridge_mmio(struct pci_bus *bus)
456{
457 struct pci_dev *bridge = bus->self;
458 struct resource *res;
459 struct pci_bus_region region;
460 u32 l;
1da177e4 461
7cc5997d 462 /* Set up the top and bottom of the PCI Memory segment for this bus. */
c7dabef8
BH
463 res = bus->resource[1];
464 pcibios_resource_to_bus(bridge, &region, res);
465 if (res->flags & IORESOURCE_MEM) {
1da177e4
LT
466 l = (region.start >> 16) & 0xfff0;
467 l |= region.end & 0xfff00000;
c7dabef8 468 dev_info(&bridge->dev, " bridge window %pR\n", res);
7cc5997d 469 } else {
1da177e4 470 l = 0x0000fff0;
1da177e4
LT
471 }
472 pci_write_config_dword(bridge, PCI_MEMORY_BASE, l);
7cc5997d
YL
473}
474
475static void pci_setup_bridge_mmio_pref(struct pci_bus *bus)
476{
477 struct pci_dev *bridge = bus->self;
478 struct resource *res;
479 struct pci_bus_region region;
480 u32 l, bu, lu;
1da177e4
LT
481
482 /* Clear out the upper 32 bits of PREF limit.
483 If PCI_PREF_BASE_UPPER32 was non-zero, this temporarily
484 disables PREF range, which is ok. */
485 pci_write_config_dword(bridge, PCI_PREF_LIMIT_UPPER32, 0);
486
487 /* Set up PREF base/limit. */
c40a22e0 488 bu = lu = 0;
c7dabef8
BH
489 res = bus->resource[2];
490 pcibios_resource_to_bus(bridge, &region, res);
491 if (res->flags & IORESOURCE_PREFETCH) {
1da177e4
LT
492 l = (region.start >> 16) & 0xfff0;
493 l |= region.end & 0xfff00000;
c7dabef8 494 if (res->flags & IORESOURCE_MEM_64) {
1f82de10
YL
495 bu = upper_32_bits(region.start);
496 lu = upper_32_bits(region.end);
1f82de10 497 }
c7dabef8 498 dev_info(&bridge->dev, " bridge window %pR\n", res);
7cc5997d 499 } else {
1da177e4 500 l = 0x0000fff0;
1da177e4
LT
501 }
502 pci_write_config_dword(bridge, PCI_PREF_MEMORY_BASE, l);
503
59353ea3
AW
504 /* Set the upper 32 bits of PREF base & limit. */
505 pci_write_config_dword(bridge, PCI_PREF_BASE_UPPER32, bu);
506 pci_write_config_dword(bridge, PCI_PREF_LIMIT_UPPER32, lu);
7cc5997d
YL
507}
508
509static void __pci_setup_bridge(struct pci_bus *bus, unsigned long type)
510{
511 struct pci_dev *bridge = bus->self;
512
7cc5997d
YL
513 dev_info(&bridge->dev, "PCI bridge to [bus %02x-%02x]\n",
514 bus->secondary, bus->subordinate);
515
516 if (type & IORESOURCE_IO)
517 pci_setup_bridge_io(bus);
518
519 if (type & IORESOURCE_MEM)
520 pci_setup_bridge_mmio(bus);
521
522 if (type & IORESOURCE_PREFETCH)
523 pci_setup_bridge_mmio_pref(bus);
1da177e4
LT
524
525 pci_write_config_word(bridge, PCI_BRIDGE_CONTROL, bus->bridge_ctl);
526}
527
e2444273 528void pci_setup_bridge(struct pci_bus *bus)
7cc5997d
YL
529{
530 unsigned long type = IORESOURCE_IO | IORESOURCE_MEM |
531 IORESOURCE_PREFETCH;
532
533 __pci_setup_bridge(bus, type);
534}
535
1da177e4
LT
536/* Check whether the bridge supports optional I/O and
537 prefetchable memory ranges. If not, the respective
538 base/limit registers must be read-only and read as 0. */
96bde06a 539static void pci_bridge_check_ranges(struct pci_bus *bus)
1da177e4
LT
540{
541 u16 io;
542 u32 pmem;
543 struct pci_dev *bridge = bus->self;
544 struct resource *b_res;
545
546 b_res = &bridge->resource[PCI_BRIDGE_RESOURCES];
547 b_res[1].flags |= IORESOURCE_MEM;
548
549 pci_read_config_word(bridge, PCI_IO_BASE, &io);
550 if (!io) {
551 pci_write_config_word(bridge, PCI_IO_BASE, 0xf0f0);
552 pci_read_config_word(bridge, PCI_IO_BASE, &io);
553 pci_write_config_word(bridge, PCI_IO_BASE, 0x0);
554 }
555 if (io)
556 b_res[0].flags |= IORESOURCE_IO;
557 /* DECchip 21050 pass 2 errata: the bridge may miss an address
558 disconnect boundary by one PCI data phase.
559 Workaround: do not use prefetching on this device. */
560 if (bridge->vendor == PCI_VENDOR_ID_DEC && bridge->device == 0x0001)
561 return;
562 pci_read_config_dword(bridge, PCI_PREF_MEMORY_BASE, &pmem);
563 if (!pmem) {
564 pci_write_config_dword(bridge, PCI_PREF_MEMORY_BASE,
565 0xfff0fff0);
566 pci_read_config_dword(bridge, PCI_PREF_MEMORY_BASE, &pmem);
567 pci_write_config_dword(bridge, PCI_PREF_MEMORY_BASE, 0x0);
568 }
1f82de10 569 if (pmem) {
1da177e4 570 b_res[2].flags |= IORESOURCE_MEM | IORESOURCE_PREFETCH;
99586105
YL
571 if ((pmem & PCI_PREF_RANGE_TYPE_MASK) ==
572 PCI_PREF_RANGE_TYPE_64) {
1f82de10 573 b_res[2].flags |= IORESOURCE_MEM_64;
99586105
YL
574 b_res[2].flags |= PCI_PREF_RANGE_TYPE_64;
575 }
1f82de10
YL
576 }
577
578 /* double check if bridge does support 64 bit pref */
579 if (b_res[2].flags & IORESOURCE_MEM_64) {
580 u32 mem_base_hi, tmp;
581 pci_read_config_dword(bridge, PCI_PREF_BASE_UPPER32,
582 &mem_base_hi);
583 pci_write_config_dword(bridge, PCI_PREF_BASE_UPPER32,
584 0xffffffff);
585 pci_read_config_dword(bridge, PCI_PREF_BASE_UPPER32, &tmp);
586 if (!tmp)
587 b_res[2].flags &= ~IORESOURCE_MEM_64;
588 pci_write_config_dword(bridge, PCI_PREF_BASE_UPPER32,
589 mem_base_hi);
590 }
1da177e4
LT
591}
592
593/* Helper function for sizing routines: find first available
594 bus resource of a given type. Note: we intentionally skip
595 the bus resources which have already been assigned (that is,
596 have non-NULL parent resource). */
96bde06a 597static struct resource *find_free_bus_resource(struct pci_bus *bus, unsigned long type)
1da177e4
LT
598{
599 int i;
600 struct resource *r;
601 unsigned long type_mask = IORESOURCE_IO | IORESOURCE_MEM |
602 IORESOURCE_PREFETCH;
603
89a74ecc 604 pci_bus_for_each_resource(bus, r, i) {
299de034
IK
605 if (r == &ioport_resource || r == &iomem_resource)
606 continue;
55a10984
JB
607 if (r && (r->flags & type_mask) == type && !r->parent)
608 return r;
1da177e4
LT
609 }
610 return NULL;
611}
612
13583b16
RP
613static resource_size_t calculate_iosize(resource_size_t size,
614 resource_size_t min_size,
615 resource_size_t size1,
616 resource_size_t old_size,
617 resource_size_t align)
618{
619 if (size < min_size)
620 size = min_size;
621 if (old_size == 1 )
622 old_size = 0;
623 /* To be fixed in 2.5: we should have sort of HAVE_ISA
624 flag in the struct pci_bus. */
625#if defined(CONFIG_ISA) || defined(CONFIG_EISA)
626 size = (size & 0xff) + ((size & ~0xffUL) << 2);
627#endif
628 size = ALIGN(size + size1, align);
629 if (size < old_size)
630 size = old_size;
631 return size;
632}
633
634static resource_size_t calculate_memsize(resource_size_t size,
635 resource_size_t min_size,
636 resource_size_t size1,
637 resource_size_t old_size,
638 resource_size_t align)
639{
640 if (size < min_size)
641 size = min_size;
642 if (old_size == 1 )
643 old_size = 0;
644 if (size < old_size)
645 size = old_size;
646 size = ALIGN(size + size1, align);
647 return size;
648}
649
c8adf9a3
RP
650/**
651 * pbus_size_io() - size the io window of a given bus
652 *
653 * @bus : the bus
654 * @min_size : the minimum io window that must to be allocated
655 * @add_size : additional optional io window
9e8bf93a 656 * @realloc_head : track the additional io window on this list
c8adf9a3
RP
657 *
658 * Sizing the IO windows of the PCI-PCI bridge is trivial,
659 * since these windows have 4K granularity and the IO ranges
660 * of non-bridge PCI devices are limited to 256 bytes.
661 * We must be careful with the ISA aliasing though.
662 */
663static void pbus_size_io(struct pci_bus *bus, resource_size_t min_size,
9e8bf93a 664 resource_size_t add_size, struct resource_list_x *realloc_head)
1da177e4
LT
665{
666 struct pci_dev *dev;
667 struct resource *b_res = find_free_bus_resource(bus, IORESOURCE_IO);
c8adf9a3 668 unsigned long size = 0, size0 = 0, size1 = 0;
be768912 669 resource_size_t children_add_size = 0;
1da177e4
LT
670
671 if (!b_res)
672 return;
673
674 list_for_each_entry(dev, &bus->devices, bus_list) {
675 int i;
676
677 for (i = 0; i < PCI_NUM_RESOURCES; i++) {
678 struct resource *r = &dev->resource[i];
679 unsigned long r_size;
680
681 if (r->parent || !(r->flags & IORESOURCE_IO))
682 continue;
022edd86 683 r_size = resource_size(r);
1da177e4
LT
684
685 if (r_size < 0x400)
686 /* Might be re-aligned for ISA */
687 size += r_size;
688 else
689 size1 += r_size;
be768912 690
9e8bf93a
RP
691 if (realloc_head)
692 children_add_size += get_res_add_size(realloc_head, r);
1da177e4
LT
693 }
694 }
c8adf9a3
RP
695 size0 = calculate_iosize(size, min_size, size1,
696 resource_size(b_res), 4096);
be768912
YL
697 if (children_add_size > add_size)
698 add_size = children_add_size;
9e8bf93a 699 size1 = (!realloc_head || (realloc_head && !add_size)) ? size0 :
a4ac9fea 700 calculate_iosize(size, min_size, add_size + size1,
13583b16 701 resource_size(b_res), 4096);
c8adf9a3 702 if (!size0 && !size1) {
865df576
BH
703 if (b_res->start || b_res->end)
704 dev_info(&bus->self->dev, "disabling bridge window "
705 "%pR to [bus %02x-%02x] (unused)\n", b_res,
706 bus->secondary, bus->subordinate);
1da177e4
LT
707 b_res->flags = 0;
708 return;
709 }
710 /* Alignment of the IO window is always 4K */
711 b_res->start = 4096;
c8adf9a3 712 b_res->end = b_res->start + size0 - 1;
88452565 713 b_res->flags |= IORESOURCE_STARTALIGN;
9e8bf93a
RP
714 if (size1 > size0 && realloc_head)
715 add_to_list(realloc_head, bus->self, b_res, size1-size0, 4096);
1da177e4
LT
716}
717
c8adf9a3
RP
718/**
719 * pbus_size_mem() - size the memory window of a given bus
720 *
721 * @bus : the bus
722 * @min_size : the minimum memory window that must to be allocated
723 * @add_size : additional optional memory window
9e8bf93a 724 * @realloc_head : track the additional memory window on this list
c8adf9a3
RP
725 *
726 * Calculate the size of the bus and minimal alignment which
727 * guarantees that all child resources fit in this size.
728 */
28760489 729static int pbus_size_mem(struct pci_bus *bus, unsigned long mask,
c8adf9a3
RP
730 unsigned long type, resource_size_t min_size,
731 resource_size_t add_size,
9e8bf93a 732 struct resource_list_x *realloc_head)
1da177e4
LT
733{
734 struct pci_dev *dev;
c8adf9a3 735 resource_size_t min_align, align, size, size0, size1;
c40a22e0 736 resource_size_t aligns[12]; /* Alignments from 1Mb to 2Gb */
1da177e4
LT
737 int order, max_order;
738 struct resource *b_res = find_free_bus_resource(bus, type);
1f82de10 739 unsigned int mem64_mask = 0;
be768912 740 resource_size_t children_add_size = 0;
1da177e4
LT
741
742 if (!b_res)
743 return 0;
744
745 memset(aligns, 0, sizeof(aligns));
746 max_order = 0;
747 size = 0;
748
1f82de10
YL
749 mem64_mask = b_res->flags & IORESOURCE_MEM_64;
750 b_res->flags &= ~IORESOURCE_MEM_64;
751
1da177e4
LT
752 list_for_each_entry(dev, &bus->devices, bus_list) {
753 int i;
1f82de10 754
1da177e4
LT
755 for (i = 0; i < PCI_NUM_RESOURCES; i++) {
756 struct resource *r = &dev->resource[i];
c40a22e0 757 resource_size_t r_size;
1da177e4
LT
758
759 if (r->parent || (r->flags & mask) != type)
760 continue;
022edd86 761 r_size = resource_size(r);
2aceefcb
YL
762#ifdef CONFIG_PCI_IOV
763 /* put SRIOV requested res to the optional list */
9e8bf93a 764 if (realloc_head && i >= PCI_IOV_RESOURCES &&
2aceefcb
YL
765 i <= PCI_IOV_RESOURCE_END) {
766 r->end = r->start - 1;
9e8bf93a 767 add_to_list(realloc_head, dev, r, r_size, 0/* dont' care */);
2aceefcb
YL
768 children_add_size += r_size;
769 continue;
770 }
771#endif
1da177e4 772 /* For bridges size != alignment */
6faf17f6 773 align = pci_resource_alignment(dev, r);
1da177e4
LT
774 order = __ffs(align) - 20;
775 if (order > 11) {
865df576
BH
776 dev_warn(&dev->dev, "disabling BAR %d: %pR "
777 "(bad alignment %#llx)\n", i, r,
778 (unsigned long long) align);
1da177e4
LT
779 r->flags = 0;
780 continue;
781 }
782 size += r_size;
783 if (order < 0)
784 order = 0;
785 /* Exclude ranges with size > align from
786 calculation of the alignment. */
787 if (r_size == align)
788 aligns[order] += align;
789 if (order > max_order)
790 max_order = order;
1f82de10 791 mem64_mask &= r->flags & IORESOURCE_MEM_64;
be768912 792
9e8bf93a
RP
793 if (realloc_head)
794 children_add_size += get_res_add_size(realloc_head, r);
1da177e4
LT
795 }
796 }
1da177e4
LT
797 align = 0;
798 min_align = 0;
799 for (order = 0; order <= max_order; order++) {
8308c54d
JF
800 resource_size_t align1 = 1;
801
802 align1 <<= (order + 20);
803
1da177e4
LT
804 if (!align)
805 min_align = align1;
6f6f8c2f 806 else if (ALIGN(align + min_align, min_align) < align1)
1da177e4
LT
807 min_align = align1 >> 1;
808 align += aligns[order];
809 }
b42282e5 810 size0 = calculate_memsize(size, min_size, 0, resource_size(b_res), min_align);
be768912
YL
811 if (children_add_size > add_size)
812 add_size = children_add_size;
9e8bf93a 813 size1 = (!realloc_head || (realloc_head && !add_size)) ? size0 :
a4ac9fea 814 calculate_memsize(size, min_size, add_size,
b42282e5 815 resource_size(b_res), min_align);
c8adf9a3 816 if (!size0 && !size1) {
865df576
BH
817 if (b_res->start || b_res->end)
818 dev_info(&bus->self->dev, "disabling bridge window "
819 "%pR to [bus %02x-%02x] (unused)\n", b_res,
820 bus->secondary, bus->subordinate);
1da177e4
LT
821 b_res->flags = 0;
822 return 1;
823 }
824 b_res->start = min_align;
c8adf9a3
RP
825 b_res->end = size0 + min_align - 1;
826 b_res->flags |= IORESOURCE_STARTALIGN | mem64_mask;
9e8bf93a
RP
827 if (size1 > size0 && realloc_head)
828 add_to_list(realloc_head, bus->self, b_res, size1-size0, min_align);
1da177e4
LT
829 return 1;
830}
831
0a2daa1c
RP
832unsigned long pci_cardbus_resource_alignment(struct resource *res)
833{
834 if (res->flags & IORESOURCE_IO)
835 return pci_cardbus_io_size;
836 if (res->flags & IORESOURCE_MEM)
837 return pci_cardbus_mem_size;
838 return 0;
839}
840
841static void pci_bus_size_cardbus(struct pci_bus *bus,
9e8bf93a 842 struct resource_list_x *realloc_head)
1da177e4
LT
843{
844 struct pci_dev *bridge = bus->self;
845 struct resource *b_res = &bridge->resource[PCI_BRIDGE_RESOURCES];
846 u16 ctrl;
847
848 /*
849 * Reserve some resources for CardBus. We reserve
850 * a fixed amount of bus space for CardBus bridges.
851 */
934b7024 852 b_res[0].start = 0;
934b7024 853 b_res[0].flags |= IORESOURCE_IO | IORESOURCE_SIZEALIGN;
9e8bf93a
RP
854 if (realloc_head)
855 add_to_list(realloc_head, bridge, b_res, pci_cardbus_io_size, 0 /* dont care */);
1da177e4 856
934b7024 857 b_res[1].start = 0;
934b7024 858 b_res[1].flags |= IORESOURCE_IO | IORESOURCE_SIZEALIGN;
9e8bf93a
RP
859 if (realloc_head)
860 add_to_list(realloc_head, bridge, b_res+1, pci_cardbus_io_size, 0 /* dont care */);
1da177e4
LT
861
862 /*
863 * Check whether prefetchable memory is supported
864 * by this bridge.
865 */
866 pci_read_config_word(bridge, PCI_CB_BRIDGE_CONTROL, &ctrl);
867 if (!(ctrl & PCI_CB_BRIDGE_CTL_PREFETCH_MEM0)) {
868 ctrl |= PCI_CB_BRIDGE_CTL_PREFETCH_MEM0;
869 pci_write_config_word(bridge, PCI_CB_BRIDGE_CONTROL, ctrl);
870 pci_read_config_word(bridge, PCI_CB_BRIDGE_CONTROL, &ctrl);
871 }
872
873 /*
874 * If we have prefetchable memory support, allocate
875 * two regions. Otherwise, allocate one region of
876 * twice the size.
877 */
878 if (ctrl & PCI_CB_BRIDGE_CTL_PREFETCH_MEM0) {
934b7024 879 b_res[2].start = 0;
934b7024 880 b_res[2].flags |= IORESOURCE_MEM | IORESOURCE_PREFETCH | IORESOURCE_SIZEALIGN;
9e8bf93a
RP
881 if (realloc_head)
882 add_to_list(realloc_head, bridge, b_res+2, pci_cardbus_mem_size, 0 /* dont care */);
1da177e4 883
934b7024 884 b_res[3].start = 0;
934b7024 885 b_res[3].flags |= IORESOURCE_MEM | IORESOURCE_SIZEALIGN;
9e8bf93a
RP
886 if (realloc_head)
887 add_to_list(realloc_head, bridge, b_res+3, pci_cardbus_mem_size, 0 /* dont care */);
1da177e4 888 } else {
934b7024 889 b_res[3].start = 0;
934b7024 890 b_res[3].flags |= IORESOURCE_MEM | IORESOURCE_SIZEALIGN;
9e8bf93a
RP
891 if (realloc_head)
892 add_to_list(realloc_head, bridge, b_res+3, pci_cardbus_mem_size * 2, 0 /* dont care */);
1da177e4 893 }
0a2daa1c
RP
894
895 /* set the size of the resource to zero, so that the resource does not
896 * get assigned during required-resource allocation cycle but gets assigned
897 * during the optional-resource allocation cycle.
898 */
899 b_res[0].start = b_res[1].start = b_res[2].start = b_res[3].start = 1;
900 b_res[0].end = b_res[1].end = b_res[2].end = b_res[3].end = 0;
1da177e4
LT
901}
902
c8adf9a3 903void __ref __pci_bus_size_bridges(struct pci_bus *bus,
9e8bf93a 904 struct resource_list_x *realloc_head)
1da177e4
LT
905{
906 struct pci_dev *dev;
907 unsigned long mask, prefmask;
c8adf9a3 908 resource_size_t additional_mem_size = 0, additional_io_size = 0;
1da177e4
LT
909
910 list_for_each_entry(dev, &bus->devices, bus_list) {
911 struct pci_bus *b = dev->subordinate;
912 if (!b)
913 continue;
914
915 switch (dev->class >> 8) {
916 case PCI_CLASS_BRIDGE_CARDBUS:
9e8bf93a 917 pci_bus_size_cardbus(b, realloc_head);
1da177e4
LT
918 break;
919
920 case PCI_CLASS_BRIDGE_PCI:
921 default:
9e8bf93a 922 __pci_bus_size_bridges(b, realloc_head);
1da177e4
LT
923 break;
924 }
925 }
926
927 /* The root bus? */
928 if (!bus->self)
929 return;
930
931 switch (bus->self->class >> 8) {
932 case PCI_CLASS_BRIDGE_CARDBUS:
933 /* don't size cardbuses yet. */
934 break;
935
936 case PCI_CLASS_BRIDGE_PCI:
937 pci_bridge_check_ranges(bus);
28760489 938 if (bus->self->is_hotplug_bridge) {
c8adf9a3
RP
939 additional_io_size = pci_hotplug_io_size;
940 additional_mem_size = pci_hotplug_mem_size;
28760489 941 }
c8adf9a3
RP
942 /*
943 * Follow thru
944 */
1da177e4 945 default:
9e8bf93a 946 pbus_size_io(bus, 0, additional_io_size, realloc_head);
1da177e4
LT
947 /* If the bridge supports prefetchable range, size it
948 separately. If it doesn't, or its prefetchable window
949 has already been allocated by arch code, try
950 non-prefetchable range for both types of PCI memory
951 resources. */
952 mask = IORESOURCE_MEM;
953 prefmask = IORESOURCE_MEM | IORESOURCE_PREFETCH;
9e8bf93a 954 if (pbus_size_mem(bus, prefmask, prefmask, 0, additional_mem_size, realloc_head))
1da177e4 955 mask = prefmask; /* Success, size non-prefetch only. */
28760489 956 else
c8adf9a3 957 additional_mem_size += additional_mem_size;
9e8bf93a 958 pbus_size_mem(bus, mask, IORESOURCE_MEM, 0, additional_mem_size, realloc_head);
1da177e4
LT
959 break;
960 }
961}
c8adf9a3
RP
962
963void __ref pci_bus_size_bridges(struct pci_bus *bus)
964{
965 __pci_bus_size_bridges(bus, NULL);
966}
1da177e4
LT
967EXPORT_SYMBOL(pci_bus_size_bridges);
968
568ddef8 969static void __ref __pci_bus_assign_resources(const struct pci_bus *bus,
9e8bf93a 970 struct resource_list_x *realloc_head,
568ddef8 971 struct resource_list_x *fail_head)
1da177e4
LT
972{
973 struct pci_bus *b;
974 struct pci_dev *dev;
975
9e8bf93a 976 pbus_assign_resources_sorted(bus, realloc_head, fail_head);
1da177e4 977
1da177e4
LT
978 list_for_each_entry(dev, &bus->devices, bus_list) {
979 b = dev->subordinate;
980 if (!b)
981 continue;
982
9e8bf93a 983 __pci_bus_assign_resources(b, realloc_head, fail_head);
1da177e4
LT
984
985 switch (dev->class >> 8) {
986 case PCI_CLASS_BRIDGE_PCI:
6841ec68
YL
987 if (!pci_is_enabled(dev))
988 pci_setup_bridge(b);
1da177e4
LT
989 break;
990
991 case PCI_CLASS_BRIDGE_CARDBUS:
992 pci_setup_cardbus(b);
993 break;
994
995 default:
80ccba11
BH
996 dev_info(&dev->dev, "not setting up bridge for bus "
997 "%04x:%02x\n", pci_domain_nr(b), b->number);
1da177e4
LT
998 break;
999 }
1000 }
1001}
568ddef8
YL
1002
1003void __ref pci_bus_assign_resources(const struct pci_bus *bus)
1004{
c8adf9a3 1005 __pci_bus_assign_resources(bus, NULL, NULL);
568ddef8 1006}
1da177e4
LT
1007EXPORT_SYMBOL(pci_bus_assign_resources);
1008
6841ec68 1009static void __ref __pci_bridge_assign_resources(const struct pci_dev *bridge,
8424d759 1010 struct resource_list_x *add_head,
6841ec68
YL
1011 struct resource_list_x *fail_head)
1012{
1013 struct pci_bus *b;
1014
8424d759
YL
1015 pdev_assign_resources_sorted((struct pci_dev *)bridge,
1016 add_head, fail_head);
6841ec68
YL
1017
1018 b = bridge->subordinate;
1019 if (!b)
1020 return;
1021
8424d759 1022 __pci_bus_assign_resources(b, add_head, fail_head);
6841ec68
YL
1023
1024 switch (bridge->class >> 8) {
1025 case PCI_CLASS_BRIDGE_PCI:
1026 pci_setup_bridge(b);
1027 break;
1028
1029 case PCI_CLASS_BRIDGE_CARDBUS:
1030 pci_setup_cardbus(b);
1031 break;
1032
1033 default:
1034 dev_info(&bridge->dev, "not setting up bridge for bus "
1035 "%04x:%02x\n", pci_domain_nr(b), b->number);
1036 break;
1037 }
1038}
5009b460
YL
1039static void pci_bridge_release_resources(struct pci_bus *bus,
1040 unsigned long type)
1041{
1042 int idx;
1043 bool changed = false;
1044 struct pci_dev *dev;
1045 struct resource *r;
1046 unsigned long type_mask = IORESOURCE_IO | IORESOURCE_MEM |
1047 IORESOURCE_PREFETCH;
1048
1049 dev = bus->self;
1050 for (idx = PCI_BRIDGE_RESOURCES; idx <= PCI_BRIDGE_RESOURCE_END;
1051 idx++) {
1052 r = &dev->resource[idx];
1053 if ((r->flags & type_mask) != type)
1054 continue;
1055 if (!r->parent)
1056 continue;
1057 /*
1058 * if there are children under that, we should release them
1059 * all
1060 */
1061 release_child_resources(r);
1062 if (!release_resource(r)) {
1063 dev_printk(KERN_DEBUG, &dev->dev,
1064 "resource %d %pR released\n", idx, r);
1065 /* keep the old size */
1066 r->end = resource_size(r) - 1;
1067 r->start = 0;
1068 r->flags = 0;
1069 changed = true;
1070 }
1071 }
1072
1073 if (changed) {
1074 /* avoiding touch the one without PREF */
1075 if (type & IORESOURCE_PREFETCH)
1076 type = IORESOURCE_PREFETCH;
1077 __pci_setup_bridge(bus, type);
1078 }
1079}
1080
1081enum release_type {
1082 leaf_only,
1083 whole_subtree,
1084};
1085/*
1086 * try to release pci bridge resources that is from leaf bridge,
1087 * so we can allocate big new one later
1088 */
1089static void __ref pci_bus_release_bridge_resources(struct pci_bus *bus,
1090 unsigned long type,
1091 enum release_type rel_type)
1092{
1093 struct pci_dev *dev;
1094 bool is_leaf_bridge = true;
1095
1096 list_for_each_entry(dev, &bus->devices, bus_list) {
1097 struct pci_bus *b = dev->subordinate;
1098 if (!b)
1099 continue;
1100
1101 is_leaf_bridge = false;
1102
1103 if ((dev->class >> 8) != PCI_CLASS_BRIDGE_PCI)
1104 continue;
1105
1106 if (rel_type == whole_subtree)
1107 pci_bus_release_bridge_resources(b, type,
1108 whole_subtree);
1109 }
1110
1111 if (pci_is_root_bus(bus))
1112 return;
1113
1114 if ((bus->self->class >> 8) != PCI_CLASS_BRIDGE_PCI)
1115 return;
1116
1117 if ((rel_type == whole_subtree) || is_leaf_bridge)
1118 pci_bridge_release_resources(bus, type);
1119}
1120
76fbc263
YL
1121static void pci_bus_dump_res(struct pci_bus *bus)
1122{
89a74ecc
BH
1123 struct resource *res;
1124 int i;
7c9342b8 1125
89a74ecc 1126 pci_bus_for_each_resource(bus, res, i) {
7c9342b8 1127 if (!res || !res->end || !res->flags)
76fbc263
YL
1128 continue;
1129
c7dabef8 1130 dev_printk(KERN_DEBUG, &bus->dev, "resource %d %pR\n", i, res);
76fbc263
YL
1131 }
1132}
1133
1134static void pci_bus_dump_resources(struct pci_bus *bus)
1135{
1136 struct pci_bus *b;
1137 struct pci_dev *dev;
1138
1139
1140 pci_bus_dump_res(bus);
1141
1142 list_for_each_entry(dev, &bus->devices, bus_list) {
1143 b = dev->subordinate;
1144 if (!b)
1145 continue;
1146
1147 pci_bus_dump_resources(b);
1148 }
1149}
1150
da7822e5
YL
1151static int __init pci_bus_get_depth(struct pci_bus *bus)
1152{
1153 int depth = 0;
1154 struct pci_dev *dev;
1155
1156 list_for_each_entry(dev, &bus->devices, bus_list) {
1157 int ret;
1158 struct pci_bus *b = dev->subordinate;
1159 if (!b)
1160 continue;
1161
1162 ret = pci_bus_get_depth(b);
1163 if (ret + 1 > depth)
1164 depth = ret + 1;
1165 }
1166
1167 return depth;
1168}
1169static int __init pci_get_max_depth(void)
1170{
1171 int depth = 0;
1172 struct pci_bus *bus;
1173
1174 list_for_each_entry(bus, &pci_root_buses, node) {
1175 int ret;
1176
1177 ret = pci_bus_get_depth(bus);
1178 if (ret > depth)
1179 depth = ret;
1180 }
1181
1182 return depth;
1183}
1184
f483d392 1185
da7822e5
YL
1186/*
1187 * first try will not touch pci bridge res
1188 * second and later try will clear small leaf bridge res
1189 * will stop till to the max deepth if can not find good one
1190 */
1da177e4
LT
1191void __init
1192pci_assign_unassigned_resources(void)
1193{
1194 struct pci_bus *bus;
9e8bf93a 1195 struct resource_list_x realloc_list; /* list of resources that
c8adf9a3 1196 want additional resources */
da7822e5
YL
1197 int tried_times = 0;
1198 enum release_type rel_type = leaf_only;
1199 struct resource_list_x head, *list;
1200 unsigned long type_mask = IORESOURCE_IO | IORESOURCE_MEM |
1201 IORESOURCE_PREFETCH;
1202 unsigned long failed_type;
1203 int max_depth = pci_get_max_depth();
1204 int pci_try_num;
1205
1206
1207 head.next = NULL;
9e8bf93a 1208 realloc_list.next = NULL;
da7822e5
YL
1209
1210 pci_try_num = max_depth + 1;
1211 printk(KERN_DEBUG "PCI: max bus depth: %d pci_try_num: %d\n",
1212 max_depth, pci_try_num);
1213
1214again:
1da177e4
LT
1215 /* Depth first, calculate sizes and alignments of all
1216 subordinate buses. */
da7822e5 1217 list_for_each_entry(bus, &pci_root_buses, node)
9e8bf93a 1218 __pci_bus_size_bridges(bus, &realloc_list);
c8adf9a3 1219
1da177e4 1220 /* Depth last, allocate resources and update the hardware. */
da7822e5 1221 list_for_each_entry(bus, &pci_root_buses, node)
9e8bf93a
RP
1222 __pci_bus_assign_resources(bus, &realloc_list, &head);
1223 BUG_ON(realloc_list.next);
da7822e5
YL
1224 tried_times++;
1225
1226 /* any device complain? */
1227 if (!head.next)
1228 goto enable_and_dump;
f483d392
RP
1229
1230 /* don't realloc if asked to do so */
1231 if (!pci_realloc_enabled()) {
1232 free_list(resource_list_x, &head);
1233 goto enable_and_dump;
1234 }
1235
da7822e5
YL
1236 failed_type = 0;
1237 for (list = head.next; list;) {
1238 failed_type |= list->flags;
1239 list = list->next;
1240 }
1241 /*
1242 * io port are tight, don't try extra
1243 * or if reach the limit, don't want to try more
1244 */
1245 failed_type &= type_mask;
1246 if ((failed_type == IORESOURCE_IO) || (tried_times >= pci_try_num)) {
1247 free_list(resource_list_x, &head);
1248 goto enable_and_dump;
1249 }
1250
1251 printk(KERN_DEBUG "PCI: No. %d try to assign unassigned res\n",
1252 tried_times + 1);
1253
1254 /* third times and later will not check if it is leaf */
1255 if ((tried_times + 1) > 2)
1256 rel_type = whole_subtree;
1257
1258 /*
1259 * Try to release leaf bridge's resources that doesn't fit resource of
1260 * child device under that bridge
1261 */
1262 for (list = head.next; list;) {
1263 bus = list->dev->bus;
1264 pci_bus_release_bridge_resources(bus, list->flags & type_mask,
1265 rel_type);
1266 list = list->next;
1267 }
1268 /* restore size and flags */
1269 for (list = head.next; list;) {
1270 struct resource *res = list->res;
1271
1272 res->start = list->start;
1273 res->end = list->end;
1274 res->flags = list->flags;
1275 if (list->dev->subordinate)
1276 res->flags = 0;
1277
1278 list = list->next;
1279 }
1280 free_list(resource_list_x, &head);
1281
1282 goto again;
1283
1284enable_and_dump:
1285 /* Depth last, update the hardware. */
1286 list_for_each_entry(bus, &pci_root_buses, node)
1287 pci_enable_bridges(bus);
76fbc263
YL
1288
1289 /* dump the resource on buses */
da7822e5 1290 list_for_each_entry(bus, &pci_root_buses, node)
76fbc263 1291 pci_bus_dump_resources(bus);
1da177e4 1292}
6841ec68
YL
1293
1294void pci_assign_unassigned_bridge_resources(struct pci_dev *bridge)
1295{
1296 struct pci_bus *parent = bridge->subordinate;
8424d759
YL
1297 struct resource_list_x add_list; /* list of resources that
1298 want additional resources */
32180e40
YL
1299 int tried_times = 0;
1300 struct resource_list_x head, *list;
6841ec68 1301 int retval;
32180e40
YL
1302 unsigned long type_mask = IORESOURCE_IO | IORESOURCE_MEM |
1303 IORESOURCE_PREFETCH;
1304
1305 head.next = NULL;
8424d759 1306 add_list.next = NULL;
6841ec68 1307
32180e40 1308again:
8424d759
YL
1309 __pci_bus_size_bridges(parent, &add_list);
1310 __pci_bridge_assign_resources(bridge, &add_list, &head);
1311 BUG_ON(add_list.next);
32180e40
YL
1312 tried_times++;
1313
1314 if (!head.next)
3f579c34 1315 goto enable_all;
32180e40
YL
1316
1317 if (tried_times >= 2) {
1318 /* still fail, don't need to try more */
094732a5 1319 free_list(resource_list_x, &head);
3f579c34 1320 goto enable_all;
32180e40
YL
1321 }
1322
1323 printk(KERN_DEBUG "PCI: No. %d try to assign unassigned res\n",
1324 tried_times + 1);
1325
1326 /*
1327 * Try to release leaf bridge's resources that doesn't fit resource of
1328 * child device under that bridge
1329 */
1330 for (list = head.next; list;) {
1331 struct pci_bus *bus = list->dev->bus;
1332 unsigned long flags = list->flags;
1333
1334 pci_bus_release_bridge_resources(bus, flags & type_mask,
1335 whole_subtree);
1336 list = list->next;
1337 }
1338 /* restore size and flags */
1339 for (list = head.next; list;) {
1340 struct resource *res = list->res;
1341
1342 res->start = list->start;
1343 res->end = list->end;
1344 res->flags = list->flags;
1345 if (list->dev->subordinate)
1346 res->flags = 0;
1347
1348 list = list->next;
1349 }
094732a5 1350 free_list(resource_list_x, &head);
32180e40
YL
1351
1352 goto again;
3f579c34
YL
1353
1354enable_all:
1355 retval = pci_reenable_device(bridge);
1356 pci_set_master(bridge);
1357 pci_enable_bridges(parent);
6841ec68
YL
1358}
1359EXPORT_SYMBOL_GPL(pci_assign_unassigned_bridge_resources);