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