blob: 8ddb918f5f57dfc0bdda3e4a287abe4c08bae365 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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>
28
29
30#define DEBUG_CONFIG 1
31#if DEBUG_CONFIG
32#define DBG(x...) printk(x)
33#else
34#define DBG(x...)
35#endif
36
Sam Ravnborg96bde062007-03-26 21:53:30 -080037static void pbus_assign_resources_sorted(struct pci_bus *bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -070038{
39 struct pci_dev *dev;
40 struct resource *res;
41 struct resource_list head, *list, *tmp;
42 int idx;
43
Linus Torvalds1da177e2005-04-16 15:20:36 -070044 head.next = NULL;
45 list_for_each_entry(dev, &bus->devices, bus_list) {
46 u16 class = dev->class >> 8;
47
Kenji Kaneshige9bded002006-10-04 02:15:34 -070048 /* Don't touch classless devices or host bridges or ioapics. */
Linus Torvalds1da177e2005-04-16 15:20:36 -070049 if (class == PCI_CLASS_NOT_DEFINED ||
Satoru Takeuchi23186272006-09-12 10:21:44 -070050 class == PCI_CLASS_BRIDGE_HOST)
Linus Torvalds1da177e2005-04-16 15:20:36 -070051 continue;
52
Kenji Kaneshige9bded002006-10-04 02:15:34 -070053 /* Don't touch ioapic devices already enabled by firmware */
Satoru Takeuchi23186272006-09-12 10:21:44 -070054 if (class == PCI_CLASS_SYSTEM_PIC) {
Kenji Kaneshige9bded002006-10-04 02:15:34 -070055 u16 command;
56 pci_read_config_word(dev, PCI_COMMAND, &command);
57 if (command & (PCI_COMMAND_IO | PCI_COMMAND_MEMORY))
Satoru Takeuchi23186272006-09-12 10:21:44 -070058 continue;
59 }
60
Linus Torvalds1da177e2005-04-16 15:20:36 -070061 pdev_sort_resources(dev, &head);
62 }
63
64 for (list = head.next; list;) {
65 res = list->res;
66 idx = res - &list->dev->resource[0];
Rajesh Shah542df5d2005-04-28 00:25:50 -070067 if (pci_assign_resource(list->dev, idx)) {
Ivan Kokshaysky88452562008-03-30 19:50:14 +040068 /* FIXME: get rid of this */
Rajesh Shah542df5d2005-04-28 00:25:50 -070069 res->start = 0;
Ivan Kokshaysky960b8462005-07-07 03:07:56 +040070 res->end = 0;
Rajesh Shah542df5d2005-04-28 00:25:50 -070071 res->flags = 0;
72 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070073 tmp = list;
74 list = list->next;
75 kfree(tmp);
76 }
77}
78
Dominik Brodowskib3743fa2005-09-09 13:03:23 -070079void pci_setup_cardbus(struct pci_bus *bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -070080{
81 struct pci_dev *bridge = bus->self;
82 struct pci_bus_region region;
83
84 printk("PCI: Bus %d, cardbus bridge: %s\n",
85 bus->number, pci_name(bridge));
86
87 pcibios_resource_to_bus(bridge, &region, bus->resource[0]);
88 if (bus->resource[0]->flags & IORESOURCE_IO) {
89 /*
90 * The IO resource is allocated a range twice as large as it
91 * would normally need. This allows us to set both IO regs.
92 */
Benjamin Herrenschmidtc40a22e2007-12-10 17:32:15 +110093 printk(KERN_INFO " IO window: 0x%08lx-0x%08lx\n",
94 (unsigned long)region.start,
95 (unsigned long)region.end);
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 pci_write_config_dword(bridge, PCI_CB_IO_BASE_0,
97 region.start);
98 pci_write_config_dword(bridge, PCI_CB_IO_LIMIT_0,
99 region.end);
100 }
101
102 pcibios_resource_to_bus(bridge, &region, bus->resource[1]);
103 if (bus->resource[1]->flags & IORESOURCE_IO) {
Benjamin Herrenschmidtc40a22e2007-12-10 17:32:15 +1100104 printk(KERN_INFO " IO window: 0x%08lx-0x%08lx\n",
105 (unsigned long)region.start,
106 (unsigned long)region.end);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 pci_write_config_dword(bridge, PCI_CB_IO_BASE_1,
108 region.start);
109 pci_write_config_dword(bridge, PCI_CB_IO_LIMIT_1,
110 region.end);
111 }
112
113 pcibios_resource_to_bus(bridge, &region, bus->resource[2]);
114 if (bus->resource[2]->flags & IORESOURCE_MEM) {
Benjamin Herrenschmidtc40a22e2007-12-10 17:32:15 +1100115 printk(KERN_INFO " PREFETCH window: 0x%08lx-0x%08lx\n",
116 (unsigned long)region.start,
117 (unsigned long)region.end);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 pci_write_config_dword(bridge, PCI_CB_MEMORY_BASE_0,
119 region.start);
120 pci_write_config_dword(bridge, PCI_CB_MEMORY_LIMIT_0,
121 region.end);
122 }
123
124 pcibios_resource_to_bus(bridge, &region, bus->resource[3]);
125 if (bus->resource[3]->flags & IORESOURCE_MEM) {
Benjamin Herrenschmidtc40a22e2007-12-10 17:32:15 +1100126 printk(KERN_INFO " MEM window: 0x%08lx-0x%08lx\n",
127 (unsigned long)region.start,
128 (unsigned long)region.end);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 pci_write_config_dword(bridge, PCI_CB_MEMORY_BASE_1,
130 region.start);
131 pci_write_config_dword(bridge, PCI_CB_MEMORY_LIMIT_1,
132 region.end);
133 }
134}
Dominik Brodowskib3743fa2005-09-09 13:03:23 -0700135EXPORT_SYMBOL(pci_setup_cardbus);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136
137/* Initialize bridges with base/limit values we have collected.
138 PCI-to-PCI Bridge Architecture Specification rev. 1.1 (1998)
139 requires that if there is no I/O ports or memory behind the
140 bridge, corresponding range must be turned off by writing base
141 value greater than limit to the bridge's base/limit registers.
142
143 Note: care must be taken when updating I/O base/limit registers
144 of bridges which support 32-bit I/O. This update requires two
145 config space writes, so it's quite possible that an I/O window of
146 the bridge will have some undesirable address (e.g. 0) after the
147 first write. Ditto 64-bit prefetchable MMIO. */
Adrian Bunka391f192008-04-18 13:53:57 -0700148static void pci_setup_bridge(struct pci_bus *bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149{
150 struct pci_dev *bridge = bus->self;
151 struct pci_bus_region region;
Benjamin Herrenschmidtc40a22e2007-12-10 17:32:15 +1100152 u32 l, bu, lu, io_upper16;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153
154 DBG(KERN_INFO "PCI: Bridge: %s\n", pci_name(bridge));
155
156 /* Set up the top and bottom of the PCI I/O segment for this bus. */
157 pcibios_resource_to_bus(bridge, &region, bus->resource[0]);
158 if (bus->resource[0]->flags & IORESOURCE_IO) {
159 pci_read_config_dword(bridge, PCI_IO_BASE, &l);
160 l &= 0xffff0000;
161 l |= (region.start >> 8) & 0x00f0;
162 l |= region.end & 0xf000;
163 /* Set up upper 16 bits of I/O base/limit. */
164 io_upper16 = (region.end & 0xffff0000) | (region.start >> 16);
165 DBG(KERN_INFO " IO window: %04lx-%04lx\n",
Benjamin Herrenschmidtc40a22e2007-12-10 17:32:15 +1100166 (unsigned long)region.start,
167 (unsigned long)region.end);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 }
169 else {
170 /* Clear upper 16 bits of I/O base/limit. */
171 io_upper16 = 0;
172 l = 0x00f0;
173 DBG(KERN_INFO " IO window: disabled.\n");
174 }
175 /* Temporarily disable the I/O range before updating PCI_IO_BASE. */
176 pci_write_config_dword(bridge, PCI_IO_BASE_UPPER16, 0x0000ffff);
177 /* Update lower 16 bits of I/O base/limit. */
178 pci_write_config_dword(bridge, PCI_IO_BASE, l);
179 /* Update upper 16 bits of I/O base/limit. */
180 pci_write_config_dword(bridge, PCI_IO_BASE_UPPER16, io_upper16);
181
182 /* Set up the top and bottom of the PCI Memory segment
183 for this bus. */
184 pcibios_resource_to_bus(bridge, &region, bus->resource[1]);
185 if (bus->resource[1]->flags & IORESOURCE_MEM) {
186 l = (region.start >> 16) & 0xfff0;
187 l |= region.end & 0xfff00000;
Benjamin Herrenschmidtc40a22e2007-12-10 17:32:15 +1100188 DBG(KERN_INFO " MEM window: 0x%08lx-0x%08lx\n",
189 (unsigned long)region.start,
190 (unsigned long)region.end);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 }
192 else {
193 l = 0x0000fff0;
194 DBG(KERN_INFO " MEM window: disabled.\n");
195 }
196 pci_write_config_dword(bridge, PCI_MEMORY_BASE, l);
197
198 /* Clear out the upper 32 bits of PREF limit.
199 If PCI_PREF_BASE_UPPER32 was non-zero, this temporarily
200 disables PREF range, which is ok. */
201 pci_write_config_dword(bridge, PCI_PREF_LIMIT_UPPER32, 0);
202
203 /* Set up PREF base/limit. */
Benjamin Herrenschmidtc40a22e2007-12-10 17:32:15 +1100204 bu = lu = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 pcibios_resource_to_bus(bridge, &region, bus->resource[2]);
206 if (bus->resource[2]->flags & IORESOURCE_PREFETCH) {
207 l = (region.start >> 16) & 0xfff0;
208 l |= region.end & 0xfff00000;
Andrew Morton13d36c22008-02-04 23:50:12 -0800209 bu = upper_32_bits(region.start);
210 lu = upper_32_bits(region.end);
Benjamin Herrenschmidtc40a22e2007-12-10 17:32:15 +1100211 DBG(KERN_INFO " PREFETCH window: 0x%016llx-0x%016llx\n",
212 (unsigned long long)region.start,
213 (unsigned long long)region.end);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 }
215 else {
216 l = 0x0000fff0;
217 DBG(KERN_INFO " PREFETCH window: disabled.\n");
218 }
219 pci_write_config_dword(bridge, PCI_PREF_MEMORY_BASE, l);
220
Benjamin Herrenschmidtc40a22e2007-12-10 17:32:15 +1100221 /* Set the upper 32 bits of PREF base & limit. */
222 pci_write_config_dword(bridge, PCI_PREF_BASE_UPPER32, bu);
223 pci_write_config_dword(bridge, PCI_PREF_LIMIT_UPPER32, lu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224
225 pci_write_config_word(bridge, PCI_BRIDGE_CONTROL, bus->bridge_ctl);
226}
227
228/* Check whether the bridge supports optional I/O and
229 prefetchable memory ranges. If not, the respective
230 base/limit registers must be read-only and read as 0. */
Sam Ravnborg96bde062007-03-26 21:53:30 -0800231static void pci_bridge_check_ranges(struct pci_bus *bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232{
233 u16 io;
234 u32 pmem;
235 struct pci_dev *bridge = bus->self;
236 struct resource *b_res;
237
238 b_res = &bridge->resource[PCI_BRIDGE_RESOURCES];
239 b_res[1].flags |= IORESOURCE_MEM;
240
241 pci_read_config_word(bridge, PCI_IO_BASE, &io);
242 if (!io) {
243 pci_write_config_word(bridge, PCI_IO_BASE, 0xf0f0);
244 pci_read_config_word(bridge, PCI_IO_BASE, &io);
245 pci_write_config_word(bridge, PCI_IO_BASE, 0x0);
246 }
247 if (io)
248 b_res[0].flags |= IORESOURCE_IO;
249 /* DECchip 21050 pass 2 errata: the bridge may miss an address
250 disconnect boundary by one PCI data phase.
251 Workaround: do not use prefetching on this device. */
252 if (bridge->vendor == PCI_VENDOR_ID_DEC && bridge->device == 0x0001)
253 return;
254 pci_read_config_dword(bridge, PCI_PREF_MEMORY_BASE, &pmem);
255 if (!pmem) {
256 pci_write_config_dword(bridge, PCI_PREF_MEMORY_BASE,
257 0xfff0fff0);
258 pci_read_config_dword(bridge, PCI_PREF_MEMORY_BASE, &pmem);
259 pci_write_config_dword(bridge, PCI_PREF_MEMORY_BASE, 0x0);
260 }
261 if (pmem)
262 b_res[2].flags |= IORESOURCE_MEM | IORESOURCE_PREFETCH;
263}
264
265/* Helper function for sizing routines: find first available
266 bus resource of a given type. Note: we intentionally skip
267 the bus resources which have already been assigned (that is,
268 have non-NULL parent resource). */
Sam Ravnborg96bde062007-03-26 21:53:30 -0800269static struct resource *find_free_bus_resource(struct pci_bus *bus, unsigned long type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270{
271 int i;
272 struct resource *r;
273 unsigned long type_mask = IORESOURCE_IO | IORESOURCE_MEM |
274 IORESOURCE_PREFETCH;
275
276 for (i = 0; i < PCI_BUS_NUM_RESOURCES; i++) {
277 r = bus->resource[i];
Ivan Kokshaysky299de032005-06-15 18:59:27 +0400278 if (r == &ioport_resource || r == &iomem_resource)
279 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 if (r && (r->flags & type_mask) == type && !r->parent)
281 return r;
282 }
283 return NULL;
284}
285
286/* Sizing the IO windows of the PCI-PCI bridge is trivial,
287 since these windows have 4K granularity and the IO ranges
288 of non-bridge PCI devices are limited to 256 bytes.
289 We must be careful with the ISA aliasing though. */
Sam Ravnborg96bde062007-03-26 21:53:30 -0800290static void pbus_size_io(struct pci_bus *bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291{
292 struct pci_dev *dev;
293 struct resource *b_res = find_free_bus_resource(bus, IORESOURCE_IO);
294 unsigned long size = 0, size1 = 0;
295
296 if (!b_res)
297 return;
298
299 list_for_each_entry(dev, &bus->devices, bus_list) {
300 int i;
301
302 for (i = 0; i < PCI_NUM_RESOURCES; i++) {
303 struct resource *r = &dev->resource[i];
304 unsigned long r_size;
305
306 if (r->parent || !(r->flags & IORESOURCE_IO))
307 continue;
308 r_size = r->end - r->start + 1;
309
310 if (r_size < 0x400)
311 /* Might be re-aligned for ISA */
312 size += r_size;
313 else
314 size1 += r_size;
315 }
316 }
317/* To be fixed in 2.5: we should have sort of HAVE_ISA
318 flag in the struct pci_bus. */
319#if defined(CONFIG_ISA) || defined(CONFIG_EISA)
320 size = (size & 0xff) + ((size & ~0xffUL) << 2);
321#endif
Milind Arun Choudhary6f6f8c22007-07-09 11:55:51 -0700322 size = ALIGN(size + size1, 4096);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 if (!size) {
324 b_res->flags = 0;
325 return;
326 }
327 /* Alignment of the IO window is always 4K */
328 b_res->start = 4096;
329 b_res->end = b_res->start + size - 1;
Ivan Kokshaysky88452562008-03-30 19:50:14 +0400330 b_res->flags |= IORESOURCE_STARTALIGN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331}
332
333/* Calculate the size of the bus and minimal alignment which
334 guarantees that all child resources fit in this size. */
Sam Ravnborg96bde062007-03-26 21:53:30 -0800335static int pbus_size_mem(struct pci_bus *bus, unsigned long mask, unsigned long type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336{
337 struct pci_dev *dev;
Benjamin Herrenschmidtc40a22e2007-12-10 17:32:15 +1100338 resource_size_t min_align, align, size;
339 resource_size_t aligns[12]; /* Alignments from 1Mb to 2Gb */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 int order, max_order;
341 struct resource *b_res = find_free_bus_resource(bus, type);
342
343 if (!b_res)
344 return 0;
345
346 memset(aligns, 0, sizeof(aligns));
347 max_order = 0;
348 size = 0;
349
350 list_for_each_entry(dev, &bus->devices, bus_list) {
351 int i;
352
353 for (i = 0; i < PCI_NUM_RESOURCES; i++) {
354 struct resource *r = &dev->resource[i];
Benjamin Herrenschmidtc40a22e2007-12-10 17:32:15 +1100355 resource_size_t r_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356
357 if (r->parent || (r->flags & mask) != type)
358 continue;
359 r_size = r->end - r->start + 1;
360 /* For bridges size != alignment */
361 align = (i < PCI_BRIDGE_RESOURCES) ? r_size : r->start;
362 order = __ffs(align) - 20;
363 if (order > 11) {
364 printk(KERN_WARNING "PCI: region %s/%d "
Benjamin Herrenschmidtc40a22e2007-12-10 17:32:15 +1100365 "too large: 0x%016llx-0x%016llx\n",
Greg Kroah-Hartman1396a8c2006-06-12 15:14:29 -0700366 pci_name(dev), i,
Benjamin Herrenschmidtc40a22e2007-12-10 17:32:15 +1100367 (unsigned long long)r->start,
368 (unsigned long long)r->end);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 r->flags = 0;
370 continue;
371 }
372 size += r_size;
373 if (order < 0)
374 order = 0;
375 /* Exclude ranges with size > align from
376 calculation of the alignment. */
377 if (r_size == align)
378 aligns[order] += align;
379 if (order > max_order)
380 max_order = order;
381 }
382 }
383
384 align = 0;
385 min_align = 0;
386 for (order = 0; order <= max_order; order++) {
Benjamin Herrenschmidtc40a22e2007-12-10 17:32:15 +1100387#ifdef CONFIG_RESOURCES_64BIT
388 resource_size_t align1 = 1ULL << (order + 20);
389#else
390 resource_size_t align1 = 1U << (order + 20);
391#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 if (!align)
393 min_align = align1;
Milind Arun Choudhary6f6f8c22007-07-09 11:55:51 -0700394 else if (ALIGN(align + min_align, min_align) < align1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 min_align = align1 >> 1;
396 align += aligns[order];
397 }
Milind Arun Choudhary6f6f8c22007-07-09 11:55:51 -0700398 size = ALIGN(size, min_align);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 if (!size) {
400 b_res->flags = 0;
401 return 1;
402 }
403 b_res->start = min_align;
404 b_res->end = size + min_align - 1;
Ivan Kokshaysky88452562008-03-30 19:50:14 +0400405 b_res->flags |= IORESOURCE_STARTALIGN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 return 1;
407}
408
Adrian Bunk5468ae62008-04-18 13:53:56 -0700409static void pci_bus_size_cardbus(struct pci_bus *bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410{
411 struct pci_dev *bridge = bus->self;
412 struct resource *b_res = &bridge->resource[PCI_BRIDGE_RESOURCES];
413 u16 ctrl;
414
415 /*
416 * Reserve some resources for CardBus. We reserve
417 * a fixed amount of bus space for CardBus bridges.
418 */
Linus Torvalds934b7022008-04-22 18:16:30 -0700419 b_res[0].start = 0;
420 b_res[0].end = pci_cardbus_io_size - 1;
421 b_res[0].flags |= IORESOURCE_IO | IORESOURCE_SIZEALIGN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422
Linus Torvalds934b7022008-04-22 18:16:30 -0700423 b_res[1].start = 0;
424 b_res[1].end = pci_cardbus_io_size - 1;
425 b_res[1].flags |= IORESOURCE_IO | IORESOURCE_SIZEALIGN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426
427 /*
428 * Check whether prefetchable memory is supported
429 * by this bridge.
430 */
431 pci_read_config_word(bridge, PCI_CB_BRIDGE_CONTROL, &ctrl);
432 if (!(ctrl & PCI_CB_BRIDGE_CTL_PREFETCH_MEM0)) {
433 ctrl |= PCI_CB_BRIDGE_CTL_PREFETCH_MEM0;
434 pci_write_config_word(bridge, PCI_CB_BRIDGE_CONTROL, ctrl);
435 pci_read_config_word(bridge, PCI_CB_BRIDGE_CONTROL, &ctrl);
436 }
437
438 /*
439 * If we have prefetchable memory support, allocate
440 * two regions. Otherwise, allocate one region of
441 * twice the size.
442 */
443 if (ctrl & PCI_CB_BRIDGE_CTL_PREFETCH_MEM0) {
Linus Torvalds934b7022008-04-22 18:16:30 -0700444 b_res[2].start = 0;
445 b_res[2].end = pci_cardbus_mem_size - 1;
446 b_res[2].flags |= IORESOURCE_MEM | IORESOURCE_PREFETCH | IORESOURCE_SIZEALIGN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447
Linus Torvalds934b7022008-04-22 18:16:30 -0700448 b_res[3].start = 0;
449 b_res[3].end = pci_cardbus_mem_size - 1;
450 b_res[3].flags |= IORESOURCE_MEM | IORESOURCE_SIZEALIGN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 } else {
Linus Torvalds934b7022008-04-22 18:16:30 -0700452 b_res[3].start = 0;
453 b_res[3].end = pci_cardbus_mem_size * 2 - 1;
454 b_res[3].flags |= IORESOURCE_MEM | IORESOURCE_SIZEALIGN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 }
456}
457
Sam Ravnborg451124a2008-02-02 22:33:43 +0100458void __ref pci_bus_size_bridges(struct pci_bus *bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459{
460 struct pci_dev *dev;
461 unsigned long mask, prefmask;
462
463 list_for_each_entry(dev, &bus->devices, bus_list) {
464 struct pci_bus *b = dev->subordinate;
465 if (!b)
466 continue;
467
468 switch (dev->class >> 8) {
469 case PCI_CLASS_BRIDGE_CARDBUS:
470 pci_bus_size_cardbus(b);
471 break;
472
473 case PCI_CLASS_BRIDGE_PCI:
474 default:
475 pci_bus_size_bridges(b);
476 break;
477 }
478 }
479
480 /* The root bus? */
481 if (!bus->self)
482 return;
483
484 switch (bus->self->class >> 8) {
485 case PCI_CLASS_BRIDGE_CARDBUS:
486 /* don't size cardbuses yet. */
487 break;
488
489 case PCI_CLASS_BRIDGE_PCI:
490 pci_bridge_check_ranges(bus);
491 default:
492 pbus_size_io(bus);
493 /* If the bridge supports prefetchable range, size it
494 separately. If it doesn't, or its prefetchable window
495 has already been allocated by arch code, try
496 non-prefetchable range for both types of PCI memory
497 resources. */
498 mask = IORESOURCE_MEM;
499 prefmask = IORESOURCE_MEM | IORESOURCE_PREFETCH;
500 if (pbus_size_mem(bus, prefmask, prefmask))
501 mask = prefmask; /* Success, size non-prefetch only. */
502 pbus_size_mem(bus, mask, IORESOURCE_MEM);
503 break;
504 }
505}
506EXPORT_SYMBOL(pci_bus_size_bridges);
507
Sam Ravnborg451124a2008-02-02 22:33:43 +0100508void __ref pci_bus_assign_resources(struct pci_bus *bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509{
510 struct pci_bus *b;
511 struct pci_dev *dev;
512
513 pbus_assign_resources_sorted(bus);
514
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 list_for_each_entry(dev, &bus->devices, bus_list) {
516 b = dev->subordinate;
517 if (!b)
518 continue;
519
520 pci_bus_assign_resources(b);
521
522 switch (dev->class >> 8) {
523 case PCI_CLASS_BRIDGE_PCI:
524 pci_setup_bridge(b);
525 break;
526
527 case PCI_CLASS_BRIDGE_CARDBUS:
528 pci_setup_cardbus(b);
529 break;
530
531 default:
532 printk(KERN_INFO "PCI: not setting up bridge %s "
533 "for bus %d\n", pci_name(dev), b->number);
534 break;
535 }
536 }
537}
538EXPORT_SYMBOL(pci_bus_assign_resources);
539
540void __init
541pci_assign_unassigned_resources(void)
542{
543 struct pci_bus *bus;
544
545 /* Depth first, calculate sizes and alignments of all
546 subordinate buses. */
547 list_for_each_entry(bus, &pci_root_buses, node) {
548 pci_bus_size_bridges(bus);
549 }
550 /* Depth last, allocate resources and update the hardware. */
551 list_for_each_entry(bus, &pci_root_buses, node) {
552 pci_bus_assign_resources(bus);
553 pci_enable_bridges(bus);
554 }
555}