cifs: wrap received signature check in srv_mutex
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / drivers / pci / setup-bus.c
blobebf51ad1b71478f08532edcdda8b3acf9d711bb7
1 /*
2 * drivers/pci/setup-bus.c
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)
9 * Support routines for initializing a PCI subsystem.
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.
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>
28 #include "pci.h"
30 struct 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;
36 resource_size_t add_size;
37 unsigned long flags;
40 #define free_list(type, head) do { \
41 struct type *list, *tmp; \
42 for (list = (head)->next; list;) { \
43 tmp = list; \
44 list = list->next; \
45 kfree(tmp); \
46 } \
47 (head)->next = NULL; \
48 } while (0)
50 /**
51 * add_to_list() - add a new resource tracker to the list
52 * @head: Head of the list
53 * @dev: device corresponding to which the resource
54 * belongs
55 * @res: The resource to be tracked
56 * @add_size: additional size to be optionally added
57 * to the resource
59 static void add_to_list(struct resource_list_x *head,
60 struct pci_dev *dev, struct resource *res,
61 resource_size_t add_size)
63 struct resource_list_x *list = head;
64 struct resource_list_x *ln = list->next;
65 struct resource_list_x *tmp;
67 tmp = kmalloc(sizeof(*tmp), GFP_KERNEL);
68 if (!tmp) {
69 pr_warning("add_to_list: kmalloc() failed!\n");
70 return;
73 tmp->next = ln;
74 tmp->res = res;
75 tmp->dev = dev;
76 tmp->start = res->start;
77 tmp->end = res->end;
78 tmp->flags = res->flags;
79 tmp->add_size = add_size;
80 list->next = tmp;
83 static void add_to_failed_list(struct resource_list_x *head,
84 struct pci_dev *dev, struct resource *res)
86 add_to_list(head, dev, res, 0);
89 static void __dev_sort_resources(struct pci_dev *dev,
90 struct resource_list *head)
92 u16 class = dev->class >> 8;
94 /* Don't touch classless devices or host bridges or ioapics. */
95 if (class == PCI_CLASS_NOT_DEFINED || class == PCI_CLASS_BRIDGE_HOST)
96 return;
98 /* Don't touch ioapic devices already enabled by firmware */
99 if (class == PCI_CLASS_SYSTEM_PIC) {
100 u16 command;
101 pci_read_config_word(dev, PCI_COMMAND, &command);
102 if (command & (PCI_COMMAND_IO | PCI_COMMAND_MEMORY))
103 return;
106 pdev_sort_resources(dev, head);
109 static inline void reset_resource(struct resource *res)
111 res->start = 0;
112 res->end = 0;
113 res->flags = 0;
117 * adjust_resources_sorted() - satisfy any additional resource requests
119 * @add_head : head of the list tracking requests requiring additional
120 * resources
121 * @head : head of the list tracking requests with allocated
122 * resources
124 * Walk through each element of the add_head and try to procure
125 * additional resources for the element, provided the element
126 * is in the head list.
128 static void adjust_resources_sorted(struct resource_list_x *add_head,
129 struct resource_list *head)
131 struct resource *res;
132 struct resource_list_x *list, *tmp, *prev;
133 struct resource_list *hlist;
134 resource_size_t add_size;
135 int idx;
137 prev = add_head;
138 for (list = add_head->next; list;) {
139 res = list->res;
140 /* skip resource that has been reset */
141 if (!res->flags)
142 goto out;
144 /* skip this resource if not found in head list */
145 for (hlist = head->next; hlist && hlist->res != res;
146 hlist = hlist->next);
147 if (!hlist) { /* just skip */
148 prev = list;
149 list = list->next;
150 continue;
153 idx = res - &list->dev->resource[0];
154 add_size=list->add_size;
155 if (!resource_size(res) && add_size) {
156 res->end = res->start + add_size - 1;
157 if(pci_assign_resource(list->dev, idx))
158 reset_resource(res);
159 } else if (add_size) {
160 adjust_resource(res, res->start,
161 resource_size(res) + add_size);
163 out:
164 tmp = list;
165 prev->next = list = list->next;
166 kfree(tmp);
171 * assign_requested_resources_sorted() - satisfy resource requests
173 * @head : head of the list tracking requests for resources
174 * @failed_list : head of the list tracking requests that could
175 * not be allocated
177 * Satisfy resource requests of each element in the list. Add
178 * requests that could not satisfied to the failed_list.
180 static void assign_requested_resources_sorted(struct resource_list *head,
181 struct resource_list_x *fail_head)
183 struct resource *res;
184 struct resource_list *list;
185 int idx;
187 for (list = head->next; list; list = list->next) {
188 res = list->res;
189 idx = res - &list->dev->resource[0];
190 if (resource_size(res) && pci_assign_resource(list->dev, idx)) {
191 if (fail_head && !pci_is_root_bus(list->dev->bus)) {
193 * if the failed res is for ROM BAR, and it will
194 * be enabled later, don't add it to the list
196 if (!((idx == PCI_ROM_RESOURCE) &&
197 (!(res->flags & IORESOURCE_ROM_ENABLE))))
198 add_to_failed_list(fail_head, list->dev, res);
200 reset_resource(res);
205 static void __assign_resources_sorted(struct resource_list *head,
206 struct resource_list_x *add_head,
207 struct resource_list_x *fail_head)
209 /* Satisfy the must-have resource requests */
210 assign_requested_resources_sorted(head, fail_head);
212 /* Try to satisfy any additional nice-to-have resource
213 requests */
214 if (add_head)
215 adjust_resources_sorted(add_head, head);
216 free_list(resource_list, head);
219 static void pdev_assign_resources_sorted(struct pci_dev *dev,
220 struct resource_list_x *fail_head)
222 struct resource_list head;
224 head.next = NULL;
225 __dev_sort_resources(dev, &head);
226 __assign_resources_sorted(&head, NULL, fail_head);
230 static void pbus_assign_resources_sorted(const struct pci_bus *bus,
231 struct resource_list_x *add_head,
232 struct resource_list_x *fail_head)
234 struct pci_dev *dev;
235 struct resource_list head;
237 head.next = NULL;
238 list_for_each_entry(dev, &bus->devices, bus_list)
239 __dev_sort_resources(dev, &head);
241 __assign_resources_sorted(&head, add_head, fail_head);
244 void pci_setup_cardbus(struct pci_bus *bus)
246 struct pci_dev *bridge = bus->self;
247 struct resource *res;
248 struct pci_bus_region region;
250 dev_info(&bridge->dev, "CardBus bridge to [bus %02x-%02x]\n",
251 bus->secondary, bus->subordinate);
253 res = bus->resource[0];
254 pcibios_resource_to_bus(bridge, &region, res);
255 if (res->flags & IORESOURCE_IO) {
257 * The IO resource is allocated a range twice as large as it
258 * would normally need. This allows us to set both IO regs.
260 dev_info(&bridge->dev, " bridge window %pR\n", res);
261 pci_write_config_dword(bridge, PCI_CB_IO_BASE_0,
262 region.start);
263 pci_write_config_dword(bridge, PCI_CB_IO_LIMIT_0,
264 region.end);
267 res = bus->resource[1];
268 pcibios_resource_to_bus(bridge, &region, res);
269 if (res->flags & IORESOURCE_IO) {
270 dev_info(&bridge->dev, " bridge window %pR\n", res);
271 pci_write_config_dword(bridge, PCI_CB_IO_BASE_1,
272 region.start);
273 pci_write_config_dword(bridge, PCI_CB_IO_LIMIT_1,
274 region.end);
277 res = bus->resource[2];
278 pcibios_resource_to_bus(bridge, &region, res);
279 if (res->flags & IORESOURCE_MEM) {
280 dev_info(&bridge->dev, " bridge window %pR\n", res);
281 pci_write_config_dword(bridge, PCI_CB_MEMORY_BASE_0,
282 region.start);
283 pci_write_config_dword(bridge, PCI_CB_MEMORY_LIMIT_0,
284 region.end);
287 res = bus->resource[3];
288 pcibios_resource_to_bus(bridge, &region, res);
289 if (res->flags & IORESOURCE_MEM) {
290 dev_info(&bridge->dev, " bridge window %pR\n", res);
291 pci_write_config_dword(bridge, PCI_CB_MEMORY_BASE_1,
292 region.start);
293 pci_write_config_dword(bridge, PCI_CB_MEMORY_LIMIT_1,
294 region.end);
297 EXPORT_SYMBOL(pci_setup_cardbus);
299 /* Initialize bridges with base/limit values we have collected.
300 PCI-to-PCI Bridge Architecture Specification rev. 1.1 (1998)
301 requires that if there is no I/O ports or memory behind the
302 bridge, corresponding range must be turned off by writing base
303 value greater than limit to the bridge's base/limit registers.
305 Note: care must be taken when updating I/O base/limit registers
306 of bridges which support 32-bit I/O. This update requires two
307 config space writes, so it's quite possible that an I/O window of
308 the bridge will have some undesirable address (e.g. 0) after the
309 first write. Ditto 64-bit prefetchable MMIO. */
310 static void pci_setup_bridge_io(struct pci_bus *bus)
312 struct pci_dev *bridge = bus->self;
313 struct resource *res;
314 struct pci_bus_region region;
315 u32 l, io_upper16;
317 /* Set up the top and bottom of the PCI I/O segment for this bus. */
318 res = bus->resource[0];
319 pcibios_resource_to_bus(bridge, &region, res);
320 if (res->flags & IORESOURCE_IO) {
321 pci_read_config_dword(bridge, PCI_IO_BASE, &l);
322 l &= 0xffff0000;
323 l |= (region.start >> 8) & 0x00f0;
324 l |= region.end & 0xf000;
325 /* Set up upper 16 bits of I/O base/limit. */
326 io_upper16 = (region.end & 0xffff0000) | (region.start >> 16);
327 dev_info(&bridge->dev, " bridge window %pR\n", res);
328 } else {
329 /* Clear upper 16 bits of I/O base/limit. */
330 io_upper16 = 0;
331 l = 0x00f0;
332 dev_info(&bridge->dev, " bridge window [io disabled]\n");
334 /* Temporarily disable the I/O range before updating PCI_IO_BASE. */
335 pci_write_config_dword(bridge, PCI_IO_BASE_UPPER16, 0x0000ffff);
336 /* Update lower 16 bits of I/O base/limit. */
337 pci_write_config_dword(bridge, PCI_IO_BASE, l);
338 /* Update upper 16 bits of I/O base/limit. */
339 pci_write_config_dword(bridge, PCI_IO_BASE_UPPER16, io_upper16);
342 static void pci_setup_bridge_mmio(struct pci_bus *bus)
344 struct pci_dev *bridge = bus->self;
345 struct resource *res;
346 struct pci_bus_region region;
347 u32 l;
349 /* Set up the top and bottom of the PCI Memory segment for this bus. */
350 res = bus->resource[1];
351 pcibios_resource_to_bus(bridge, &region, res);
352 if (res->flags & IORESOURCE_MEM) {
353 l = (region.start >> 16) & 0xfff0;
354 l |= region.end & 0xfff00000;
355 dev_info(&bridge->dev, " bridge window %pR\n", res);
356 } else {
357 l = 0x0000fff0;
358 dev_info(&bridge->dev, " bridge window [mem disabled]\n");
360 pci_write_config_dword(bridge, PCI_MEMORY_BASE, l);
363 static void pci_setup_bridge_mmio_pref(struct pci_bus *bus)
365 struct pci_dev *bridge = bus->self;
366 struct resource *res;
367 struct pci_bus_region region;
368 u32 l, bu, lu;
370 /* Clear out the upper 32 bits of PREF limit.
371 If PCI_PREF_BASE_UPPER32 was non-zero, this temporarily
372 disables PREF range, which is ok. */
373 pci_write_config_dword(bridge, PCI_PREF_LIMIT_UPPER32, 0);
375 /* Set up PREF base/limit. */
376 bu = lu = 0;
377 res = bus->resource[2];
378 pcibios_resource_to_bus(bridge, &region, res);
379 if (res->flags & IORESOURCE_PREFETCH) {
380 l = (region.start >> 16) & 0xfff0;
381 l |= region.end & 0xfff00000;
382 if (res->flags & IORESOURCE_MEM_64) {
383 bu = upper_32_bits(region.start);
384 lu = upper_32_bits(region.end);
386 dev_info(&bridge->dev, " bridge window %pR\n", res);
387 } else {
388 l = 0x0000fff0;
389 dev_info(&bridge->dev, " bridge window [mem pref disabled]\n");
391 pci_write_config_dword(bridge, PCI_PREF_MEMORY_BASE, l);
393 /* Set the upper 32 bits of PREF base & limit. */
394 pci_write_config_dword(bridge, PCI_PREF_BASE_UPPER32, bu);
395 pci_write_config_dword(bridge, PCI_PREF_LIMIT_UPPER32, lu);
398 static void __pci_setup_bridge(struct pci_bus *bus, unsigned long type)
400 struct pci_dev *bridge = bus->self;
402 dev_info(&bridge->dev, "PCI bridge to [bus %02x-%02x]\n",
403 bus->secondary, bus->subordinate);
405 if (type & IORESOURCE_IO)
406 pci_setup_bridge_io(bus);
408 if (type & IORESOURCE_MEM)
409 pci_setup_bridge_mmio(bus);
411 if (type & IORESOURCE_PREFETCH)
412 pci_setup_bridge_mmio_pref(bus);
414 pci_write_config_word(bridge, PCI_BRIDGE_CONTROL, bus->bridge_ctl);
417 static void pci_setup_bridge(struct pci_bus *bus)
419 unsigned long type = IORESOURCE_IO | IORESOURCE_MEM |
420 IORESOURCE_PREFETCH;
422 __pci_setup_bridge(bus, type);
425 /* Check whether the bridge supports optional I/O and
426 prefetchable memory ranges. If not, the respective
427 base/limit registers must be read-only and read as 0. */
428 static void pci_bridge_check_ranges(struct pci_bus *bus)
430 u16 io;
431 u32 pmem;
432 struct pci_dev *bridge = bus->self;
433 struct resource *b_res;
435 b_res = &bridge->resource[PCI_BRIDGE_RESOURCES];
436 b_res[1].flags |= IORESOURCE_MEM;
438 pci_read_config_word(bridge, PCI_IO_BASE, &io);
439 if (!io) {
440 pci_write_config_word(bridge, PCI_IO_BASE, 0xf0f0);
441 pci_read_config_word(bridge, PCI_IO_BASE, &io);
442 pci_write_config_word(bridge, PCI_IO_BASE, 0x0);
444 if (io)
445 b_res[0].flags |= IORESOURCE_IO;
446 /* DECchip 21050 pass 2 errata: the bridge may miss an address
447 disconnect boundary by one PCI data phase.
448 Workaround: do not use prefetching on this device. */
449 if (bridge->vendor == PCI_VENDOR_ID_DEC && bridge->device == 0x0001)
450 return;
451 pci_read_config_dword(bridge, PCI_PREF_MEMORY_BASE, &pmem);
452 if (!pmem) {
453 pci_write_config_dword(bridge, PCI_PREF_MEMORY_BASE,
454 0xfff0fff0);
455 pci_read_config_dword(bridge, PCI_PREF_MEMORY_BASE, &pmem);
456 pci_write_config_dword(bridge, PCI_PREF_MEMORY_BASE, 0x0);
458 if (pmem) {
459 b_res[2].flags |= IORESOURCE_MEM | IORESOURCE_PREFETCH;
460 if ((pmem & PCI_PREF_RANGE_TYPE_MASK) ==
461 PCI_PREF_RANGE_TYPE_64) {
462 b_res[2].flags |= IORESOURCE_MEM_64;
463 b_res[2].flags |= PCI_PREF_RANGE_TYPE_64;
467 /* double check if bridge does support 64 bit pref */
468 if (b_res[2].flags & IORESOURCE_MEM_64) {
469 u32 mem_base_hi, tmp;
470 pci_read_config_dword(bridge, PCI_PREF_BASE_UPPER32,
471 &mem_base_hi);
472 pci_write_config_dword(bridge, PCI_PREF_BASE_UPPER32,
473 0xffffffff);
474 pci_read_config_dword(bridge, PCI_PREF_BASE_UPPER32, &tmp);
475 if (!tmp)
476 b_res[2].flags &= ~IORESOURCE_MEM_64;
477 pci_write_config_dword(bridge, PCI_PREF_BASE_UPPER32,
478 mem_base_hi);
482 /* Helper function for sizing routines: find first available
483 bus resource of a given type. Note: we intentionally skip
484 the bus resources which have already been assigned (that is,
485 have non-NULL parent resource). */
486 static struct resource *find_free_bus_resource(struct pci_bus *bus, unsigned long type)
488 int i;
489 struct resource *r;
490 unsigned long type_mask = IORESOURCE_IO | IORESOURCE_MEM |
491 IORESOURCE_PREFETCH;
493 pci_bus_for_each_resource(bus, r, i) {
494 if (r == &ioport_resource || r == &iomem_resource)
495 continue;
496 if (r && (r->flags & type_mask) == type && !r->parent)
497 return r;
499 return NULL;
502 static resource_size_t calculate_iosize(resource_size_t size,
503 resource_size_t min_size,
504 resource_size_t size1,
505 resource_size_t old_size,
506 resource_size_t align)
508 if (size < min_size)
509 size = min_size;
510 if (old_size == 1 )
511 old_size = 0;
512 /* To be fixed in 2.5: we should have sort of HAVE_ISA
513 flag in the struct pci_bus. */
514 #if defined(CONFIG_ISA) || defined(CONFIG_EISA)
515 size = (size & 0xff) + ((size & ~0xffUL) << 2);
516 #endif
517 size = ALIGN(size + size1, align);
518 if (size < old_size)
519 size = old_size;
520 return size;
523 static resource_size_t calculate_memsize(resource_size_t size,
524 resource_size_t min_size,
525 resource_size_t size1,
526 resource_size_t old_size,
527 resource_size_t align)
529 if (size < min_size)
530 size = min_size;
531 if (old_size == 1 )
532 old_size = 0;
533 if (size < old_size)
534 size = old_size;
535 size = ALIGN(size + size1, align);
536 return size;
540 * pbus_size_io() - size the io window of a given bus
542 * @bus : the bus
543 * @min_size : the minimum io window that must to be allocated
544 * @add_size : additional optional io window
545 * @add_head : track the additional io window on this list
547 * Sizing the IO windows of the PCI-PCI bridge is trivial,
548 * since these windows have 4K granularity and the IO ranges
549 * of non-bridge PCI devices are limited to 256 bytes.
550 * We must be careful with the ISA aliasing though.
552 static void pbus_size_io(struct pci_bus *bus, resource_size_t min_size,
553 resource_size_t add_size, struct resource_list_x *add_head)
555 struct pci_dev *dev;
556 struct resource *b_res = find_free_bus_resource(bus, IORESOURCE_IO);
557 unsigned long size = 0, size0 = 0, size1 = 0;
559 if (!b_res)
560 return;
562 list_for_each_entry(dev, &bus->devices, bus_list) {
563 int i;
565 for (i = 0; i < PCI_NUM_RESOURCES; i++) {
566 struct resource *r = &dev->resource[i];
567 unsigned long r_size;
569 if (r->parent || !(r->flags & IORESOURCE_IO))
570 continue;
571 r_size = resource_size(r);
573 if (r_size < 0x400)
574 /* Might be re-aligned for ISA */
575 size += r_size;
576 else
577 size1 += r_size;
580 size0 = calculate_iosize(size, min_size, size1,
581 resource_size(b_res), 4096);
582 size1 = !add_size? size0:
583 calculate_iosize(size, min_size+add_size, size1,
584 resource_size(b_res), 4096);
585 if (!size0 && !size1) {
586 if (b_res->start || b_res->end)
587 dev_info(&bus->self->dev, "disabling bridge window "
588 "%pR to [bus %02x-%02x] (unused)\n", b_res,
589 bus->secondary, bus->subordinate);
590 b_res->flags = 0;
591 return;
593 /* Alignment of the IO window is always 4K */
594 b_res->start = 4096;
595 b_res->end = b_res->start + size0 - 1;
596 b_res->flags |= IORESOURCE_STARTALIGN;
597 if (size1 > size0 && add_head)
598 add_to_list(add_head, bus->self, b_res, size1-size0);
602 * pbus_size_mem() - size the memory window of a given bus
604 * @bus : the bus
605 * @min_size : the minimum memory window that must to be allocated
606 * @add_size : additional optional memory window
607 * @add_head : track the additional memory window on this list
609 * Calculate the size of the bus and minimal alignment which
610 * guarantees that all child resources fit in this size.
612 static int pbus_size_mem(struct pci_bus *bus, unsigned long mask,
613 unsigned long type, resource_size_t min_size,
614 resource_size_t add_size,
615 struct resource_list_x *add_head)
617 struct pci_dev *dev;
618 resource_size_t min_align, align, size, size0, size1;
619 resource_size_t aligns[12]; /* Alignments from 1Mb to 2Gb */
620 int order, max_order;
621 struct resource *b_res = find_free_bus_resource(bus, type);
622 unsigned int mem64_mask = 0;
624 if (!b_res)
625 return 0;
627 memset(aligns, 0, sizeof(aligns));
628 max_order = 0;
629 size = 0;
631 mem64_mask = b_res->flags & IORESOURCE_MEM_64;
632 b_res->flags &= ~IORESOURCE_MEM_64;
634 list_for_each_entry(dev, &bus->devices, bus_list) {
635 int i;
637 for (i = 0; i < PCI_NUM_RESOURCES; i++) {
638 struct resource *r = &dev->resource[i];
639 resource_size_t r_size;
641 if (r->parent || (r->flags & mask) != type)
642 continue;
643 r_size = resource_size(r);
644 /* For bridges size != alignment */
645 align = pci_resource_alignment(dev, r);
646 order = __ffs(align) - 20;
647 if (order > 11) {
648 dev_warn(&dev->dev, "disabling BAR %d: %pR "
649 "(bad alignment %#llx)\n", i, r,
650 (unsigned long long) align);
651 r->flags = 0;
652 continue;
654 size += r_size;
655 if (order < 0)
656 order = 0;
657 /* Exclude ranges with size > align from
658 calculation of the alignment. */
659 if (r_size == align)
660 aligns[order] += align;
661 if (order > max_order)
662 max_order = order;
663 mem64_mask &= r->flags & IORESOURCE_MEM_64;
666 align = 0;
667 min_align = 0;
668 for (order = 0; order <= max_order; order++) {
669 resource_size_t align1 = 1;
671 align1 <<= (order + 20);
673 if (!align)
674 min_align = align1;
675 else if (ALIGN(align + min_align, min_align) < align1)
676 min_align = align1 >> 1;
677 align += aligns[order];
679 size0 = calculate_memsize(size, min_size, 0, resource_size(b_res), min_align);
680 size1 = !add_size ? size :
681 calculate_memsize(size, min_size+add_size, 0,
682 resource_size(b_res), min_align);
683 if (!size0 && !size1) {
684 if (b_res->start || b_res->end)
685 dev_info(&bus->self->dev, "disabling bridge window "
686 "%pR to [bus %02x-%02x] (unused)\n", b_res,
687 bus->secondary, bus->subordinate);
688 b_res->flags = 0;
689 return 1;
691 b_res->start = min_align;
692 b_res->end = size0 + min_align - 1;
693 b_res->flags |= IORESOURCE_STARTALIGN | mem64_mask;
694 if (size1 > size0 && add_head)
695 add_to_list(add_head, bus->self, b_res, size1-size0);
696 return 1;
699 static void pci_bus_size_cardbus(struct pci_bus *bus)
701 struct pci_dev *bridge = bus->self;
702 struct resource *b_res = &bridge->resource[PCI_BRIDGE_RESOURCES];
703 u16 ctrl;
706 * Reserve some resources for CardBus. We reserve
707 * a fixed amount of bus space for CardBus bridges.
709 b_res[0].start = 0;
710 b_res[0].end = pci_cardbus_io_size - 1;
711 b_res[0].flags |= IORESOURCE_IO | IORESOURCE_SIZEALIGN;
713 b_res[1].start = 0;
714 b_res[1].end = pci_cardbus_io_size - 1;
715 b_res[1].flags |= IORESOURCE_IO | IORESOURCE_SIZEALIGN;
718 * Check whether prefetchable memory is supported
719 * by this bridge.
721 pci_read_config_word(bridge, PCI_CB_BRIDGE_CONTROL, &ctrl);
722 if (!(ctrl & PCI_CB_BRIDGE_CTL_PREFETCH_MEM0)) {
723 ctrl |= PCI_CB_BRIDGE_CTL_PREFETCH_MEM0;
724 pci_write_config_word(bridge, PCI_CB_BRIDGE_CONTROL, ctrl);
725 pci_read_config_word(bridge, PCI_CB_BRIDGE_CONTROL, &ctrl);
729 * If we have prefetchable memory support, allocate
730 * two regions. Otherwise, allocate one region of
731 * twice the size.
733 if (ctrl & PCI_CB_BRIDGE_CTL_PREFETCH_MEM0) {
734 b_res[2].start = 0;
735 b_res[2].end = pci_cardbus_mem_size - 1;
736 b_res[2].flags |= IORESOURCE_MEM | IORESOURCE_PREFETCH | IORESOURCE_SIZEALIGN;
738 b_res[3].start = 0;
739 b_res[3].end = pci_cardbus_mem_size - 1;
740 b_res[3].flags |= IORESOURCE_MEM | IORESOURCE_SIZEALIGN;
741 } else {
742 b_res[3].start = 0;
743 b_res[3].end = pci_cardbus_mem_size * 2 - 1;
744 b_res[3].flags |= IORESOURCE_MEM | IORESOURCE_SIZEALIGN;
748 void __ref __pci_bus_size_bridges(struct pci_bus *bus,
749 struct resource_list_x *add_head)
751 struct pci_dev *dev;
752 unsigned long mask, prefmask;
753 resource_size_t additional_mem_size = 0, additional_io_size = 0;
755 list_for_each_entry(dev, &bus->devices, bus_list) {
756 struct pci_bus *b = dev->subordinate;
757 if (!b)
758 continue;
760 switch (dev->class >> 8) {
761 case PCI_CLASS_BRIDGE_CARDBUS:
762 pci_bus_size_cardbus(b);
763 break;
765 case PCI_CLASS_BRIDGE_PCI:
766 default:
767 __pci_bus_size_bridges(b, add_head);
768 break;
772 /* The root bus? */
773 if (!bus->self)
774 return;
776 switch (bus->self->class >> 8) {
777 case PCI_CLASS_BRIDGE_CARDBUS:
778 /* don't size cardbuses yet. */
779 break;
781 case PCI_CLASS_BRIDGE_PCI:
782 pci_bridge_check_ranges(bus);
783 if (bus->self->is_hotplug_bridge) {
784 additional_io_size = pci_hotplug_io_size;
785 additional_mem_size = pci_hotplug_mem_size;
788 * Follow thru
790 default:
791 pbus_size_io(bus, 0, additional_io_size, add_head);
792 /* If the bridge supports prefetchable range, size it
793 separately. If it doesn't, or its prefetchable window
794 has already been allocated by arch code, try
795 non-prefetchable range for both types of PCI memory
796 resources. */
797 mask = IORESOURCE_MEM;
798 prefmask = IORESOURCE_MEM | IORESOURCE_PREFETCH;
799 if (pbus_size_mem(bus, prefmask, prefmask, 0, additional_mem_size, add_head))
800 mask = prefmask; /* Success, size non-prefetch only. */
801 else
802 additional_mem_size += additional_mem_size;
803 pbus_size_mem(bus, mask, IORESOURCE_MEM, 0, additional_mem_size, add_head);
804 break;
808 void __ref pci_bus_size_bridges(struct pci_bus *bus)
810 __pci_bus_size_bridges(bus, NULL);
812 EXPORT_SYMBOL(pci_bus_size_bridges);
814 static void __ref __pci_bus_assign_resources(const struct pci_bus *bus,
815 struct resource_list_x *add_head,
816 struct resource_list_x *fail_head)
818 struct pci_bus *b;
819 struct pci_dev *dev;
821 pbus_assign_resources_sorted(bus, add_head, fail_head);
823 list_for_each_entry(dev, &bus->devices, bus_list) {
824 b = dev->subordinate;
825 if (!b)
826 continue;
828 __pci_bus_assign_resources(b, add_head, fail_head);
830 switch (dev->class >> 8) {
831 case PCI_CLASS_BRIDGE_PCI:
832 if (!pci_is_enabled(dev))
833 pci_setup_bridge(b);
834 break;
836 case PCI_CLASS_BRIDGE_CARDBUS:
837 pci_setup_cardbus(b);
838 break;
840 default:
841 dev_info(&dev->dev, "not setting up bridge for bus "
842 "%04x:%02x\n", pci_domain_nr(b), b->number);
843 break;
848 void __ref pci_bus_assign_resources(const struct pci_bus *bus)
850 __pci_bus_assign_resources(bus, NULL, NULL);
852 EXPORT_SYMBOL(pci_bus_assign_resources);
854 static void __ref __pci_bridge_assign_resources(const struct pci_dev *bridge,
855 struct resource_list_x *fail_head)
857 struct pci_bus *b;
859 pdev_assign_resources_sorted((struct pci_dev *)bridge, fail_head);
861 b = bridge->subordinate;
862 if (!b)
863 return;
865 __pci_bus_assign_resources(b, NULL, fail_head);
867 switch (bridge->class >> 8) {
868 case PCI_CLASS_BRIDGE_PCI:
869 pci_setup_bridge(b);
870 break;
872 case PCI_CLASS_BRIDGE_CARDBUS:
873 pci_setup_cardbus(b);
874 break;
876 default:
877 dev_info(&bridge->dev, "not setting up bridge for bus "
878 "%04x:%02x\n", pci_domain_nr(b), b->number);
879 break;
882 static void pci_bridge_release_resources(struct pci_bus *bus,
883 unsigned long type)
885 int idx;
886 bool changed = false;
887 struct pci_dev *dev;
888 struct resource *r;
889 unsigned long type_mask = IORESOURCE_IO | IORESOURCE_MEM |
890 IORESOURCE_PREFETCH;
892 dev = bus->self;
893 for (idx = PCI_BRIDGE_RESOURCES; idx <= PCI_BRIDGE_RESOURCE_END;
894 idx++) {
895 r = &dev->resource[idx];
896 if ((r->flags & type_mask) != type)
897 continue;
898 if (!r->parent)
899 continue;
901 * if there are children under that, we should release them
902 * all
904 release_child_resources(r);
905 if (!release_resource(r)) {
906 dev_printk(KERN_DEBUG, &dev->dev,
907 "resource %d %pR released\n", idx, r);
908 /* keep the old size */
909 r->end = resource_size(r) - 1;
910 r->start = 0;
911 r->flags = 0;
912 changed = true;
916 if (changed) {
917 /* avoiding touch the one without PREF */
918 if (type & IORESOURCE_PREFETCH)
919 type = IORESOURCE_PREFETCH;
920 __pci_setup_bridge(bus, type);
924 enum release_type {
925 leaf_only,
926 whole_subtree,
929 * try to release pci bridge resources that is from leaf bridge,
930 * so we can allocate big new one later
932 static void __ref pci_bus_release_bridge_resources(struct pci_bus *bus,
933 unsigned long type,
934 enum release_type rel_type)
936 struct pci_dev *dev;
937 bool is_leaf_bridge = true;
939 list_for_each_entry(dev, &bus->devices, bus_list) {
940 struct pci_bus *b = dev->subordinate;
941 if (!b)
942 continue;
944 is_leaf_bridge = false;
946 if ((dev->class >> 8) != PCI_CLASS_BRIDGE_PCI)
947 continue;
949 if (rel_type == whole_subtree)
950 pci_bus_release_bridge_resources(b, type,
951 whole_subtree);
954 if (pci_is_root_bus(bus))
955 return;
957 if ((bus->self->class >> 8) != PCI_CLASS_BRIDGE_PCI)
958 return;
960 if ((rel_type == whole_subtree) || is_leaf_bridge)
961 pci_bridge_release_resources(bus, type);
964 static void pci_bus_dump_res(struct pci_bus *bus)
966 struct resource *res;
967 int i;
969 pci_bus_for_each_resource(bus, res, i) {
970 if (!res || !res->end || !res->flags)
971 continue;
973 dev_printk(KERN_DEBUG, &bus->dev, "resource %d %pR\n", i, res);
977 static void pci_bus_dump_resources(struct pci_bus *bus)
979 struct pci_bus *b;
980 struct pci_dev *dev;
983 pci_bus_dump_res(bus);
985 list_for_each_entry(dev, &bus->devices, bus_list) {
986 b = dev->subordinate;
987 if (!b)
988 continue;
990 pci_bus_dump_resources(b);
994 void __init
995 pci_assign_unassigned_resources(void)
997 struct pci_bus *bus;
998 struct resource_list_x add_list; /* list of resources that
999 want additional resources */
1000 add_list.next = NULL;
1001 /* Depth first, calculate sizes and alignments of all
1002 subordinate buses. */
1003 list_for_each_entry(bus, &pci_root_buses, node) {
1004 __pci_bus_size_bridges(bus, &add_list);
1007 /* Depth last, allocate resources and update the hardware. */
1008 list_for_each_entry(bus, &pci_root_buses, node) {
1009 __pci_bus_assign_resources(bus, &add_list, NULL);
1010 pci_enable_bridges(bus);
1012 BUG_ON(add_list.next);
1014 /* dump the resource on buses */
1015 list_for_each_entry(bus, &pci_root_buses, node) {
1016 pci_bus_dump_resources(bus);
1020 void pci_assign_unassigned_bridge_resources(struct pci_dev *bridge)
1022 struct pci_bus *parent = bridge->subordinate;
1023 int tried_times = 0;
1024 struct resource_list_x head, *list;
1025 int retval;
1026 unsigned long type_mask = IORESOURCE_IO | IORESOURCE_MEM |
1027 IORESOURCE_PREFETCH;
1029 head.next = NULL;
1031 again:
1032 pci_bus_size_bridges(parent);
1033 __pci_bridge_assign_resources(bridge, &head);
1035 tried_times++;
1037 if (!head.next)
1038 goto enable_all;
1040 if (tried_times >= 2) {
1041 /* still fail, don't need to try more */
1042 free_list(resource_list_x, &head);
1043 goto enable_all;
1046 printk(KERN_DEBUG "PCI: No. %d try to assign unassigned res\n",
1047 tried_times + 1);
1050 * Try to release leaf bridge's resources that doesn't fit resource of
1051 * child device under that bridge
1053 for (list = head.next; list;) {
1054 struct pci_bus *bus = list->dev->bus;
1055 unsigned long flags = list->flags;
1057 pci_bus_release_bridge_resources(bus, flags & type_mask,
1058 whole_subtree);
1059 list = list->next;
1061 /* restore size and flags */
1062 for (list = head.next; list;) {
1063 struct resource *res = list->res;
1065 res->start = list->start;
1066 res->end = list->end;
1067 res->flags = list->flags;
1068 if (list->dev->subordinate)
1069 res->flags = 0;
1071 list = list->next;
1073 free_list(resource_list_x, &head);
1075 goto again;
1077 enable_all:
1078 retval = pci_reenable_device(bridge);
1079 pci_set_master(bridge);
1080 pci_enable_bridges(parent);
1082 EXPORT_SYMBOL_GPL(pci_assign_unassigned_bridge_resources);