blob: 1aad599816f7988ac080084dc14083b0b8a50736 [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
Sam Ravnborg96bde062007-03-26 21:53:30 -080030static void pbus_assign_resources_sorted(struct pci_bus *bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -070031{
32 struct pci_dev *dev;
33 struct resource *res;
34 struct resource_list head, *list, *tmp;
35 int idx;
36
Linus Torvalds1da177e2005-04-16 15:20:36 -070037 head.next = NULL;
38 list_for_each_entry(dev, &bus->devices, bus_list) {
39 u16 class = dev->class >> 8;
40
Kenji Kaneshige9bded002006-10-04 02:15:34 -070041 /* Don't touch classless devices or host bridges or ioapics. */
Linus Torvalds1da177e2005-04-16 15:20:36 -070042 if (class == PCI_CLASS_NOT_DEFINED ||
Satoru Takeuchi23186272006-09-12 10:21:44 -070043 class == PCI_CLASS_BRIDGE_HOST)
Linus Torvalds1da177e2005-04-16 15:20:36 -070044 continue;
45
Kenji Kaneshige9bded002006-10-04 02:15:34 -070046 /* Don't touch ioapic devices already enabled by firmware */
Satoru Takeuchi23186272006-09-12 10:21:44 -070047 if (class == PCI_CLASS_SYSTEM_PIC) {
Kenji Kaneshige9bded002006-10-04 02:15:34 -070048 u16 command;
49 pci_read_config_word(dev, PCI_COMMAND, &command);
50 if (command & (PCI_COMMAND_IO | PCI_COMMAND_MEMORY))
Satoru Takeuchi23186272006-09-12 10:21:44 -070051 continue;
52 }
53
Linus Torvalds1da177e2005-04-16 15:20:36 -070054 pdev_sort_resources(dev, &head);
55 }
56
57 for (list = head.next; list;) {
58 res = list->res;
59 idx = res - &list->dev->resource[0];
Rajesh Shah542df5d2005-04-28 00:25:50 -070060 if (pci_assign_resource(list->dev, idx)) {
Ivan Kokshaysky88452562008-03-30 19:50:14 +040061 /* FIXME: get rid of this */
Rajesh Shah542df5d2005-04-28 00:25:50 -070062 res->start = 0;
Ivan Kokshaysky960b8462005-07-07 03:07:56 +040063 res->end = 0;
Rajesh Shah542df5d2005-04-28 00:25:50 -070064 res->flags = 0;
65 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070066 tmp = list;
67 list = list->next;
68 kfree(tmp);
69 }
70}
71
Dominik Brodowskib3743fa2005-09-09 13:03:23 -070072void pci_setup_cardbus(struct pci_bus *bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -070073{
74 struct pci_dev *bridge = bus->self;
75 struct pci_bus_region region;
76
Bjorn Helgaas80ccba12008-06-13 10:52:11 -060077 dev_info(&bridge->dev, "CardBus bridge, secondary bus %04x:%02x\n",
78 pci_domain_nr(bus), bus->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -070079
80 pcibios_resource_to_bus(bridge, &region, bus->resource[0]);
81 if (bus->resource[0]->flags & IORESOURCE_IO) {
82 /*
83 * The IO resource is allocated a range twice as large as it
84 * would normally need. This allows us to set both IO regs.
85 */
Bjorn Helgaas80ccba12008-06-13 10:52:11 -060086 dev_info(&bridge->dev, " IO window: %#08lx-%#08lx\n",
Benjamin Herrenschmidtc40a22e2007-12-10 17:32:15 +110087 (unsigned long)region.start,
88 (unsigned long)region.end);
Linus Torvalds1da177e2005-04-16 15:20:36 -070089 pci_write_config_dword(bridge, PCI_CB_IO_BASE_0,
90 region.start);
91 pci_write_config_dword(bridge, PCI_CB_IO_LIMIT_0,
92 region.end);
93 }
94
95 pcibios_resource_to_bus(bridge, &region, bus->resource[1]);
96 if (bus->resource[1]->flags & IORESOURCE_IO) {
Bjorn Helgaas80ccba12008-06-13 10:52:11 -060097 dev_info(&bridge->dev, " IO window: %#08lx-%#08lx\n",
Benjamin Herrenschmidtc40a22e2007-12-10 17:32:15 +110098 (unsigned long)region.start,
99 (unsigned long)region.end);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 pci_write_config_dword(bridge, PCI_CB_IO_BASE_1,
101 region.start);
102 pci_write_config_dword(bridge, PCI_CB_IO_LIMIT_1,
103 region.end);
104 }
105
106 pcibios_resource_to_bus(bridge, &region, bus->resource[2]);
107 if (bus->resource[2]->flags & IORESOURCE_MEM) {
Bjorn Helgaas80ccba12008-06-13 10:52:11 -0600108 dev_info(&bridge->dev, " PREFETCH window: %#08lx-%#08lx\n",
Benjamin Herrenschmidtc40a22e2007-12-10 17:32:15 +1100109 (unsigned long)region.start,
110 (unsigned long)region.end);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 pci_write_config_dword(bridge, PCI_CB_MEMORY_BASE_0,
112 region.start);
113 pci_write_config_dword(bridge, PCI_CB_MEMORY_LIMIT_0,
114 region.end);
115 }
116
117 pcibios_resource_to_bus(bridge, &region, bus->resource[3]);
118 if (bus->resource[3]->flags & IORESOURCE_MEM) {
Bjorn Helgaas80ccba12008-06-13 10:52:11 -0600119 dev_info(&bridge->dev, " MEM window: %#08lx-%#08lx\n",
Benjamin Herrenschmidtc40a22e2007-12-10 17:32:15 +1100120 (unsigned long)region.start,
121 (unsigned long)region.end);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 pci_write_config_dword(bridge, PCI_CB_MEMORY_BASE_1,
123 region.start);
124 pci_write_config_dword(bridge, PCI_CB_MEMORY_LIMIT_1,
125 region.end);
126 }
127}
Dominik Brodowskib3743fa2005-09-09 13:03:23 -0700128EXPORT_SYMBOL(pci_setup_cardbus);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129
130/* Initialize bridges with base/limit values we have collected.
131 PCI-to-PCI Bridge Architecture Specification rev. 1.1 (1998)
132 requires that if there is no I/O ports or memory behind the
133 bridge, corresponding range must be turned off by writing base
134 value greater than limit to the bridge's base/limit registers.
135
136 Note: care must be taken when updating I/O base/limit registers
137 of bridges which support 32-bit I/O. This update requires two
138 config space writes, so it's quite possible that an I/O window of
139 the bridge will have some undesirable address (e.g. 0) after the
140 first write. Ditto 64-bit prefetchable MMIO. */
Adrian Bunka391f192008-04-18 13:53:57 -0700141static void pci_setup_bridge(struct pci_bus *bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142{
143 struct pci_dev *bridge = bus->self;
144 struct pci_bus_region region;
Benjamin Herrenschmidtc40a22e2007-12-10 17:32:15 +1100145 u32 l, bu, lu, io_upper16;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146
Bjorn Helgaas80ccba12008-06-13 10:52:11 -0600147 dev_info(&bridge->dev, "PCI bridge, secondary bus %04x:%02x\n",
148 pci_domain_nr(bus), bus->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149
150 /* Set up the top and bottom of the PCI I/O segment for this bus. */
151 pcibios_resource_to_bus(bridge, &region, bus->resource[0]);
152 if (bus->resource[0]->flags & IORESOURCE_IO) {
153 pci_read_config_dword(bridge, PCI_IO_BASE, &l);
154 l &= 0xffff0000;
155 l |= (region.start >> 8) & 0x00f0;
156 l |= region.end & 0xf000;
157 /* Set up upper 16 bits of I/O base/limit. */
158 io_upper16 = (region.end & 0xffff0000) | (region.start >> 16);
Bjorn Helgaas80ccba12008-06-13 10:52:11 -0600159 dev_info(&bridge->dev, " IO window: %#04lx-%#04lx\n",
Benjamin Herrenschmidtc40a22e2007-12-10 17:32:15 +1100160 (unsigned long)region.start,
161 (unsigned long)region.end);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 }
163 else {
164 /* Clear upper 16 bits of I/O base/limit. */
165 io_upper16 = 0;
166 l = 0x00f0;
Bjorn Helgaas80ccba12008-06-13 10:52:11 -0600167 dev_info(&bridge->dev, " IO window: disabled\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 }
169 /* Temporarily disable the I/O range before updating PCI_IO_BASE. */
170 pci_write_config_dword(bridge, PCI_IO_BASE_UPPER16, 0x0000ffff);
171 /* Update lower 16 bits of I/O base/limit. */
172 pci_write_config_dword(bridge, PCI_IO_BASE, l);
173 /* Update upper 16 bits of I/O base/limit. */
174 pci_write_config_dword(bridge, PCI_IO_BASE_UPPER16, io_upper16);
175
176 /* Set up the top and bottom of the PCI Memory segment
177 for this bus. */
178 pcibios_resource_to_bus(bridge, &region, bus->resource[1]);
179 if (bus->resource[1]->flags & IORESOURCE_MEM) {
180 l = (region.start >> 16) & 0xfff0;
181 l |= region.end & 0xfff00000;
Bjorn Helgaas80ccba12008-06-13 10:52:11 -0600182 dev_info(&bridge->dev, " MEM window: %#08lx-%#08lx\n",
Benjamin Herrenschmidtc40a22e2007-12-10 17:32:15 +1100183 (unsigned long)region.start,
184 (unsigned long)region.end);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 }
186 else {
187 l = 0x0000fff0;
Bjorn Helgaas80ccba12008-06-13 10:52:11 -0600188 dev_info(&bridge->dev, " MEM window: disabled\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 }
190 pci_write_config_dword(bridge, PCI_MEMORY_BASE, l);
191
192 /* Clear out the upper 32 bits of PREF limit.
193 If PCI_PREF_BASE_UPPER32 was non-zero, this temporarily
194 disables PREF range, which is ok. */
195 pci_write_config_dword(bridge, PCI_PREF_LIMIT_UPPER32, 0);
196
197 /* Set up PREF base/limit. */
Benjamin Herrenschmidtc40a22e2007-12-10 17:32:15 +1100198 bu = lu = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 pcibios_resource_to_bus(bridge, &region, bus->resource[2]);
200 if (bus->resource[2]->flags & IORESOURCE_PREFETCH) {
201 l = (region.start >> 16) & 0xfff0;
202 l |= region.end & 0xfff00000;
Andrew Morton13d36c22008-02-04 23:50:12 -0800203 bu = upper_32_bits(region.start);
204 lu = upper_32_bits(region.end);
Bjorn Helgaas80ccba12008-06-13 10:52:11 -0600205 dev_info(&bridge->dev, " PREFETCH window: %#016llx-%#016llx\n",
Benjamin Herrenschmidtc40a22e2007-12-10 17:32:15 +1100206 (unsigned long long)region.start,
207 (unsigned long long)region.end);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 }
209 else {
210 l = 0x0000fff0;
Bjorn Helgaas80ccba12008-06-13 10:52:11 -0600211 dev_info(&bridge->dev, " PREFETCH window: disabled\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 }
213 pci_write_config_dword(bridge, PCI_PREF_MEMORY_BASE, l);
214
Benjamin Herrenschmidtc40a22e2007-12-10 17:32:15 +1100215 /* Set the upper 32 bits of PREF base & limit. */
216 pci_write_config_dword(bridge, PCI_PREF_BASE_UPPER32, bu);
217 pci_write_config_dword(bridge, PCI_PREF_LIMIT_UPPER32, lu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218
219 pci_write_config_word(bridge, PCI_BRIDGE_CONTROL, bus->bridge_ctl);
220}
221
222/* Check whether the bridge supports optional I/O and
223 prefetchable memory ranges. If not, the respective
224 base/limit registers must be read-only and read as 0. */
Sam Ravnborg96bde062007-03-26 21:53:30 -0800225static void pci_bridge_check_ranges(struct pci_bus *bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226{
227 u16 io;
228 u32 pmem;
229 struct pci_dev *bridge = bus->self;
230 struct resource *b_res;
231
232 b_res = &bridge->resource[PCI_BRIDGE_RESOURCES];
233 b_res[1].flags |= IORESOURCE_MEM;
234
235 pci_read_config_word(bridge, PCI_IO_BASE, &io);
236 if (!io) {
237 pci_write_config_word(bridge, PCI_IO_BASE, 0xf0f0);
238 pci_read_config_word(bridge, PCI_IO_BASE, &io);
239 pci_write_config_word(bridge, PCI_IO_BASE, 0x0);
240 }
241 if (io)
242 b_res[0].flags |= IORESOURCE_IO;
243 /* DECchip 21050 pass 2 errata: the bridge may miss an address
244 disconnect boundary by one PCI data phase.
245 Workaround: do not use prefetching on this device. */
246 if (bridge->vendor == PCI_VENDOR_ID_DEC && bridge->device == 0x0001)
247 return;
248 pci_read_config_dword(bridge, PCI_PREF_MEMORY_BASE, &pmem);
249 if (!pmem) {
250 pci_write_config_dword(bridge, PCI_PREF_MEMORY_BASE,
251 0xfff0fff0);
252 pci_read_config_dword(bridge, PCI_PREF_MEMORY_BASE, &pmem);
253 pci_write_config_dword(bridge, PCI_PREF_MEMORY_BASE, 0x0);
254 }
255 if (pmem)
256 b_res[2].flags |= IORESOURCE_MEM | IORESOURCE_PREFETCH;
257}
258
259/* Helper function for sizing routines: find first available
260 bus resource of a given type. Note: we intentionally skip
261 the bus resources which have already been assigned (that is,
262 have non-NULL parent resource). */
Sam Ravnborg96bde062007-03-26 21:53:30 -0800263static struct resource *find_free_bus_resource(struct pci_bus *bus, unsigned long type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264{
265 int i;
266 struct resource *r;
267 unsigned long type_mask = IORESOURCE_IO | IORESOURCE_MEM |
268 IORESOURCE_PREFETCH;
269
270 for (i = 0; i < PCI_BUS_NUM_RESOURCES; i++) {
271 r = bus->resource[i];
Ivan Kokshaysky299de032005-06-15 18:59:27 +0400272 if (r == &ioport_resource || r == &iomem_resource)
273 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 if (r && (r->flags & type_mask) == type && !r->parent)
275 return r;
276 }
277 return NULL;
278}
279
280/* Sizing the IO windows of the PCI-PCI bridge is trivial,
281 since these windows have 4K granularity and the IO ranges
282 of non-bridge PCI devices are limited to 256 bytes.
283 We must be careful with the ISA aliasing though. */
Sam Ravnborg96bde062007-03-26 21:53:30 -0800284static void pbus_size_io(struct pci_bus *bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285{
286 struct pci_dev *dev;
287 struct resource *b_res = find_free_bus_resource(bus, IORESOURCE_IO);
288 unsigned long size = 0, size1 = 0;
289
290 if (!b_res)
291 return;
292
293 list_for_each_entry(dev, &bus->devices, bus_list) {
294 int i;
295
296 for (i = 0; i < PCI_NUM_RESOURCES; i++) {
297 struct resource *r = &dev->resource[i];
298 unsigned long r_size;
299
300 if (r->parent || !(r->flags & IORESOURCE_IO))
301 continue;
302 r_size = r->end - r->start + 1;
303
304 if (r_size < 0x400)
305 /* Might be re-aligned for ISA */
306 size += r_size;
307 else
308 size1 += r_size;
309 }
310 }
311/* To be fixed in 2.5: we should have sort of HAVE_ISA
312 flag in the struct pci_bus. */
313#if defined(CONFIG_ISA) || defined(CONFIG_EISA)
314 size = (size & 0xff) + ((size & ~0xffUL) << 2);
315#endif
Milind Arun Choudhary6f6f8c22007-07-09 11:55:51 -0700316 size = ALIGN(size + size1, 4096);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 if (!size) {
318 b_res->flags = 0;
319 return;
320 }
321 /* Alignment of the IO window is always 4K */
322 b_res->start = 4096;
323 b_res->end = b_res->start + size - 1;
Ivan Kokshaysky88452562008-03-30 19:50:14 +0400324 b_res->flags |= IORESOURCE_STARTALIGN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325}
326
327/* Calculate the size of the bus and minimal alignment which
328 guarantees that all child resources fit in this size. */
Sam Ravnborg96bde062007-03-26 21:53:30 -0800329static int pbus_size_mem(struct pci_bus *bus, unsigned long mask, unsigned long type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330{
331 struct pci_dev *dev;
Benjamin Herrenschmidtc40a22e2007-12-10 17:32:15 +1100332 resource_size_t min_align, align, size;
333 resource_size_t aligns[12]; /* Alignments from 1Mb to 2Gb */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 int order, max_order;
335 struct resource *b_res = find_free_bus_resource(bus, type);
336
337 if (!b_res)
338 return 0;
339
340 memset(aligns, 0, sizeof(aligns));
341 max_order = 0;
342 size = 0;
343
344 list_for_each_entry(dev, &bus->devices, bus_list) {
345 int i;
346
347 for (i = 0; i < PCI_NUM_RESOURCES; i++) {
348 struct resource *r = &dev->resource[i];
Benjamin Herrenschmidtc40a22e2007-12-10 17:32:15 +1100349 resource_size_t r_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350
351 if (r->parent || (r->flags & mask) != type)
352 continue;
353 r_size = r->end - r->start + 1;
354 /* For bridges size != alignment */
Linus Torvalds5f17cfc2008-09-04 01:33:59 -0700355 align = resource_alignment(r);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 order = __ffs(align) - 20;
357 if (order > 11) {
Linus Torvalds5f17cfc2008-09-04 01:33:59 -0700358 dev_warn(&dev->dev, "BAR %d bad alignment %llx: "
Bjorn Helgaas80ccba12008-06-13 10:52:11 -0600359 "%#016llx-%#016llx\n", i,
Linus Torvalds5f17cfc2008-09-04 01:33:59 -0700360 (unsigned long long)align,
Benjamin Herrenschmidtc40a22e2007-12-10 17:32:15 +1100361 (unsigned long long)r->start,
362 (unsigned long long)r->end);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 r->flags = 0;
364 continue;
365 }
366 size += r_size;
367 if (order < 0)
368 order = 0;
369 /* Exclude ranges with size > align from
370 calculation of the alignment. */
371 if (r_size == align)
372 aligns[order] += align;
373 if (order > max_order)
374 max_order = order;
375 }
376 }
377
378 align = 0;
379 min_align = 0;
380 for (order = 0; order <= max_order; order++) {
Benjamin Herrenschmidtc40a22e2007-12-10 17:32:15 +1100381#ifdef CONFIG_RESOURCES_64BIT
382 resource_size_t align1 = 1ULL << (order + 20);
383#else
384 resource_size_t align1 = 1U << (order + 20);
385#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 if (!align)
387 min_align = align1;
Milind Arun Choudhary6f6f8c22007-07-09 11:55:51 -0700388 else if (ALIGN(align + min_align, min_align) < align1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 min_align = align1 >> 1;
390 align += aligns[order];
391 }
Milind Arun Choudhary6f6f8c22007-07-09 11:55:51 -0700392 size = ALIGN(size, min_align);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 if (!size) {
394 b_res->flags = 0;
395 return 1;
396 }
397 b_res->start = min_align;
398 b_res->end = size + min_align - 1;
Ivan Kokshaysky88452562008-03-30 19:50:14 +0400399 b_res->flags |= IORESOURCE_STARTALIGN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 return 1;
401}
402
Adrian Bunk5468ae62008-04-18 13:53:56 -0700403static void pci_bus_size_cardbus(struct pci_bus *bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404{
405 struct pci_dev *bridge = bus->self;
406 struct resource *b_res = &bridge->resource[PCI_BRIDGE_RESOURCES];
407 u16 ctrl;
408
409 /*
410 * Reserve some resources for CardBus. We reserve
411 * a fixed amount of bus space for CardBus bridges.
412 */
Linus Torvalds934b7022008-04-22 18:16:30 -0700413 b_res[0].start = 0;
414 b_res[0].end = pci_cardbus_io_size - 1;
415 b_res[0].flags |= IORESOURCE_IO | IORESOURCE_SIZEALIGN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416
Linus Torvalds934b7022008-04-22 18:16:30 -0700417 b_res[1].start = 0;
418 b_res[1].end = pci_cardbus_io_size - 1;
419 b_res[1].flags |= IORESOURCE_IO | IORESOURCE_SIZEALIGN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420
421 /*
422 * Check whether prefetchable memory is supported
423 * by this bridge.
424 */
425 pci_read_config_word(bridge, PCI_CB_BRIDGE_CONTROL, &ctrl);
426 if (!(ctrl & PCI_CB_BRIDGE_CTL_PREFETCH_MEM0)) {
427 ctrl |= PCI_CB_BRIDGE_CTL_PREFETCH_MEM0;
428 pci_write_config_word(bridge, PCI_CB_BRIDGE_CONTROL, ctrl);
429 pci_read_config_word(bridge, PCI_CB_BRIDGE_CONTROL, &ctrl);
430 }
431
432 /*
433 * If we have prefetchable memory support, allocate
434 * two regions. Otherwise, allocate one region of
435 * twice the size.
436 */
437 if (ctrl & PCI_CB_BRIDGE_CTL_PREFETCH_MEM0) {
Linus Torvalds934b7022008-04-22 18:16:30 -0700438 b_res[2].start = 0;
439 b_res[2].end = pci_cardbus_mem_size - 1;
440 b_res[2].flags |= IORESOURCE_MEM | IORESOURCE_PREFETCH | IORESOURCE_SIZEALIGN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441
Linus Torvalds934b7022008-04-22 18:16:30 -0700442 b_res[3].start = 0;
443 b_res[3].end = pci_cardbus_mem_size - 1;
444 b_res[3].flags |= IORESOURCE_MEM | IORESOURCE_SIZEALIGN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 } else {
Linus Torvalds934b7022008-04-22 18:16:30 -0700446 b_res[3].start = 0;
447 b_res[3].end = pci_cardbus_mem_size * 2 - 1;
448 b_res[3].flags |= IORESOURCE_MEM | IORESOURCE_SIZEALIGN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 }
450}
451
Sam Ravnborg451124a2008-02-02 22:33:43 +0100452void __ref pci_bus_size_bridges(struct pci_bus *bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453{
454 struct pci_dev *dev;
455 unsigned long mask, prefmask;
456
457 list_for_each_entry(dev, &bus->devices, bus_list) {
458 struct pci_bus *b = dev->subordinate;
459 if (!b)
460 continue;
461
462 switch (dev->class >> 8) {
463 case PCI_CLASS_BRIDGE_CARDBUS:
464 pci_bus_size_cardbus(b);
465 break;
466
467 case PCI_CLASS_BRIDGE_PCI:
468 default:
469 pci_bus_size_bridges(b);
470 break;
471 }
472 }
473
474 /* The root bus? */
475 if (!bus->self)
476 return;
477
478 switch (bus->self->class >> 8) {
479 case PCI_CLASS_BRIDGE_CARDBUS:
480 /* don't size cardbuses yet. */
481 break;
482
483 case PCI_CLASS_BRIDGE_PCI:
484 pci_bridge_check_ranges(bus);
485 default:
486 pbus_size_io(bus);
487 /* If the bridge supports prefetchable range, size it
488 separately. If it doesn't, or its prefetchable window
489 has already been allocated by arch code, try
490 non-prefetchable range for both types of PCI memory
491 resources. */
492 mask = IORESOURCE_MEM;
493 prefmask = IORESOURCE_MEM | IORESOURCE_PREFETCH;
494 if (pbus_size_mem(bus, prefmask, prefmask))
495 mask = prefmask; /* Success, size non-prefetch only. */
496 pbus_size_mem(bus, mask, IORESOURCE_MEM);
497 break;
498 }
499}
500EXPORT_SYMBOL(pci_bus_size_bridges);
501
Sam Ravnborg451124a2008-02-02 22:33:43 +0100502void __ref pci_bus_assign_resources(struct pci_bus *bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503{
504 struct pci_bus *b;
505 struct pci_dev *dev;
506
507 pbus_assign_resources_sorted(bus);
508
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 list_for_each_entry(dev, &bus->devices, bus_list) {
510 b = dev->subordinate;
511 if (!b)
512 continue;
513
514 pci_bus_assign_resources(b);
515
516 switch (dev->class >> 8) {
517 case PCI_CLASS_BRIDGE_PCI:
518 pci_setup_bridge(b);
519 break;
520
521 case PCI_CLASS_BRIDGE_CARDBUS:
522 pci_setup_cardbus(b);
523 break;
524
525 default:
Bjorn Helgaas80ccba12008-06-13 10:52:11 -0600526 dev_info(&dev->dev, "not setting up bridge for bus "
527 "%04x:%02x\n", pci_domain_nr(b), b->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 break;
529 }
530 }
531}
532EXPORT_SYMBOL(pci_bus_assign_resources);
533
Yinghai Lu76fbc262008-06-23 20:33:06 +0200534static void pci_bus_dump_res(struct pci_bus *bus)
535{
536 int i;
537
538 for (i = 0; i < PCI_BUS_NUM_RESOURCES; i++) {
539 struct resource *res = bus->resource[i];
540 if (!res)
541 continue;
542
543 printk(KERN_INFO "bus: %02x index %x %s: [%llx, %llx]\n", bus->number, i, (res->flags & IORESOURCE_IO)? "io port":"mmio", res->start, res->end);
544 }
545}
546
547static void pci_bus_dump_resources(struct pci_bus *bus)
548{
549 struct pci_bus *b;
550 struct pci_dev *dev;
551
552
553 pci_bus_dump_res(bus);
554
555 list_for_each_entry(dev, &bus->devices, bus_list) {
556 b = dev->subordinate;
557 if (!b)
558 continue;
559
560 pci_bus_dump_resources(b);
561 }
562}
563
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564void __init
565pci_assign_unassigned_resources(void)
566{
567 struct pci_bus *bus;
568
569 /* Depth first, calculate sizes and alignments of all
570 subordinate buses. */
571 list_for_each_entry(bus, &pci_root_buses, node) {
572 pci_bus_size_bridges(bus);
573 }
574 /* Depth last, allocate resources and update the hardware. */
575 list_for_each_entry(bus, &pci_root_buses, node) {
576 pci_bus_assign_resources(bus);
577 pci_enable_bridges(bus);
578 }
Yinghai Lu76fbc262008-06-23 20:33:06 +0200579
580 /* dump the resource on buses */
581 list_for_each_entry(bus, &pci_root_buses, node) {
582 pci_bus_dump_resources(bus);
583 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584}