diff options
Diffstat (limited to 'arch/x86/pci/common.c')
-rw-r--r-- | arch/x86/pci/common.c | 19 |
1 files changed, 17 insertions, 2 deletions
diff --git a/arch/x86/pci/common.c b/arch/x86/pci/common.c index 07d5223442bf..2d71bbc411d2 100644 --- a/arch/x86/pci/common.c +++ b/arch/x86/pci/common.c | |||
@@ -29,12 +29,14 @@ struct pci_raw_ops *raw_pci_ops; | |||
29 | 29 | ||
30 | static int pci_read(struct pci_bus *bus, unsigned int devfn, int where, int size, u32 *value) | 30 | static int pci_read(struct pci_bus *bus, unsigned int devfn, int where, int size, u32 *value) |
31 | { | 31 | { |
32 | return raw_pci_ops->read(0, bus->number, devfn, where, size, value); | 32 | return raw_pci_ops->read(pci_domain_nr(bus), bus->number, |
33 | devfn, where, size, value); | ||
33 | } | 34 | } |
34 | 35 | ||
35 | static int pci_write(struct pci_bus *bus, unsigned int devfn, int where, int size, u32 value) | 36 | static int pci_write(struct pci_bus *bus, unsigned int devfn, int where, int size, u32 value) |
36 | { | 37 | { |
37 | return raw_pci_ops->write(0, bus->number, devfn, where, size, value); | 38 | return raw_pci_ops->write(pci_domain_nr(bus), bus->number, |
39 | devfn, where, size, value); | ||
38 | } | 40 | } |
39 | 41 | ||
40 | struct pci_ops pci_root_ops = { | 42 | struct pci_ops pci_root_ops = { |
@@ -287,6 +289,16 @@ static struct dmi_system_id __devinitdata pciprobe_dmi_table[] = { | |||
287 | DMI_MATCH(DMI_PRODUCT_NAME, "ProLiant BL685c G1"), | 289 | DMI_MATCH(DMI_PRODUCT_NAME, "ProLiant BL685c G1"), |
288 | }, | 290 | }, |
289 | }, | 291 | }, |
292 | #ifdef __i386__ | ||
293 | { | ||
294 | .callback = assign_all_busses, | ||
295 | .ident = "Compaq EVO N800c", | ||
296 | .matches = { | ||
297 | DMI_MATCH(DMI_SYS_VENDOR, "Compaq"), | ||
298 | DMI_MATCH(DMI_PRODUCT_NAME, "EVO N800c"), | ||
299 | }, | ||
300 | }, | ||
301 | #endif | ||
290 | {} | 302 | {} |
291 | }; | 303 | }; |
292 | 304 | ||
@@ -426,6 +438,9 @@ char * __devinit pcibios_setup(char *str) | |||
426 | } else if (!strcmp(str, "assign-busses")) { | 438 | } else if (!strcmp(str, "assign-busses")) { |
427 | pci_probe |= PCI_ASSIGN_ALL_BUSSES; | 439 | pci_probe |= PCI_ASSIGN_ALL_BUSSES; |
428 | return NULL; | 440 | return NULL; |
441 | } else if (!strcmp(str, "use_crs")) { | ||
442 | pci_probe |= PCI_USE__CRS; | ||
443 | return NULL; | ||
429 | } else if (!strcmp(str, "routeirq")) { | 444 | } else if (!strcmp(str, "routeirq")) { |
430 | pci_routeirq = 1; | 445 | pci_routeirq = 1; |
431 | return NULL; | 446 | return NULL; |