Merge tag 'kvm-s390-master-4.16-3' of git://git.kernel.org/pub/scm/linux/kernel/git...
[linux-block.git] / drivers / pci / probe.c
CommitLineData
7328c8f4 1// SPDX-License-Identifier: GPL-2.0
1da177e4
LT
2/*
3 * probe.c - PCI detection and setup code
4 */
5
6#include <linux/kernel.h>
7#include <linux/delay.h>
8#include <linux/init.h>
9#include <linux/pci.h>
50230713 10#include <linux/of_device.h>
de335bb4 11#include <linux/of_pci.h>
589fcc23 12#include <linux/pci_hotplug.h>
1da177e4
LT
13#include <linux/slab.h>
14#include <linux/module.h>
15#include <linux/cpumask.h>
7d715a6c 16#include <linux/pci-aspm.h>
b07461a8 17#include <linux/aer.h>
29dbe1f0 18#include <linux/acpi.h>
788858eb 19#include <linux/irqdomain.h>
d963f651 20#include <linux/pm_runtime.h>
bc56b9e0 21#include "pci.h"
1da177e4
LT
22
23#define CARDBUS_LATENCY_TIMER 176 /* secondary latency timer */
24#define CARDBUS_RESERVE_BUSNR 3
1da177e4 25
0b950f0f 26static struct resource busn_resource = {
67cdc827
YL
27 .name = "PCI busn",
28 .start = 0,
29 .end = 255,
30 .flags = IORESOURCE_BUS,
31};
32
1da177e4
LT
33/* Ugh. Need to stop exporting this to modules. */
34LIST_HEAD(pci_root_buses);
35EXPORT_SYMBOL(pci_root_buses);
36
5cc62c20
YL
37static LIST_HEAD(pci_domain_busn_res_list);
38
39struct pci_domain_busn_res {
40 struct list_head list;
41 struct resource res;
42 int domain_nr;
43};
44
45static struct resource *get_pci_domain_busn_res(int domain_nr)
46{
47 struct pci_domain_busn_res *r;
48
49 list_for_each_entry(r, &pci_domain_busn_res_list, list)
50 if (r->domain_nr == domain_nr)
51 return &r->res;
52
53 r = kzalloc(sizeof(*r), GFP_KERNEL);
54 if (!r)
55 return NULL;
56
57 r->domain_nr = domain_nr;
58 r->res.start = 0;
59 r->res.end = 0xff;
60 r->res.flags = IORESOURCE_BUS | IORESOURCE_PCI_FIXED;
61
62 list_add_tail(&r->list, &pci_domain_busn_res_list);
63
64 return &r->res;
65}
66
70308923
GKH
67static int find_anything(struct device *dev, void *data)
68{
69 return 1;
70}
1da177e4 71
ed4aaadb 72/*
3e466e2d
BH
73 * Some device drivers need know if PCI is initiated.
74 * Basically, we think PCI is not initiated when there
70308923 75 * is no device to be found on the pci_bus_type.
ed4aaadb
ZY
76 */
77int no_pci_devices(void)
78{
70308923
GKH
79 struct device *dev;
80 int no_devices;
ed4aaadb 81
70308923
GKH
82 dev = bus_find_device(&pci_bus_type, NULL, NULL, find_anything);
83 no_devices = (dev == NULL);
84 put_device(dev);
85 return no_devices;
86}
ed4aaadb
ZY
87EXPORT_SYMBOL(no_pci_devices);
88
1da177e4
LT
89/*
90 * PCI Bus Class
91 */
fd7d1ced 92static void release_pcibus_dev(struct device *dev)
1da177e4 93{
fd7d1ced 94 struct pci_bus *pci_bus = to_pci_bus(dev);
1da177e4 95
ff0387c3 96 put_device(pci_bus->bridge);
2fe2abf8 97 pci_bus_remove_resources(pci_bus);
98d9f30c 98 pci_release_bus_of_node(pci_bus);
1da177e4
LT
99 kfree(pci_bus);
100}
101
102static struct class pcibus_class = {
103 .name = "pci_bus",
fd7d1ced 104 .dev_release = &release_pcibus_dev,
56039e65 105 .dev_groups = pcibus_groups,
1da177e4
LT
106};
107
108static int __init pcibus_class_init(void)
109{
110 return class_register(&pcibus_class);
111}
112postcore_initcall(pcibus_class_init);
113
6ac665c6 114static u64 pci_size(u64 base, u64 maxbase, u64 mask)
1da177e4 115{
6ac665c6 116 u64 size = mask & maxbase; /* Find the significant bits */
1da177e4
LT
117 if (!size)
118 return 0;
119
3e466e2d
BH
120 /*
121 * Get the lowest of them to find the decode size, and from that
122 * the extent.
123 */
1da177e4
LT
124 size = (size & ~(size-1)) - 1;
125
3e466e2d
BH
126 /*
127 * base == maxbase can be valid only if the BAR has already been
128 * programmed with all 1s.
129 */
1da177e4
LT
130 if (base == maxbase && ((base | size) & mask) != mask)
131 return 0;
132
133 return size;
134}
135
28c6821a 136static inline unsigned long decode_bar(struct pci_dev *dev, u32 bar)
6ac665c6 137{
8d6a6a47 138 u32 mem_type;
28c6821a 139 unsigned long flags;
8d6a6a47 140
6ac665c6 141 if ((bar & PCI_BASE_ADDRESS_SPACE) == PCI_BASE_ADDRESS_SPACE_IO) {
28c6821a
BH
142 flags = bar & ~PCI_BASE_ADDRESS_IO_MASK;
143 flags |= IORESOURCE_IO;
144 return flags;
6ac665c6 145 }
07eddf3d 146
28c6821a
BH
147 flags = bar & ~PCI_BASE_ADDRESS_MEM_MASK;
148 flags |= IORESOURCE_MEM;
149 if (flags & PCI_BASE_ADDRESS_MEM_PREFETCH)
150 flags |= IORESOURCE_PREFETCH;
07eddf3d 151
8d6a6a47
BH
152 mem_type = bar & PCI_BASE_ADDRESS_MEM_TYPE_MASK;
153 switch (mem_type) {
154 case PCI_BASE_ADDRESS_MEM_TYPE_32:
155 break;
156 case PCI_BASE_ADDRESS_MEM_TYPE_1M:
0ff9514b 157 /* 1M mem BAR treated as 32-bit BAR */
8d6a6a47
BH
158 break;
159 case PCI_BASE_ADDRESS_MEM_TYPE_64:
28c6821a
BH
160 flags |= IORESOURCE_MEM_64;
161 break;
8d6a6a47 162 default:
0ff9514b 163 /* mem unknown type treated as 32-bit BAR */
8d6a6a47
BH
164 break;
165 }
28c6821a 166 return flags;
07eddf3d
YL
167}
168
808e34e2
ZK
169#define PCI_COMMAND_DECODE_ENABLE (PCI_COMMAND_MEMORY | PCI_COMMAND_IO)
170
0b400c7e 171/**
3e466e2d 172 * pci_read_base - Read a PCI BAR
0b400c7e
YZ
173 * @dev: the PCI device
174 * @type: type of the BAR
175 * @res: resource buffer to be filled in
176 * @pos: BAR position in the config space
177 *
178 * Returns 1 if the BAR is 64-bit, or 0 if 32-bit.
6ac665c6 179 */
0b400c7e 180int __pci_read_base(struct pci_dev *dev, enum pci_bar_type type,
3c78bc61 181 struct resource *res, unsigned int pos)
07eddf3d 182{
dc5205ef 183 u32 l = 0, sz = 0, mask;
23b13bc7 184 u64 l64, sz64, mask64;
253d2e54 185 u16 orig_cmd;
cf4d1cf5 186 struct pci_bus_region region, inverted_region;
6ac665c6 187
1ed67439 188 mask = type ? PCI_ROM_ADDRESS_MASK : ~0;
6ac665c6 189
0ff9514b 190 /* No printks while decoding is disabled! */
253d2e54
JP
191 if (!dev->mmio_always_on) {
192 pci_read_config_word(dev, PCI_COMMAND, &orig_cmd);
808e34e2
ZK
193 if (orig_cmd & PCI_COMMAND_DECODE_ENABLE) {
194 pci_write_config_word(dev, PCI_COMMAND,
195 orig_cmd & ~PCI_COMMAND_DECODE_ENABLE);
196 }
253d2e54
JP
197 }
198
6ac665c6
MW
199 res->name = pci_name(dev);
200
201 pci_read_config_dword(dev, pos, &l);
1ed67439 202 pci_write_config_dword(dev, pos, l | mask);
6ac665c6
MW
203 pci_read_config_dword(dev, pos, &sz);
204 pci_write_config_dword(dev, pos, l);
205
206 /*
207 * All bits set in sz means the device isn't working properly.
45aa23b4
BH
208 * If the BAR isn't implemented, all bits must be 0. If it's a
209 * memory BAR or a ROM, bit 0 must be clear; if it's an io BAR, bit
210 * 1 must be clear.
6ac665c6 211 */
f795d86a
MS
212 if (sz == 0xffffffff)
213 sz = 0;
6ac665c6
MW
214
215 /*
216 * I don't know how l can have all bits set. Copied from old code.
217 * Maybe it fixes a bug on some ancient platform.
218 */
219 if (l == 0xffffffff)
220 l = 0;
221
222 if (type == pci_bar_unknown) {
28c6821a
BH
223 res->flags = decode_bar(dev, l);
224 res->flags |= IORESOURCE_SIZEALIGN;
225 if (res->flags & IORESOURCE_IO) {
f795d86a
MS
226 l64 = l & PCI_BASE_ADDRESS_IO_MASK;
227 sz64 = sz & PCI_BASE_ADDRESS_IO_MASK;
228 mask64 = PCI_BASE_ADDRESS_IO_MASK & (u32)IO_SPACE_LIMIT;
6ac665c6 229 } else {
f795d86a
MS
230 l64 = l & PCI_BASE_ADDRESS_MEM_MASK;
231 sz64 = sz & PCI_BASE_ADDRESS_MEM_MASK;
232 mask64 = (u32)PCI_BASE_ADDRESS_MEM_MASK;
6ac665c6
MW
233 }
234 } else {
7a6d312b
BH
235 if (l & PCI_ROM_ADDRESS_ENABLE)
236 res->flags |= IORESOURCE_ROM_ENABLE;
f795d86a
MS
237 l64 = l & PCI_ROM_ADDRESS_MASK;
238 sz64 = sz & PCI_ROM_ADDRESS_MASK;
76dc5268 239 mask64 = PCI_ROM_ADDRESS_MASK;
6ac665c6
MW
240 }
241
28c6821a 242 if (res->flags & IORESOURCE_MEM_64) {
6ac665c6
MW
243 pci_read_config_dword(dev, pos + 4, &l);
244 pci_write_config_dword(dev, pos + 4, ~0);
245 pci_read_config_dword(dev, pos + 4, &sz);
246 pci_write_config_dword(dev, pos + 4, l);
247
248 l64 |= ((u64)l << 32);
249 sz64 |= ((u64)sz << 32);
f795d86a
MS
250 mask64 |= ((u64)~0 << 32);
251 }
6ac665c6 252
f795d86a
MS
253 if (!dev->mmio_always_on && (orig_cmd & PCI_COMMAND_DECODE_ENABLE))
254 pci_write_config_word(dev, PCI_COMMAND, orig_cmd);
6ac665c6 255
f795d86a
MS
256 if (!sz64)
257 goto fail;
6ac665c6 258
f795d86a 259 sz64 = pci_size(l64, sz64, mask64);
7e79c5f8 260 if (!sz64) {
7506dc79 261 pci_info(dev, FW_BUG "reg 0x%x: invalid BAR (can't size)\n",
7e79c5f8 262 pos);
f795d86a 263 goto fail;
7e79c5f8 264 }
f795d86a
MS
265
266 if (res->flags & IORESOURCE_MEM_64) {
3a9ad0b4
YL
267 if ((sizeof(pci_bus_addr_t) < 8 || sizeof(resource_size_t) < 8)
268 && sz64 > 0x100000000ULL) {
23b13bc7
BH
269 res->flags |= IORESOURCE_UNSET | IORESOURCE_DISABLED;
270 res->start = 0;
271 res->end = 0;
7506dc79 272 pci_err(dev, "reg 0x%x: can't handle BAR larger than 4GB (size %#010llx)\n",
f795d86a 273 pos, (unsigned long long)sz64);
23b13bc7 274 goto out;
c7dabef8
BH
275 }
276
3a9ad0b4 277 if ((sizeof(pci_bus_addr_t) < 8) && l) {
31e9dd25 278 /* Above 32-bit boundary; try to reallocate */
c83bd900 279 res->flags |= IORESOURCE_UNSET;
72dc5601
BH
280 res->start = 0;
281 res->end = sz64;
7506dc79 282 pci_info(dev, "reg 0x%x: can't handle BAR above 4GB (bus address %#010llx)\n",
f795d86a 283 pos, (unsigned long long)l64);
72dc5601 284 goto out;
6ac665c6 285 }
6ac665c6
MW
286 }
287
f795d86a
MS
288 region.start = l64;
289 region.end = l64 + sz64;
290
fc279850
YL
291 pcibios_bus_to_resource(dev->bus, res, &region);
292 pcibios_resource_to_bus(dev->bus, &inverted_region, res);
cf4d1cf5
KH
293
294 /*
295 * If "A" is a BAR value (a bus address), "bus_to_resource(A)" is
296 * the corresponding resource address (the physical address used by
297 * the CPU. Converting that resource address back to a bus address
298 * should yield the original BAR value:
299 *
300 * resource_to_bus(bus_to_resource(A)) == A
301 *
302 * If it doesn't, CPU accesses to "bus_to_resource(A)" will not
303 * be claimed by the device.
304 */
305 if (inverted_region.start != region.start) {
cf4d1cf5 306 res->flags |= IORESOURCE_UNSET;
cf4d1cf5 307 res->start = 0;
26370fc6 308 res->end = region.end - region.start;
7506dc79 309 pci_info(dev, "reg 0x%x: initial BAR value %#010llx invalid\n",
f795d86a 310 pos, (unsigned long long)region.start);
cf4d1cf5 311 }
96ddef25 312
0ff9514b
BH
313 goto out;
314
315
316fail:
317 res->flags = 0;
318out:
31e9dd25 319 if (res->flags)
7506dc79 320 pci_printk(KERN_DEBUG, dev, "reg 0x%x: %pR\n", pos, res);
0ff9514b 321
28c6821a 322 return (res->flags & IORESOURCE_MEM_64) ? 1 : 0;
07eddf3d
YL
323}
324
1da177e4
LT
325static void pci_read_bases(struct pci_dev *dev, unsigned int howmany, int rom)
326{
6ac665c6 327 unsigned int pos, reg;
07eddf3d 328
ad67b437
PB
329 if (dev->non_compliant_bars)
330 return;
331
6ac665c6
MW
332 for (pos = 0; pos < howmany; pos++) {
333 struct resource *res = &dev->resource[pos];
1da177e4 334 reg = PCI_BASE_ADDRESS_0 + (pos << 2);
6ac665c6 335 pos += __pci_read_base(dev, pci_bar_unknown, res, reg);
1da177e4 336 }
6ac665c6 337
1da177e4 338 if (rom) {
6ac665c6 339 struct resource *res = &dev->resource[PCI_ROM_RESOURCE];
1da177e4 340 dev->rom_base_reg = rom;
6ac665c6 341 res->flags = IORESOURCE_MEM | IORESOURCE_PREFETCH |
92b19ff5 342 IORESOURCE_READONLY | IORESOURCE_SIZEALIGN;
6ac665c6 343 __pci_read_base(dev, pci_bar_mem32, res, rom);
1da177e4
LT
344 }
345}
346
15856ad5 347static void pci_read_bridge_io(struct pci_bus *child)
1da177e4
LT
348{
349 struct pci_dev *dev = child->self;
350 u8 io_base_lo, io_limit_lo;
2b28ae19 351 unsigned long io_mask, io_granularity, base, limit;
5bfa14ed 352 struct pci_bus_region region;
2b28ae19
BH
353 struct resource *res;
354
355 io_mask = PCI_IO_RANGE_MASK;
356 io_granularity = 0x1000;
357 if (dev->io_window_1k) {
358 /* Support 1K I/O space granularity */
359 io_mask = PCI_IO_1K_RANGE_MASK;
360 io_granularity = 0x400;
361 }
1da177e4 362
1da177e4
LT
363 res = child->resource[0];
364 pci_read_config_byte(dev, PCI_IO_BASE, &io_base_lo);
365 pci_read_config_byte(dev, PCI_IO_LIMIT, &io_limit_lo);
2b28ae19
BH
366 base = (io_base_lo & io_mask) << 8;
367 limit = (io_limit_lo & io_mask) << 8;
1da177e4
LT
368
369 if ((io_base_lo & PCI_IO_RANGE_TYPE_MASK) == PCI_IO_RANGE_TYPE_32) {
370 u16 io_base_hi, io_limit_hi;
8f38eaca 371
1da177e4
LT
372 pci_read_config_word(dev, PCI_IO_BASE_UPPER16, &io_base_hi);
373 pci_read_config_word(dev, PCI_IO_LIMIT_UPPER16, &io_limit_hi);
8f38eaca
BH
374 base |= ((unsigned long) io_base_hi << 16);
375 limit |= ((unsigned long) io_limit_hi << 16);
1da177e4
LT
376 }
377
5dde383e 378 if (base <= limit) {
1da177e4 379 res->flags = (io_base_lo & PCI_IO_RANGE_TYPE_MASK) | IORESOURCE_IO;
5bfa14ed 380 region.start = base;
2b28ae19 381 region.end = limit + io_granularity - 1;
fc279850 382 pcibios_bus_to_resource(dev->bus, res, &region);
7506dc79 383 pci_printk(KERN_DEBUG, dev, " bridge window %pR\n", res);
1da177e4 384 }
fa27b2d1
BH
385}
386
15856ad5 387static void pci_read_bridge_mmio(struct pci_bus *child)
fa27b2d1
BH
388{
389 struct pci_dev *dev = child->self;
390 u16 mem_base_lo, mem_limit_lo;
391 unsigned long base, limit;
5bfa14ed 392 struct pci_bus_region region;
fa27b2d1 393 struct resource *res;
1da177e4
LT
394
395 res = child->resource[1];
396 pci_read_config_word(dev, PCI_MEMORY_BASE, &mem_base_lo);
397 pci_read_config_word(dev, PCI_MEMORY_LIMIT, &mem_limit_lo);
8f38eaca
BH
398 base = ((unsigned long) mem_base_lo & PCI_MEMORY_RANGE_MASK) << 16;
399 limit = ((unsigned long) mem_limit_lo & PCI_MEMORY_RANGE_MASK) << 16;
5dde383e 400 if (base <= limit) {
1da177e4 401 res->flags = (mem_base_lo & PCI_MEMORY_RANGE_TYPE_MASK) | IORESOURCE_MEM;
5bfa14ed
BH
402 region.start = base;
403 region.end = limit + 0xfffff;
fc279850 404 pcibios_bus_to_resource(dev->bus, res, &region);
7506dc79 405 pci_printk(KERN_DEBUG, dev, " bridge window %pR\n", res);
1da177e4 406 }
fa27b2d1
BH
407}
408
15856ad5 409static void pci_read_bridge_mmio_pref(struct pci_bus *child)
fa27b2d1
BH
410{
411 struct pci_dev *dev = child->self;
412 u16 mem_base_lo, mem_limit_lo;
7fc986d8 413 u64 base64, limit64;
3a9ad0b4 414 pci_bus_addr_t base, limit;
5bfa14ed 415 struct pci_bus_region region;
fa27b2d1 416 struct resource *res;
1da177e4
LT
417
418 res = child->resource[2];
419 pci_read_config_word(dev, PCI_PREF_MEMORY_BASE, &mem_base_lo);
420 pci_read_config_word(dev, PCI_PREF_MEMORY_LIMIT, &mem_limit_lo);
7fc986d8
YL
421 base64 = (mem_base_lo & PCI_PREF_RANGE_MASK) << 16;
422 limit64 = (mem_limit_lo & PCI_PREF_RANGE_MASK) << 16;
1da177e4
LT
423
424 if ((mem_base_lo & PCI_PREF_RANGE_TYPE_MASK) == PCI_PREF_RANGE_TYPE_64) {
425 u32 mem_base_hi, mem_limit_hi;
8f38eaca 426
1da177e4
LT
427 pci_read_config_dword(dev, PCI_PREF_BASE_UPPER32, &mem_base_hi);
428 pci_read_config_dword(dev, PCI_PREF_LIMIT_UPPER32, &mem_limit_hi);
429
430 /*
431 * Some bridges set the base > limit by default, and some
432 * (broken) BIOSes do not initialize them. If we find
433 * this, just assume they are not being used.
434 */
435 if (mem_base_hi <= mem_limit_hi) {
7fc986d8
YL
436 base64 |= (u64) mem_base_hi << 32;
437 limit64 |= (u64) mem_limit_hi << 32;
1da177e4
LT
438 }
439 }
7fc986d8 440
3a9ad0b4
YL
441 base = (pci_bus_addr_t) base64;
442 limit = (pci_bus_addr_t) limit64;
7fc986d8
YL
443
444 if (base != base64) {
7506dc79 445 pci_err(dev, "can't handle bridge window above 4GB (bus address %#010llx)\n",
7fc986d8
YL
446 (unsigned long long) base64);
447 return;
448 }
449
5dde383e 450 if (base <= limit) {
1f82de10
YL
451 res->flags = (mem_base_lo & PCI_PREF_RANGE_TYPE_MASK) |
452 IORESOURCE_MEM | IORESOURCE_PREFETCH;
453 if (res->flags & PCI_PREF_RANGE_TYPE_64)
454 res->flags |= IORESOURCE_MEM_64;
5bfa14ed
BH
455 region.start = base;
456 region.end = limit + 0xfffff;
fc279850 457 pcibios_bus_to_resource(dev->bus, res, &region);
7506dc79 458 pci_printk(KERN_DEBUG, dev, " bridge window %pR\n", res);
1da177e4
LT
459 }
460}
461
15856ad5 462void pci_read_bridge_bases(struct pci_bus *child)
fa27b2d1
BH
463{
464 struct pci_dev *dev = child->self;
2fe2abf8 465 struct resource *res;
fa27b2d1
BH
466 int i;
467
468 if (pci_is_root_bus(child)) /* It's a host bus, nothing to read */
469 return;
470
7506dc79 471 pci_info(dev, "PCI bridge to %pR%s\n",
b918c62e 472 &child->busn_res,
fa27b2d1
BH
473 dev->transparent ? " (subtractive decode)" : "");
474
2fe2abf8
BH
475 pci_bus_remove_resources(child);
476 for (i = 0; i < PCI_BRIDGE_RESOURCE_NUM; i++)
477 child->resource[i] = &dev->resource[PCI_BRIDGE_RESOURCES+i];
478
fa27b2d1
BH
479 pci_read_bridge_io(child);
480 pci_read_bridge_mmio(child);
481 pci_read_bridge_mmio_pref(child);
2adf7516
BH
482
483 if (dev->transparent) {
2fe2abf8 484 pci_bus_for_each_resource(child->parent, res, i) {
d739a099 485 if (res && res->flags) {
2fe2abf8
BH
486 pci_bus_add_resource(child, res,
487 PCI_SUBTRACTIVE_DECODE);
7506dc79 488 pci_printk(KERN_DEBUG, dev,
2adf7516 489 " bridge window %pR (subtractive decode)\n",
2fe2abf8
BH
490 res);
491 }
2adf7516
BH
492 }
493 }
fa27b2d1
BH
494}
495
670ba0c8 496static struct pci_bus *pci_alloc_bus(struct pci_bus *parent)
1da177e4
LT
497{
498 struct pci_bus *b;
499
f5afe806 500 b = kzalloc(sizeof(*b), GFP_KERNEL);
05013486
BH
501 if (!b)
502 return NULL;
503
504 INIT_LIST_HEAD(&b->node);
505 INIT_LIST_HEAD(&b->children);
506 INIT_LIST_HEAD(&b->devices);
507 INIT_LIST_HEAD(&b->slots);
508 INIT_LIST_HEAD(&b->resources);
509 b->max_bus_speed = PCI_SPEED_UNKNOWN;
510 b->cur_bus_speed = PCI_SPEED_UNKNOWN;
670ba0c8
CM
511#ifdef CONFIG_PCI_DOMAINS_GENERIC
512 if (parent)
513 b->domain_nr = parent->domain_nr;
514#endif
1da177e4
LT
515 return b;
516}
517
5c3f18cc 518static void devm_pci_release_host_bridge_dev(struct device *dev)
70efde2a
JL
519{
520 struct pci_host_bridge *bridge = to_pci_host_bridge(dev);
521
522 if (bridge->release_fn)
523 bridge->release_fn(bridge);
5c3f18cc 524}
70efde2a 525
5c3f18cc
LP
526static void pci_release_host_bridge_dev(struct device *dev)
527{
528 devm_pci_release_host_bridge_dev(dev);
529 pci_free_host_bridge(to_pci_host_bridge(dev));
70efde2a
JL
530}
531
a52d1443 532struct pci_host_bridge *pci_alloc_host_bridge(size_t priv)
7b543663
YL
533{
534 struct pci_host_bridge *bridge;
535
59094065 536 bridge = kzalloc(sizeof(*bridge) + priv, GFP_KERNEL);
05013486
BH
537 if (!bridge)
538 return NULL;
7b543663 539
05013486 540 INIT_LIST_HEAD(&bridge->windows);
a1c0050a 541 bridge->dev.release = pci_release_host_bridge_dev;
37d6a0a6 542
7b543663
YL
543 return bridge;
544}
a52d1443 545EXPORT_SYMBOL(pci_alloc_host_bridge);
7b543663 546
5c3f18cc
LP
547struct pci_host_bridge *devm_pci_alloc_host_bridge(struct device *dev,
548 size_t priv)
549{
550 struct pci_host_bridge *bridge;
551
552 bridge = devm_kzalloc(dev, sizeof(*bridge) + priv, GFP_KERNEL);
553 if (!bridge)
554 return NULL;
555
556 INIT_LIST_HEAD(&bridge->windows);
557 bridge->dev.release = devm_pci_release_host_bridge_dev;
558
559 return bridge;
560}
561EXPORT_SYMBOL(devm_pci_alloc_host_bridge);
562
dff79b91
LP
563void pci_free_host_bridge(struct pci_host_bridge *bridge)
564{
565 pci_free_resource_list(&bridge->windows);
566
567 kfree(bridge);
568}
569EXPORT_SYMBOL(pci_free_host_bridge);
570
0b950f0f 571static const unsigned char pcix_bus_speed[] = {
9be60ca0
MW
572 PCI_SPEED_UNKNOWN, /* 0 */
573 PCI_SPEED_66MHz_PCIX, /* 1 */
574 PCI_SPEED_100MHz_PCIX, /* 2 */
575 PCI_SPEED_133MHz_PCIX, /* 3 */
576 PCI_SPEED_UNKNOWN, /* 4 */
577 PCI_SPEED_66MHz_PCIX_ECC, /* 5 */
578 PCI_SPEED_100MHz_PCIX_ECC, /* 6 */
579 PCI_SPEED_133MHz_PCIX_ECC, /* 7 */
580 PCI_SPEED_UNKNOWN, /* 8 */
581 PCI_SPEED_66MHz_PCIX_266, /* 9 */
582 PCI_SPEED_100MHz_PCIX_266, /* A */
583 PCI_SPEED_133MHz_PCIX_266, /* B */
584 PCI_SPEED_UNKNOWN, /* C */
585 PCI_SPEED_66MHz_PCIX_533, /* D */
586 PCI_SPEED_100MHz_PCIX_533, /* E */
587 PCI_SPEED_133MHz_PCIX_533 /* F */
588};
589
343e51ae 590const unsigned char pcie_link_speed[] = {
3749c51a
MW
591 PCI_SPEED_UNKNOWN, /* 0 */
592 PCIE_SPEED_2_5GT, /* 1 */
593 PCIE_SPEED_5_0GT, /* 2 */
9dfd97fe 594 PCIE_SPEED_8_0GT, /* 3 */
3749c51a
MW
595 PCI_SPEED_UNKNOWN, /* 4 */
596 PCI_SPEED_UNKNOWN, /* 5 */
597 PCI_SPEED_UNKNOWN, /* 6 */
598 PCI_SPEED_UNKNOWN, /* 7 */
599 PCI_SPEED_UNKNOWN, /* 8 */
600 PCI_SPEED_UNKNOWN, /* 9 */
601 PCI_SPEED_UNKNOWN, /* A */
602 PCI_SPEED_UNKNOWN, /* B */
603 PCI_SPEED_UNKNOWN, /* C */
604 PCI_SPEED_UNKNOWN, /* D */
605 PCI_SPEED_UNKNOWN, /* E */
606 PCI_SPEED_UNKNOWN /* F */
607};
608
609void pcie_update_link_speed(struct pci_bus *bus, u16 linksta)
610{
231afea1 611 bus->cur_bus_speed = pcie_link_speed[linksta & PCI_EXP_LNKSTA_CLS];
3749c51a
MW
612}
613EXPORT_SYMBOL_GPL(pcie_update_link_speed);
614
45b4cdd5
MW
615static unsigned char agp_speeds[] = {
616 AGP_UNKNOWN,
617 AGP_1X,
618 AGP_2X,
619 AGP_4X,
620 AGP_8X
621};
622
623static enum pci_bus_speed agp_speed(int agp3, int agpstat)
624{
625 int index = 0;
626
627 if (agpstat & 4)
628 index = 3;
629 else if (agpstat & 2)
630 index = 2;
631 else if (agpstat & 1)
632 index = 1;
633 else
634 goto out;
f7625980 635
45b4cdd5
MW
636 if (agp3) {
637 index += 2;
638 if (index == 5)
639 index = 0;
640 }
641
642 out:
643 return agp_speeds[index];
644}
645
9be60ca0
MW
646static void pci_set_bus_speed(struct pci_bus *bus)
647{
648 struct pci_dev *bridge = bus->self;
649 int pos;
650
45b4cdd5
MW
651 pos = pci_find_capability(bridge, PCI_CAP_ID_AGP);
652 if (!pos)
653 pos = pci_find_capability(bridge, PCI_CAP_ID_AGP3);
654 if (pos) {
655 u32 agpstat, agpcmd;
656
657 pci_read_config_dword(bridge, pos + PCI_AGP_STATUS, &agpstat);
658 bus->max_bus_speed = agp_speed(agpstat & 8, agpstat & 7);
659
660 pci_read_config_dword(bridge, pos + PCI_AGP_COMMAND, &agpcmd);
661 bus->cur_bus_speed = agp_speed(agpstat & 8, agpcmd & 7);
662 }
663
9be60ca0
MW
664 pos = pci_find_capability(bridge, PCI_CAP_ID_PCIX);
665 if (pos) {
666 u16 status;
667 enum pci_bus_speed max;
9be60ca0 668
7793eeab
BH
669 pci_read_config_word(bridge, pos + PCI_X_BRIDGE_SSTATUS,
670 &status);
671
672 if (status & PCI_X_SSTATUS_533MHZ) {
9be60ca0 673 max = PCI_SPEED_133MHz_PCIX_533;
7793eeab 674 } else if (status & PCI_X_SSTATUS_266MHZ) {
9be60ca0 675 max = PCI_SPEED_133MHz_PCIX_266;
7793eeab 676 } else if (status & PCI_X_SSTATUS_133MHZ) {
3c78bc61 677 if ((status & PCI_X_SSTATUS_VERS) == PCI_X_SSTATUS_V2)
9be60ca0 678 max = PCI_SPEED_133MHz_PCIX_ECC;
3c78bc61 679 else
9be60ca0 680 max = PCI_SPEED_133MHz_PCIX;
9be60ca0
MW
681 } else {
682 max = PCI_SPEED_66MHz_PCIX;
683 }
684
685 bus->max_bus_speed = max;
7793eeab
BH
686 bus->cur_bus_speed = pcix_bus_speed[
687 (status & PCI_X_SSTATUS_FREQ) >> 6];
9be60ca0
MW
688
689 return;
690 }
691
fdfe1511 692 if (pci_is_pcie(bridge)) {
9be60ca0
MW
693 u32 linkcap;
694 u16 linksta;
695
59875ae4 696 pcie_capability_read_dword(bridge, PCI_EXP_LNKCAP, &linkcap);
231afea1 697 bus->max_bus_speed = pcie_link_speed[linkcap & PCI_EXP_LNKCAP_SLS];
9be60ca0 698
59875ae4 699 pcie_capability_read_word(bridge, PCI_EXP_LNKSTA, &linksta);
9be60ca0
MW
700 pcie_update_link_speed(bus, linksta);
701 }
702}
703
44aa0c65
MZ
704static struct irq_domain *pci_host_bridge_msi_domain(struct pci_bus *bus)
705{
b165e2b6
MZ
706 struct irq_domain *d;
707
44aa0c65
MZ
708 /*
709 * Any firmware interface that can resolve the msi_domain
710 * should be called from here.
711 */
b165e2b6 712 d = pci_host_bridge_of_msi_domain(bus);
471036b2
SS
713 if (!d)
714 d = pci_host_bridge_acpi_msi_domain(bus);
44aa0c65 715
788858eb
JO
716#ifdef CONFIG_PCI_MSI_IRQ_DOMAIN
717 /*
718 * If no IRQ domain was found via the OF tree, try looking it up
719 * directly through the fwnode_handle.
720 */
721 if (!d) {
722 struct fwnode_handle *fwnode = pci_root_bus_fwnode(bus);
723
724 if (fwnode)
725 d = irq_find_matching_fwnode(fwnode,
726 DOMAIN_BUS_PCI_MSI);
727 }
728#endif
729
b165e2b6 730 return d;
44aa0c65
MZ
731}
732
733static void pci_set_bus_msi_domain(struct pci_bus *bus)
734{
735 struct irq_domain *d;
38ea72bd 736 struct pci_bus *b;
44aa0c65
MZ
737
738 /*
38ea72bd
AW
739 * The bus can be a root bus, a subordinate bus, or a virtual bus
740 * created by an SR-IOV device. Walk up to the first bridge device
741 * found or derive the domain from the host bridge.
44aa0c65 742 */
38ea72bd
AW
743 for (b = bus, d = NULL; !d && !pci_is_root_bus(b); b = b->parent) {
744 if (b->self)
745 d = dev_get_msi_domain(&b->self->dev);
746 }
747
748 if (!d)
749 d = pci_host_bridge_msi_domain(b);
44aa0c65
MZ
750
751 dev_set_msi_domain(&bus->dev, d);
752}
753
cea9bc0b 754static int pci_register_host_bridge(struct pci_host_bridge *bridge)
37d6a0a6
AB
755{
756 struct device *parent = bridge->dev.parent;
757 struct resource_entry *window, *n;
758 struct pci_bus *bus, *b;
759 resource_size_t offset;
760 LIST_HEAD(resources);
761 struct resource *res;
762 char addr[64], *fmt;
763 const char *name;
764 int err;
765
766 bus = pci_alloc_bus(NULL);
767 if (!bus)
768 return -ENOMEM;
769
770 bridge->bus = bus;
771
3e466e2d 772 /* Temporarily move resources off the list */
37d6a0a6
AB
773 list_splice_init(&bridge->windows, &resources);
774 bus->sysdata = bridge->sysdata;
775 bus->msi = bridge->msi;
776 bus->ops = bridge->ops;
777 bus->number = bus->busn_res.start = bridge->busnr;
778#ifdef CONFIG_PCI_DOMAINS_GENERIC
779 bus->domain_nr = pci_bus_find_domain_nr(bus, parent);
780#endif
781
782 b = pci_find_bus(pci_domain_nr(bus), bridge->busnr);
783 if (b) {
3e466e2d 784 /* Ignore it if we already got here via a different bridge */
37d6a0a6
AB
785 dev_dbg(&b->dev, "bus already known\n");
786 err = -EEXIST;
787 goto free;
788 }
789
790 dev_set_name(&bridge->dev, "pci%04x:%02x", pci_domain_nr(bus),
791 bridge->busnr);
792
793 err = pcibios_root_bridge_prepare(bridge);
794 if (err)
795 goto free;
796
797 err = device_register(&bridge->dev);
798 if (err)
799 put_device(&bridge->dev);
800
801 bus->bridge = get_device(&bridge->dev);
802 device_enable_async_suspend(bus->bridge);
803 pci_set_bus_of_node(bus);
804 pci_set_bus_msi_domain(bus);
805
806 if (!parent)
807 set_dev_node(bus->bridge, pcibus_to_node(bus));
808
809 bus->dev.class = &pcibus_class;
810 bus->dev.parent = bus->bridge;
811
812 dev_set_name(&bus->dev, "%04x:%02x", pci_domain_nr(bus), bus->number);
813 name = dev_name(&bus->dev);
814
815 err = device_register(&bus->dev);
816 if (err)
817 goto unregister;
818
819 pcibios_add_bus(bus);
820
821 /* Create legacy_io and legacy_mem files for this bus */
822 pci_create_legacy_files(bus);
823
824 if (parent)
825 dev_info(parent, "PCI host bridge to bus %s\n", name);
826 else
827 pr_info("PCI host bridge to bus %s\n", name);
828
829 /* Add initial resources to the bus */
830 resource_list_for_each_entry_safe(window, n, &resources) {
831 list_move_tail(&window->node, &bridge->windows);
832 offset = window->offset;
833 res = window->res;
834
835 if (res->flags & IORESOURCE_BUS)
836 pci_bus_insert_busn_res(bus, bus->number, res->end);
837 else
838 pci_bus_add_resource(bus, res, 0);
839
840 if (offset) {
841 if (resource_type(res) == IORESOURCE_IO)
842 fmt = " (bus address [%#06llx-%#06llx])";
843 else
844 fmt = " (bus address [%#010llx-%#010llx])";
845
846 snprintf(addr, sizeof(addr), fmt,
847 (unsigned long long)(res->start - offset),
848 (unsigned long long)(res->end - offset));
849 } else
850 addr[0] = '\0';
851
852 dev_info(&bus->dev, "root bus resource %pR%s\n", res, addr);
853 }
854
855 down_write(&pci_bus_sem);
856 list_add_tail(&bus->node, &pci_root_buses);
857 up_write(&pci_bus_sem);
858
859 return 0;
860
861unregister:
862 put_device(&bridge->dev);
863 device_unregister(&bridge->dev);
864
865free:
866 kfree(bus);
867 return err;
868}
869
cbd4e055
AB
870static struct pci_bus *pci_alloc_child_bus(struct pci_bus *parent,
871 struct pci_dev *bridge, int busnr)
1da177e4
LT
872{
873 struct pci_bus *child;
874 int i;
4f535093 875 int ret;
1da177e4 876
3e466e2d 877 /* Allocate a new bus and inherit stuff from the parent */
670ba0c8 878 child = pci_alloc_bus(parent);
1da177e4
LT
879 if (!child)
880 return NULL;
881
1da177e4
LT
882 child->parent = parent;
883 child->ops = parent->ops;
0cbdcfcf 884 child->msi = parent->msi;
1da177e4 885 child->sysdata = parent->sysdata;
6e325a62 886 child->bus_flags = parent->bus_flags;
1da177e4 887
3e466e2d
BH
888 /*
889 * Initialize some portions of the bus device, but don't register
890 * it now as the parent is not properly set up yet.
fd7d1ced
GKH
891 */
892 child->dev.class = &pcibus_class;
1a927133 893 dev_set_name(&child->dev, "%04x:%02x", pci_domain_nr(child), busnr);
1da177e4 894
3e466e2d 895 /* Set up the primary, secondary and subordinate bus numbers */
b918c62e
YL
896 child->number = child->busn_res.start = busnr;
897 child->primary = parent->busn_res.start;
898 child->busn_res.end = 0xff;
1da177e4 899
4f535093
YL
900 if (!bridge) {
901 child->dev.parent = parent->bridge;
902 goto add_dev;
903 }
3789fa8a
YZ
904
905 child->self = bridge;
906 child->bridge = get_device(&bridge->dev);
4f535093 907 child->dev.parent = child->bridge;
98d9f30c 908 pci_set_bus_of_node(child);
9be60ca0
MW
909 pci_set_bus_speed(child);
910
3e466e2d 911 /* Set up default resource pointers and names */
fde09c6d 912 for (i = 0; i < PCI_BRIDGE_RESOURCE_NUM; i++) {
1da177e4
LT
913 child->resource[i] = &bridge->resource[PCI_BRIDGE_RESOURCES+i];
914 child->resource[i]->name = child->name;
915 }
916 bridge->subordinate = child;
917
4f535093 918add_dev:
44aa0c65 919 pci_set_bus_msi_domain(child);
4f535093
YL
920 ret = device_register(&child->dev);
921 WARN_ON(ret < 0);
922
10a95747
JL
923 pcibios_add_bus(child);
924
057bd2e0
TR
925 if (child->ops->add_bus) {
926 ret = child->ops->add_bus(child);
927 if (WARN_ON(ret < 0))
928 dev_err(&child->dev, "failed to add bus: %d\n", ret);
929 }
930
4f535093
YL
931 /* Create legacy_io and legacy_mem files for this bus */
932 pci_create_legacy_files(child);
933
1da177e4
LT
934 return child;
935}
936
3c78bc61
RD
937struct pci_bus *pci_add_new_bus(struct pci_bus *parent, struct pci_dev *dev,
938 int busnr)
1da177e4
LT
939{
940 struct pci_bus *child;
941
942 child = pci_alloc_child_bus(parent, dev, busnr);
e4ea9bb7 943 if (child) {
d71374da 944 down_write(&pci_bus_sem);
1da177e4 945 list_add_tail(&child->node, &parent->children);
d71374da 946 up_write(&pci_bus_sem);
e4ea9bb7 947 }
1da177e4
LT
948 return child;
949}
b7fe9434 950EXPORT_SYMBOL(pci_add_new_bus);
1da177e4 951
f3dbd802
RJ
952static void pci_enable_crs(struct pci_dev *pdev)
953{
954 u16 root_cap = 0;
955
956 /* Enable CRS Software Visibility if supported */
957 pcie_capability_read_word(pdev, PCI_EXP_RTCAP, &root_cap);
958 if (root_cap & PCI_EXP_RTCAP_CRSVIS)
959 pcie_capability_set_word(pdev, PCI_EXP_RTCTL,
960 PCI_EXP_RTCTL_CRSSVE);
961}
962
1c02ea81
MW
963static unsigned int pci_scan_child_bus_extend(struct pci_bus *bus,
964 unsigned int available_buses);
965
1da177e4 966/*
1c02ea81
MW
967 * pci_scan_bridge_extend() - Scan buses behind a bridge
968 * @bus: Parent bus the bridge is on
969 * @dev: Bridge itself
970 * @max: Starting subordinate number of buses behind this bridge
971 * @available_buses: Total number of buses available for this bridge and
972 * the devices below. After the minimal bus space has
973 * been allocated the remaining buses will be
974 * distributed equally between hotplug-capable bridges.
975 * @pass: Either %0 (scan already configured bridges) or %1 (scan bridges
976 * that need to be reconfigured.
977 *
1da177e4
LT
978 * If it's a bridge, configure it and scan the bus behind it.
979 * For CardBus bridges, we don't scan behind as the devices will
980 * be handled by the bridge driver itself.
981 *
982 * We need to process bridges in two passes -- first we scan those
983 * already configured by the BIOS and after we are done with all of
984 * them, we proceed to assigning numbers to the remaining buses in
985 * order to avoid overlaps between old and new bus numbers.
986 */
1c02ea81
MW
987static int pci_scan_bridge_extend(struct pci_bus *bus, struct pci_dev *dev,
988 int max, unsigned int available_buses,
989 int pass)
1da177e4
LT
990{
991 struct pci_bus *child;
992 int is_cardbus = (dev->hdr_type == PCI_HEADER_TYPE_CARDBUS);
49887941 993 u32 buses, i, j = 0;
1da177e4 994 u16 bctl;
99ddd552 995 u8 primary, secondary, subordinate;
a1c19894 996 int broken = 0;
1da177e4 997
d963f651
MW
998 /*
999 * Make sure the bridge is powered on to be able to access config
1000 * space of devices below it.
1001 */
1002 pm_runtime_get_sync(&dev->dev);
1003
1da177e4 1004 pci_read_config_dword(dev, PCI_PRIMARY_BUS, &buses);
99ddd552
BH
1005 primary = buses & 0xFF;
1006 secondary = (buses >> 8) & 0xFF;
1007 subordinate = (buses >> 16) & 0xFF;
1da177e4 1008
7506dc79 1009 pci_dbg(dev, "scanning [bus %02x-%02x] behind bridge, pass %d\n",
99ddd552 1010 secondary, subordinate, pass);
1da177e4 1011
71f6bd4a 1012 if (!primary && (primary != bus->number) && secondary && subordinate) {
7506dc79 1013 pci_warn(dev, "Primary bus is hard wired to 0\n");
71f6bd4a
YL
1014 primary = bus->number;
1015 }
1016
a1c19894
BH
1017 /* Check if setup is sensible at all */
1018 if (!pass &&
1965f66e 1019 (primary != bus->number || secondary <= bus->number ||
12d87069 1020 secondary > subordinate)) {
7506dc79 1021 pci_info(dev, "bridge configuration invalid ([bus %02x-%02x]), reconfiguring\n",
1965f66e 1022 secondary, subordinate);
a1c19894
BH
1023 broken = 1;
1024 }
1025
3e466e2d
BH
1026 /*
1027 * Disable Master-Abort Mode during probing to avoid reporting of
1028 * bus errors in some architectures.
1029 */
1da177e4
LT
1030 pci_read_config_word(dev, PCI_BRIDGE_CONTROL, &bctl);
1031 pci_write_config_word(dev, PCI_BRIDGE_CONTROL,
1032 bctl & ~PCI_BRIDGE_CTL_MASTER_ABORT);
1033
f3dbd802
RJ
1034 pci_enable_crs(dev);
1035
99ddd552
BH
1036 if ((secondary || subordinate) && !pcibios_assign_all_busses() &&
1037 !is_cardbus && !broken) {
1038 unsigned int cmax;
3e466e2d 1039
1da177e4 1040 /*
3e466e2d
BH
1041 * Bus already configured by firmware, process it in the
1042 * first pass and just note the configuration.
1da177e4
LT
1043 */
1044 if (pass)
bbe8f9a3 1045 goto out;
1da177e4
LT
1046
1047 /*
3e466e2d
BH
1048 * The bus might already exist for two reasons: Either we
1049 * are rescanning the bus or the bus is reachable through
1050 * more than one bridge. The second case can happen with
1051 * the i450NX chipset.
1da177e4 1052 */
99ddd552 1053 child = pci_find_bus(pci_domain_nr(bus), secondary);
74710ded 1054 if (!child) {
99ddd552 1055 child = pci_add_new_bus(bus, dev, secondary);
74710ded
AC
1056 if (!child)
1057 goto out;
99ddd552 1058 child->primary = primary;
bc76b731 1059 pci_bus_insert_busn_res(child, secondary, subordinate);
74710ded 1060 child->bridge_ctl = bctl;
1da177e4
LT
1061 }
1062
1da177e4 1063 cmax = pci_scan_child_bus(child);
c95b0bd6 1064 if (cmax > subordinate)
7506dc79 1065 pci_warn(dev, "bridge has subordinate %02x but max busn %02x\n",
c95b0bd6 1066 subordinate, cmax);
3e466e2d
BH
1067
1068 /* Subordinate should equal child->busn_res.end */
c95b0bd6
AN
1069 if (subordinate > max)
1070 max = subordinate;
1da177e4 1071 } else {
3e466e2d 1072
1da177e4
LT
1073 /*
1074 * We need to assign a number to this bus which we always
1075 * do in the second pass.
1076 */
12f44f46 1077 if (!pass) {
619c8c31 1078 if (pcibios_assign_all_busses() || broken || is_cardbus)
3e466e2d
BH
1079
1080 /*
1081 * Temporarily disable forwarding of the
1082 * configuration cycles on all bridges in
1083 * this bus segment to avoid possible
1084 * conflicts in the second pass between two
1085 * bridges programmed with overlapping bus
1086 * ranges.
1087 */
12f44f46
IK
1088 pci_write_config_dword(dev, PCI_PRIMARY_BUS,
1089 buses & ~0xffffff);
bbe8f9a3 1090 goto out;
12f44f46 1091 }
1da177e4
LT
1092
1093 /* Clear errors */
1094 pci_write_config_word(dev, PCI_STATUS, 0xffff);
1095
3e466e2d
BH
1096 /*
1097 * Prevent assigning a bus number that already exists.
1098 * This can happen when a bridge is hot-plugged, so in this
1099 * case we only re-scan this bus.
1100 */
b1a98b69
TC
1101 child = pci_find_bus(pci_domain_nr(bus), max+1);
1102 if (!child) {
9a4d7d87 1103 child = pci_add_new_bus(bus, dev, max+1);
b1a98b69
TC
1104 if (!child)
1105 goto out;
a20c7f36
MW
1106 pci_bus_insert_busn_res(child, max+1,
1107 bus->busn_res.end);
b1a98b69 1108 }
9a4d7d87 1109 max++;
1c02ea81
MW
1110 if (available_buses)
1111 available_buses--;
1112
1da177e4
LT
1113 buses = (buses & 0xff000000)
1114 | ((unsigned int)(child->primary) << 0)
b918c62e
YL
1115 | ((unsigned int)(child->busn_res.start) << 8)
1116 | ((unsigned int)(child->busn_res.end) << 16);
1da177e4
LT
1117
1118 /*
1119 * yenta.c forces a secondary latency timer of 176.
1120 * Copy that behaviour here.
1121 */
1122 if (is_cardbus) {
1123 buses &= ~0xff000000;
1124 buses |= CARDBUS_LATENCY_TIMER << 24;
1125 }
7c867c88 1126
3e466e2d 1127 /* We need to blast all three values with a single write */
1da177e4
LT
1128 pci_write_config_dword(dev, PCI_PRIMARY_BUS, buses);
1129
1130 if (!is_cardbus) {
11949255 1131 child->bridge_ctl = bctl;
1c02ea81 1132 max = pci_scan_child_bus_extend(child, available_buses);
1da177e4 1133 } else {
3e466e2d 1134
1da177e4 1135 /*
3e466e2d
BH
1136 * For CardBus bridges, we leave 4 bus numbers as
1137 * cards with a PCI-to-PCI bridge can be inserted
1138 * later.
1da177e4 1139 */
3c78bc61 1140 for (i = 0; i < CARDBUS_RESERVE_BUSNR; i++) {
49887941 1141 struct pci_bus *parent = bus;
cc57450f
RS
1142 if (pci_find_bus(pci_domain_nr(bus),
1143 max+i+1))
1144 break;
49887941
DB
1145 while (parent->parent) {
1146 if ((!pcibios_assign_all_busses()) &&
b918c62e
YL
1147 (parent->busn_res.end > max) &&
1148 (parent->busn_res.end <= max+i)) {
49887941
DB
1149 j = 1;
1150 }
1151 parent = parent->parent;
1152 }
1153 if (j) {
3e466e2d 1154
49887941 1155 /*
3e466e2d
BH
1156 * Often, there are two CardBus
1157 * bridges -- try to leave one
1158 * valid bus number for each one.
49887941
DB
1159 */
1160 i /= 2;
1161 break;
1162 }
1163 }
cc57450f 1164 max += i;
1da177e4 1165 }
3e466e2d
BH
1166
1167 /* Set subordinate bus number to its real value */
bc76b731 1168 pci_bus_update_busn_res_end(child, max);
1da177e4
LT
1169 pci_write_config_byte(dev, PCI_SUBORDINATE_BUS, max);
1170 }
1171
cb3576fa
GH
1172 sprintf(child->name,
1173 (is_cardbus ? "PCI CardBus %04x:%02x" : "PCI Bus %04x:%02x"),
1174 pci_domain_nr(bus), child->number);
1da177e4 1175
d55bef51 1176 /* Has only triggered on CardBus, fixup is in yenta_socket */
49887941 1177 while (bus->parent) {
b918c62e
YL
1178 if ((child->busn_res.end > bus->busn_res.end) ||
1179 (child->number > bus->busn_res.end) ||
49887941 1180 (child->number < bus->number) ||
b918c62e 1181 (child->busn_res.end < bus->number)) {
227f0647 1182 dev_info(&child->dev, "%pR %s hidden behind%s bridge %s %pR\n",
b918c62e
YL
1183 &child->busn_res,
1184 (bus->number > child->busn_res.end &&
1185 bus->busn_res.end < child->number) ?
a6f29a98
JP
1186 "wholly" : "partially",
1187 bus->self->transparent ? " transparent" : "",
865df576 1188 dev_name(&bus->dev),
b918c62e 1189 &bus->busn_res);
49887941
DB
1190 }
1191 bus = bus->parent;
1192 }
1193
bbe8f9a3
RB
1194out:
1195 pci_write_config_word(dev, PCI_BRIDGE_CONTROL, bctl);
1196
d963f651
MW
1197 pm_runtime_put(&dev->dev);
1198
1da177e4
LT
1199 return max;
1200}
1c02ea81
MW
1201
1202/*
1203 * pci_scan_bridge() - Scan buses behind a bridge
1204 * @bus: Parent bus the bridge is on
1205 * @dev: Bridge itself
1206 * @max: Starting subordinate number of buses behind this bridge
1207 * @pass: Either %0 (scan already configured bridges) or %1 (scan bridges
1208 * that need to be reconfigured.
1209 *
1210 * If it's a bridge, configure it and scan the bus behind it.
1211 * For CardBus bridges, we don't scan behind as the devices will
1212 * be handled by the bridge driver itself.
1213 *
1214 * We need to process bridges in two passes -- first we scan those
1215 * already configured by the BIOS and after we are done with all of
1216 * them, we proceed to assigning numbers to the remaining buses in
1217 * order to avoid overlaps between old and new bus numbers.
1218 */
1219int pci_scan_bridge(struct pci_bus *bus, struct pci_dev *dev, int max, int pass)
1220{
1221 return pci_scan_bridge_extend(bus, dev, max, 0, pass);
1222}
b7fe9434 1223EXPORT_SYMBOL(pci_scan_bridge);
1da177e4
LT
1224
1225/*
1226 * Read interrupt line and base address registers.
1227 * The architecture-dependent code can tweak these, of course.
1228 */
1229static void pci_read_irq(struct pci_dev *dev)
1230{
1231 unsigned char irq;
1232
1233 pci_read_config_byte(dev, PCI_INTERRUPT_PIN, &irq);
ffeff788 1234 dev->pin = irq;
1da177e4
LT
1235 if (irq)
1236 pci_read_config_byte(dev, PCI_INTERRUPT_LINE, &irq);
1237 dev->irq = irq;
1238}
1239
bb209c82 1240void set_pcie_port_type(struct pci_dev *pdev)
480b93b7
YZ
1241{
1242 int pos;
1243 u16 reg16;
d0751b98
YW
1244 int type;
1245 struct pci_dev *parent;
480b93b7
YZ
1246
1247 pos = pci_find_capability(pdev, PCI_CAP_ID_EXP);
1248 if (!pos)
1249 return;
51ebfc92 1250
0efea000 1251 pdev->pcie_cap = pos;
480b93b7 1252 pci_read_config_word(pdev, pos + PCI_EXP_FLAGS, &reg16);
786e2288 1253 pdev->pcie_flags_reg = reg16;
b03e7495
JM
1254 pci_read_config_word(pdev, pos + PCI_EXP_DEVCAP, &reg16);
1255 pdev->pcie_mpss = reg16 & PCI_EXP_DEVCAP_PAYLOAD;
d0751b98
YW
1256
1257 /*
51ebfc92
BH
1258 * A Root Port or a PCI-to-PCIe bridge is always the upstream end
1259 * of a Link. No PCIe component has two Links. Two Links are
1260 * connected by a Switch that has a Port on each Link and internal
1261 * logic to connect the two Ports.
d0751b98
YW
1262 */
1263 type = pci_pcie_type(pdev);
51ebfc92
BH
1264 if (type == PCI_EXP_TYPE_ROOT_PORT ||
1265 type == PCI_EXP_TYPE_PCIE_BRIDGE)
d0751b98
YW
1266 pdev->has_secondary_link = 1;
1267 else if (type == PCI_EXP_TYPE_UPSTREAM ||
1268 type == PCI_EXP_TYPE_DOWNSTREAM) {
1269 parent = pci_upstream_bridge(pdev);
b35b1df5
YW
1270
1271 /*
1272 * Usually there's an upstream device (Root Port or Switch
1273 * Downstream Port), but we can't assume one exists.
1274 */
1275 if (parent && !parent->has_secondary_link)
d0751b98
YW
1276 pdev->has_secondary_link = 1;
1277 }
480b93b7
YZ
1278}
1279
bb209c82 1280void set_pcie_hotplug_bridge(struct pci_dev *pdev)
28760489 1281{
28760489
EB
1282 u32 reg32;
1283
59875ae4 1284 pcie_capability_read_dword(pdev, PCI_EXP_SLTCAP, &reg32);
28760489
EB
1285 if (reg32 & PCI_EXP_SLTCAP_HPC)
1286 pdev->is_hotplug_bridge = 1;
1287}
1288
8531e283
LW
1289static void set_pcie_thunderbolt(struct pci_dev *dev)
1290{
1291 int vsec = 0;
1292 u32 header;
1293
1294 while ((vsec = pci_find_next_ext_capability(dev, vsec,
1295 PCI_EXT_CAP_ID_VNDR))) {
1296 pci_read_config_dword(dev, vsec + PCI_VNDR_HEADER, &header);
1297
1298 /* Is the device part of a Thunderbolt controller? */
1299 if (dev->vendor == PCI_VENDOR_ID_INTEL &&
1300 PCI_VNDR_HEADER_ID(header) == PCI_VSEC_ID_INTEL_TBT) {
1301 dev->is_thunderbolt = 1;
1302 return;
1303 }
1304 }
1305}
1306
78916b00 1307/**
3e466e2d 1308 * pci_ext_cfg_is_aliased - Is ext config space just an alias of std config?
78916b00
AW
1309 * @dev: PCI device
1310 *
1311 * PCI Express to PCI/PCI-X Bridge Specification, rev 1.0, 4.1.4 says that
1312 * when forwarding a type1 configuration request the bridge must check that
1313 * the extended register address field is zero. The bridge is not permitted
1314 * to forward the transactions and must handle it as an Unsupported Request.
1315 * Some bridges do not follow this rule and simply drop the extended register
1316 * bits, resulting in the standard config space being aliased, every 256
1317 * bytes across the entire configuration space. Test for this condition by
1318 * comparing the first dword of each potential alias to the vendor/device ID.
1319 * Known offenders:
1320 * ASM1083/1085 PCIe-to-PCI Reversible Bridge (1b21:1080, rev 01 & 03)
1321 * AMD/ATI SBx00 PCI to PCI Bridge (1002:4384, rev 40)
1322 */
1323static bool pci_ext_cfg_is_aliased(struct pci_dev *dev)
1324{
1325#ifdef CONFIG_PCI_QUIRKS
1326 int pos;
1327 u32 header, tmp;
1328
1329 pci_read_config_dword(dev, PCI_VENDOR_ID, &header);
1330
1331 for (pos = PCI_CFG_SPACE_SIZE;
1332 pos < PCI_CFG_SPACE_EXP_SIZE; pos += PCI_CFG_SPACE_SIZE) {
1333 if (pci_read_config_dword(dev, pos, &tmp) != PCIBIOS_SUCCESSFUL
1334 || header != tmp)
1335 return false;
1336 }
1337
1338 return true;
1339#else
1340 return false;
1341#endif
1342}
1343
0b950f0f 1344/**
3e466e2d 1345 * pci_cfg_space_size - Get the configuration space size of the PCI device
0b950f0f
SH
1346 * @dev: PCI device
1347 *
1348 * Regular PCI devices have 256 bytes, but PCI-X 2 and PCI Express devices
1349 * have 4096 bytes. Even if the device is capable, that doesn't mean we can
1350 * access it. Maybe we don't have a way to generate extended config space
1351 * accesses, or the device is behind a reverse Express bridge. So we try
1352 * reading the dword at 0x100 which must either be 0 or a valid extended
1353 * capability header.
1354 */
1355static int pci_cfg_space_size_ext(struct pci_dev *dev)
1356{
1357 u32 status;
1358 int pos = PCI_CFG_SPACE_SIZE;
1359
1360 if (pci_read_config_dword(dev, pos, &status) != PCIBIOS_SUCCESSFUL)
8e5a395a 1361 return PCI_CFG_SPACE_SIZE;
78916b00 1362 if (status == 0xffffffff || pci_ext_cfg_is_aliased(dev))
8e5a395a 1363 return PCI_CFG_SPACE_SIZE;
0b950f0f
SH
1364
1365 return PCI_CFG_SPACE_EXP_SIZE;
0b950f0f
SH
1366}
1367
1368int pci_cfg_space_size(struct pci_dev *dev)
1369{
1370 int pos;
1371 u32 status;
1372 u16 class;
1373
1374 class = dev->class >> 8;
1375 if (class == PCI_CLASS_BRIDGE_HOST)
1376 return pci_cfg_space_size_ext(dev);
1377
8e5a395a
BH
1378 if (pci_is_pcie(dev))
1379 return pci_cfg_space_size_ext(dev);
0b950f0f 1380
8e5a395a
BH
1381 pos = pci_find_capability(dev, PCI_CAP_ID_PCIX);
1382 if (!pos)
1383 return PCI_CFG_SPACE_SIZE;
0b950f0f 1384
8e5a395a
BH
1385 pci_read_config_dword(dev, pos + PCI_X_STATUS, &status);
1386 if (status & (PCI_X_STATUS_266MHZ | PCI_X_STATUS_533MHZ))
1387 return pci_cfg_space_size_ext(dev);
0b950f0f 1388
0b950f0f
SH
1389 return PCI_CFG_SPACE_SIZE;
1390}
1391
01abc2aa 1392#define LEGACY_IO_RESOURCE (IORESOURCE_IO | IORESOURCE_PCI_FIXED)
76e6a1d6 1393
e80e7edc 1394static void pci_msi_setup_pci_dev(struct pci_dev *dev)
1851617c
MT
1395{
1396 /*
1397 * Disable the MSI hardware to avoid screaming interrupts
1398 * during boot. This is the power on reset default so
1399 * usually this should be a noop.
1400 */
1401 dev->msi_cap = pci_find_capability(dev, PCI_CAP_ID_MSI);
1402 if (dev->msi_cap)
1403 pci_msi_set_enable(dev, 0);
1404
1405 dev->msix_cap = pci_find_capability(dev, PCI_CAP_ID_MSIX);
1406 if (dev->msix_cap)
1407 pci_msix_clear_and_set_ctrl(dev, PCI_MSIX_FLAGS_ENABLE, 0);
1408}
1409
99b3c58f 1410/**
3e466e2d 1411 * pci_intx_mask_broken - Test PCI_COMMAND_INTX_DISABLE writability
99b3c58f
PG
1412 * @dev: PCI device
1413 *
1414 * Test whether PCI_COMMAND_INTX_DISABLE is writable for @dev. Check this
1415 * at enumeration-time to avoid modifying PCI_COMMAND at run-time.
1416 */
1417static int pci_intx_mask_broken(struct pci_dev *dev)
1418{
1419 u16 orig, toggle, new;
1420
1421 pci_read_config_word(dev, PCI_COMMAND, &orig);
1422 toggle = orig ^ PCI_COMMAND_INTX_DISABLE;
1423 pci_write_config_word(dev, PCI_COMMAND, toggle);
1424 pci_read_config_word(dev, PCI_COMMAND, &new);
1425
1426 pci_write_config_word(dev, PCI_COMMAND, orig);
1427
1428 /*
1429 * PCI_COMMAND_INTX_DISABLE was reserved and read-only prior to PCI
1430 * r2.3, so strictly speaking, a device is not *broken* if it's not
1431 * writable. But we'll live with the misnomer for now.
1432 */
1433 if (new != toggle)
1434 return 1;
1435 return 0;
1436}
1437
1da177e4 1438/**
3e466e2d 1439 * pci_setup_device - Fill in class and map information of a device
1da177e4
LT
1440 * @dev: the device structure to fill
1441 *
f7625980 1442 * Initialize the device structure with information about the device's
3e466e2d 1443 * vendor,class,memory and IO-space addresses, IRQ lines etc.
1da177e4 1444 * Called at initialisation of the PCI subsystem and by CardBus services.
480b93b7
YZ
1445 * Returns 0 on success and negative if unknown type of device (not normal,
1446 * bridge or CardBus).
1da177e4 1447 */
480b93b7 1448int pci_setup_device(struct pci_dev *dev)
1da177e4
LT
1449{
1450 u32 class;
b84106b4 1451 u16 cmd;
480b93b7 1452 u8 hdr_type;
bc577d2b 1453 int pos = 0;
5bfa14ed
BH
1454 struct pci_bus_region region;
1455 struct resource *res;
480b93b7
YZ
1456
1457 if (pci_read_config_byte(dev, PCI_HEADER_TYPE, &hdr_type))
1458 return -EIO;
1459
1460 dev->sysdata = dev->bus->sysdata;
1461 dev->dev.parent = dev->bus->bridge;
1462 dev->dev.bus = &pci_bus_type;
1463 dev->hdr_type = hdr_type & 0x7f;
1464 dev->multifunction = !!(hdr_type & 0x80);
480b93b7
YZ
1465 dev->error_state = pci_channel_io_normal;
1466 set_pcie_port_type(dev);
1467
017ffe64 1468 pci_dev_assign_slot(dev);
3e466e2d
BH
1469
1470 /*
1471 * Assume 32-bit PCI; let 64-bit PCI cards (which are far rarer)
1472 * set this higher, assuming the system even supports it.
1473 */
480b93b7 1474 dev->dma_mask = 0xffffffff;
1da177e4 1475
eebfcfb5
GKH
1476 dev_set_name(&dev->dev, "%04x:%02x:%02x.%d", pci_domain_nr(dev->bus),
1477 dev->bus->number, PCI_SLOT(dev->devfn),
1478 PCI_FUNC(dev->devfn));
1da177e4
LT
1479
1480 pci_read_config_dword(dev, PCI_CLASS_REVISION, &class);
b8a3a521 1481 dev->revision = class & 0xff;
2dd8ba92 1482 dev->class = class >> 8; /* upper 3 bytes */
1da177e4 1483
7506dc79 1484 pci_printk(KERN_DEBUG, dev, "[%04x:%04x] type %02x class %#08x\n",
2dd8ba92 1485 dev->vendor, dev->device, dev->hdr_type, dev->class);
1da177e4 1486
3e466e2d 1487 /* Need to have dev->class ready */
853346e4
YZ
1488 dev->cfg_size = pci_cfg_space_size(dev);
1489
3e466e2d 1490 /* Need to have dev->cfg_size ready */
8531e283
LW
1491 set_pcie_thunderbolt(dev);
1492
1da177e4 1493 /* "Unknown power state" */
3fe9d19f 1494 dev->current_state = PCI_UNKNOWN;
1da177e4
LT
1495
1496 /* Early fixups, before probing the BARs */
1497 pci_fixup_device(pci_fixup_early, dev);
3e466e2d
BH
1498
1499 /* Device class may be changed after fixup */
f79b1b14 1500 class = dev->class >> 8;
1da177e4 1501
b84106b4
BH
1502 if (dev->non_compliant_bars) {
1503 pci_read_config_word(dev, PCI_COMMAND, &cmd);
1504 if (cmd & (PCI_COMMAND_IO | PCI_COMMAND_MEMORY)) {
7506dc79 1505 pci_info(dev, "device has non-compliant BARs; disabling IO/MEM decoding\n");
b84106b4
BH
1506 cmd &= ~PCI_COMMAND_IO;
1507 cmd &= ~PCI_COMMAND_MEMORY;
1508 pci_write_config_word(dev, PCI_COMMAND, cmd);
1509 }
1510 }
1511
99b3c58f
PG
1512 dev->broken_intx_masking = pci_intx_mask_broken(dev);
1513
1da177e4
LT
1514 switch (dev->hdr_type) { /* header type */
1515 case PCI_HEADER_TYPE_NORMAL: /* standard header */
1516 if (class == PCI_CLASS_BRIDGE_PCI)
1517 goto bad;
1518 pci_read_irq(dev);
1519 pci_read_bases(dev, 6, PCI_ROM_ADDRESS);
1520 pci_read_config_word(dev, PCI_SUBSYSTEM_VENDOR_ID, &dev->subsystem_vendor);
1521 pci_read_config_word(dev, PCI_SUBSYSTEM_ID, &dev->subsystem_device);
368c73d4
AC
1522
1523 /*
075eb9e3
BH
1524 * Do the ugly legacy mode stuff here rather than broken chip
1525 * quirk code. Legacy mode ATA controllers have fixed
1526 * addresses. These are not always echoed in BAR0-3, and
1527 * BAR0-3 in a few cases contain junk!
368c73d4
AC
1528 */
1529 if (class == PCI_CLASS_STORAGE_IDE) {
1530 u8 progif;
1531 pci_read_config_byte(dev, PCI_CLASS_PROG, &progif);
1532 if ((progif & 1) == 0) {
5bfa14ed
BH
1533 region.start = 0x1F0;
1534 region.end = 0x1F7;
1535 res = &dev->resource[0];
1536 res->flags = LEGACY_IO_RESOURCE;
fc279850 1537 pcibios_bus_to_resource(dev->bus, res, &region);
7506dc79 1538 pci_info(dev, "legacy IDE quirk: reg 0x10: %pR\n",
075eb9e3 1539 res);
5bfa14ed
BH
1540 region.start = 0x3F6;
1541 region.end = 0x3F6;
1542 res = &dev->resource[1];
1543 res->flags = LEGACY_IO_RESOURCE;
fc279850 1544 pcibios_bus_to_resource(dev->bus, res, &region);
7506dc79 1545 pci_info(dev, "legacy IDE quirk: reg 0x14: %pR\n",
075eb9e3 1546 res);
368c73d4
AC
1547 }
1548 if ((progif & 4) == 0) {
5bfa14ed
BH
1549 region.start = 0x170;
1550 region.end = 0x177;
1551 res = &dev->resource[2];
1552 res->flags = LEGACY_IO_RESOURCE;
fc279850 1553 pcibios_bus_to_resource(dev->bus, res, &region);
7506dc79 1554 pci_info(dev, "legacy IDE quirk: reg 0x18: %pR\n",
075eb9e3 1555 res);
5bfa14ed
BH
1556 region.start = 0x376;
1557 region.end = 0x376;
1558 res = &dev->resource[3];
1559 res->flags = LEGACY_IO_RESOURCE;
fc279850 1560 pcibios_bus_to_resource(dev->bus, res, &region);
7506dc79 1561 pci_info(dev, "legacy IDE quirk: reg 0x1c: %pR\n",
075eb9e3 1562 res);
368c73d4
AC
1563 }
1564 }
1da177e4
LT
1565 break;
1566
1567 case PCI_HEADER_TYPE_BRIDGE: /* bridge header */
1568 if (class != PCI_CLASS_BRIDGE_PCI)
1569 goto bad;
3e466e2d
BH
1570
1571 /*
1572 * The PCI-to-PCI bridge spec requires that subtractive
1573 * decoding (i.e. transparent) bridge must have programming
1574 * interface code of 0x01.
1575 */
3efd273b 1576 pci_read_irq(dev);
1da177e4
LT
1577 dev->transparent = ((dev->class & 0xff) == 1);
1578 pci_read_bases(dev, 2, PCI_ROM_ADDRESS1);
28760489 1579 set_pcie_hotplug_bridge(dev);
bc577d2b
GB
1580 pos = pci_find_capability(dev, PCI_CAP_ID_SSVID);
1581 if (pos) {
1582 pci_read_config_word(dev, pos + PCI_SSVID_VENDOR_ID, &dev->subsystem_vendor);
1583 pci_read_config_word(dev, pos + PCI_SSVID_DEVICE_ID, &dev->subsystem_device);
1584 }
1da177e4
LT
1585 break;
1586
1587 case PCI_HEADER_TYPE_CARDBUS: /* CardBus bridge header */
1588 if (class != PCI_CLASS_BRIDGE_CARDBUS)
1589 goto bad;
1590 pci_read_irq(dev);
1591 pci_read_bases(dev, 1, 0);
1592 pci_read_config_word(dev, PCI_CB_SUBSYSTEM_VENDOR_ID, &dev->subsystem_vendor);
1593 pci_read_config_word(dev, PCI_CB_SUBSYSTEM_ID, &dev->subsystem_device);
1594 break;
1595
1596 default: /* unknown header */
7506dc79 1597 pci_err(dev, "unknown header type %02x, ignoring device\n",
227f0647 1598 dev->hdr_type);
480b93b7 1599 return -EIO;
1da177e4
LT
1600
1601 bad:
7506dc79 1602 pci_err(dev, "ignoring class %#08x (doesn't match header type %02x)\n",
227f0647 1603 dev->class, dev->hdr_type);
2b4aed1d 1604 dev->class = PCI_CLASS_NOT_DEFINED << 8;
1da177e4
LT
1605 }
1606
1607 /* We found a fine healthy device, go go go... */
1608 return 0;
1609}
1610
9dae3a97
BH
1611static void pci_configure_mps(struct pci_dev *dev)
1612{
1613 struct pci_dev *bridge = pci_upstream_bridge(dev);
27d868b5 1614 int mps, p_mps, rc;
9dae3a97
BH
1615
1616 if (!pci_is_pcie(dev) || !bridge || !pci_is_pcie(bridge))
1617 return;
1618
1619 mps = pcie_get_mps(dev);
1620 p_mps = pcie_get_mps(bridge);
1621
1622 if (mps == p_mps)
1623 return;
1624
1625 if (pcie_bus_config == PCIE_BUS_TUNE_OFF) {
7506dc79 1626 pci_warn(dev, "Max Payload Size %d, but upstream %s set to %d; if necessary, use \"pci=pcie_bus_safe\" and report a bug\n",
9dae3a97
BH
1627 mps, pci_name(bridge), p_mps);
1628 return;
1629 }
27d868b5
KB
1630
1631 /*
1632 * Fancier MPS configuration is done later by
1633 * pcie_bus_configure_settings()
1634 */
1635 if (pcie_bus_config != PCIE_BUS_DEFAULT)
1636 return;
1637
1638 rc = pcie_set_mps(dev, p_mps);
1639 if (rc) {
7506dc79 1640 pci_warn(dev, "can't set Max Payload Size to %d; if necessary, use \"pci=pcie_bus_safe\" and report a bug\n",
27d868b5
KB
1641 p_mps);
1642 return;
1643 }
1644
7506dc79 1645 pci_info(dev, "Max Payload Size set to %d (was %d, max %d)\n",
27d868b5 1646 p_mps, mps, 128 << dev->pcie_mpss);
9dae3a97
BH
1647}
1648
589fcc23
BH
1649static struct hpp_type0 pci_default_type0 = {
1650 .revision = 1,
1651 .cache_line_size = 8,
1652 .latency_timer = 0x40,
1653 .enable_serr = 0,
1654 .enable_perr = 0,
1655};
1656
1657static void program_hpp_type0(struct pci_dev *dev, struct hpp_type0 *hpp)
1658{
1659 u16 pci_cmd, pci_bctl;
1660
c6285fc5 1661 if (!hpp)
589fcc23 1662 hpp = &pci_default_type0;
589fcc23
BH
1663
1664 if (hpp->revision > 1) {
7506dc79 1665 pci_warn(dev, "PCI settings rev %d not supported; using defaults\n",
589fcc23
BH
1666 hpp->revision);
1667 hpp = &pci_default_type0;
1668 }
1669
1670 pci_write_config_byte(dev, PCI_CACHE_LINE_SIZE, hpp->cache_line_size);
1671 pci_write_config_byte(dev, PCI_LATENCY_TIMER, hpp->latency_timer);
1672 pci_read_config_word(dev, PCI_COMMAND, &pci_cmd);
1673 if (hpp->enable_serr)
1674 pci_cmd |= PCI_COMMAND_SERR;
589fcc23
BH
1675 if (hpp->enable_perr)
1676 pci_cmd |= PCI_COMMAND_PARITY;
589fcc23
BH
1677 pci_write_config_word(dev, PCI_COMMAND, pci_cmd);
1678
1679 /* Program bridge control value */
1680 if ((dev->class >> 8) == PCI_CLASS_BRIDGE_PCI) {
1681 pci_write_config_byte(dev, PCI_SEC_LATENCY_TIMER,
1682 hpp->latency_timer);
1683 pci_read_config_word(dev, PCI_BRIDGE_CONTROL, &pci_bctl);
1684 if (hpp->enable_serr)
1685 pci_bctl |= PCI_BRIDGE_CTL_SERR;
589fcc23
BH
1686 if (hpp->enable_perr)
1687 pci_bctl |= PCI_BRIDGE_CTL_PARITY;
589fcc23
BH
1688 pci_write_config_word(dev, PCI_BRIDGE_CONTROL, pci_bctl);
1689 }
1690}
1691
1692static void program_hpp_type1(struct pci_dev *dev, struct hpp_type1 *hpp)
1693{
977509f7
BH
1694 int pos;
1695
1696 if (!hpp)
1697 return;
1698
1699 pos = pci_find_capability(dev, PCI_CAP_ID_PCIX);
1700 if (!pos)
1701 return;
1702
7506dc79 1703 pci_warn(dev, "PCI-X settings not supported\n");
589fcc23
BH
1704}
1705
e42010d8
JT
1706static bool pcie_root_rcb_set(struct pci_dev *dev)
1707{
1708 struct pci_dev *rp = pcie_find_root_port(dev);
1709 u16 lnkctl;
1710
1711 if (!rp)
1712 return false;
1713
1714 pcie_capability_read_word(rp, PCI_EXP_LNKCTL, &lnkctl);
1715 if (lnkctl & PCI_EXP_LNKCTL_RCB)
1716 return true;
1717
1718 return false;
1719}
1720
589fcc23
BH
1721static void program_hpp_type2(struct pci_dev *dev, struct hpp_type2 *hpp)
1722{
1723 int pos;
1724 u32 reg32;
1725
1726 if (!hpp)
1727 return;
1728
977509f7
BH
1729 if (!pci_is_pcie(dev))
1730 return;
1731
589fcc23 1732 if (hpp->revision > 1) {
7506dc79 1733 pci_warn(dev, "PCIe settings rev %d not supported\n",
589fcc23
BH
1734 hpp->revision);
1735 return;
1736 }
1737
302328c0
BH
1738 /*
1739 * Don't allow _HPX to change MPS or MRRS settings. We manage
1740 * those to make sure they're consistent with the rest of the
1741 * platform.
1742 */
1743 hpp->pci_exp_devctl_and |= PCI_EXP_DEVCTL_PAYLOAD |
1744 PCI_EXP_DEVCTL_READRQ;
1745 hpp->pci_exp_devctl_or &= ~(PCI_EXP_DEVCTL_PAYLOAD |
1746 PCI_EXP_DEVCTL_READRQ);
1747
589fcc23
BH
1748 /* Initialize Device Control Register */
1749 pcie_capability_clear_and_set_word(dev, PCI_EXP_DEVCTL,
1750 ~hpp->pci_exp_devctl_and, hpp->pci_exp_devctl_or);
1751
1752 /* Initialize Link Control Register */
e42010d8
JT
1753 if (pcie_cap_has_lnkctl(dev)) {
1754
1755 /*
1756 * If the Root Port supports Read Completion Boundary of
1757 * 128, set RCB to 128. Otherwise, clear it.
1758 */
1759 hpp->pci_exp_lnkctl_and |= PCI_EXP_LNKCTL_RCB;
1760 hpp->pci_exp_lnkctl_or &= ~PCI_EXP_LNKCTL_RCB;
1761 if (pcie_root_rcb_set(dev))
1762 hpp->pci_exp_lnkctl_or |= PCI_EXP_LNKCTL_RCB;
1763
589fcc23
BH
1764 pcie_capability_clear_and_set_word(dev, PCI_EXP_LNKCTL,
1765 ~hpp->pci_exp_lnkctl_and, hpp->pci_exp_lnkctl_or);
e42010d8 1766 }
589fcc23
BH
1767
1768 /* Find Advanced Error Reporting Enhanced Capability */
1769 pos = pci_find_ext_capability(dev, PCI_EXT_CAP_ID_ERR);
1770 if (!pos)
1771 return;
1772
1773 /* Initialize Uncorrectable Error Mask Register */
1774 pci_read_config_dword(dev, pos + PCI_ERR_UNCOR_MASK, &reg32);
1775 reg32 = (reg32 & hpp->unc_err_mask_and) | hpp->unc_err_mask_or;
1776 pci_write_config_dword(dev, pos + PCI_ERR_UNCOR_MASK, reg32);
1777
1778 /* Initialize Uncorrectable Error Severity Register */
1779 pci_read_config_dword(dev, pos + PCI_ERR_UNCOR_SEVER, &reg32);
1780 reg32 = (reg32 & hpp->unc_err_sever_and) | hpp->unc_err_sever_or;
1781 pci_write_config_dword(dev, pos + PCI_ERR_UNCOR_SEVER, reg32);
1782
1783 /* Initialize Correctable Error Mask Register */
1784 pci_read_config_dword(dev, pos + PCI_ERR_COR_MASK, &reg32);
1785 reg32 = (reg32 & hpp->cor_err_mask_and) | hpp->cor_err_mask_or;
1786 pci_write_config_dword(dev, pos + PCI_ERR_COR_MASK, reg32);
1787
1788 /* Initialize Advanced Error Capabilities and Control Register */
1789 pci_read_config_dword(dev, pos + PCI_ERR_CAP, &reg32);
1790 reg32 = (reg32 & hpp->adv_err_cap_and) | hpp->adv_err_cap_or;
3e466e2d 1791
675734ba
BH
1792 /* Don't enable ECRC generation or checking if unsupported */
1793 if (!(reg32 & PCI_ERR_CAP_ECRC_GENC))
1794 reg32 &= ~PCI_ERR_CAP_ECRC_GENE;
1795 if (!(reg32 & PCI_ERR_CAP_ECRC_CHKC))
1796 reg32 &= ~PCI_ERR_CAP_ECRC_CHKE;
589fcc23
BH
1797 pci_write_config_dword(dev, pos + PCI_ERR_CAP, reg32);
1798
1799 /*
1800 * FIXME: The following two registers are not supported yet.
1801 *
1802 * o Secondary Uncorrectable Error Severity Register
1803 * o Secondary Uncorrectable Error Mask Register
1804 */
1805}
1806
62ce94a7 1807int pci_configure_extended_tags(struct pci_dev *dev, void *ign)
60db3a4d 1808{
62ce94a7
SK
1809 struct pci_host_bridge *host;
1810 u32 cap;
1811 u16 ctl;
60db3a4d
SK
1812 int ret;
1813
1814 if (!pci_is_pcie(dev))
62ce94a7 1815 return 0;
60db3a4d 1816
62ce94a7 1817 ret = pcie_capability_read_dword(dev, PCI_EXP_DEVCAP, &cap);
60db3a4d 1818 if (ret)
62ce94a7
SK
1819 return 0;
1820
1821 if (!(cap & PCI_EXP_DEVCAP_EXT_TAG))
1822 return 0;
60db3a4d 1823
62ce94a7
SK
1824 ret = pcie_capability_read_word(dev, PCI_EXP_DEVCTL, &ctl);
1825 if (ret)
1826 return 0;
1827
1828 host = pci_find_host_bridge(dev->bus);
1829 if (!host)
1830 return 0;
60db3a4d 1831
62ce94a7
SK
1832 /*
1833 * If some device in the hierarchy doesn't handle Extended Tags
1834 * correctly, make sure they're disabled.
1835 */
1836 if (host->no_ext_tags) {
1837 if (ctl & PCI_EXP_DEVCTL_EXT_TAG) {
7506dc79 1838 pci_info(dev, "disabling Extended Tags\n");
62ce94a7
SK
1839 pcie_capability_clear_word(dev, PCI_EXP_DEVCTL,
1840 PCI_EXP_DEVCTL_EXT_TAG);
1841 }
1842 return 0;
1843 }
1844
1845 if (!(ctl & PCI_EXP_DEVCTL_EXT_TAG)) {
7506dc79 1846 pci_info(dev, "enabling Extended Tags\n");
60db3a4d
SK
1847 pcie_capability_set_word(dev, PCI_EXP_DEVCTL,
1848 PCI_EXP_DEVCTL_EXT_TAG);
62ce94a7
SK
1849 }
1850 return 0;
60db3a4d
SK
1851}
1852
a99b646a 1853/**
1854 * pcie_relaxed_ordering_enabled - Probe for PCIe relaxed ordering enable
1855 * @dev: PCI device to query
1856 *
1857 * Returns true if the device has enabled relaxed ordering attribute.
1858 */
1859bool pcie_relaxed_ordering_enabled(struct pci_dev *dev)
1860{
1861 u16 v;
1862
1863 pcie_capability_read_word(dev, PCI_EXP_DEVCTL, &v);
1864
1865 return !!(v & PCI_EXP_DEVCTL_RELAX_EN);
1866}
1867EXPORT_SYMBOL(pcie_relaxed_ordering_enabled);
1868
1869static void pci_configure_relaxed_ordering(struct pci_dev *dev)
1870{
1871 struct pci_dev *root;
1872
1873 /* PCI_EXP_DEVICE_RELAX_EN is RsvdP in VFs */
1874 if (dev->is_virtfn)
1875 return;
1876
1877 if (!pcie_relaxed_ordering_enabled(dev))
1878 return;
1879
1880 /*
1881 * For now, we only deal with Relaxed Ordering issues with Root
1882 * Ports. Peer-to-Peer DMA is another can of worms.
1883 */
1884 root = pci_find_pcie_root_port(dev);
1885 if (!root)
1886 return;
1887
1888 if (root->dev_flags & PCI_DEV_FLAGS_NO_RELAXED_ORDERING) {
1889 pcie_capability_clear_word(dev, PCI_EXP_DEVCTL,
1890 PCI_EXP_DEVCTL_RELAX_EN);
7506dc79 1891 pci_info(dev, "Relaxed Ordering disabled because the Root Port didn't support it\n");
a99b646a 1892 }
1893}
1894
c46fd358
BH
1895static void pci_configure_ltr(struct pci_dev *dev)
1896{
1897#ifdef CONFIG_PCIEASPM
1898 u32 cap;
1899 struct pci_dev *bridge;
1900
1901 if (!pci_is_pcie(dev))
1902 return;
1903
1904 pcie_capability_read_dword(dev, PCI_EXP_DEVCAP2, &cap);
1905 if (!(cap & PCI_EXP_DEVCAP2_LTR))
1906 return;
1907
1908 /*
1909 * Software must not enable LTR in an Endpoint unless the Root
1910 * Complex and all intermediate Switches indicate support for LTR.
1911 * PCIe r3.1, sec 6.18.
1912 */
1913 if (pci_pcie_type(dev) == PCI_EXP_TYPE_ROOT_PORT)
1914 dev->ltr_path = 1;
1915 else {
1916 bridge = pci_upstream_bridge(dev);
1917 if (bridge && bridge->ltr_path)
1918 dev->ltr_path = 1;
1919 }
1920
1921 if (dev->ltr_path)
1922 pcie_capability_set_word(dev, PCI_EXP_DEVCTL2,
1923 PCI_EXP_DEVCTL2_LTR_EN);
1924#endif
1925}
1926
6cd33649
BH
1927static void pci_configure_device(struct pci_dev *dev)
1928{
1929 struct hotplug_params hpp;
1930 int ret;
1931
9dae3a97 1932 pci_configure_mps(dev);
62ce94a7 1933 pci_configure_extended_tags(dev, NULL);
a99b646a 1934 pci_configure_relaxed_ordering(dev);
c46fd358 1935 pci_configure_ltr(dev);
9dae3a97 1936
6cd33649
BH
1937 memset(&hpp, 0, sizeof(hpp));
1938 ret = pci_get_hp_params(dev, &hpp);
1939 if (ret)
1940 return;
1941
1942 program_hpp_type2(dev, hpp.t2);
1943 program_hpp_type1(dev, hpp.t1);
1944 program_hpp_type0(dev, hpp.t0);
1945}
1946
201de56e
ZY
1947static void pci_release_capabilities(struct pci_dev *dev)
1948{
1949 pci_vpd_release(dev);
d1b054da 1950 pci_iov_release(dev);
f796841e 1951 pci_free_cap_save_buffers(dev);
201de56e
ZY
1952}
1953
1da177e4 1954/**
3e466e2d
BH
1955 * pci_release_dev - Free a PCI device structure when all users of it are
1956 * finished
1da177e4
LT
1957 * @dev: device that's been disconnected
1958 *
3e466e2d 1959 * Will be called only by the device core when all users of this PCI device are
1da177e4
LT
1960 * done.
1961 */
1962static void pci_release_dev(struct device *dev)
1963{
04480094 1964 struct pci_dev *pci_dev;
1da177e4 1965
04480094 1966 pci_dev = to_pci_dev(dev);
201de56e 1967 pci_release_capabilities(pci_dev);
98d9f30c 1968 pci_release_of_node(pci_dev);
6ae32c53 1969 pcibios_release_device(pci_dev);
8b1fce04 1970 pci_bus_put(pci_dev->bus);
782a985d 1971 kfree(pci_dev->driver_override);
338c3149 1972 kfree(pci_dev->dma_alias_mask);
1da177e4
LT
1973 kfree(pci_dev);
1974}
1975
3c6e6ae7 1976struct pci_dev *pci_alloc_dev(struct pci_bus *bus)
65891215
ME
1977{
1978 struct pci_dev *dev;
1979
1980 dev = kzalloc(sizeof(struct pci_dev), GFP_KERNEL);
1981 if (!dev)
1982 return NULL;
1983
65891215 1984 INIT_LIST_HEAD(&dev->bus_list);
88e7b167 1985 dev->dev.type = &pci_dev_type;
3c6e6ae7 1986 dev->bus = pci_bus_get(bus);
65891215
ME
1987
1988 return dev;
1989}
3c6e6ae7
GZ
1990EXPORT_SYMBOL(pci_alloc_dev);
1991
62bc6a6f
SK
1992static bool pci_bus_crs_vendor_id(u32 l)
1993{
1994 return (l & 0xffff) == 0x0001;
1995}
1996
6a802ef0
SK
1997static bool pci_bus_wait_crs(struct pci_bus *bus, int devfn, u32 *l,
1998 int timeout)
1da177e4 1999{
1da177e4
LT
2000 int delay = 1;
2001
6a802ef0
SK
2002 if (!pci_bus_crs_vendor_id(*l))
2003 return true; /* not a CRS completion */
1da177e4 2004
6a802ef0
SK
2005 if (!timeout)
2006 return false; /* CRS, but caller doesn't want to wait */
1da177e4 2007
89665a6a 2008 /*
6a802ef0
SK
2009 * We got the reserved Vendor ID that indicates a completion with
2010 * Configuration Request Retry Status (CRS). Retry until we get a
2011 * valid Vendor ID or we time out.
89665a6a 2012 */
62bc6a6f 2013 while (pci_bus_crs_vendor_id(*l)) {
6a802ef0 2014 if (delay > timeout) {
e78e661f
SK
2015 pr_warn("pci %04x:%02x:%02x.%d: not ready after %dms; giving up\n",
2016 pci_domain_nr(bus), bus->number,
2017 PCI_SLOT(devfn), PCI_FUNC(devfn), delay - 1);
2018
efdc87da 2019 return false;
1da177e4 2020 }
e78e661f
SK
2021 if (delay >= 1000)
2022 pr_info("pci %04x:%02x:%02x.%d: not ready after %dms; waiting\n",
2023 pci_domain_nr(bus), bus->number,
2024 PCI_SLOT(devfn), PCI_FUNC(devfn), delay - 1);
efdc87da 2025
1da177e4
LT
2026 msleep(delay);
2027 delay *= 2;
9f982756 2028
efdc87da
YL
2029 if (pci_bus_read_config_dword(bus, devfn, PCI_VENDOR_ID, l))
2030 return false;
1da177e4
LT
2031 }
2032
e78e661f
SK
2033 if (delay >= 1000)
2034 pr_info("pci %04x:%02x:%02x.%d: ready after %dms\n",
2035 pci_domain_nr(bus), bus->number,
2036 PCI_SLOT(devfn), PCI_FUNC(devfn), delay - 1);
2037
efdc87da
YL
2038 return true;
2039}
6a802ef0
SK
2040
2041bool pci_bus_read_dev_vendor_id(struct pci_bus *bus, int devfn, u32 *l,
2042 int timeout)
2043{
2044 if (pci_bus_read_config_dword(bus, devfn, PCI_VENDOR_ID, l))
2045 return false;
2046
3e466e2d 2047 /* Some broken boards return 0 or ~0 if a slot is empty: */
6a802ef0
SK
2048 if (*l == 0xffffffff || *l == 0x00000000 ||
2049 *l == 0x0000ffff || *l == 0xffff0000)
2050 return false;
2051
2052 if (pci_bus_crs_vendor_id(*l))
2053 return pci_bus_wait_crs(bus, devfn, l, timeout);
2054
efdc87da
YL
2055 return true;
2056}
2057EXPORT_SYMBOL(pci_bus_read_dev_vendor_id);
2058
2059/*
3e466e2d
BH
2060 * Read the config data for a PCI device, sanity-check it,
2061 * and fill in the dev structure.
efdc87da
YL
2062 */
2063static struct pci_dev *pci_scan_device(struct pci_bus *bus, int devfn)
2064{
2065 struct pci_dev *dev;
2066 u32 l;
2067
2068 if (!pci_bus_read_dev_vendor_id(bus, devfn, &l, 60*1000))
2069 return NULL;
2070
8b1fce04 2071 dev = pci_alloc_dev(bus);
1da177e4
LT
2072 if (!dev)
2073 return NULL;
2074
1da177e4 2075 dev->devfn = devfn;
1da177e4
LT
2076 dev->vendor = l & 0xffff;
2077 dev->device = (l >> 16) & 0xffff;
cef354db 2078
98d9f30c
BH
2079 pci_set_of_node(dev);
2080
480b93b7 2081 if (pci_setup_device(dev)) {
8b1fce04 2082 pci_bus_put(dev->bus);
1da177e4
LT
2083 kfree(dev);
2084 return NULL;
2085 }
1da177e4
LT
2086
2087 return dev;
2088}
2089
201de56e
ZY
2090static void pci_init_capabilities(struct pci_dev *dev)
2091{
938174e5
SS
2092 /* Enhanced Allocation */
2093 pci_ea_init(dev);
2094
e80e7edc
GP
2095 /* Setup MSI caps & disable MSI/MSI-X interrupts */
2096 pci_msi_setup_pci_dev(dev);
201de56e 2097
63f4898a
RW
2098 /* Buffers for saving PCIe and PCI-X capabilities */
2099 pci_allocate_cap_save_buffers(dev);
2100
201de56e
ZY
2101 /* Power Management */
2102 pci_pm_init(dev);
2103
2104 /* Vital Product Data */
f1cd93f9 2105 pci_vpd_init(dev);
58c3a727
YZ
2106
2107 /* Alternative Routing-ID Forwarding */
31ab2476 2108 pci_configure_ari(dev);
d1b054da
YZ
2109
2110 /* Single Root I/O Virtualization */
2111 pci_iov_init(dev);
ae21ee65 2112
edc90fee
BH
2113 /* Address Translation Services */
2114 pci_ats_init(dev);
2115
ae21ee65 2116 /* Enable ACS P2P upstream forwarding */
5d990b62 2117 pci_enable_acs(dev);
b07461a8 2118
9bb04a0c
JY
2119 /* Precision Time Measurement */
2120 pci_ptm_init(dev);
4dc2db09 2121
66b80809
KB
2122 /* Advanced Error Reporting */
2123 pci_aer_init(dev);
201de56e
ZY
2124}
2125
098259eb 2126/*
3e466e2d 2127 * This is the equivalent of pci_host_bridge_msi_domain() that acts on
098259eb
MZ
2128 * devices. Firmware interfaces that can select the MSI domain on a
2129 * per-device basis should be called from here.
2130 */
2131static struct irq_domain *pci_dev_msi_domain(struct pci_dev *dev)
2132{
2133 struct irq_domain *d;
2134
2135 /*
3e466e2d 2136 * If a domain has been set through the pcibios_add_device()
098259eb
MZ
2137 * callback, then this is the one (platform code knows best).
2138 */
2139 d = dev_get_msi_domain(&dev->dev);
2140 if (d)
2141 return d;
2142
54fa97ee
MZ
2143 /*
2144 * Let's see if we have a firmware interface able to provide
2145 * the domain.
2146 */
2147 d = pci_msi_get_device_domain(dev);
2148 if (d)
2149 return d;
2150
098259eb
MZ
2151 return NULL;
2152}
2153
44aa0c65
MZ
2154static void pci_set_msi_domain(struct pci_dev *dev)
2155{
098259eb
MZ
2156 struct irq_domain *d;
2157
44aa0c65 2158 /*
098259eb
MZ
2159 * If the platform or firmware interfaces cannot supply a
2160 * device-specific MSI domain, then inherit the default domain
2161 * from the host bridge itself.
44aa0c65 2162 */
098259eb
MZ
2163 d = pci_dev_msi_domain(dev);
2164 if (!d)
2165 d = dev_get_msi_domain(&dev->bus->dev);
2166
2167 dev_set_msi_domain(&dev->dev, d);
44aa0c65
MZ
2168}
2169
96bde06a 2170void pci_device_add(struct pci_dev *dev, struct pci_bus *bus)
1da177e4 2171{
4f535093
YL
2172 int ret;
2173
6cd33649
BH
2174 pci_configure_device(dev);
2175
cdb9b9f7
PM
2176 device_initialize(&dev->dev);
2177 dev->dev.release = pci_release_dev;
1da177e4 2178
7629d19a 2179 set_dev_node(&dev->dev, pcibus_to_node(bus));
cdb9b9f7 2180 dev->dev.dma_mask = &dev->dma_mask;
4d57cdfa 2181 dev->dev.dma_parms = &dev->dma_parms;
cdb9b9f7 2182 dev->dev.coherent_dma_mask = 0xffffffffull;
1da177e4 2183
4d57cdfa 2184 pci_set_dma_max_seg_size(dev, 65536);
59fc67de 2185 pci_set_dma_seg_boundary(dev, 0xffffffff);
4d57cdfa 2186
1da177e4
LT
2187 /* Fix up broken headers */
2188 pci_fixup_device(pci_fixup_header, dev);
2189
3e466e2d 2190 /* Moved out from quirk header fixup code */
2069ecfb
YL
2191 pci_reassigndev_resource_alignment(dev);
2192
3e466e2d 2193 /* Clear the state_saved flag */
4b77b0a2
RW
2194 dev->state_saved = false;
2195
201de56e
ZY
2196 /* Initialize various capabilities */
2197 pci_init_capabilities(dev);
eb9d0fe4 2198
1da177e4
LT
2199 /*
2200 * Add the device to our list of discovered devices
2201 * and the bus list for fixup functions, etc.
2202 */
d71374da 2203 down_write(&pci_bus_sem);
1da177e4 2204 list_add_tail(&dev->bus_list, &bus->devices);
d71374da 2205 up_write(&pci_bus_sem);
4f535093 2206
4f535093
YL
2207 ret = pcibios_add_device(dev);
2208 WARN_ON(ret < 0);
2209
3e466e2d 2210 /* Set up MSI IRQ domain */
44aa0c65
MZ
2211 pci_set_msi_domain(dev);
2212
4f535093
YL
2213 /* Notifier could use PCI capabilities */
2214 dev->match_driver = false;
2215 ret = device_add(&dev->dev);
2216 WARN_ON(ret < 0);
cdb9b9f7
PM
2217}
2218
10874f5a 2219struct pci_dev *pci_scan_single_device(struct pci_bus *bus, int devfn)
cdb9b9f7
PM
2220{
2221 struct pci_dev *dev;
2222
90bdb311
TP
2223 dev = pci_get_slot(bus, devfn);
2224 if (dev) {
2225 pci_dev_put(dev);
2226 return dev;
2227 }
2228
cdb9b9f7
PM
2229 dev = pci_scan_device(bus, devfn);
2230 if (!dev)
2231 return NULL;
2232
2233 pci_device_add(dev, bus);
1da177e4
LT
2234
2235 return dev;
2236}
b73e9687 2237EXPORT_SYMBOL(pci_scan_single_device);
1da177e4 2238
b1bd58e4 2239static unsigned next_fn(struct pci_bus *bus, struct pci_dev *dev, unsigned fn)
f07852d6 2240{
b1bd58e4
YW
2241 int pos;
2242 u16 cap = 0;
2243 unsigned next_fn;
4fb88c1a 2244
b1bd58e4
YW
2245 if (pci_ari_enabled(bus)) {
2246 if (!dev)
2247 return 0;
2248 pos = pci_find_ext_capability(dev, PCI_EXT_CAP_ID_ARI);
2249 if (!pos)
2250 return 0;
4fb88c1a 2251
b1bd58e4
YW
2252 pci_read_config_word(dev, pos + PCI_ARI_CAP, &cap);
2253 next_fn = PCI_ARI_CAP_NFN(cap);
2254 if (next_fn <= fn)
2255 return 0; /* protect against malformed list */
f07852d6 2256
b1bd58e4
YW
2257 return next_fn;
2258 }
2259
2260 /* dev may be NULL for non-contiguous multifunction devices */
2261 if (!dev || dev->multifunction)
2262 return (fn + 1) % 8;
f07852d6 2263
f07852d6
MW
2264 return 0;
2265}
2266
2267static int only_one_child(struct pci_bus *bus)
2268{
d57f0b8c 2269 struct pci_dev *bridge = bus->self;
284f5f9d 2270
d57f0b8c
BH
2271 /*
2272 * Systems with unusual topologies set PCI_SCAN_ALL_PCIE_DEVS so
2273 * we scan for all possible devices, not just Device 0.
2274 */
2275 if (pci_has_flag(PCI_SCAN_ALL_PCIE_DEVS))
f07852d6 2276 return 0;
5bbe029f
BH
2277
2278 /*
d57f0b8c
BH
2279 * A PCIe Downstream Port normally leads to a Link with only Device
2280 * 0 on it (PCIe spec r3.1, sec 7.3.1). As an optimization, scan
2281 * only for Device 0 in that situation.
2282 *
2283 * Checking has_secondary_link is a hack to identify Downstream
2284 * Ports because sometimes Switches are configured such that the
2285 * PCIe Port Type labels are backwards.
5bbe029f 2286 */
d57f0b8c 2287 if (bridge && pci_is_pcie(bridge) && bridge->has_secondary_link)
f07852d6 2288 return 1;
d57f0b8c 2289
f07852d6
MW
2290 return 0;
2291}
2292
1da177e4 2293/**
3e466e2d 2294 * pci_scan_slot - Scan a PCI slot on a bus for devices
1da177e4 2295 * @bus: PCI bus to scan
3e466e2d 2296 * @devfn: slot number to scan (must have zero function)
1da177e4
LT
2297 *
2298 * Scan a PCI slot on the specified PCI bus for devices, adding
2299 * discovered devices to the @bus->devices list. New devices
8a1bc901 2300 * will not have is_added set.
1b69dfc6
TP
2301 *
2302 * Returns the number of new devices found.
1da177e4 2303 */
96bde06a 2304int pci_scan_slot(struct pci_bus *bus, int devfn)
1da177e4 2305{
f07852d6 2306 unsigned fn, nr = 0;
1b69dfc6 2307 struct pci_dev *dev;
f07852d6
MW
2308
2309 if (only_one_child(bus) && (devfn > 0))
2310 return 0; /* Already scanned the entire slot */
1da177e4 2311
1b69dfc6 2312 dev = pci_scan_single_device(bus, devfn);
4fb88c1a
MW
2313 if (!dev)
2314 return 0;
2315 if (!dev->is_added)
1b69dfc6
TP
2316 nr++;
2317
b1bd58e4 2318 for (fn = next_fn(bus, dev, 0); fn > 0; fn = next_fn(bus, dev, fn)) {
f07852d6
MW
2319 dev = pci_scan_single_device(bus, devfn + fn);
2320 if (dev) {
2321 if (!dev->is_added)
2322 nr++;
2323 dev->multifunction = 1;
1da177e4
LT
2324 }
2325 }
7d715a6c 2326
3e466e2d 2327 /* Only one slot has PCIe device */
149e1637 2328 if (bus->self && nr)
7d715a6c
SL
2329 pcie_aspm_init_link_state(bus->self);
2330
1da177e4
LT
2331 return nr;
2332}
b7fe9434 2333EXPORT_SYMBOL(pci_scan_slot);
1da177e4 2334
b03e7495
JM
2335static int pcie_find_smpss(struct pci_dev *dev, void *data)
2336{
2337 u8 *smpss = data;
2338
2339 if (!pci_is_pcie(dev))
2340 return 0;
2341
d4aa68f6
YW
2342 /*
2343 * We don't have a way to change MPS settings on devices that have
2344 * drivers attached. A hot-added device might support only the minimum
2345 * MPS setting (MPS=128). Therefore, if the fabric contains a bridge
2346 * where devices may be hot-added, we limit the fabric MPS to 128 so
2347 * hot-added devices will work correctly.
2348 *
2349 * However, if we hot-add a device to a slot directly below a Root
2350 * Port, it's impossible for there to be other existing devices below
2351 * the port. We don't limit the MPS in this case because we can
2352 * reconfigure MPS on both the Root Port and the hot-added device,
2353 * and there are no other devices involved.
2354 *
2355 * Note that this PCIE_BUS_SAFE path assumes no peer-to-peer DMA.
b03e7495 2356 */
d4aa68f6
YW
2357 if (dev->is_hotplug_bridge &&
2358 pci_pcie_type(dev) != PCI_EXP_TYPE_ROOT_PORT)
b03e7495
JM
2359 *smpss = 0;
2360
2361 if (*smpss > dev->pcie_mpss)
2362 *smpss = dev->pcie_mpss;
2363
2364 return 0;
2365}
2366
2367static void pcie_write_mps(struct pci_dev *dev, int mps)
2368{
62f392ea 2369 int rc;
b03e7495
JM
2370
2371 if (pcie_bus_config == PCIE_BUS_PERFORMANCE) {
62f392ea 2372 mps = 128 << dev->pcie_mpss;
b03e7495 2373
62f87c0e
YW
2374 if (pci_pcie_type(dev) != PCI_EXP_TYPE_ROOT_PORT &&
2375 dev->bus->self)
3e466e2d
BH
2376
2377 /*
2378 * For "Performance", the assumption is made that
b03e7495
JM
2379 * downstream communication will never be larger than
2380 * the MRRS. So, the MPS only needs to be configured
2381 * for the upstream communication. This being the case,
2382 * walk from the top down and set the MPS of the child
2383 * to that of the parent bus.
62f392ea
JM
2384 *
2385 * Configure the device MPS with the smaller of the
2386 * device MPSS or the bridge MPS (which is assumed to be
2387 * properly configured at this point to the largest
2388 * allowable MPS based on its parent bus).
b03e7495 2389 */
62f392ea 2390 mps = min(mps, pcie_get_mps(dev->bus->self));
b03e7495
JM
2391 }
2392
2393 rc = pcie_set_mps(dev, mps);
2394 if (rc)
7506dc79 2395 pci_err(dev, "Failed attempting to set the MPS\n");
b03e7495
JM
2396}
2397
62f392ea 2398static void pcie_write_mrrs(struct pci_dev *dev)
b03e7495 2399{
62f392ea 2400 int rc, mrrs;
b03e7495 2401
3e466e2d
BH
2402 /*
2403 * In the "safe" case, do not configure the MRRS. There appear to be
ed2888e9
JM
2404 * issues with setting MRRS to 0 on a number of devices.
2405 */
ed2888e9
JM
2406 if (pcie_bus_config != PCIE_BUS_PERFORMANCE)
2407 return;
2408
3e466e2d
BH
2409 /*
2410 * For max performance, the MRRS must be set to the largest supported
ed2888e9 2411 * value. However, it cannot be configured larger than the MPS the
62f392ea 2412 * device or the bus can support. This should already be properly
3e466e2d 2413 * configured by a prior call to pcie_write_mps().
ed2888e9 2414 */
62f392ea 2415 mrrs = pcie_get_mps(dev);
b03e7495 2416
3e466e2d
BH
2417 /*
2418 * MRRS is a R/W register. Invalid values can be written, but a
ed2888e9 2419 * subsequent read will verify if the value is acceptable or not.
b03e7495
JM
2420 * If the MRRS value provided is not acceptable (e.g., too large),
2421 * shrink the value until it is acceptable to the HW.
f7625980 2422 */
b03e7495
JM
2423 while (mrrs != pcie_get_readrq(dev) && mrrs >= 128) {
2424 rc = pcie_set_readrq(dev, mrrs);
62f392ea
JM
2425 if (!rc)
2426 break;
b03e7495 2427
7506dc79 2428 pci_warn(dev, "Failed attempting to set the MRRS\n");
b03e7495
JM
2429 mrrs /= 2;
2430 }
62f392ea
JM
2431
2432 if (mrrs < 128)
7506dc79 2433 pci_err(dev, "MRRS was unable to be configured with a safe value. If problems are experienced, try running with pci=pcie_bus_safe\n");
b03e7495
JM
2434}
2435
2436static int pcie_bus_configure_set(struct pci_dev *dev, void *data)
2437{
a513a99a 2438 int mps, orig_mps;
b03e7495
JM
2439
2440 if (!pci_is_pcie(dev))
2441 return 0;
2442
27d868b5
KB
2443 if (pcie_bus_config == PCIE_BUS_TUNE_OFF ||
2444 pcie_bus_config == PCIE_BUS_DEFAULT)
5895af79 2445 return 0;
5895af79 2446
a513a99a
JM
2447 mps = 128 << *(u8 *)data;
2448 orig_mps = pcie_get_mps(dev);
b03e7495
JM
2449
2450 pcie_write_mps(dev, mps);
62f392ea 2451 pcie_write_mrrs(dev);
b03e7495 2452
7506dc79 2453 pci_info(dev, "Max Payload Size set to %4d/%4d (was %4d), Max Read Rq %4d\n",
227f0647 2454 pcie_get_mps(dev), 128 << dev->pcie_mpss,
a513a99a 2455 orig_mps, pcie_get_readrq(dev));
b03e7495
JM
2456
2457 return 0;
2458}
2459
3e466e2d
BH
2460/*
2461 * pcie_bus_configure_settings() requires that pci_walk_bus work in a top-down,
b03e7495
JM
2462 * parents then children fashion. If this changes, then this code will not
2463 * work as designed.
2464 */
a58674ff 2465void pcie_bus_configure_settings(struct pci_bus *bus)
b03e7495 2466{
1e358f94 2467 u8 smpss = 0;
b03e7495 2468
a58674ff 2469 if (!bus->self)
b03e7495
JM
2470 return;
2471
b03e7495 2472 if (!pci_is_pcie(bus->self))
5f39e670
JM
2473 return;
2474
3e466e2d
BH
2475 /*
2476 * FIXME - Peer to peer DMA is possible, though the endpoint would need
3315472c 2477 * to be aware of the MPS of the destination. To work around this,
5f39e670
JM
2478 * simply force the MPS of the entire system to the smallest possible.
2479 */
2480 if (pcie_bus_config == PCIE_BUS_PEER2PEER)
2481 smpss = 0;
2482
b03e7495 2483 if (pcie_bus_config == PCIE_BUS_SAFE) {
a58674ff 2484 smpss = bus->self->pcie_mpss;
5f39e670 2485
b03e7495
JM
2486 pcie_find_smpss(bus->self, &smpss);
2487 pci_walk_bus(bus, pcie_find_smpss, &smpss);
2488 }
2489
2490 pcie_bus_configure_set(bus->self, &smpss);
2491 pci_walk_bus(bus, pcie_bus_configure_set, &smpss);
2492}
debc3b77 2493EXPORT_SYMBOL_GPL(pcie_bus_configure_settings);
b03e7495 2494
bccf90d6
PD
2495/*
2496 * Called after each bus is probed, but before its children are examined. This
2497 * is marked as __weak because multiple architectures define it.
2498 */
2499void __weak pcibios_fixup_bus(struct pci_bus *bus)
2500{
2501 /* nothing to do, expected to be removed in the future */
2502}
2503
1c02ea81
MW
2504/**
2505 * pci_scan_child_bus_extend() - Scan devices below a bus
2506 * @bus: Bus to scan for devices
2507 * @available_buses: Total number of buses available (%0 does not try to
2508 * extend beyond the minimal)
2509 *
2510 * Scans devices below @bus including subordinate buses. Returns new
2511 * subordinate number including all the found devices. Passing
2512 * @available_buses causes the remaining bus space to be distributed
2513 * equally between hotplug-capable bridges to allow future extension of the
2514 * hierarchy.
2515 */
2516static unsigned int pci_scan_child_bus_extend(struct pci_bus *bus,
2517 unsigned int available_buses)
1da177e4 2518{
1c02ea81
MW
2519 unsigned int used_buses, normal_bridges = 0, hotplug_bridges = 0;
2520 unsigned int start = bus->busn_res.start;
2521 unsigned int devfn, cmax, max = start;
1da177e4
LT
2522 struct pci_dev *dev;
2523
0207c356 2524 dev_dbg(&bus->dev, "scanning bus\n");
1da177e4
LT
2525
2526 /* Go find them, Rover! */
2527 for (devfn = 0; devfn < 0x100; devfn += 8)
2528 pci_scan_slot(bus, devfn);
2529
3e466e2d 2530 /* Reserve buses for SR-IOV capability */
1c02ea81
MW
2531 used_buses = pci_iov_bus_range(bus);
2532 max += used_buses;
a28724b0 2533
1da177e4
LT
2534 /*
2535 * After performing arch-dependent fixup of the bus, look behind
2536 * all PCI-to-PCI bridges on this bus.
2537 */
74710ded 2538 if (!bus->is_added) {
0207c356 2539 dev_dbg(&bus->dev, "fixups for bus\n");
74710ded 2540 pcibios_fixup_bus(bus);
981cf9ea 2541 bus->is_added = 1;
74710ded
AC
2542 }
2543
1c02ea81
MW
2544 /*
2545 * Calculate how many hotplug bridges and normal bridges there
2546 * are on this bus. We will distribute the additional available
2547 * buses between hotplug bridges.
2548 */
2549 for_each_pci_bridge(dev, bus) {
2550 if (dev->is_hotplug_bridge)
2551 hotplug_bridges++;
2552 else
2553 normal_bridges++;
2554 }
2555
4147c2fd
MW
2556 /*
2557 * Scan bridges that are already configured. We don't touch them
2558 * unless they are misconfigured (which will be done in the second
2559 * scan below).
2560 */
1c02ea81
MW
2561 for_each_pci_bridge(dev, bus) {
2562 cmax = max;
2563 max = pci_scan_bridge_extend(bus, dev, max, 0, 0);
2564 used_buses += cmax - max;
2565 }
4147c2fd
MW
2566
2567 /* Scan bridges that need to be reconfigured */
1c02ea81
MW
2568 for_each_pci_bridge(dev, bus) {
2569 unsigned int buses = 0;
2570
2571 if (!hotplug_bridges && normal_bridges == 1) {
3e466e2d 2572
1c02ea81
MW
2573 /*
2574 * There is only one bridge on the bus (upstream
2575 * port) so it gets all available buses which it
2576 * can then distribute to the possible hotplug
2577 * bridges below.
2578 */
2579 buses = available_buses;
2580 } else if (dev->is_hotplug_bridge) {
3e466e2d 2581
1c02ea81
MW
2582 /*
2583 * Distribute the extra buses between hotplug
2584 * bridges if any.
2585 */
2586 buses = available_buses / hotplug_bridges;
2587 buses = min(buses, available_buses - used_buses);
2588 }
2589
2590 cmax = max;
2591 max = pci_scan_bridge_extend(bus, dev, cmax, buses, 1);
2592 used_buses += max - cmax;
2593 }
1da177e4 2594
e16b4660
KB
2595 /*
2596 * Make sure a hotplug bridge has at least the minimum requested
1c02ea81
MW
2597 * number of buses but allow it to grow up to the maximum available
2598 * bus number of there is room.
e16b4660 2599 */
1c02ea81
MW
2600 if (bus->self && bus->self->is_hotplug_bridge) {
2601 used_buses = max_t(unsigned int, available_buses,
2602 pci_hotplug_bus_size - 1);
2603 if (max - start < used_buses) {
2604 max = start + used_buses;
2605
2606 /* Do not allocate more buses than we have room left */
2607 if (max > bus->busn_res.end)
2608 max = bus->busn_res.end;
2609
2610 dev_dbg(&bus->dev, "%pR extended by %#02x\n",
2611 &bus->busn_res, max - start);
2612 }
e16b4660
KB
2613 }
2614
1da177e4
LT
2615 /*
2616 * We've scanned the bus and so we know all about what's on
2617 * the other side of any bridges that may be on this bus plus
2618 * any devices.
2619 *
2620 * Return how far we've got finding sub-buses.
2621 */
0207c356 2622 dev_dbg(&bus->dev, "bus scan returning with max=%02x\n", max);
1da177e4
LT
2623 return max;
2624}
1c02ea81
MW
2625
2626/**
2627 * pci_scan_child_bus() - Scan devices below a bus
2628 * @bus: Bus to scan for devices
2629 *
2630 * Scans devices below @bus including subordinate buses. Returns new
2631 * subordinate number including all the found devices.
2632 */
2633unsigned int pci_scan_child_bus(struct pci_bus *bus)
2634{
2635 return pci_scan_child_bus_extend(bus, 0);
2636}
b7fe9434 2637EXPORT_SYMBOL_GPL(pci_scan_child_bus);
1da177e4 2638
6c0cc950 2639/**
3e466e2d
BH
2640 * pcibios_root_bridge_prepare - Platform-specific host bridge setup
2641 * @bridge: Host bridge to set up
6c0cc950
RW
2642 *
2643 * Default empty implementation. Replace with an architecture-specific setup
2644 * routine, if necessary.
2645 */
2646int __weak pcibios_root_bridge_prepare(struct pci_host_bridge *bridge)
2647{
2648 return 0;
2649}
2650
10a95747
JL
2651void __weak pcibios_add_bus(struct pci_bus *bus)
2652{
2653}
2654
2655void __weak pcibios_remove_bus(struct pci_bus *bus)
2656{
2657}
2658
9ee8a1c4
LP
2659struct pci_bus *pci_create_root_bus(struct device *parent, int bus,
2660 struct pci_ops *ops, void *sysdata, struct list_head *resources)
1da177e4 2661{
0efd5aab 2662 int error;
5a21d70d 2663 struct pci_host_bridge *bridge;
1da177e4 2664
59094065 2665 bridge = pci_alloc_host_bridge(0);
7b543663 2666 if (!bridge)
37d6a0a6 2667 return NULL;
7b543663
YL
2668
2669 bridge->dev.parent = parent;
a9d9f527 2670
37d6a0a6
AB
2671 list_splice_init(resources, &bridge->windows);
2672 bridge->sysdata = sysdata;
2673 bridge->busnr = bus;
2674 bridge->ops = ops;
a9d9f527 2675
37d6a0a6
AB
2676 error = pci_register_host_bridge(bridge);
2677 if (error < 0)
2678 goto err_out;
a5390aa6 2679
37d6a0a6 2680 return bridge->bus;
1da177e4 2681
1da177e4 2682err_out:
37d6a0a6 2683 kfree(bridge);
1da177e4
LT
2684 return NULL;
2685}
e6b29dea 2686EXPORT_SYMBOL_GPL(pci_create_root_bus);
cdb9b9f7 2687
49b8e3f3
CP
2688int pci_host_probe(struct pci_host_bridge *bridge)
2689{
2690 struct pci_bus *bus, *child;
2691 int ret;
2692
2693 ret = pci_scan_root_bus_bridge(bridge);
2694 if (ret < 0) {
2695 dev_err(bridge->dev.parent, "Scanning root bridge failed");
2696 return ret;
2697 }
2698
2699 bus = bridge->bus;
2700
2701 /*
2702 * We insert PCI resources into the iomem_resource and
2703 * ioport_resource trees in either pci_bus_claim_resources()
2704 * or pci_bus_assign_resources().
2705 */
2706 if (pci_has_flag(PCI_PROBE_ONLY)) {
2707 pci_bus_claim_resources(bus);
2708 } else {
2709 pci_bus_size_bridges(bus);
2710 pci_bus_assign_resources(bus);
2711
2712 list_for_each_entry(child, &bus->children, node)
2713 pcie_bus_configure_settings(child);
2714 }
2715
2716 pci_bus_add_devices(bus);
2717 return 0;
2718}
2719EXPORT_SYMBOL_GPL(pci_host_probe);
2720
98a35831
YL
2721int pci_bus_insert_busn_res(struct pci_bus *b, int bus, int bus_max)
2722{
2723 struct resource *res = &b->busn_res;
2724 struct resource *parent_res, *conflict;
2725
2726 res->start = bus;
2727 res->end = bus_max;
2728 res->flags = IORESOURCE_BUS;
2729
2730 if (!pci_is_root_bus(b))
2731 parent_res = &b->parent->busn_res;
2732 else {
2733 parent_res = get_pci_domain_busn_res(pci_domain_nr(b));
2734 res->flags |= IORESOURCE_PCI_FIXED;
2735 }
2736
ced04d15 2737 conflict = request_resource_conflict(parent_res, res);
98a35831
YL
2738
2739 if (conflict)
2740 dev_printk(KERN_DEBUG, &b->dev,
2741 "busn_res: can not insert %pR under %s%pR (conflicts with %s %pR)\n",
2742 res, pci_is_root_bus(b) ? "domain " : "",
2743 parent_res, conflict->name, conflict);
98a35831
YL
2744
2745 return conflict == NULL;
2746}
2747
2748int pci_bus_update_busn_res_end(struct pci_bus *b, int bus_max)
2749{
2750 struct resource *res = &b->busn_res;
2751 struct resource old_res = *res;
2752 resource_size_t size;
2753 int ret;
2754
2755 if (res->start > bus_max)
2756 return -EINVAL;
2757
2758 size = bus_max - res->start + 1;
2759 ret = adjust_resource(res, res->start, size);
2760 dev_printk(KERN_DEBUG, &b->dev,
2761 "busn_res: %pR end %s updated to %02x\n",
2762 &old_res, ret ? "can not be" : "is", bus_max);
2763
2764 if (!ret && !res->parent)
2765 pci_bus_insert_busn_res(b, res->start, res->end);
2766
2767 return ret;
2768}
2769
2770void pci_bus_release_busn_res(struct pci_bus *b)
2771{
2772 struct resource *res = &b->busn_res;
2773 int ret;
2774
2775 if (!res->flags || !res->parent)
2776 return;
2777
2778 ret = release_resource(res);
2779 dev_printk(KERN_DEBUG, &b->dev,
2780 "busn_res: %pR %s released\n",
2781 res, ret ? "can not be" : "is");
2782}
2783
1228c4b6 2784int pci_scan_root_bus_bridge(struct pci_host_bridge *bridge)
a2ebb827 2785{
14d76b68 2786 struct resource_entry *window;
4d99f524 2787 bool found = false;
a2ebb827 2788 struct pci_bus *b;
1228c4b6 2789 int max, bus, ret;
4d99f524 2790
1228c4b6
LP
2791 if (!bridge)
2792 return -EINVAL;
2793
2794 resource_list_for_each_entry(window, &bridge->windows)
4d99f524
YL
2795 if (window->res->flags & IORESOURCE_BUS) {
2796 found = true;
2797 break;
2798 }
a2ebb827 2799
1228c4b6
LP
2800 ret = pci_register_host_bridge(bridge);
2801 if (ret < 0)
2802 return ret;
2803
2804 b = bridge->bus;
2805 bus = bridge->busnr;
a2ebb827 2806
4d99f524
YL
2807 if (!found) {
2808 dev_info(&b->dev,
2809 "No busn resource found for root bus, will use [bus %02x-ff]\n",
2810 bus);
2811 pci_bus_insert_busn_res(b, bus, 255);
2812 }
2813
2814 max = pci_scan_child_bus(b);
2815
2816 if (!found)
2817 pci_bus_update_busn_res_end(b, max);
2818
1228c4b6 2819 return 0;
a2ebb827 2820}
1228c4b6 2821EXPORT_SYMBOL(pci_scan_root_bus_bridge);
d2a7926d
LP
2822
2823struct pci_bus *pci_scan_root_bus(struct device *parent, int bus,
2824 struct pci_ops *ops, void *sysdata, struct list_head *resources)
2825{
14d76b68 2826 struct resource_entry *window;
4d99f524 2827 bool found = false;
a2ebb827 2828 struct pci_bus *b;
4d99f524
YL
2829 int max;
2830
14d76b68 2831 resource_list_for_each_entry(window, resources)
4d99f524
YL
2832 if (window->res->flags & IORESOURCE_BUS) {
2833 found = true;
2834 break;
2835 }
a2ebb827 2836
9ee8a1c4 2837 b = pci_create_root_bus(parent, bus, ops, sysdata, resources);
a2ebb827
BH
2838 if (!b)
2839 return NULL;
2840
4d99f524
YL
2841 if (!found) {
2842 dev_info(&b->dev,
2843 "No busn resource found for root bus, will use [bus %02x-ff]\n",
2844 bus);
2845 pci_bus_insert_busn_res(b, bus, 255);
2846 }
2847
2848 max = pci_scan_child_bus(b);
2849
2850 if (!found)
2851 pci_bus_update_busn_res_end(b, max);
2852
a2ebb827 2853 return b;
d2a7926d 2854}
a2ebb827
BH
2855EXPORT_SYMBOL(pci_scan_root_bus);
2856
15856ad5 2857struct pci_bus *pci_scan_bus(int bus, struct pci_ops *ops,
de4b2f76
BH
2858 void *sysdata)
2859{
2860 LIST_HEAD(resources);
2861 struct pci_bus *b;
2862
2863 pci_add_resource(&resources, &ioport_resource);
2864 pci_add_resource(&resources, &iomem_resource);
857c3b66 2865 pci_add_resource(&resources, &busn_resource);
de4b2f76
BH
2866 b = pci_create_root_bus(NULL, bus, ops, sysdata, &resources);
2867 if (b) {
857c3b66 2868 pci_scan_child_bus(b);
de4b2f76
BH
2869 } else {
2870 pci_free_resource_list(&resources);
2871 }
2872 return b;
2873}
2874EXPORT_SYMBOL(pci_scan_bus);
2875
2f320521 2876/**
3e466e2d 2877 * pci_rescan_bus_bridge_resize - Scan a PCI bus for devices
2f320521
YL
2878 * @bridge: PCI bridge for the bus to scan
2879 *
2880 * Scan a PCI bus and child buses for new devices, add them,
2881 * and enable them, resizing bridge mmio/io resource if necessary
2882 * and possible. The caller must ensure the child devices are already
2883 * removed for resizing to occur.
2884 *
2885 * Returns the max number of subordinate bus discovered.
2886 */
10874f5a 2887unsigned int pci_rescan_bus_bridge_resize(struct pci_dev *bridge)
2f320521
YL
2888{
2889 unsigned int max;
2890 struct pci_bus *bus = bridge->subordinate;
2891
2892 max = pci_scan_child_bus(bus);
2893
2894 pci_assign_unassigned_bridge_resources(bridge);
2895
2896 pci_bus_add_devices(bus);
2897
2898 return max;
2899}
2900
a5213a31 2901/**
3e466e2d 2902 * pci_rescan_bus - Scan a PCI bus for devices
a5213a31
YL
2903 * @bus: PCI bus to scan
2904 *
3e466e2d
BH
2905 * Scan a PCI bus and child buses for new devices, add them,
2906 * and enable them.
a5213a31
YL
2907 *
2908 * Returns the max number of subordinate bus discovered.
2909 */
10874f5a 2910unsigned int pci_rescan_bus(struct pci_bus *bus)
a5213a31
YL
2911{
2912 unsigned int max;
2913
2914 max = pci_scan_child_bus(bus);
2915 pci_assign_unassigned_bus_resources(bus);
2916 pci_bus_add_devices(bus);
2917
2918 return max;
2919}
2920EXPORT_SYMBOL_GPL(pci_rescan_bus);
2921
9d16947b
RW
2922/*
2923 * pci_rescan_bus(), pci_rescan_bus_bridge_resize() and PCI device removal
2924 * routines should always be executed under this mutex.
2925 */
2926static DEFINE_MUTEX(pci_rescan_remove_lock);
2927
2928void pci_lock_rescan_remove(void)
2929{
2930 mutex_lock(&pci_rescan_remove_lock);
2931}
2932EXPORT_SYMBOL_GPL(pci_lock_rescan_remove);
2933
2934void pci_unlock_rescan_remove(void)
2935{
2936 mutex_unlock(&pci_rescan_remove_lock);
2937}
2938EXPORT_SYMBOL_GPL(pci_unlock_rescan_remove);
2939
3c78bc61
RD
2940static int __init pci_sort_bf_cmp(const struct device *d_a,
2941 const struct device *d_b)
6b4b78fe 2942{
99178b03
GKH
2943 const struct pci_dev *a = to_pci_dev(d_a);
2944 const struct pci_dev *b = to_pci_dev(d_b);
2945
6b4b78fe
MD
2946 if (pci_domain_nr(a->bus) < pci_domain_nr(b->bus)) return -1;
2947 else if (pci_domain_nr(a->bus) > pci_domain_nr(b->bus)) return 1;
2948
2949 if (a->bus->number < b->bus->number) return -1;
2950 else if (a->bus->number > b->bus->number) return 1;
2951
2952 if (a->devfn < b->devfn) return -1;
2953 else if (a->devfn > b->devfn) return 1;
2954
2955 return 0;
2956}
2957
5ff580c1 2958void __init pci_sort_breadthfirst(void)
6b4b78fe 2959{
99178b03 2960 bus_sort_breadthfirst(&pci_bus_type, &pci_sort_bf_cmp);
6b4b78fe 2961}
95e3ba97
MW
2962
2963int pci_hp_add_bridge(struct pci_dev *dev)
2964{
2965 struct pci_bus *parent = dev->bus;
4147c2fd 2966 int busnr, start = parent->busn_res.start;
1c02ea81 2967 unsigned int available_buses = 0;
95e3ba97
MW
2968 int end = parent->busn_res.end;
2969
2970 for (busnr = start; busnr <= end; busnr++) {
2971 if (!pci_find_bus(pci_domain_nr(parent), busnr))
2972 break;
2973 }
2974 if (busnr-- > end) {
7506dc79 2975 pci_err(dev, "No bus number available for hot-added bridge\n");
95e3ba97
MW
2976 return -1;
2977 }
4147c2fd
MW
2978
2979 /* Scan bridges that are already configured */
2980 busnr = pci_scan_bridge(parent, dev, busnr, 0);
2981
1c02ea81
MW
2982 /*
2983 * Distribute the available bus numbers between hotplug-capable
2984 * bridges to make extending the chain later possible.
2985 */
2986 available_buses = end - busnr;
2987
4147c2fd 2988 /* Scan bridges that need to be reconfigured */
1c02ea81 2989 pci_scan_bridge_extend(parent, dev, busnr, available_buses, 1);
4147c2fd 2990
95e3ba97
MW
2991 if (!dev->subordinate)
2992 return -1;
2993
2994 return 0;
2995}
2996EXPORT_SYMBOL_GPL(pci_hp_add_bridge);