blob: 1485a26ddcef11a47d0029f3ccecbb2fb196d4e9 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Low-Level PCI Support for PC
3 *
4 * (c) 1999--2000 Martin Mares <mj@ucw.cz>
5 */
6
7#include <linux/sched.h>
8#include <linux/pci.h>
9#include <linux/ioport.h>
10#include <linux/init.h>
Bernhard Kaindl8c4b2cf2006-02-18 01:36:55 -080011#include <linux/dmi.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070012
13#include <asm/acpi.h>
14#include <asm/segment.h>
15#include <asm/io.h>
16#include <asm/smp.h>
17
18#include "pci.h"
19
Linus Torvalds1da177e2005-04-16 15:20:36 -070020unsigned int pci_probe = PCI_PROBE_BIOS | PCI_PROBE_CONF1 | PCI_PROBE_CONF2 |
21 PCI_PROBE_MMCONF;
22
Yinghai Lue3f2bae2008-05-22 14:35:11 -070023unsigned int pci_early_dump_regs;
Adrian Bunk2b290da2006-11-16 13:16:23 +010024static int pci_bf_sort;
Linus Torvalds1da177e2005-04-16 15:20:36 -070025int pci_routeirq;
Stefan Assmanna9322f62008-06-11 16:35:14 +020026int noioapicquirk;
Stefan Assmann91979792008-06-11 16:35:15 +020027int noioapicreroute = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070028int pcibios_last_bus = -1;
jayalk@intworks.biz120bb422005-03-21 20:20:42 -080029unsigned long pirq_table_addr;
30struct pci_bus *pci_root_bus;
Linus Torvalds1da177e2005-04-16 15:20:36 -070031struct pci_raw_ops *raw_pci_ops;
Matthew Wilcoxb6ce0682008-02-10 09:45:28 -050032struct pci_raw_ops *raw_pci_ext_ops;
33
34int raw_pci_read(unsigned int domain, unsigned int bus, unsigned int devfn,
35 int reg, int len, u32 *val)
36{
Matthew Wilcoxbeef3122008-07-11 15:21:17 -060037 if (domain == 0 && reg < 256 && raw_pci_ops)
Matthew Wilcoxb6ce0682008-02-10 09:45:28 -050038 return raw_pci_ops->read(domain, bus, devfn, reg, len, val);
39 if (raw_pci_ext_ops)
40 return raw_pci_ext_ops->read(domain, bus, devfn, reg, len, val);
41 return -EINVAL;
42}
43
44int raw_pci_write(unsigned int domain, unsigned int bus, unsigned int devfn,
45 int reg, int len, u32 val)
46{
Matthew Wilcoxbeef3122008-07-11 15:21:17 -060047 if (domain == 0 && reg < 256 && raw_pci_ops)
Matthew Wilcoxb6ce0682008-02-10 09:45:28 -050048 return raw_pci_ops->write(domain, bus, devfn, reg, len, val);
49 if (raw_pci_ext_ops)
50 return raw_pci_ext_ops->write(domain, bus, devfn, reg, len, val);
51 return -EINVAL;
52}
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
54static int pci_read(struct pci_bus *bus, unsigned int devfn, int where, int size, u32 *value)
55{
Matthew Wilcoxb6ce0682008-02-10 09:45:28 -050056 return raw_pci_read(pci_domain_nr(bus), bus->number,
Jeff Garzika79e4192007-10-11 16:58:30 -040057 devfn, where, size, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -070058}
59
60static int pci_write(struct pci_bus *bus, unsigned int devfn, int where, int size, u32 value)
61{
Matthew Wilcoxb6ce0682008-02-10 09:45:28 -050062 return raw_pci_write(pci_domain_nr(bus), bus->number,
Jeff Garzika79e4192007-10-11 16:58:30 -040063 devfn, where, size, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -070064}
65
66struct pci_ops pci_root_ops = {
67 .read = pci_read,
68 .write = pci_write,
69};
70
71/*
72 * legacy, numa, and acpi all want to call pcibios_scan_root
73 * from their initcalls. This flag prevents that.
74 */
75int pcibios_scanned;
76
77/*
78 * This interrupt-safe spinlock protects all accesses to PCI
79 * configuration space.
80 */
81DEFINE_SPINLOCK(pci_config_lock);
82
Yinghai Lu13a6ddb2008-03-27 01:31:18 -070083static int __devinit can_skip_ioresource_align(const struct dmi_system_id *d)
84{
85 pci_probe |= PCI_CAN_SKIP_ISA_ALIGN;
86 printk(KERN_INFO "PCI: %s detected, can skip ISA alignment\n", d->ident);
87 return 0;
88}
89
90static struct dmi_system_id can_skip_pciprobe_dmi_table[] __devinitdata = {
91/*
92 * Systems where PCI IO resource ISA alignment can be skipped
93 * when the ISA enable bit in the bridge control is not set
94 */
95 {
96 .callback = can_skip_ioresource_align,
97 .ident = "IBM System x3800",
98 .matches = {
99 DMI_MATCH(DMI_SYS_VENDOR, "IBM"),
100 DMI_MATCH(DMI_PRODUCT_NAME, "x3800"),
101 },
102 },
103 {
104 .callback = can_skip_ioresource_align,
105 .ident = "IBM System x3850",
106 .matches = {
107 DMI_MATCH(DMI_SYS_VENDOR, "IBM"),
108 DMI_MATCH(DMI_PRODUCT_NAME, "x3850"),
109 },
110 },
111 {
112 .callback = can_skip_ioresource_align,
113 .ident = "IBM System x3950",
114 .matches = {
115 DMI_MATCH(DMI_SYS_VENDOR, "IBM"),
116 DMI_MATCH(DMI_PRODUCT_NAME, "x3950"),
117 },
118 },
119 {}
120};
121
122void __init dmi_check_skip_isa_align(void)
123{
124 dmi_check_system(can_skip_pciprobe_dmi_table);
125}
126
Gary Hadebb71ad82008-05-12 13:57:46 -0700127static void __devinit pcibios_fixup_device_resources(struct pci_dev *dev)
128{
129 struct resource *rom_r = &dev->resource[PCI_ROM_RESOURCE];
130
131 if (pci_probe & PCI_NOASSIGN_ROMS) {
132 if (rom_r->parent)
133 return;
134 if (rom_r->start) {
135 /* we deal with BIOS assigned ROM later */
136 return;
137 }
138 rom_r->start = rom_r->end = rom_r->flags = 0;
139 }
140}
141
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142/*
143 * Called after each bus is probed, but before its children
144 * are examined.
145 */
146
147void __devinit pcibios_fixup_bus(struct pci_bus *b)
148{
Gary Hadebb71ad82008-05-12 13:57:46 -0700149 struct pci_dev *dev;
150
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 pci_read_bridge_bases(b);
Gary Hadebb71ad82008-05-12 13:57:46 -0700152 list_for_each_entry(dev, &b->devices, bus_list)
153 pcibios_fixup_device_resources(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154}
155
Bernhard Kaindl8c4b2cf2006-02-18 01:36:55 -0800156/*
Matt Domsch6b4b78f2006-09-29 15:23:23 -0500157 * Only use DMI information to set this if nothing was passed
158 * on the kernel command line (which was parsed earlier).
159 */
160
Jeff Garzik18552562007-10-03 15:15:40 -0400161static int __devinit set_bf_sort(const struct dmi_system_id *d)
Matt Domsch6b4b78f2006-09-29 15:23:23 -0500162{
163 if (pci_bf_sort == pci_bf_sort_default) {
164 pci_bf_sort = pci_dmi_bf;
165 printk(KERN_INFO "PCI: %s detected, enabling pci=bfsort.\n", d->ident);
166 }
167 return 0;
168}
169
170/*
Bernhard Kaindl8c4b2cf2006-02-18 01:36:55 -0800171 * Enable renumbering of PCI bus# ranges to reach all PCI busses (Cardbus)
172 */
173#ifdef __i386__
Jeff Garzik18552562007-10-03 15:15:40 -0400174static int __devinit assign_all_busses(const struct dmi_system_id *d)
Bernhard Kaindl8c4b2cf2006-02-18 01:36:55 -0800175{
176 pci_probe |= PCI_ASSIGN_ALL_BUSSES;
177 printk(KERN_INFO "%s detected: enabling PCI bus# renumbering"
178 " (pci=assign-busses)\n", d->ident);
179 return 0;
180}
181#endif
182
Matt Domsch6b4b78f2006-09-29 15:23:23 -0500183static struct dmi_system_id __devinitdata pciprobe_dmi_table[] = {
184#ifdef __i386__
Bernhard Kaindl8c4b2cf2006-02-18 01:36:55 -0800185/*
186 * Laptops which need pci=assign-busses to see Cardbus cards
187 */
Bernhard Kaindl8c4b2cf2006-02-18 01:36:55 -0800188 {
189 .callback = assign_all_busses,
190 .ident = "Samsung X20 Laptop",
191 .matches = {
192 DMI_MATCH(DMI_SYS_VENDOR, "Samsung Electronics"),
193 DMI_MATCH(DMI_PRODUCT_NAME, "SX20S"),
194 },
195 },
196#endif /* __i386__ */
Matt Domsch6b4b78f2006-09-29 15:23:23 -0500197 {
198 .callback = set_bf_sort,
199 .ident = "Dell PowerEdge 1950",
200 .matches = {
201 DMI_MATCH(DMI_SYS_VENDOR, "Dell"),
202 DMI_MATCH(DMI_PRODUCT_NAME, "PowerEdge 1950"),
203 },
204 },
205 {
206 .callback = set_bf_sort,
207 .ident = "Dell PowerEdge 1955",
208 .matches = {
209 DMI_MATCH(DMI_SYS_VENDOR, "Dell"),
210 DMI_MATCH(DMI_PRODUCT_NAME, "PowerEdge 1955"),
211 },
212 },
213 {
214 .callback = set_bf_sort,
215 .ident = "Dell PowerEdge 2900",
216 .matches = {
217 DMI_MATCH(DMI_SYS_VENDOR, "Dell"),
218 DMI_MATCH(DMI_PRODUCT_NAME, "PowerEdge 2900"),
219 },
220 },
221 {
222 .callback = set_bf_sort,
223 .ident = "Dell PowerEdge 2950",
224 .matches = {
225 DMI_MATCH(DMI_SYS_VENDOR, "Dell"),
226 DMI_MATCH(DMI_PRODUCT_NAME, "PowerEdge 2950"),
227 },
228 },
Andy Gospodarekf52383d2007-02-05 16:36:10 -0800229 {
230 .callback = set_bf_sort,
Matt Domschf7a9dae2007-03-23 23:58:07 -0500231 .ident = "Dell PowerEdge R900",
232 .matches = {
233 DMI_MATCH(DMI_SYS_VENDOR, "Dell"),
234 DMI_MATCH(DMI_PRODUCT_NAME, "PowerEdge R900"),
235 },
236 },
237 {
238 .callback = set_bf_sort,
Andy Gospodarekf52383d2007-02-05 16:36:10 -0800239 .ident = "HP ProLiant BL20p G3",
240 .matches = {
241 DMI_MATCH(DMI_SYS_VENDOR, "HP"),
242 DMI_MATCH(DMI_PRODUCT_NAME, "ProLiant BL20p G3"),
243 },
244 },
245 {
246 .callback = set_bf_sort,
247 .ident = "HP ProLiant BL20p G4",
248 .matches = {
249 DMI_MATCH(DMI_SYS_VENDOR, "HP"),
250 DMI_MATCH(DMI_PRODUCT_NAME, "ProLiant BL20p G4"),
251 },
252 },
253 {
254 .callback = set_bf_sort,
255 .ident = "HP ProLiant BL30p G1",
256 .matches = {
257 DMI_MATCH(DMI_SYS_VENDOR, "HP"),
258 DMI_MATCH(DMI_PRODUCT_NAME, "ProLiant BL30p G1"),
259 },
260 },
261 {
262 .callback = set_bf_sort,
263 .ident = "HP ProLiant BL25p G1",
264 .matches = {
265 DMI_MATCH(DMI_SYS_VENDOR, "HP"),
266 DMI_MATCH(DMI_PRODUCT_NAME, "ProLiant BL25p G1"),
267 },
268 },
269 {
270 .callback = set_bf_sort,
271 .ident = "HP ProLiant BL35p G1",
272 .matches = {
273 DMI_MATCH(DMI_SYS_VENDOR, "HP"),
274 DMI_MATCH(DMI_PRODUCT_NAME, "ProLiant BL35p G1"),
275 },
276 },
277 {
278 .callback = set_bf_sort,
279 .ident = "HP ProLiant BL45p G1",
280 .matches = {
281 DMI_MATCH(DMI_SYS_VENDOR, "HP"),
282 DMI_MATCH(DMI_PRODUCT_NAME, "ProLiant BL45p G1"),
283 },
284 },
285 {
286 .callback = set_bf_sort,
287 .ident = "HP ProLiant BL45p G2",
288 .matches = {
289 DMI_MATCH(DMI_SYS_VENDOR, "HP"),
290 DMI_MATCH(DMI_PRODUCT_NAME, "ProLiant BL45p G2"),
291 },
292 },
293 {
294 .callback = set_bf_sort,
295 .ident = "HP ProLiant BL460c G1",
296 .matches = {
297 DMI_MATCH(DMI_SYS_VENDOR, "HP"),
298 DMI_MATCH(DMI_PRODUCT_NAME, "ProLiant BL460c G1"),
299 },
300 },
301 {
302 .callback = set_bf_sort,
303 .ident = "HP ProLiant BL465c G1",
304 .matches = {
305 DMI_MATCH(DMI_SYS_VENDOR, "HP"),
306 DMI_MATCH(DMI_PRODUCT_NAME, "ProLiant BL465c G1"),
307 },
308 },
309 {
310 .callback = set_bf_sort,
311 .ident = "HP ProLiant BL480c G1",
312 .matches = {
313 DMI_MATCH(DMI_SYS_VENDOR, "HP"),
314 DMI_MATCH(DMI_PRODUCT_NAME, "ProLiant BL480c G1"),
315 },
316 },
317 {
318 .callback = set_bf_sort,
319 .ident = "HP ProLiant BL685c G1",
320 .matches = {
321 DMI_MATCH(DMI_SYS_VENDOR, "HP"),
322 DMI_MATCH(DMI_PRODUCT_NAME, "ProLiant BL685c G1"),
323 },
324 },
Michal Schmidt8f8ae1a2007-10-17 18:04:35 +0200325 {
326 .callback = set_bf_sort,
Tony Camuso8d64c782008-05-15 14:40:14 -0400327 .ident = "HP ProLiant DL360",
Michal Schmidt8f8ae1a2007-10-17 18:04:35 +0200328 .matches = {
329 DMI_MATCH(DMI_SYS_VENDOR, "HP"),
Tony Camuso8d64c782008-05-15 14:40:14 -0400330 DMI_MATCH(DMI_PRODUCT_NAME, "ProLiant DL360"),
Michal Schmidt8f8ae1a2007-10-17 18:04:35 +0200331 },
332 },
333 {
334 .callback = set_bf_sort,
Tony Camuso8d64c782008-05-15 14:40:14 -0400335 .ident = "HP ProLiant DL380",
Michal Schmidt8f8ae1a2007-10-17 18:04:35 +0200336 .matches = {
337 DMI_MATCH(DMI_SYS_VENDOR, "HP"),
Tony Camuso8d64c782008-05-15 14:40:14 -0400338 DMI_MATCH(DMI_PRODUCT_NAME, "ProLiant DL380"),
Michal Schmidt8f8ae1a2007-10-17 18:04:35 +0200339 },
340 },
Juha Laiho5b1ea822007-09-13 21:21:34 +0300341#ifdef __i386__
342 {
343 .callback = assign_all_busses,
344 .ident = "Compaq EVO N800c",
345 .matches = {
346 DMI_MATCH(DMI_SYS_VENDOR, "Compaq"),
347 DMI_MATCH(DMI_PRODUCT_NAME, "EVO N800c"),
348 },
349 },
350#endif
Michal Schmidtc82bc5a2007-11-26 20:42:19 +0100351 {
352 .callback = set_bf_sort,
Jesse Barnes739db072008-07-07 09:55:26 -0700353 .ident = "HP ProLiant DL385 G2",
Michal Schmidtc82bc5a2007-11-26 20:42:19 +0100354 .matches = {
355 DMI_MATCH(DMI_SYS_VENDOR, "HP"),
Jesse Barnes739db072008-07-07 09:55:26 -0700356 DMI_MATCH(DMI_PRODUCT_NAME, "ProLiant DL385 G2"),
Michal Schmidtc82bc5a2007-11-26 20:42:19 +0100357 },
358 },
359 {
360 .callback = set_bf_sort,
Jesse Barnes739db072008-07-07 09:55:26 -0700361 .ident = "HP ProLiant DL585 G2",
Michal Schmidtc82bc5a2007-11-26 20:42:19 +0100362 .matches = {
363 DMI_MATCH(DMI_SYS_VENDOR, "HP"),
Jesse Barnes739db072008-07-07 09:55:26 -0700364 DMI_MATCH(DMI_PRODUCT_NAME, "ProLiant DL585 G2"),
Michal Schmidtc82bc5a2007-11-26 20:42:19 +0100365 },
366 },
Bernhard Kaindl8c4b2cf2006-02-18 01:36:55 -0800367 {}
368};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369
Yinghai Lu0df18ff2008-04-14 15:40:37 -0700370void __init dmi_check_pciprobe(void)
371{
372 dmi_check_system(pciprobe_dmi_table);
373}
374
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375struct pci_bus * __devinit pcibios_scan_root(int busnum)
376{
377 struct pci_bus *bus = NULL;
Muli Ben-Yehuda08f1c192007-07-22 00:23:39 +0300378 struct pci_sysdata *sd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379
380 while ((bus = pci_find_next_bus(bus)) != NULL) {
381 if (bus->number == busnum) {
382 /* Already scanned */
383 return bus;
384 }
385 }
386
Muli Ben-Yehuda08f1c192007-07-22 00:23:39 +0300387 /* Allocate per-root-bus (not per bus) arch-specific data.
388 * TODO: leak; this memory is never freed.
389 * It's arguable whether it's worth the trouble to care.
390 */
391 sd = kzalloc(sizeof(*sd), GFP_KERNEL);
392 if (!sd) {
393 printk(KERN_ERR "PCI: OOM, not probing PCI bus %02x\n", busnum);
394 return NULL;
395 }
396
Yinghai Lu871d5f82008-02-19 03:20:09 -0800397 sd->node = get_mp_bus_to_node(busnum);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398
Yinghai Lu871d5f82008-02-19 03:20:09 -0800399 printk(KERN_DEBUG "PCI: Probing PCI hardware (bus %02x)\n", busnum);
400 bus = pci_scan_bus_parented(NULL, busnum, &pci_root_ops, sd);
401 if (!bus)
402 kfree(sd);
403
404 return bus;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405}
406
407extern u8 pci_cache_line_size;
408
Robert Richter8dd779b2008-07-02 22:50:29 +0200409int __init pcibios_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410{
411 struct cpuinfo_x86 *c = &boot_cpu_data;
412
413 if (!raw_pci_ops) {
Daniel Marjamäkiadcb89072005-11-23 15:44:49 -0800414 printk(KERN_WARNING "PCI: System does not support PCI\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 return 0;
416 }
417
418 /*
419 * Assume PCI cacheline size of 32 bytes for all x86s except K7/K8
420 * and P4. It's also good for 386/486s (which actually have 16)
421 * as quite a few PCI devices do not support smaller values.
422 */
423 pci_cache_line_size = 32 >> 2;
424 if (c->x86 >= 6 && c->x86_vendor == X86_VENDOR_AMD)
425 pci_cache_line_size = 64 >> 2; /* K7 & K8 */
426 else if (c->x86 > 6 && c->x86_vendor == X86_VENDOR_INTEL)
427 pci_cache_line_size = 128 >> 2; /* P4 */
428
429 pcibios_resource_survey();
430
Matt Domsch6b4b78f2006-09-29 15:23:23 -0500431 if (pci_bf_sort >= pci_force_bf)
432 pci_sort_breadthfirst();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 return 0;
434}
435
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436char * __devinit pcibios_setup(char *str)
437{
438 if (!strcmp(str, "off")) {
439 pci_probe = 0;
440 return NULL;
Matt Domsch6b4b78f2006-09-29 15:23:23 -0500441 } else if (!strcmp(str, "bfsort")) {
442 pci_bf_sort = pci_force_bf;
443 return NULL;
444 } else if (!strcmp(str, "nobfsort")) {
445 pci_bf_sort = pci_force_nobf;
446 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 }
448#ifdef CONFIG_PCI_BIOS
449 else if (!strcmp(str, "bios")) {
450 pci_probe = PCI_PROBE_BIOS;
451 return NULL;
452 } else if (!strcmp(str, "nobios")) {
453 pci_probe &= ~PCI_PROBE_BIOS;
454 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 } else if (!strcmp(str, "biosirq")) {
456 pci_probe |= PCI_BIOS_IRQ_SCAN;
457 return NULL;
jayalk@intworks.biz120bb422005-03-21 20:20:42 -0800458 } else if (!strncmp(str, "pirqaddr=", 9)) {
459 pirq_table_addr = simple_strtoul(str+9, NULL, 0);
460 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 }
462#endif
463#ifdef CONFIG_PCI_DIRECT
464 else if (!strcmp(str, "conf1")) {
465 pci_probe = PCI_PROBE_CONF1 | PCI_NO_CHECKS;
466 return NULL;
467 }
468 else if (!strcmp(str, "conf2")) {
469 pci_probe = PCI_PROBE_CONF2 | PCI_NO_CHECKS;
470 return NULL;
471 }
472#endif
473#ifdef CONFIG_PCI_MMCONFIG
474 else if (!strcmp(str, "nommconf")) {
475 pci_probe &= ~PCI_PROBE_MMCONF;
476 return NULL;
477 }
Yinghai Lu5f0b2972008-04-14 16:08:25 -0700478 else if (!strcmp(str, "check_enable_amd_mmconf")) {
479 pci_probe |= PCI_CHECK_ENABLE_AMD_MMCONF;
480 return NULL;
481 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482#endif
483 else if (!strcmp(str, "noacpi")) {
484 acpi_noirq_set();
485 return NULL;
486 }
Andi Kleen0637a702006-09-26 10:52:41 +0200487 else if (!strcmp(str, "noearly")) {
488 pci_probe |= PCI_PROBE_NOEARLY;
489 return NULL;
490 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491#ifndef CONFIG_X86_VISWS
492 else if (!strcmp(str, "usepirqmask")) {
493 pci_probe |= PCI_USE_PIRQ_MASK;
494 return NULL;
495 } else if (!strncmp(str, "irqmask=", 8)) {
496 pcibios_irq_mask = simple_strtol(str+8, NULL, 0);
497 return NULL;
498 } else if (!strncmp(str, "lastbus=", 8)) {
499 pcibios_last_bus = simple_strtol(str+8, NULL, 0);
500 return NULL;
501 }
502#endif
503 else if (!strcmp(str, "rom")) {
504 pci_probe |= PCI_ASSIGN_ROMS;
505 return NULL;
Gary Hadebb71ad82008-05-12 13:57:46 -0700506 } else if (!strcmp(str, "norom")) {
507 pci_probe |= PCI_NOASSIGN_ROMS;
508 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 } else if (!strcmp(str, "assign-busses")) {
510 pci_probe |= PCI_ASSIGN_ALL_BUSSES;
511 return NULL;
Gary Hade62f420f2007-10-03 15:56:51 -0700512 } else if (!strcmp(str, "use_crs")) {
513 pci_probe |= PCI_USE__CRS;
514 return NULL;
Yinghai Lue3f2bae2008-05-22 14:35:11 -0700515 } else if (!strcmp(str, "earlydump")) {
516 pci_early_dump_regs = 1;
517 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 } else if (!strcmp(str, "routeirq")) {
519 pci_routeirq = 1;
520 return NULL;
Yinghai Lu13a6ddb2008-03-27 01:31:18 -0700521 } else if (!strcmp(str, "skip_isa_align")) {
522 pci_probe |= PCI_CAN_SKIP_ISA_ALIGN;
523 return NULL;
Stefan Assmanna9322f62008-06-11 16:35:14 +0200524 } else if (!strcmp(str, "noioapicquirk")) {
525 noioapicquirk = 1;
526 return NULL;
Stefan Assmann91979792008-06-11 16:35:15 +0200527 } else if (!strcmp(str, "ioapicreroute")) {
528 if (noioapicreroute != -1)
529 noioapicreroute = 0;
530 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 }
532 return str;
533}
534
535unsigned int pcibios_assign_all_busses(void)
536{
537 return (pci_probe & PCI_ASSIGN_ALL_BUSSES) ? 1 : 0;
538}
539
540int pcibios_enable_device(struct pci_dev *dev, int mask)
541{
542 int err;
543
Bjorn Helgaasb81d9882008-03-04 11:57:01 -0700544 if ((err = pci_enable_resources(dev, mask)) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 return err;
546
Eric W. Biedermanbba6f6f2007-03-28 15:36:09 +0200547 if (!dev->msi_enabled)
548 return pcibios_enable_irq(dev);
549 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550}
David Shaohua Li87bec662005-07-27 23:02:00 -0400551
552void pcibios_disable_device (struct pci_dev *dev)
553{
Eric W. Biedermanbba6f6f2007-03-28 15:36:09 +0200554 if (!dev->msi_enabled && pcibios_disable_irq)
David Shaohua Li87bec662005-07-27 23:02:00 -0400555 pcibios_disable_irq(dev);
556}
Muli Ben-Yehuda73c59af2007-08-10 13:01:19 -0700557
Sam Ravnborg98db6f12008-04-29 22:38:48 +0200558struct pci_bus * __devinit pci_scan_bus_on_node(int busno, struct pci_ops *ops, int node)
Muli Ben-Yehuda73c59af2007-08-10 13:01:19 -0700559{
560 struct pci_bus *bus = NULL;
561 struct pci_sysdata *sd;
562
563 /*
564 * Allocate per-root-bus (not per bus) arch-specific data.
565 * TODO: leak; this memory is never freed.
566 * It's arguable whether it's worth the trouble to care.
567 */
568 sd = kzalloc(sizeof(*sd), GFP_KERNEL);
569 if (!sd) {
570 printk(KERN_ERR "PCI: OOM, skipping PCI bus %02x\n", busno);
571 return NULL;
572 }
Yinghai Lu871d5f82008-02-19 03:20:09 -0800573 sd->node = node;
574 bus = pci_scan_bus(busno, ops, sd);
Muli Ben-Yehuda73c59af2007-08-10 13:01:19 -0700575 if (!bus)
576 kfree(sd);
577
578 return bus;
579}
Yinghai Lu871d5f82008-02-19 03:20:09 -0800580
Sam Ravnborg98db6f12008-04-29 22:38:48 +0200581struct pci_bus * __devinit pci_scan_bus_with_sysdata(int busno)
Yinghai Lu871d5f82008-02-19 03:20:09 -0800582{
583 return pci_scan_bus_on_node(busno, &pci_root_ops, -1);
584}