blob: 7a5350d08cef711a14c29cf1f8fcedb70ecc7465 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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 Liu89016502013-04-12 05:44:23 +00009#include <linux/pci-acpi.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010#include <linux/ioport.h>
11#include <linux/init.h>
Bernhard Kaindl8c4b2cf2006-02-18 01:36:55 -080012#include <linux/dmi.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090013#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014
15#include <asm/acpi.h>
16#include <asm/segment.h>
17#include <asm/io.h>
18#include <asm/smp.h>
Jaswinder Singh Rajput82487712008-12-27 18:32:28 +053019#include <asm/pci_x86.h>
Matthew Garrettf9a37be2012-12-05 14:33:27 -070020#include <asm/setup.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021
Linus Torvalds1da177e2005-04-16 15:20:36 -070022unsigned int pci_probe = PCI_PROBE_BIOS | PCI_PROBE_CONF1 | PCI_PROBE_CONF2 |
23 PCI_PROBE_MMCONF;
24
Yinghai Lue3f2bae2008-05-22 14:35:11 -070025unsigned int pci_early_dump_regs;
Adrian Bunk2b290da2006-11-16 13:16:23 +010026static int pci_bf_sort;
Linus Torvalds1da177e2005-04-16 15:20:36 -070027int pci_routeirq;
Stefan Assmanna9322f62008-06-11 16:35:14 +020028int noioapicquirk;
Stefan Assmann41b9eb22008-07-15 13:48:55 +020029#ifdef CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS
30int noioapicreroute = 0;
31#else
Stefan Assmann91979792008-06-11 16:35:15 +020032int noioapicreroute = 1;
Stefan Assmann41b9eb22008-07-15 13:48:55 +020033#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070034int pcibios_last_bus = -1;
jayalk@intworks.biz120bb422005-03-21 20:20:42 -080035unsigned long pirq_table_addr;
Jan Beulich72da0b02011-09-15 08:58:51 +010036const struct pci_raw_ops *__read_mostly raw_pci_ops;
37const struct pci_raw_ops *__read_mostly raw_pci_ext_ops;
Matthew Wilcoxb6ce0682008-02-10 09:45:28 -050038
39int raw_pci_read(unsigned int domain, unsigned int bus, unsigned int devfn,
40 int reg, int len, u32 *val)
41{
Matthew Wilcoxbeef3122008-07-11 15:21:17 -060042 if (domain == 0 && reg < 256 && raw_pci_ops)
Matthew Wilcoxb6ce0682008-02-10 09:45:28 -050043 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
49int raw_pci_write(unsigned int domain, unsigned int bus, unsigned int devfn,
50 int reg, int len, u32 val)
51{
Matthew Wilcoxbeef3122008-07-11 15:21:17 -060052 if (domain == 0 && reg < 256 && raw_pci_ops)
Matthew Wilcoxb6ce0682008-02-10 09:45:28 -050053 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 Torvalds1da177e2005-04-16 15:20:36 -070058
59static int pci_read(struct pci_bus *bus, unsigned int devfn, int where, int size, u32 *value)
60{
Matthew Wilcoxb6ce0682008-02-10 09:45:28 -050061 return raw_pci_read(pci_domain_nr(bus), bus->number,
Jeff Garzika79e4192007-10-11 16:58:30 -040062 devfn, where, size, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -070063}
64
65static int pci_write(struct pci_bus *bus, unsigned int devfn, int where, int size, u32 value)
66{
Matthew Wilcoxb6ce0682008-02-10 09:45:28 -050067 return raw_pci_write(pci_domain_nr(bus), bus->number,
Jeff Garzika79e4192007-10-11 16:58:30 -040068 devfn, where, size, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -070069}
70
71struct pci_ops pci_root_ops = {
72 .read = pci_read,
73 .write = pci_write,
74};
75
76/*
Thomas Gleixnerdf65c1b2017-03-16 22:50:07 +010077 * This interrupt-safe spinlock protects all accesses to PCI configuration
78 * space, except for the mmconfig (ECAM) based operations.
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 */
Thomas Gleixnerd19f61f2010-02-17 14:35:25 +000080DEFINE_RAW_SPINLOCK(pci_config_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070081
Mathias Krause4ac9cbf2014-08-25 23:26:35 +020082static int __init can_skip_ioresource_align(const struct dmi_system_id *d)
Yinghai Lu13a6ddb2008-03-27 01:31:18 -070083{
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 Krause4ac9cbf2014-08-25 23:26:35 +020089static const struct dmi_system_id can_skip_pciprobe_dmi_table[] __initconst = {
Yinghai Lu13a6ddb2008-03-27 01:31:18 -070090/*
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
121void __init dmi_check_skip_isa_align(void)
122{
123 dmi_check_system(can_skip_pciprobe_dmi_table);
124}
125
Greg Kroah-Hartmana18e3692012-12-21 14:02:53 -0800126static void pcibios_fixup_device_resources(struct pci_dev *dev)
Gary Hadebb71ad82008-05-12 13:57:46 -0700127{
128 struct resource *rom_r = &dev->resource[PCI_ROM_RESOURCE];
Mike Habeck7bd1c362010-05-12 11:14:32 -0700129 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 Gelmini386ed2a2016-06-10 19:05:09 -0500135 * resource so the kernel doesn't attempt to assign
Mike Habeck7bd1c362010-05-12 11:14:32 -0700136 * 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 Hadebb71ad82008-05-12 13:57:46 -0700146
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 Torvalds1da177e2005-04-16 15:20:36 -0700158/*
159 * Called after each bus is probed, but before its children
160 * are examined.
161 */
162
Greg Kroah-Hartmana18e3692012-12-21 14:02:53 -0800163void pcibios_fixup_bus(struct pci_bus *b)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164{
Gary Hadebb71ad82008-05-12 13:57:46 -0700165 struct pci_dev *dev;
166
Bjorn Helgaas237865f2015-09-15 13:18:04 -0500167 pci_read_bridge_bases(b);
Gary Hadebb71ad82008-05-12 13:57:46 -0700168 list_for_each_entry(dev, &b->devices, bus_list)
169 pcibios_fixup_device_resources(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170}
171
Jiang Liu89016502013-04-12 05:44:23 +0000172void pcibios_add_bus(struct pci_bus *bus)
173{
174 acpi_pci_add_bus(bus);
175}
176
177void pcibios_remove_bus(struct pci_bus *bus)
178{
179 acpi_pci_remove_bus(bus);
180}
181
Bernhard Kaindl8c4b2cf2006-02-18 01:36:55 -0800182/*
Matt Domsch6b4b78f2006-09-29 15:23:23 -0500183 * Only use DMI information to set this if nothing was passed
184 * on the kernel command line (which was parsed earlier).
185 */
186
Mathias Krause4ac9cbf2014-08-25 23:26:35 +0200187static int __init set_bf_sort(const struct dmi_system_id *d)
Matt Domsch6b4b78f2006-09-29 15:23:23 -0500188{
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 Krause4ac9cbf2014-08-25 23:26:35 +0200196static void __init read_dmi_type_b1(const struct dmi_header *dm,
197 void *private_data)
Narendra_K@Dell.com6e8af082010-12-14 09:57:12 -0800198{
Jean Delvaref5ab3b72017-06-02 16:13:11 +0200199 u8 *data = (u8 *)dm + 4;
Narendra_K@Dell.com6e8af082010-12-14 09:57:12 -0800200
201 if (dm->type != 0xB1)
202 return;
Jean Delvaref5ab3b72017-06-02 16:13:11 +0200203 if ((((*(u32 *)data) >> 9) & 0x03) == 0x01)
204 set_bf_sort((const struct dmi_system_id *)private_data);
Narendra_K@Dell.com6e8af082010-12-14 09:57:12 -0800205}
206
Mathias Krause4ac9cbf2014-08-25 23:26:35 +0200207static int __init find_sort_method(const struct dmi_system_id *d)
Narendra_K@Dell.com6e8af082010-12-14 09:57:12 -0800208{
Jean Delvaref5ab3b72017-06-02 16:13:11 +0200209 dmi_walk(read_dmi_type_b1, (void *)d);
210 return 0;
Narendra_K@Dell.com6e8af082010-12-14 09:57:12 -0800211}
212
Matt Domsch6b4b78f2006-09-29 15:23:23 -0500213/*
Bernhard Kaindl8c4b2cf2006-02-18 01:36:55 -0800214 * Enable renumbering of PCI bus# ranges to reach all PCI busses (Cardbus)
215 */
216#ifdef __i386__
Mathias Krause4ac9cbf2014-08-25 23:26:35 +0200217static int __init assign_all_busses(const struct dmi_system_id *d)
Bernhard Kaindl8c4b2cf2006-02-18 01:36:55 -0800218{
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 Krause4ac9cbf2014-08-25 23:26:35 +0200226static int __init set_scan_all(const struct dmi_system_id *d)
Bjorn Helgaas284f5f92012-04-30 15:21:02 -0600227{
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 Krause4ac9cbf2014-08-25 23:26:35 +0200234static const struct dmi_system_id pciprobe_dmi_table[] __initconst = {
Matt Domsch6b4b78f2006-09-29 15:23:23 -0500235#ifdef __i386__
Bernhard Kaindl8c4b2cf2006-02-18 01:36:55 -0800236/*
237 * Laptops which need pci=assign-busses to see Cardbus cards
238 */
Bernhard Kaindl8c4b2cf2006-02-18 01:36:55 -0800239 {
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 Domsch6b4b78f2006-09-29 15:23:23 -0500248 {
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 Gospodarekf52383d2007-02-05 16:36:10 -0800280 {
281 .callback = set_bf_sort,
Matt Domschf7a9dae2007-03-23 23:58:07 -0500282 .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.com9b373ed2011-03-18 10:22:14 -0700289 .callback = find_sort_method,
290 .ident = "Dell System",
291 .matches = {
292 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc"),
293 },
294 },
295 {
Matt Domschf7a9dae2007-03-23 23:58:07 -0500296 .callback = set_bf_sort,
Andy Gospodarekf52383d2007-02-05 16:36:10 -0800297 .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 Schmidt8f8ae1a2007-10-17 18:04:35 +0200383 {
384 .callback = set_bf_sort,
Tony Camuso8d64c7812008-05-15 14:40:14 -0400385 .ident = "HP ProLiant DL360",
Michal Schmidt8f8ae1a2007-10-17 18:04:35 +0200386 .matches = {
387 DMI_MATCH(DMI_SYS_VENDOR, "HP"),
Tony Camuso8d64c7812008-05-15 14:40:14 -0400388 DMI_MATCH(DMI_PRODUCT_NAME, "ProLiant DL360"),
Michal Schmidt8f8ae1a2007-10-17 18:04:35 +0200389 },
390 },
391 {
392 .callback = set_bf_sort,
Tony Camuso8d64c7812008-05-15 14:40:14 -0400393 .ident = "HP ProLiant DL380",
Michal Schmidt8f8ae1a2007-10-17 18:04:35 +0200394 .matches = {
395 DMI_MATCH(DMI_SYS_VENDOR, "HP"),
Tony Camuso8d64c7812008-05-15 14:40:14 -0400396 DMI_MATCH(DMI_PRODUCT_NAME, "ProLiant DL380"),
Michal Schmidt8f8ae1a2007-10-17 18:04:35 +0200397 },
398 },
Juha Laiho5b1ea822007-09-13 21:21:34 +0300399#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 Schmidtc82bc5a2007-11-26 20:42:19 +0100409 {
410 .callback = set_bf_sort,
Jesse Barnes739db072008-07-07 09:55:26 -0700411 .ident = "HP ProLiant DL385 G2",
Michal Schmidtc82bc5a2007-11-26 20:42:19 +0100412 .matches = {
413 DMI_MATCH(DMI_SYS_VENDOR, "HP"),
Jesse Barnes739db072008-07-07 09:55:26 -0700414 DMI_MATCH(DMI_PRODUCT_NAME, "ProLiant DL385 G2"),
Michal Schmidtc82bc5a2007-11-26 20:42:19 +0100415 },
416 },
417 {
418 .callback = set_bf_sort,
Jesse Barnes739db072008-07-07 09:55:26 -0700419 .ident = "HP ProLiant DL585 G2",
Michal Schmidtc82bc5a2007-11-26 20:42:19 +0100420 .matches = {
421 DMI_MATCH(DMI_SYS_VENDOR, "HP"),
Jesse Barnes739db072008-07-07 09:55:26 -0700422 DMI_MATCH(DMI_PRODUCT_NAME, "ProLiant DL585 G2"),
Michal Schmidtc82bc5a2007-11-26 20:42:19 +0100423 },
424 },
Bjorn Helgaas284f5f92012-04-30 15:21:02 -0600425 {
426 .callback = set_scan_all,
427 .ident = "Stratus/NEC ftServer",
428 .matches = {
Myron Stowe12789982012-12-26 10:39:23 -0700429 DMI_MATCH(DMI_SYS_VENDOR, "Stratus"),
430 DMI_MATCH(DMI_PRODUCT_NAME, "ftServer"),
Bjorn Helgaas284f5f92012-04-30 15:21:02 -0600431 },
432 },
Charlotte Richardson51ac3d22015-02-02 09:36:23 -0600433 {
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 Kaindl8c4b2cf2006-02-18 01:36:55 -0800449 {}
450};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451
Yinghai Lu0df18ff2008-04-14 15:40:37 -0700452void __init dmi_check_pciprobe(void)
453{
454 dmi_check_system(pciprobe_dmi_table);
455}
456
Bjorn Helgaas49886cf2014-01-28 16:40:36 -0700457void pcibios_scan_root(int busnum)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458{
Bjorn Helgaas289a24a2014-01-24 11:52:25 -0700459 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 Helgaas49886cf2014-01-28 16:40:36 -0700466 return;
Bjorn Helgaas289a24a2014-01-24 11:52:25 -0700467 }
Bjorn Helgaas6616dbd2014-01-24 11:54:51 -0700468 sd->node = x86_pci_root_bus_node(busnum);
Bjorn Helgaas289a24a2014-01-24 11:52:25 -0700469 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 Wangb97ea282015-03-16 11:18:56 +0800475 return;
Bjorn Helgaas289a24a2014-01-24 11:52:25 -0700476 }
Yijing Wangb97ea282015-03-16 11:18:56 +0800477 pci_bus_add_devices(bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478}
Yinghai Luc57ca652012-04-02 18:31:54 -0700479
Alex Nixon44de3392010-03-18 14:28:12 -0400480void __init pcibios_set_cache_line_size(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481{
482 struct cpuinfo_x86 *c = &boot_cpu_data;
483
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 /*
Dave Jones76b1a872009-10-14 16:31:39 -0400485 * 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 Torvalds1da177e2005-04-16 15:20:36 -0700488 * as quite a few PCI devices do not support smaller values.
489 */
Dave Jones76b1a872009-10-14 16:31:39 -0400490 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 Nixon44de3392010-03-18 14:28:12 -0400498}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499
Alex Nixon44de3392010-03-18 14:28:12 -0400500int __init pcibios_init(void)
501{
Adrian-Ken Rueegsegger35a6ae02016-03-23 11:34:29 +0100502 if (!raw_pci_ops && !raw_pci_ext_ops) {
Alex Nixon44de3392010-03-18 14:28:12 -0400503 printk(KERN_WARNING "PCI: System does not support PCI\n");
504 return 0;
505 }
506
507 pcibios_set_cache_line_size();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 pcibios_resource_survey();
509
Matt Domsch6b4b78f2006-09-29 15:23:23 -0500510 if (pci_bf_sort >= pci_force_bf)
511 pci_sort_breadthfirst();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 return 0;
513}
514
Mathias Krause4ac9cbf2014-08-25 23:26:35 +0200515char *__init pcibios_setup(char *str)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516{
517 if (!strcmp(str, "off")) {
518 pci_probe = 0;
519 return NULL;
Matt Domsch6b4b78f2006-09-29 15:23:23 -0500520 } 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 Torvalds1da177e2005-04-16 15:20:36 -0700526 }
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 Torvalds1da177e2005-04-16 15:20:36 -0700534 } else if (!strcmp(str, "biosirq")) {
535 pci_probe |= PCI_BIOS_IRQ_SCAN;
536 return NULL;
jayalk@intworks.biz120bb422005-03-21 20:20:42 -0800537 } else if (!strncmp(str, "pirqaddr=", 9)) {
538 pirq_table_addr = simple_strtoul(str+9, NULL, 0);
539 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 }
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 Lu5f0b2972008-04-14 16:08:25 -0700557 else if (!strcmp(str, "check_enable_amd_mmconf")) {
558 pci_probe |= PCI_CHECK_ENABLE_AMD_MMCONF;
559 return NULL;
560 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561#endif
562 else if (!strcmp(str, "noacpi")) {
563 acpi_noirq_set();
564 return NULL;
565 }
Andi Kleen0637a702006-09-26 10:52:41 +0200566 else if (!strcmp(str, "noearly")) {
567 pci_probe |= PCI_PROBE_NOEARLY;
568 return NULL;
569 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 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 Anvinc5f9ee32014-02-25 12:05:34 -0800579 } else if (!strcmp(str, "rom")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 pci_probe |= PCI_ASSIGN_ROMS;
581 return NULL;
Gary Hadebb71ad82008-05-12 13:57:46 -0700582 } else if (!strcmp(str, "norom")) {
583 pci_probe |= PCI_NOASSIGN_ROMS;
584 return NULL;
Mike Habeck7bd1c362010-05-12 11:14:32 -0700585 } else if (!strcmp(str, "nobar")) {
586 pci_probe |= PCI_NOASSIGN_BARS;
587 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 } else if (!strcmp(str, "assign-busses")) {
589 pci_probe |= PCI_ASSIGN_ALL_BUSSES;
590 return NULL;
Linus Torvalds236e9462009-06-24 16:23:03 -0700591 } else if (!strcmp(str, "use_crs")) {
592 pci_probe |= PCI_USE__CRS;
Gary Hade62f420f2007-10-03 15:56:51 -0700593 return NULL;
Bjorn Helgaas7bc5e3f2010-02-23 10:24:41 -0700594 } else if (!strcmp(str, "nocrs")) {
595 pci_probe |= PCI_ROOT_NO_CRS;
596 return NULL;
Yinghai Lue3f2bae2008-05-22 14:35:11 -0700597 } else if (!strcmp(str, "earlydump")) {
598 pci_early_dump_regs = 1;
599 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 } else if (!strcmp(str, "routeirq")) {
601 pci_routeirq = 1;
602 return NULL;
Yinghai Lu13a6ddb2008-03-27 01:31:18 -0700603 } else if (!strcmp(str, "skip_isa_align")) {
604 pci_probe |= PCI_CAN_SKIP_ISA_ALIGN;
605 return NULL;
Stefan Assmanna9322f62008-06-11 16:35:14 +0200606 } else if (!strcmp(str, "noioapicquirk")) {
607 noioapicquirk = 1;
608 return NULL;
Stefan Assmann91979792008-06-11 16:35:15 +0200609 } else if (!strcmp(str, "ioapicreroute")) {
610 if (noioapicreroute != -1)
611 noioapicreroute = 0;
612 return NULL;
Stefan Assmann41b9eb22008-07-15 13:48:55 +0200613 } else if (!strcmp(str, "noioapicreroute")) {
614 if (noioapicreroute != -1)
615 noioapicreroute = 1;
616 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 }
618 return str;
619}
620
621unsigned int pcibios_assign_all_busses(void)
622{
623 return (pci_probe & PCI_ASSIGN_ALL_BUSSES) ? 1 : 0;
624}
625
Keith Buschd9c3d6f2016-01-12 13:18:08 -0700626#if defined(CONFIG_X86_DEV_DMA_OPS) && defined(CONFIG_PCI_DOMAINS)
627static LIST_HEAD(dma_domain_list);
628static DEFINE_SPINLOCK(dma_domain_list_lock);
629
630void 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}
636EXPORT_SYMBOL_GPL(add_dma_domain);
637
638void 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}
644EXPORT_SYMBOL_GPL(del_dma_domain);
645
646static 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 Assche56579332017-01-20 13:04:02 -0800653 pdev->dev.dma_ops = domain->dma_ops;
Keith Buschd9c3d6f2016-01-12 13:18:08 -0700654 break;
655 }
656 }
657 spin_unlock(&dma_domain_list_lock);
658}
659#else
660static void set_dma_domain_ops(struct pci_dev *pdev) {}
661#endif
662
Keith Busch31618322016-09-13 09:05:40 -0600663static 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 Garrettf9a37be2012-12-05 14:33:27 -0700669int 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 Lendackyf7750a72017-07-17 16:10:00 -0500677 data = memremap(pa_data, sizeof(*rom), MEMREMAP_WB);
Matt Fleming65694c52013-06-05 15:15:41 +0100678 if (!data)
679 return -ENOMEM;
Matthew Garrettf9a37be2012-12-05 14:33:27 -0700680
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 Helgaasdbd3fc32012-12-10 11:24:42 -0700690 dev->rom = pa_data +
691 offsetof(struct pci_setup_rom, romdata);
Matthew Garrettf9a37be2012-12-05 14:33:27 -0700692 dev->romlen = rom->pcilen;
693 }
694 }
695 pa_data = data->next;
Tom Lendackyf7750a72017-07-17 16:10:00 -0500696 memunmap(data);
Matthew Garrettf9a37be2012-12-05 14:33:27 -0700697 }
Keith Buschd9c3d6f2016-01-12 13:18:08 -0700698 set_dma_domain_ops(dev);
Keith Busch31618322016-09-13 09:05:40 -0600699 set_dev_domain_options(dev);
Matthew Garrettf9a37be2012-12-05 14:33:27 -0700700 return 0;
701}
702
Jiang Liu991de2e2015-06-10 16:54:59 +0800703int pcibios_enable_device(struct pci_dev *dev, int mask)
704{
Bjorn Helgaas6c777e82016-02-17 12:26:42 -0600705 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
715void pcibios_disable_device (struct pci_dev *dev)
716{
717 if (!pci_dev_msi_enabled(dev) && pcibios_disable_irq)
718 pcibios_disable_irq(dev);
Jiang Liu991de2e2015-06-10 16:54:59 +0800719}
720
Rui Wang153654d2017-02-28 21:34:28 +0800721#ifdef CONFIG_ACPI_HOTPLUG_IOAPIC
722void 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 Izumi642c92d2012-10-30 15:26:18 +0900730int pci_ext_cfg_avail(void)
Andrew Patterson0ef5f8f2008-11-10 15:30:50 -0700731{
732 if (raw_pci_ext_ops)
733 return 1;
734 else
735 return 0;
736}