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