Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 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 Kaindl | 8c4b2cf | 2006-02-18 01:36:55 -0800 | [diff] [blame] | 11 | #include <linux/dmi.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 12 | #include <linux/slab.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13 | |
Bjorn Helgaas | 284f5f9 | 2012-04-30 15:21:02 -0600 | [diff] [blame] | 14 | #include <asm-generic/pci-bridge.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 15 | #include <asm/acpi.h> |
| 16 | #include <asm/segment.h> |
| 17 | #include <asm/io.h> |
| 18 | #include <asm/smp.h> |
Jaswinder Singh Rajput | 8248771 | 2008-12-27 18:32:28 +0530 | [diff] [blame] | 19 | #include <asm/pci_x86.h> |
Matthew Garrett | f9a37be | 2012-12-05 14:33:27 -0700 | [diff] [blame] | 20 | #include <asm/setup.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 21 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 22 | unsigned int pci_probe = PCI_PROBE_BIOS | PCI_PROBE_CONF1 | PCI_PROBE_CONF2 | |
| 23 | PCI_PROBE_MMCONF; |
| 24 | |
Yinghai Lu | e3f2bae | 2008-05-22 14:35:11 -0700 | [diff] [blame] | 25 | unsigned int pci_early_dump_regs; |
Adrian Bunk | 2b290da | 2006-11-16 13:16:23 +0100 | [diff] [blame] | 26 | static int pci_bf_sort; |
Narendra_K@Dell.com | 6e8af08 | 2010-12-14 09:57:12 -0800 | [diff] [blame] | 27 | static int smbios_type_b1_flag; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | int pci_routeirq; |
Stefan Assmann | a9322f6 | 2008-06-11 16:35:14 +0200 | [diff] [blame] | 29 | int noioapicquirk; |
Stefan Assmann | 41b9eb2 | 2008-07-15 13:48:55 +0200 | [diff] [blame] | 30 | #ifdef CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS |
| 31 | int noioapicreroute = 0; |
| 32 | #else |
Stefan Assmann | 9197979 | 2008-06-11 16:35:15 +0200 | [diff] [blame] | 33 | int noioapicreroute = 1; |
Stefan Assmann | 41b9eb2 | 2008-07-15 13:48:55 +0200 | [diff] [blame] | 34 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | int pcibios_last_bus = -1; |
jayalk@intworks.biz | 120bb42 | 2005-03-21 20:20:42 -0800 | [diff] [blame] | 36 | unsigned long pirq_table_addr; |
| 37 | struct pci_bus *pci_root_bus; |
Jan Beulich | 72da0b0 | 2011-09-15 08:58:51 +0100 | [diff] [blame] | 38 | const struct pci_raw_ops *__read_mostly raw_pci_ops; |
| 39 | const struct pci_raw_ops *__read_mostly raw_pci_ext_ops; |
Matthew Wilcox | b6ce068 | 2008-02-10 09:45:28 -0500 | [diff] [blame] | 40 | |
| 41 | int raw_pci_read(unsigned int domain, unsigned int bus, unsigned int devfn, |
| 42 | int reg, int len, u32 *val) |
| 43 | { |
Matthew Wilcox | beef312 | 2008-07-11 15:21:17 -0600 | [diff] [blame] | 44 | if (domain == 0 && reg < 256 && raw_pci_ops) |
Matthew Wilcox | b6ce068 | 2008-02-10 09:45:28 -0500 | [diff] [blame] | 45 | return raw_pci_ops->read(domain, bus, devfn, reg, len, val); |
| 46 | if (raw_pci_ext_ops) |
| 47 | return raw_pci_ext_ops->read(domain, bus, devfn, reg, len, val); |
| 48 | return -EINVAL; |
| 49 | } |
| 50 | |
| 51 | int raw_pci_write(unsigned int domain, unsigned int bus, unsigned int devfn, |
| 52 | int reg, int len, u32 val) |
| 53 | { |
Matthew Wilcox | beef312 | 2008-07-11 15:21:17 -0600 | [diff] [blame] | 54 | if (domain == 0 && reg < 256 && raw_pci_ops) |
Matthew Wilcox | b6ce068 | 2008-02-10 09:45:28 -0500 | [diff] [blame] | 55 | return raw_pci_ops->write(domain, bus, devfn, reg, len, val); |
| 56 | if (raw_pci_ext_ops) |
| 57 | return raw_pci_ext_ops->write(domain, bus, devfn, reg, len, val); |
| 58 | return -EINVAL; |
| 59 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 60 | |
| 61 | static int pci_read(struct pci_bus *bus, unsigned int devfn, int where, int size, u32 *value) |
| 62 | { |
Matthew Wilcox | b6ce068 | 2008-02-10 09:45:28 -0500 | [diff] [blame] | 63 | return raw_pci_read(pci_domain_nr(bus), bus->number, |
Jeff Garzik | a79e419 | 2007-10-11 16:58:30 -0400 | [diff] [blame] | 64 | devfn, where, size, value); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 65 | } |
| 66 | |
| 67 | static int pci_write(struct pci_bus *bus, unsigned int devfn, int where, int size, u32 value) |
| 68 | { |
Matthew Wilcox | b6ce068 | 2008-02-10 09:45:28 -0500 | [diff] [blame] | 69 | return raw_pci_write(pci_domain_nr(bus), bus->number, |
Jeff Garzik | a79e419 | 2007-10-11 16:58:30 -0400 | [diff] [blame] | 70 | devfn, where, size, value); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 71 | } |
| 72 | |
| 73 | struct pci_ops pci_root_ops = { |
| 74 | .read = pci_read, |
| 75 | .write = pci_write, |
| 76 | }; |
| 77 | |
| 78 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 79 | * This interrupt-safe spinlock protects all accesses to PCI |
| 80 | * configuration space. |
| 81 | */ |
Thomas Gleixner | d19f61f | 2010-02-17 14:35:25 +0000 | [diff] [blame] | 82 | DEFINE_RAW_SPINLOCK(pci_config_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 83 | |
Greg Kroah-Hartman | a18e369 | 2012-12-21 14:02:53 -0800 | [diff] [blame] | 84 | static int can_skip_ioresource_align(const struct dmi_system_id *d) |
Yinghai Lu | 13a6ddb | 2008-03-27 01:31:18 -0700 | [diff] [blame] | 85 | { |
| 86 | pci_probe |= PCI_CAN_SKIP_ISA_ALIGN; |
| 87 | printk(KERN_INFO "PCI: %s detected, can skip ISA alignment\n", d->ident); |
| 88 | return 0; |
| 89 | } |
| 90 | |
Greg Kroah-Hartman | a18e369 | 2012-12-21 14:02:53 -0800 | [diff] [blame] | 91 | static const struct dmi_system_id can_skip_pciprobe_dmi_table[] = { |
Yinghai Lu | 13a6ddb | 2008-03-27 01:31:18 -0700 | [diff] [blame] | 92 | /* |
| 93 | * Systems where PCI IO resource ISA alignment can be skipped |
| 94 | * when the ISA enable bit in the bridge control is not set |
| 95 | */ |
| 96 | { |
| 97 | .callback = can_skip_ioresource_align, |
| 98 | .ident = "IBM System x3800", |
| 99 | .matches = { |
| 100 | DMI_MATCH(DMI_SYS_VENDOR, "IBM"), |
| 101 | DMI_MATCH(DMI_PRODUCT_NAME, "x3800"), |
| 102 | }, |
| 103 | }, |
| 104 | { |
| 105 | .callback = can_skip_ioresource_align, |
| 106 | .ident = "IBM System x3850", |
| 107 | .matches = { |
| 108 | DMI_MATCH(DMI_SYS_VENDOR, "IBM"), |
| 109 | DMI_MATCH(DMI_PRODUCT_NAME, "x3850"), |
| 110 | }, |
| 111 | }, |
| 112 | { |
| 113 | .callback = can_skip_ioresource_align, |
| 114 | .ident = "IBM System x3950", |
| 115 | .matches = { |
| 116 | DMI_MATCH(DMI_SYS_VENDOR, "IBM"), |
| 117 | DMI_MATCH(DMI_PRODUCT_NAME, "x3950"), |
| 118 | }, |
| 119 | }, |
| 120 | {} |
| 121 | }; |
| 122 | |
| 123 | void __init dmi_check_skip_isa_align(void) |
| 124 | { |
| 125 | dmi_check_system(can_skip_pciprobe_dmi_table); |
| 126 | } |
| 127 | |
Greg Kroah-Hartman | a18e369 | 2012-12-21 14:02:53 -0800 | [diff] [blame] | 128 | static void pcibios_fixup_device_resources(struct pci_dev *dev) |
Gary Hade | bb71ad8 | 2008-05-12 13:57:46 -0700 | [diff] [blame] | 129 | { |
| 130 | struct resource *rom_r = &dev->resource[PCI_ROM_RESOURCE]; |
Mike Habeck | 7bd1c36 | 2010-05-12 11:14:32 -0700 | [diff] [blame] | 131 | struct resource *bar_r; |
| 132 | int bar; |
| 133 | |
| 134 | if (pci_probe & PCI_NOASSIGN_BARS) { |
| 135 | /* |
| 136 | * If the BIOS did not assign the BAR, zero out the |
| 137 | * resource so the kernel doesn't attmept to assign |
| 138 | * it later on in pci_assign_unassigned_resources |
| 139 | */ |
| 140 | for (bar = 0; bar <= PCI_STD_RESOURCE_END; bar++) { |
| 141 | bar_r = &dev->resource[bar]; |
| 142 | if (bar_r->start == 0 && bar_r->end != 0) { |
| 143 | bar_r->flags = 0; |
| 144 | bar_r->end = 0; |
| 145 | } |
| 146 | } |
| 147 | } |
Gary Hade | bb71ad8 | 2008-05-12 13:57:46 -0700 | [diff] [blame] | 148 | |
| 149 | if (pci_probe & PCI_NOASSIGN_ROMS) { |
| 150 | if (rom_r->parent) |
| 151 | return; |
| 152 | if (rom_r->start) { |
| 153 | /* we deal with BIOS assigned ROM later */ |
| 154 | return; |
| 155 | } |
| 156 | rom_r->start = rom_r->end = rom_r->flags = 0; |
| 157 | } |
| 158 | } |
| 159 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 160 | /* |
| 161 | * Called after each bus is probed, but before its children |
| 162 | * are examined. |
| 163 | */ |
| 164 | |
Greg Kroah-Hartman | a18e369 | 2012-12-21 14:02:53 -0800 | [diff] [blame] | 165 | void pcibios_fixup_bus(struct pci_bus *b) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 166 | { |
Gary Hade | bb71ad8 | 2008-05-12 13:57:46 -0700 | [diff] [blame] | 167 | struct pci_dev *dev; |
| 168 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 169 | pci_read_bridge_bases(b); |
Gary Hade | bb71ad8 | 2008-05-12 13:57:46 -0700 | [diff] [blame] | 170 | list_for_each_entry(dev, &b->devices, bus_list) |
| 171 | pcibios_fixup_device_resources(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 172 | } |
| 173 | |
Bernhard Kaindl | 8c4b2cf | 2006-02-18 01:36:55 -0800 | [diff] [blame] | 174 | /* |
Matt Domsch | 6b4b78f | 2006-09-29 15:23:23 -0500 | [diff] [blame] | 175 | * Only use DMI information to set this if nothing was passed |
| 176 | * on the kernel command line (which was parsed earlier). |
| 177 | */ |
| 178 | |
Greg Kroah-Hartman | a18e369 | 2012-12-21 14:02:53 -0800 | [diff] [blame] | 179 | static int set_bf_sort(const struct dmi_system_id *d) |
Matt Domsch | 6b4b78f | 2006-09-29 15:23:23 -0500 | [diff] [blame] | 180 | { |
| 181 | if (pci_bf_sort == pci_bf_sort_default) { |
| 182 | pci_bf_sort = pci_dmi_bf; |
| 183 | printk(KERN_INFO "PCI: %s detected, enabling pci=bfsort.\n", d->ident); |
| 184 | } |
| 185 | return 0; |
| 186 | } |
| 187 | |
Greg Kroah-Hartman | a18e369 | 2012-12-21 14:02:53 -0800 | [diff] [blame] | 188 | static void read_dmi_type_b1(const struct dmi_header *dm, |
Narendra_K@Dell.com | 6e8af08 | 2010-12-14 09:57:12 -0800 | [diff] [blame] | 189 | void *private_data) |
| 190 | { |
| 191 | u8 *d = (u8 *)dm + 4; |
| 192 | |
| 193 | if (dm->type != 0xB1) |
| 194 | return; |
| 195 | switch (((*(u32 *)d) >> 9) & 0x03) { |
| 196 | case 0x00: |
| 197 | printk(KERN_INFO "dmi type 0xB1 record - unknown flag\n"); |
| 198 | break; |
| 199 | case 0x01: /* set pci=bfsort */ |
| 200 | smbios_type_b1_flag = 1; |
| 201 | break; |
| 202 | case 0x02: /* do not set pci=bfsort */ |
| 203 | smbios_type_b1_flag = 2; |
| 204 | break; |
| 205 | default: |
| 206 | break; |
| 207 | } |
| 208 | } |
| 209 | |
Greg Kroah-Hartman | a18e369 | 2012-12-21 14:02:53 -0800 | [diff] [blame] | 210 | static int find_sort_method(const struct dmi_system_id *d) |
Narendra_K@Dell.com | 6e8af08 | 2010-12-14 09:57:12 -0800 | [diff] [blame] | 211 | { |
| 212 | dmi_walk(read_dmi_type_b1, NULL); |
| 213 | |
| 214 | if (smbios_type_b1_flag == 1) { |
| 215 | set_bf_sort(d); |
| 216 | return 0; |
| 217 | } |
| 218 | return -1; |
| 219 | } |
| 220 | |
Matt Domsch | 6b4b78f | 2006-09-29 15:23:23 -0500 | [diff] [blame] | 221 | /* |
Bernhard Kaindl | 8c4b2cf | 2006-02-18 01:36:55 -0800 | [diff] [blame] | 222 | * Enable renumbering of PCI bus# ranges to reach all PCI busses (Cardbus) |
| 223 | */ |
| 224 | #ifdef __i386__ |
Greg Kroah-Hartman | a18e369 | 2012-12-21 14:02:53 -0800 | [diff] [blame] | 225 | static int assign_all_busses(const struct dmi_system_id *d) |
Bernhard Kaindl | 8c4b2cf | 2006-02-18 01:36:55 -0800 | [diff] [blame] | 226 | { |
| 227 | pci_probe |= PCI_ASSIGN_ALL_BUSSES; |
| 228 | printk(KERN_INFO "%s detected: enabling PCI bus# renumbering" |
| 229 | " (pci=assign-busses)\n", d->ident); |
| 230 | return 0; |
| 231 | } |
| 232 | #endif |
| 233 | |
Greg Kroah-Hartman | a18e369 | 2012-12-21 14:02:53 -0800 | [diff] [blame] | 234 | static int set_scan_all(const struct dmi_system_id *d) |
Bjorn Helgaas | 284f5f9 | 2012-04-30 15:21:02 -0600 | [diff] [blame] | 235 | { |
| 236 | printk(KERN_INFO "PCI: %s detected, enabling pci=pcie_scan_all\n", |
| 237 | d->ident); |
| 238 | pci_add_flags(PCI_SCAN_ALL_PCIE_DEVS); |
| 239 | return 0; |
| 240 | } |
| 241 | |
Greg Kroah-Hartman | a18e369 | 2012-12-21 14:02:53 -0800 | [diff] [blame] | 242 | static const struct dmi_system_id pciprobe_dmi_table[] = { |
Matt Domsch | 6b4b78f | 2006-09-29 15:23:23 -0500 | [diff] [blame] | 243 | #ifdef __i386__ |
Bernhard Kaindl | 8c4b2cf | 2006-02-18 01:36:55 -0800 | [diff] [blame] | 244 | /* |
| 245 | * Laptops which need pci=assign-busses to see Cardbus cards |
| 246 | */ |
Bernhard Kaindl | 8c4b2cf | 2006-02-18 01:36:55 -0800 | [diff] [blame] | 247 | { |
| 248 | .callback = assign_all_busses, |
| 249 | .ident = "Samsung X20 Laptop", |
| 250 | .matches = { |
| 251 | DMI_MATCH(DMI_SYS_VENDOR, "Samsung Electronics"), |
| 252 | DMI_MATCH(DMI_PRODUCT_NAME, "SX20S"), |
| 253 | }, |
| 254 | }, |
| 255 | #endif /* __i386__ */ |
Matt Domsch | 6b4b78f | 2006-09-29 15:23:23 -0500 | [diff] [blame] | 256 | { |
| 257 | .callback = set_bf_sort, |
| 258 | .ident = "Dell PowerEdge 1950", |
| 259 | .matches = { |
| 260 | DMI_MATCH(DMI_SYS_VENDOR, "Dell"), |
| 261 | DMI_MATCH(DMI_PRODUCT_NAME, "PowerEdge 1950"), |
| 262 | }, |
| 263 | }, |
| 264 | { |
| 265 | .callback = set_bf_sort, |
| 266 | .ident = "Dell PowerEdge 1955", |
| 267 | .matches = { |
| 268 | DMI_MATCH(DMI_SYS_VENDOR, "Dell"), |
| 269 | DMI_MATCH(DMI_PRODUCT_NAME, "PowerEdge 1955"), |
| 270 | }, |
| 271 | }, |
| 272 | { |
| 273 | .callback = set_bf_sort, |
| 274 | .ident = "Dell PowerEdge 2900", |
| 275 | .matches = { |
| 276 | DMI_MATCH(DMI_SYS_VENDOR, "Dell"), |
| 277 | DMI_MATCH(DMI_PRODUCT_NAME, "PowerEdge 2900"), |
| 278 | }, |
| 279 | }, |
| 280 | { |
| 281 | .callback = set_bf_sort, |
| 282 | .ident = "Dell PowerEdge 2950", |
| 283 | .matches = { |
| 284 | DMI_MATCH(DMI_SYS_VENDOR, "Dell"), |
| 285 | DMI_MATCH(DMI_PRODUCT_NAME, "PowerEdge 2950"), |
| 286 | }, |
| 287 | }, |
Andy Gospodarek | f52383d | 2007-02-05 16:36:10 -0800 | [diff] [blame] | 288 | { |
| 289 | .callback = set_bf_sort, |
Matt Domsch | f7a9dae | 2007-03-23 23:58:07 -0500 | [diff] [blame] | 290 | .ident = "Dell PowerEdge R900", |
| 291 | .matches = { |
| 292 | DMI_MATCH(DMI_SYS_VENDOR, "Dell"), |
| 293 | DMI_MATCH(DMI_PRODUCT_NAME, "PowerEdge R900"), |
| 294 | }, |
| 295 | }, |
| 296 | { |
Narendra_K@Dell.com | 9b373ed | 2011-03-18 10:22:14 -0700 | [diff] [blame] | 297 | .callback = find_sort_method, |
| 298 | .ident = "Dell System", |
| 299 | .matches = { |
| 300 | DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc"), |
| 301 | }, |
| 302 | }, |
| 303 | { |
Matt Domsch | f7a9dae | 2007-03-23 23:58:07 -0500 | [diff] [blame] | 304 | .callback = set_bf_sort, |
Andy Gospodarek | f52383d | 2007-02-05 16:36:10 -0800 | [diff] [blame] | 305 | .ident = "HP ProLiant BL20p G3", |
| 306 | .matches = { |
| 307 | DMI_MATCH(DMI_SYS_VENDOR, "HP"), |
| 308 | DMI_MATCH(DMI_PRODUCT_NAME, "ProLiant BL20p G3"), |
| 309 | }, |
| 310 | }, |
| 311 | { |
| 312 | .callback = set_bf_sort, |
| 313 | .ident = "HP ProLiant BL20p G4", |
| 314 | .matches = { |
| 315 | DMI_MATCH(DMI_SYS_VENDOR, "HP"), |
| 316 | DMI_MATCH(DMI_PRODUCT_NAME, "ProLiant BL20p G4"), |
| 317 | }, |
| 318 | }, |
| 319 | { |
| 320 | .callback = set_bf_sort, |
| 321 | .ident = "HP ProLiant BL30p G1", |
| 322 | .matches = { |
| 323 | DMI_MATCH(DMI_SYS_VENDOR, "HP"), |
| 324 | DMI_MATCH(DMI_PRODUCT_NAME, "ProLiant BL30p G1"), |
| 325 | }, |
| 326 | }, |
| 327 | { |
| 328 | .callback = set_bf_sort, |
| 329 | .ident = "HP ProLiant BL25p G1", |
| 330 | .matches = { |
| 331 | DMI_MATCH(DMI_SYS_VENDOR, "HP"), |
| 332 | DMI_MATCH(DMI_PRODUCT_NAME, "ProLiant BL25p G1"), |
| 333 | }, |
| 334 | }, |
| 335 | { |
| 336 | .callback = set_bf_sort, |
| 337 | .ident = "HP ProLiant BL35p G1", |
| 338 | .matches = { |
| 339 | DMI_MATCH(DMI_SYS_VENDOR, "HP"), |
| 340 | DMI_MATCH(DMI_PRODUCT_NAME, "ProLiant BL35p G1"), |
| 341 | }, |
| 342 | }, |
| 343 | { |
| 344 | .callback = set_bf_sort, |
| 345 | .ident = "HP ProLiant BL45p G1", |
| 346 | .matches = { |
| 347 | DMI_MATCH(DMI_SYS_VENDOR, "HP"), |
| 348 | DMI_MATCH(DMI_PRODUCT_NAME, "ProLiant BL45p G1"), |
| 349 | }, |
| 350 | }, |
| 351 | { |
| 352 | .callback = set_bf_sort, |
| 353 | .ident = "HP ProLiant BL45p G2", |
| 354 | .matches = { |
| 355 | DMI_MATCH(DMI_SYS_VENDOR, "HP"), |
| 356 | DMI_MATCH(DMI_PRODUCT_NAME, "ProLiant BL45p G2"), |
| 357 | }, |
| 358 | }, |
| 359 | { |
| 360 | .callback = set_bf_sort, |
| 361 | .ident = "HP ProLiant BL460c G1", |
| 362 | .matches = { |
| 363 | DMI_MATCH(DMI_SYS_VENDOR, "HP"), |
| 364 | DMI_MATCH(DMI_PRODUCT_NAME, "ProLiant BL460c G1"), |
| 365 | }, |
| 366 | }, |
| 367 | { |
| 368 | .callback = set_bf_sort, |
| 369 | .ident = "HP ProLiant BL465c G1", |
| 370 | .matches = { |
| 371 | DMI_MATCH(DMI_SYS_VENDOR, "HP"), |
| 372 | DMI_MATCH(DMI_PRODUCT_NAME, "ProLiant BL465c G1"), |
| 373 | }, |
| 374 | }, |
| 375 | { |
| 376 | .callback = set_bf_sort, |
| 377 | .ident = "HP ProLiant BL480c G1", |
| 378 | .matches = { |
| 379 | DMI_MATCH(DMI_SYS_VENDOR, "HP"), |
| 380 | DMI_MATCH(DMI_PRODUCT_NAME, "ProLiant BL480c G1"), |
| 381 | }, |
| 382 | }, |
| 383 | { |
| 384 | .callback = set_bf_sort, |
| 385 | .ident = "HP ProLiant BL685c G1", |
| 386 | .matches = { |
| 387 | DMI_MATCH(DMI_SYS_VENDOR, "HP"), |
| 388 | DMI_MATCH(DMI_PRODUCT_NAME, "ProLiant BL685c G1"), |
| 389 | }, |
| 390 | }, |
Michal Schmidt | 8f8ae1a | 2007-10-17 18:04:35 +0200 | [diff] [blame] | 391 | { |
| 392 | .callback = set_bf_sort, |
Tony Camuso | 8d64c781 | 2008-05-15 14:40:14 -0400 | [diff] [blame] | 393 | .ident = "HP ProLiant DL360", |
Michal Schmidt | 8f8ae1a | 2007-10-17 18:04:35 +0200 | [diff] [blame] | 394 | .matches = { |
| 395 | DMI_MATCH(DMI_SYS_VENDOR, "HP"), |
Tony Camuso | 8d64c781 | 2008-05-15 14:40:14 -0400 | [diff] [blame] | 396 | DMI_MATCH(DMI_PRODUCT_NAME, "ProLiant DL360"), |
Michal Schmidt | 8f8ae1a | 2007-10-17 18:04:35 +0200 | [diff] [blame] | 397 | }, |
| 398 | }, |
| 399 | { |
| 400 | .callback = set_bf_sort, |
Tony Camuso | 8d64c781 | 2008-05-15 14:40:14 -0400 | [diff] [blame] | 401 | .ident = "HP ProLiant DL380", |
Michal Schmidt | 8f8ae1a | 2007-10-17 18:04:35 +0200 | [diff] [blame] | 402 | .matches = { |
| 403 | DMI_MATCH(DMI_SYS_VENDOR, "HP"), |
Tony Camuso | 8d64c781 | 2008-05-15 14:40:14 -0400 | [diff] [blame] | 404 | DMI_MATCH(DMI_PRODUCT_NAME, "ProLiant DL380"), |
Michal Schmidt | 8f8ae1a | 2007-10-17 18:04:35 +0200 | [diff] [blame] | 405 | }, |
| 406 | }, |
Juha Laiho | 5b1ea82 | 2007-09-13 21:21:34 +0300 | [diff] [blame] | 407 | #ifdef __i386__ |
| 408 | { |
| 409 | .callback = assign_all_busses, |
| 410 | .ident = "Compaq EVO N800c", |
| 411 | .matches = { |
| 412 | DMI_MATCH(DMI_SYS_VENDOR, "Compaq"), |
| 413 | DMI_MATCH(DMI_PRODUCT_NAME, "EVO N800c"), |
| 414 | }, |
| 415 | }, |
| 416 | #endif |
Michal Schmidt | c82bc5a | 2007-11-26 20:42:19 +0100 | [diff] [blame] | 417 | { |
| 418 | .callback = set_bf_sort, |
Jesse Barnes | 739db07 | 2008-07-07 09:55:26 -0700 | [diff] [blame] | 419 | .ident = "HP ProLiant DL385 G2", |
Michal Schmidt | c82bc5a | 2007-11-26 20:42:19 +0100 | [diff] [blame] | 420 | .matches = { |
| 421 | DMI_MATCH(DMI_SYS_VENDOR, "HP"), |
Jesse Barnes | 739db07 | 2008-07-07 09:55:26 -0700 | [diff] [blame] | 422 | DMI_MATCH(DMI_PRODUCT_NAME, "ProLiant DL385 G2"), |
Michal Schmidt | c82bc5a | 2007-11-26 20:42:19 +0100 | [diff] [blame] | 423 | }, |
| 424 | }, |
| 425 | { |
| 426 | .callback = set_bf_sort, |
Jesse Barnes | 739db07 | 2008-07-07 09:55:26 -0700 | [diff] [blame] | 427 | .ident = "HP ProLiant DL585 G2", |
Michal Schmidt | c82bc5a | 2007-11-26 20:42:19 +0100 | [diff] [blame] | 428 | .matches = { |
| 429 | DMI_MATCH(DMI_SYS_VENDOR, "HP"), |
Jesse Barnes | 739db07 | 2008-07-07 09:55:26 -0700 | [diff] [blame] | 430 | DMI_MATCH(DMI_PRODUCT_NAME, "ProLiant DL585 G2"), |
Michal Schmidt | c82bc5a | 2007-11-26 20:42:19 +0100 | [diff] [blame] | 431 | }, |
| 432 | }, |
Bjorn Helgaas | 284f5f9 | 2012-04-30 15:21:02 -0600 | [diff] [blame] | 433 | { |
| 434 | .callback = set_scan_all, |
| 435 | .ident = "Stratus/NEC ftServer", |
| 436 | .matches = { |
Myron Stowe | 1278998 | 2012-12-26 10:39:23 -0700 | [diff] [blame] | 437 | DMI_MATCH(DMI_SYS_VENDOR, "Stratus"), |
| 438 | DMI_MATCH(DMI_PRODUCT_NAME, "ftServer"), |
Bjorn Helgaas | 284f5f9 | 2012-04-30 15:21:02 -0600 | [diff] [blame] | 439 | }, |
| 440 | }, |
Bernhard Kaindl | 8c4b2cf | 2006-02-18 01:36:55 -0800 | [diff] [blame] | 441 | {} |
| 442 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 443 | |
Yinghai Lu | 0df18ff | 2008-04-14 15:40:37 -0700 | [diff] [blame] | 444 | void __init dmi_check_pciprobe(void) |
| 445 | { |
| 446 | dmi_check_system(pciprobe_dmi_table); |
| 447 | } |
| 448 | |
Greg Kroah-Hartman | a18e369 | 2012-12-21 14:02:53 -0800 | [diff] [blame] | 449 | struct pci_bus *pcibios_scan_root(int busnum) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 450 | { |
| 451 | struct pci_bus *bus = NULL; |
| 452 | |
| 453 | while ((bus = pci_find_next_bus(bus)) != NULL) { |
| 454 | if (bus->number == busnum) { |
| 455 | /* Already scanned */ |
| 456 | return bus; |
| 457 | } |
| 458 | } |
| 459 | |
Yinghai Lu | c57ca65 | 2012-04-02 18:31:54 -0700 | [diff] [blame] | 460 | return pci_scan_bus_on_node(busnum, &pci_root_ops, |
| 461 | get_mp_bus_to_node(busnum)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 462 | } |
Yinghai Lu | c57ca65 | 2012-04-02 18:31:54 -0700 | [diff] [blame] | 463 | |
Alex Nixon | 44de339 | 2010-03-18 14:28:12 -0400 | [diff] [blame] | 464 | void __init pcibios_set_cache_line_size(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 465 | { |
| 466 | struct cpuinfo_x86 *c = &boot_cpu_data; |
| 467 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 468 | /* |
Dave Jones | 76b1a87 | 2009-10-14 16:31:39 -0400 | [diff] [blame] | 469 | * Set PCI cacheline size to that of the CPU if the CPU has reported it. |
| 470 | * (For older CPUs that don't support cpuid, we se it to 32 bytes |
| 471 | * It's also good for 386/486s (which actually have 16) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 472 | * as quite a few PCI devices do not support smaller values. |
| 473 | */ |
Dave Jones | 76b1a87 | 2009-10-14 16:31:39 -0400 | [diff] [blame] | 474 | if (c->x86_clflush_size > 0) { |
| 475 | pci_dfl_cache_line_size = c->x86_clflush_size >> 2; |
| 476 | printk(KERN_DEBUG "PCI: pci_cache_line_size set to %d bytes\n", |
| 477 | pci_dfl_cache_line_size << 2); |
| 478 | } else { |
| 479 | pci_dfl_cache_line_size = 32 >> 2; |
| 480 | printk(KERN_DEBUG "PCI: Unknown cacheline size. Setting to 32 bytes\n"); |
| 481 | } |
Alex Nixon | 44de339 | 2010-03-18 14:28:12 -0400 | [diff] [blame] | 482 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 483 | |
Alex Nixon | 44de339 | 2010-03-18 14:28:12 -0400 | [diff] [blame] | 484 | int __init pcibios_init(void) |
| 485 | { |
| 486 | if (!raw_pci_ops) { |
| 487 | printk(KERN_WARNING "PCI: System does not support PCI\n"); |
| 488 | return 0; |
| 489 | } |
| 490 | |
| 491 | pcibios_set_cache_line_size(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 492 | pcibios_resource_survey(); |
| 493 | |
Matt Domsch | 6b4b78f | 2006-09-29 15:23:23 -0500 | [diff] [blame] | 494 | if (pci_bf_sort >= pci_force_bf) |
| 495 | pci_sort_breadthfirst(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 496 | return 0; |
| 497 | } |
| 498 | |
Myron Stowe | 15fa325 | 2012-06-25 21:32:32 -0600 | [diff] [blame] | 499 | char * __init pcibios_setup(char *str) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 500 | { |
| 501 | if (!strcmp(str, "off")) { |
| 502 | pci_probe = 0; |
| 503 | return NULL; |
Matt Domsch | 6b4b78f | 2006-09-29 15:23:23 -0500 | [diff] [blame] | 504 | } else if (!strcmp(str, "bfsort")) { |
| 505 | pci_bf_sort = pci_force_bf; |
| 506 | return NULL; |
| 507 | } else if (!strcmp(str, "nobfsort")) { |
| 508 | pci_bf_sort = pci_force_nobf; |
| 509 | return NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 510 | } |
| 511 | #ifdef CONFIG_PCI_BIOS |
| 512 | else if (!strcmp(str, "bios")) { |
| 513 | pci_probe = PCI_PROBE_BIOS; |
| 514 | return NULL; |
| 515 | } else if (!strcmp(str, "nobios")) { |
| 516 | pci_probe &= ~PCI_PROBE_BIOS; |
| 517 | return NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 518 | } else if (!strcmp(str, "biosirq")) { |
| 519 | pci_probe |= PCI_BIOS_IRQ_SCAN; |
| 520 | return NULL; |
jayalk@intworks.biz | 120bb42 | 2005-03-21 20:20:42 -0800 | [diff] [blame] | 521 | } else if (!strncmp(str, "pirqaddr=", 9)) { |
| 522 | pirq_table_addr = simple_strtoul(str+9, NULL, 0); |
| 523 | return NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 524 | } |
| 525 | #endif |
| 526 | #ifdef CONFIG_PCI_DIRECT |
| 527 | else if (!strcmp(str, "conf1")) { |
| 528 | pci_probe = PCI_PROBE_CONF1 | PCI_NO_CHECKS; |
| 529 | return NULL; |
| 530 | } |
| 531 | else if (!strcmp(str, "conf2")) { |
| 532 | pci_probe = PCI_PROBE_CONF2 | PCI_NO_CHECKS; |
| 533 | return NULL; |
| 534 | } |
| 535 | #endif |
| 536 | #ifdef CONFIG_PCI_MMCONFIG |
| 537 | else if (!strcmp(str, "nommconf")) { |
| 538 | pci_probe &= ~PCI_PROBE_MMCONF; |
| 539 | return NULL; |
| 540 | } |
Yinghai Lu | 5f0b297 | 2008-04-14 16:08:25 -0700 | [diff] [blame] | 541 | else if (!strcmp(str, "check_enable_amd_mmconf")) { |
| 542 | pci_probe |= PCI_CHECK_ENABLE_AMD_MMCONF; |
| 543 | return NULL; |
| 544 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 545 | #endif |
| 546 | else if (!strcmp(str, "noacpi")) { |
| 547 | acpi_noirq_set(); |
| 548 | return NULL; |
| 549 | } |
Andi Kleen | 0637a70 | 2006-09-26 10:52:41 +0200 | [diff] [blame] | 550 | else if (!strcmp(str, "noearly")) { |
| 551 | pci_probe |= PCI_PROBE_NOEARLY; |
| 552 | return NULL; |
| 553 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 554 | #ifndef CONFIG_X86_VISWS |
| 555 | else if (!strcmp(str, "usepirqmask")) { |
| 556 | pci_probe |= PCI_USE_PIRQ_MASK; |
| 557 | return NULL; |
| 558 | } else if (!strncmp(str, "irqmask=", 8)) { |
| 559 | pcibios_irq_mask = simple_strtol(str+8, NULL, 0); |
| 560 | return NULL; |
| 561 | } else if (!strncmp(str, "lastbus=", 8)) { |
| 562 | pcibios_last_bus = simple_strtol(str+8, NULL, 0); |
| 563 | return NULL; |
| 564 | } |
| 565 | #endif |
| 566 | else if (!strcmp(str, "rom")) { |
| 567 | pci_probe |= PCI_ASSIGN_ROMS; |
| 568 | return NULL; |
Gary Hade | bb71ad8 | 2008-05-12 13:57:46 -0700 | [diff] [blame] | 569 | } else if (!strcmp(str, "norom")) { |
| 570 | pci_probe |= PCI_NOASSIGN_ROMS; |
| 571 | return NULL; |
Mike Habeck | 7bd1c36 | 2010-05-12 11:14:32 -0700 | [diff] [blame] | 572 | } else if (!strcmp(str, "nobar")) { |
| 573 | pci_probe |= PCI_NOASSIGN_BARS; |
| 574 | return NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 575 | } else if (!strcmp(str, "assign-busses")) { |
| 576 | pci_probe |= PCI_ASSIGN_ALL_BUSSES; |
| 577 | return NULL; |
Linus Torvalds | 236e946 | 2009-06-24 16:23:03 -0700 | [diff] [blame] | 578 | } else if (!strcmp(str, "use_crs")) { |
| 579 | pci_probe |= PCI_USE__CRS; |
Gary Hade | 62f420f | 2007-10-03 15:56:51 -0700 | [diff] [blame] | 580 | return NULL; |
Bjorn Helgaas | 7bc5e3f | 2010-02-23 10:24:41 -0700 | [diff] [blame] | 581 | } else if (!strcmp(str, "nocrs")) { |
| 582 | pci_probe |= PCI_ROOT_NO_CRS; |
| 583 | return NULL; |
Yinghai Lu | e3f2bae | 2008-05-22 14:35:11 -0700 | [diff] [blame] | 584 | } else if (!strcmp(str, "earlydump")) { |
| 585 | pci_early_dump_regs = 1; |
| 586 | return NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 587 | } else if (!strcmp(str, "routeirq")) { |
| 588 | pci_routeirq = 1; |
| 589 | return NULL; |
Yinghai Lu | 13a6ddb | 2008-03-27 01:31:18 -0700 | [diff] [blame] | 590 | } else if (!strcmp(str, "skip_isa_align")) { |
| 591 | pci_probe |= PCI_CAN_SKIP_ISA_ALIGN; |
| 592 | return NULL; |
Stefan Assmann | a9322f6 | 2008-06-11 16:35:14 +0200 | [diff] [blame] | 593 | } else if (!strcmp(str, "noioapicquirk")) { |
| 594 | noioapicquirk = 1; |
| 595 | return NULL; |
Stefan Assmann | 9197979 | 2008-06-11 16:35:15 +0200 | [diff] [blame] | 596 | } else if (!strcmp(str, "ioapicreroute")) { |
| 597 | if (noioapicreroute != -1) |
| 598 | noioapicreroute = 0; |
| 599 | return NULL; |
Stefan Assmann | 41b9eb2 | 2008-07-15 13:48:55 +0200 | [diff] [blame] | 600 | } else if (!strcmp(str, "noioapicreroute")) { |
| 601 | if (noioapicreroute != -1) |
| 602 | noioapicreroute = 1; |
| 603 | return NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 604 | } |
| 605 | return str; |
| 606 | } |
| 607 | |
| 608 | unsigned int pcibios_assign_all_busses(void) |
| 609 | { |
| 610 | return (pci_probe & PCI_ASSIGN_ALL_BUSSES) ? 1 : 0; |
| 611 | } |
| 612 | |
Matthew Garrett | f9a37be | 2012-12-05 14:33:27 -0700 | [diff] [blame] | 613 | int pcibios_add_device(struct pci_dev *dev) |
| 614 | { |
| 615 | struct setup_data *data; |
| 616 | struct pci_setup_rom *rom; |
| 617 | u64 pa_data; |
| 618 | |
| 619 | pa_data = boot_params.hdr.setup_data; |
| 620 | while (pa_data) { |
| 621 | data = phys_to_virt(pa_data); |
| 622 | |
| 623 | if (data->type == SETUP_PCI) { |
| 624 | rom = (struct pci_setup_rom *)data; |
| 625 | |
| 626 | if ((pci_domain_nr(dev->bus) == rom->segment) && |
| 627 | (dev->bus->number == rom->bus) && |
| 628 | (PCI_SLOT(dev->devfn) == rom->device) && |
| 629 | (PCI_FUNC(dev->devfn) == rom->function) && |
| 630 | (dev->vendor == rom->vendor) && |
| 631 | (dev->device == rom->devid)) { |
Bjorn Helgaas | dbd3fc3 | 2012-12-10 11:24:42 -0700 | [diff] [blame] | 632 | dev->rom = pa_data + |
| 633 | offsetof(struct pci_setup_rom, romdata); |
Matthew Garrett | f9a37be | 2012-12-05 14:33:27 -0700 | [diff] [blame] | 634 | dev->romlen = rom->pcilen; |
| 635 | } |
| 636 | } |
| 637 | pa_data = data->next; |
| 638 | } |
| 639 | return 0; |
| 640 | } |
| 641 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 642 | int pcibios_enable_device(struct pci_dev *dev, int mask) |
| 643 | { |
| 644 | int err; |
| 645 | |
Bjorn Helgaas | b81d988 | 2008-03-04 11:57:01 -0700 | [diff] [blame] | 646 | if ((err = pci_enable_resources(dev, mask)) < 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 647 | return err; |
| 648 | |
Rafael J. Wysocki | 16cf0eb | 2009-01-05 14:50:27 +0100 | [diff] [blame] | 649 | if (!pci_dev_msi_enabled(dev)) |
Eric W. Biederman | bba6f6f | 2007-03-28 15:36:09 +0200 | [diff] [blame] | 650 | return pcibios_enable_irq(dev); |
| 651 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 652 | } |
David Shaohua Li | 87bec66 | 2005-07-27 23:02:00 -0400 | [diff] [blame] | 653 | |
| 654 | void pcibios_disable_device (struct pci_dev *dev) |
| 655 | { |
Rafael J. Wysocki | 16cf0eb | 2009-01-05 14:50:27 +0100 | [diff] [blame] | 656 | if (!pci_dev_msi_enabled(dev) && pcibios_disable_irq) |
David Shaohua Li | 87bec66 | 2005-07-27 23:02:00 -0400 | [diff] [blame] | 657 | pcibios_disable_irq(dev); |
| 658 | } |
Muli Ben-Yehuda | 73c59af | 2007-08-10 13:01:19 -0700 | [diff] [blame] | 659 | |
Taku Izumi | 642c92d | 2012-10-30 15:26:18 +0900 | [diff] [blame] | 660 | int pci_ext_cfg_avail(void) |
Andrew Patterson | 0ef5f8f | 2008-11-10 15:30:50 -0700 | [diff] [blame] | 661 | { |
| 662 | if (raw_pci_ext_ops) |
| 663 | return 1; |
| 664 | else |
| 665 | return 0; |
| 666 | } |
| 667 | |
Greg Kroah-Hartman | a18e369 | 2012-12-21 14:02:53 -0800 | [diff] [blame] | 668 | struct pci_bus *pci_scan_bus_on_node(int busno, struct pci_ops *ops, int node) |
Muli Ben-Yehuda | 73c59af | 2007-08-10 13:01:19 -0700 | [diff] [blame] | 669 | { |
Bjorn Helgaas | 2cd6975 | 2011-10-28 16:28:14 -0600 | [diff] [blame] | 670 | LIST_HEAD(resources); |
Muli Ben-Yehuda | 73c59af | 2007-08-10 13:01:19 -0700 | [diff] [blame] | 671 | struct pci_bus *bus = NULL; |
| 672 | struct pci_sysdata *sd; |
| 673 | |
| 674 | /* |
| 675 | * Allocate per-root-bus (not per bus) arch-specific data. |
| 676 | * TODO: leak; this memory is never freed. |
| 677 | * It's arguable whether it's worth the trouble to care. |
| 678 | */ |
| 679 | sd = kzalloc(sizeof(*sd), GFP_KERNEL); |
| 680 | if (!sd) { |
| 681 | printk(KERN_ERR "PCI: OOM, skipping PCI bus %02x\n", busno); |
| 682 | return NULL; |
| 683 | } |
Yinghai Lu | 871d5f8 | 2008-02-19 03:20:09 -0800 | [diff] [blame] | 684 | sd->node = node; |
Bjorn Helgaas | 2cd6975 | 2011-10-28 16:28:14 -0600 | [diff] [blame] | 685 | x86_pci_root_bus_resources(busno, &resources); |
Yinghai Lu | c57ca65 | 2012-04-02 18:31:54 -0700 | [diff] [blame] | 686 | printk(KERN_DEBUG "PCI: Probing PCI hardware (bus %02x)\n", busno); |
Bjorn Helgaas | 2cd6975 | 2011-10-28 16:28:14 -0600 | [diff] [blame] | 687 | bus = pci_scan_root_bus(NULL, busno, ops, sd, &resources); |
| 688 | if (!bus) { |
| 689 | pci_free_resource_list(&resources); |
Muli Ben-Yehuda | 73c59af | 2007-08-10 13:01:19 -0700 | [diff] [blame] | 690 | kfree(sd); |
Bjorn Helgaas | 2cd6975 | 2011-10-28 16:28:14 -0600 | [diff] [blame] | 691 | } |
Muli Ben-Yehuda | 73c59af | 2007-08-10 13:01:19 -0700 | [diff] [blame] | 692 | |
| 693 | return bus; |
| 694 | } |
Yinghai Lu | 871d5f8 | 2008-02-19 03:20:09 -0800 | [diff] [blame] | 695 | |
Greg Kroah-Hartman | a18e369 | 2012-12-21 14:02:53 -0800 | [diff] [blame] | 696 | struct pci_bus *pci_scan_bus_with_sysdata(int busno) |
Yinghai Lu | 871d5f8 | 2008-02-19 03:20:09 -0800 | [diff] [blame] | 697 | { |
| 698 | return pci_scan_bus_on_node(busno, &pci_root_ops, -1); |
| 699 | } |
Jesse Barnes | 2547089 | 2009-07-10 14:04:30 -0700 | [diff] [blame] | 700 | |
| 701 | /* |
| 702 | * NUMA info for PCI busses |
| 703 | * |
| 704 | * Early arch code is responsible for filling in reasonable values here. |
| 705 | * A node id of "-1" means "use current node". In other words, if a bus |
| 706 | * has a -1 node id, it's not tightly coupled to any particular chunk |
| 707 | * of memory (as is the case on some Nehalem systems). |
| 708 | */ |
| 709 | #ifdef CONFIG_NUMA |
| 710 | |
| 711 | #define BUS_NR 256 |
| 712 | |
| 713 | #ifdef CONFIG_X86_64 |
| 714 | |
| 715 | static int mp_bus_to_node[BUS_NR] = { |
| 716 | [0 ... BUS_NR - 1] = -1 |
| 717 | }; |
| 718 | |
| 719 | void set_mp_bus_to_node(int busnum, int node) |
| 720 | { |
| 721 | if (busnum >= 0 && busnum < BUS_NR) |
| 722 | mp_bus_to_node[busnum] = node; |
| 723 | } |
| 724 | |
| 725 | int get_mp_bus_to_node(int busnum) |
| 726 | { |
| 727 | int node = -1; |
| 728 | |
| 729 | if (busnum < 0 || busnum > (BUS_NR - 1)) |
| 730 | return node; |
| 731 | |
| 732 | node = mp_bus_to_node[busnum]; |
| 733 | |
| 734 | /* |
| 735 | * let numa_node_id to decide it later in dma_alloc_pages |
| 736 | * if there is no ram on that node |
| 737 | */ |
| 738 | if (node != -1 && !node_online(node)) |
| 739 | node = -1; |
| 740 | |
| 741 | return node; |
| 742 | } |
| 743 | |
| 744 | #else /* CONFIG_X86_32 */ |
| 745 | |
Jesse Barnes | 76baeeb | 2009-09-18 09:13:57 -0700 | [diff] [blame] | 746 | static int mp_bus_to_node[BUS_NR] = { |
Jesse Barnes | 2547089 | 2009-07-10 14:04:30 -0700 | [diff] [blame] | 747 | [0 ... BUS_NR - 1] = -1 |
| 748 | }; |
| 749 | |
| 750 | void set_mp_bus_to_node(int busnum, int node) |
| 751 | { |
| 752 | if (busnum >= 0 && busnum < BUS_NR) |
| 753 | mp_bus_to_node[busnum] = (unsigned char) node; |
| 754 | } |
| 755 | |
| 756 | int get_mp_bus_to_node(int busnum) |
| 757 | { |
| 758 | int node; |
| 759 | |
| 760 | if (busnum < 0 || busnum > (BUS_NR - 1)) |
| 761 | return 0; |
| 762 | node = mp_bus_to_node[busnum]; |
| 763 | return node; |
| 764 | } |
| 765 | |
| 766 | #endif /* CONFIG_X86_32 */ |
| 767 | |
| 768 | #endif /* CONFIG_NUMA */ |