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