blob: ccd0ab3ab8996b764b0166f91e84e15f0dbe8ba7 [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>
9#include <linux/ioport.h>
10#include <linux/init.h>
Bernhard Kaindl8c4b2cf2006-02-18 01:36:55 -080011#include <linux/dmi.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090012#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013
Bjorn Helgaas284f5f92012-04-30 15:21:02 -060014#include <asm-generic/pci-bridge.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#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;
Narendra_K@Dell.com6e8af082010-12-14 09:57:12 -080027static int smbios_type_b1_flag;
Linus Torvalds1da177e2005-04-16 15:20:36 -070028int pci_routeirq;
Stefan Assmanna9322f62008-06-11 16:35:14 +020029int noioapicquirk;
Stefan Assmann41b9eb22008-07-15 13:48:55 +020030#ifdef CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS
31int noioapicreroute = 0;
32#else
Stefan Assmann91979792008-06-11 16:35:15 +020033int noioapicreroute = 1;
Stefan Assmann41b9eb22008-07-15 13:48:55 +020034#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070035int pcibios_last_bus = -1;
jayalk@intworks.biz120bb422005-03-21 20:20:42 -080036unsigned long pirq_table_addr;
37struct pci_bus *pci_root_bus;
Jan Beulich72da0b02011-09-15 08:58:51 +010038const struct pci_raw_ops *__read_mostly raw_pci_ops;
39const struct pci_raw_ops *__read_mostly raw_pci_ext_ops;
Matthew Wilcoxb6ce0682008-02-10 09:45:28 -050040
41int raw_pci_read(unsigned int domain, unsigned int bus, unsigned int devfn,
42 int reg, int len, u32 *val)
43{
Matthew Wilcoxbeef3122008-07-11 15:21:17 -060044 if (domain == 0 && reg < 256 && raw_pci_ops)
Matthew Wilcoxb6ce0682008-02-10 09:45:28 -050045 return raw_pci_ops->read(domain, bus, devfn, reg, len, val);
46 if (raw_pci_ext_ops)
47 return raw_pci_ext_ops->read(domain, bus, devfn, reg, len, val);
48 return -EINVAL;
49}
50
51int raw_pci_write(unsigned int domain, unsigned int bus, unsigned int devfn,
52 int reg, int len, u32 val)
53{
Matthew Wilcoxbeef3122008-07-11 15:21:17 -060054 if (domain == 0 && reg < 256 && raw_pci_ops)
Matthew Wilcoxb6ce0682008-02-10 09:45:28 -050055 return raw_pci_ops->write(domain, bus, devfn, reg, len, val);
56 if (raw_pci_ext_ops)
57 return raw_pci_ext_ops->write(domain, bus, devfn, reg, len, val);
58 return -EINVAL;
59}
Linus Torvalds1da177e2005-04-16 15:20:36 -070060
61static int pci_read(struct pci_bus *bus, unsigned int devfn, int where, int size, u32 *value)
62{
Matthew Wilcoxb6ce0682008-02-10 09:45:28 -050063 return raw_pci_read(pci_domain_nr(bus), bus->number,
Jeff Garzika79e4192007-10-11 16:58:30 -040064 devfn, where, size, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -070065}
66
67static int pci_write(struct pci_bus *bus, unsigned int devfn, int where, int size, u32 value)
68{
Matthew Wilcoxb6ce0682008-02-10 09:45:28 -050069 return raw_pci_write(pci_domain_nr(bus), bus->number,
Jeff Garzika79e4192007-10-11 16:58:30 -040070 devfn, where, size, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -070071}
72
73struct pci_ops pci_root_ops = {
74 .read = pci_read,
75 .write = pci_write,
76};
77
78/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 * This interrupt-safe spinlock protects all accesses to PCI
80 * configuration space.
81 */
Thomas Gleixnerd19f61f2010-02-17 14:35:25 +000082DEFINE_RAW_SPINLOCK(pci_config_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070083
Greg Kroah-Hartmana18e3692012-12-21 14:02:53 -080084static int can_skip_ioresource_align(const struct dmi_system_id *d)
Yinghai Lu13a6ddb2008-03-27 01:31:18 -070085{
86 pci_probe |= PCI_CAN_SKIP_ISA_ALIGN;
87 printk(KERN_INFO "PCI: %s detected, can skip ISA alignment\n", d->ident);
88 return 0;
89}
90
Greg Kroah-Hartmana18e3692012-12-21 14:02:53 -080091static const struct dmi_system_id can_skip_pciprobe_dmi_table[] = {
Yinghai Lu13a6ddb2008-03-27 01:31:18 -070092/*
93 * Systems where PCI IO resource ISA alignment can be skipped
94 * when the ISA enable bit in the bridge control is not set
95 */
96 {
97 .callback = can_skip_ioresource_align,
98 .ident = "IBM System x3800",
99 .matches = {
100 DMI_MATCH(DMI_SYS_VENDOR, "IBM"),
101 DMI_MATCH(DMI_PRODUCT_NAME, "x3800"),
102 },
103 },
104 {
105 .callback = can_skip_ioresource_align,
106 .ident = "IBM System x3850",
107 .matches = {
108 DMI_MATCH(DMI_SYS_VENDOR, "IBM"),
109 DMI_MATCH(DMI_PRODUCT_NAME, "x3850"),
110 },
111 },
112 {
113 .callback = can_skip_ioresource_align,
114 .ident = "IBM System x3950",
115 .matches = {
116 DMI_MATCH(DMI_SYS_VENDOR, "IBM"),
117 DMI_MATCH(DMI_PRODUCT_NAME, "x3950"),
118 },
119 },
120 {}
121};
122
123void __init dmi_check_skip_isa_align(void)
124{
125 dmi_check_system(can_skip_pciprobe_dmi_table);
126}
127
Greg Kroah-Hartmana18e3692012-12-21 14:02:53 -0800128static void pcibios_fixup_device_resources(struct pci_dev *dev)
Gary Hadebb71ad82008-05-12 13:57:46 -0700129{
130 struct resource *rom_r = &dev->resource[PCI_ROM_RESOURCE];
Mike Habeck7bd1c362010-05-12 11:14:32 -0700131 struct resource *bar_r;
132 int bar;
133
134 if (pci_probe & PCI_NOASSIGN_BARS) {
135 /*
136 * If the BIOS did not assign the BAR, zero out the
137 * resource so the kernel doesn't attmept to assign
138 * it later on in pci_assign_unassigned_resources
139 */
140 for (bar = 0; bar <= PCI_STD_RESOURCE_END; bar++) {
141 bar_r = &dev->resource[bar];
142 if (bar_r->start == 0 && bar_r->end != 0) {
143 bar_r->flags = 0;
144 bar_r->end = 0;
145 }
146 }
147 }
Gary Hadebb71ad82008-05-12 13:57:46 -0700148
149 if (pci_probe & PCI_NOASSIGN_ROMS) {
150 if (rom_r->parent)
151 return;
152 if (rom_r->start) {
153 /* we deal with BIOS assigned ROM later */
154 return;
155 }
156 rom_r->start = rom_r->end = rom_r->flags = 0;
157 }
158}
159
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160/*
161 * Called after each bus is probed, but before its children
162 * are examined.
163 */
164
Greg Kroah-Hartmana18e3692012-12-21 14:02:53 -0800165void pcibios_fixup_bus(struct pci_bus *b)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166{
Gary Hadebb71ad82008-05-12 13:57:46 -0700167 struct pci_dev *dev;
168
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 pci_read_bridge_bases(b);
Gary Hadebb71ad82008-05-12 13:57:46 -0700170 list_for_each_entry(dev, &b->devices, bus_list)
171 pcibios_fixup_device_resources(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172}
173
Bernhard Kaindl8c4b2cf2006-02-18 01:36:55 -0800174/*
Matt Domsch6b4b78f2006-09-29 15:23:23 -0500175 * Only use DMI information to set this if nothing was passed
176 * on the kernel command line (which was parsed earlier).
177 */
178
Greg Kroah-Hartmana18e3692012-12-21 14:02:53 -0800179static int set_bf_sort(const struct dmi_system_id *d)
Matt Domsch6b4b78f2006-09-29 15:23:23 -0500180{
181 if (pci_bf_sort == pci_bf_sort_default) {
182 pci_bf_sort = pci_dmi_bf;
183 printk(KERN_INFO "PCI: %s detected, enabling pci=bfsort.\n", d->ident);
184 }
185 return 0;
186}
187
Greg Kroah-Hartmana18e3692012-12-21 14:02:53 -0800188static void read_dmi_type_b1(const struct dmi_header *dm,
Narendra_K@Dell.com6e8af082010-12-14 09:57:12 -0800189 void *private_data)
190{
191 u8 *d = (u8 *)dm + 4;
192
193 if (dm->type != 0xB1)
194 return;
195 switch (((*(u32 *)d) >> 9) & 0x03) {
196 case 0x00:
197 printk(KERN_INFO "dmi type 0xB1 record - unknown flag\n");
198 break;
199 case 0x01: /* set pci=bfsort */
200 smbios_type_b1_flag = 1;
201 break;
202 case 0x02: /* do not set pci=bfsort */
203 smbios_type_b1_flag = 2;
204 break;
205 default:
206 break;
207 }
208}
209
Greg Kroah-Hartmana18e3692012-12-21 14:02:53 -0800210static int find_sort_method(const struct dmi_system_id *d)
Narendra_K@Dell.com6e8af082010-12-14 09:57:12 -0800211{
212 dmi_walk(read_dmi_type_b1, NULL);
213
214 if (smbios_type_b1_flag == 1) {
215 set_bf_sort(d);
216 return 0;
217 }
218 return -1;
219}
220
Matt Domsch6b4b78f2006-09-29 15:23:23 -0500221/*
Bernhard Kaindl8c4b2cf2006-02-18 01:36:55 -0800222 * Enable renumbering of PCI bus# ranges to reach all PCI busses (Cardbus)
223 */
224#ifdef __i386__
Greg Kroah-Hartmana18e3692012-12-21 14:02:53 -0800225static int assign_all_busses(const struct dmi_system_id *d)
Bernhard Kaindl8c4b2cf2006-02-18 01:36:55 -0800226{
227 pci_probe |= PCI_ASSIGN_ALL_BUSSES;
228 printk(KERN_INFO "%s detected: enabling PCI bus# renumbering"
229 " (pci=assign-busses)\n", d->ident);
230 return 0;
231}
232#endif
233
Greg Kroah-Hartmana18e3692012-12-21 14:02:53 -0800234static int set_scan_all(const struct dmi_system_id *d)
Bjorn Helgaas284f5f92012-04-30 15:21:02 -0600235{
236 printk(KERN_INFO "PCI: %s detected, enabling pci=pcie_scan_all\n",
237 d->ident);
238 pci_add_flags(PCI_SCAN_ALL_PCIE_DEVS);
239 return 0;
240}
241
Greg Kroah-Hartmana18e3692012-12-21 14:02:53 -0800242static const struct dmi_system_id pciprobe_dmi_table[] = {
Matt Domsch6b4b78f2006-09-29 15:23:23 -0500243#ifdef __i386__
Bernhard Kaindl8c4b2cf2006-02-18 01:36:55 -0800244/*
245 * Laptops which need pci=assign-busses to see Cardbus cards
246 */
Bernhard Kaindl8c4b2cf2006-02-18 01:36:55 -0800247 {
248 .callback = assign_all_busses,
249 .ident = "Samsung X20 Laptop",
250 .matches = {
251 DMI_MATCH(DMI_SYS_VENDOR, "Samsung Electronics"),
252 DMI_MATCH(DMI_PRODUCT_NAME, "SX20S"),
253 },
254 },
255#endif /* __i386__ */
Matt Domsch6b4b78f2006-09-29 15:23:23 -0500256 {
257 .callback = set_bf_sort,
258 .ident = "Dell PowerEdge 1950",
259 .matches = {
260 DMI_MATCH(DMI_SYS_VENDOR, "Dell"),
261 DMI_MATCH(DMI_PRODUCT_NAME, "PowerEdge 1950"),
262 },
263 },
264 {
265 .callback = set_bf_sort,
266 .ident = "Dell PowerEdge 1955",
267 .matches = {
268 DMI_MATCH(DMI_SYS_VENDOR, "Dell"),
269 DMI_MATCH(DMI_PRODUCT_NAME, "PowerEdge 1955"),
270 },
271 },
272 {
273 .callback = set_bf_sort,
274 .ident = "Dell PowerEdge 2900",
275 .matches = {
276 DMI_MATCH(DMI_SYS_VENDOR, "Dell"),
277 DMI_MATCH(DMI_PRODUCT_NAME, "PowerEdge 2900"),
278 },
279 },
280 {
281 .callback = set_bf_sort,
282 .ident = "Dell PowerEdge 2950",
283 .matches = {
284 DMI_MATCH(DMI_SYS_VENDOR, "Dell"),
285 DMI_MATCH(DMI_PRODUCT_NAME, "PowerEdge 2950"),
286 },
287 },
Andy Gospodarekf52383d2007-02-05 16:36:10 -0800288 {
289 .callback = set_bf_sort,
Matt Domschf7a9dae2007-03-23 23:58:07 -0500290 .ident = "Dell PowerEdge R900",
291 .matches = {
292 DMI_MATCH(DMI_SYS_VENDOR, "Dell"),
293 DMI_MATCH(DMI_PRODUCT_NAME, "PowerEdge R900"),
294 },
295 },
296 {
Narendra_K@Dell.com9b373ed2011-03-18 10:22:14 -0700297 .callback = find_sort_method,
298 .ident = "Dell System",
299 .matches = {
300 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc"),
301 },
302 },
303 {
Matt Domschf7a9dae2007-03-23 23:58:07 -0500304 .callback = set_bf_sort,
Andy Gospodarekf52383d2007-02-05 16:36:10 -0800305 .ident = "HP ProLiant BL20p G3",
306 .matches = {
307 DMI_MATCH(DMI_SYS_VENDOR, "HP"),
308 DMI_MATCH(DMI_PRODUCT_NAME, "ProLiant BL20p G3"),
309 },
310 },
311 {
312 .callback = set_bf_sort,
313 .ident = "HP ProLiant BL20p G4",
314 .matches = {
315 DMI_MATCH(DMI_SYS_VENDOR, "HP"),
316 DMI_MATCH(DMI_PRODUCT_NAME, "ProLiant BL20p G4"),
317 },
318 },
319 {
320 .callback = set_bf_sort,
321 .ident = "HP ProLiant BL30p G1",
322 .matches = {
323 DMI_MATCH(DMI_SYS_VENDOR, "HP"),
324 DMI_MATCH(DMI_PRODUCT_NAME, "ProLiant BL30p G1"),
325 },
326 },
327 {
328 .callback = set_bf_sort,
329 .ident = "HP ProLiant BL25p G1",
330 .matches = {
331 DMI_MATCH(DMI_SYS_VENDOR, "HP"),
332 DMI_MATCH(DMI_PRODUCT_NAME, "ProLiant BL25p G1"),
333 },
334 },
335 {
336 .callback = set_bf_sort,
337 .ident = "HP ProLiant BL35p G1",
338 .matches = {
339 DMI_MATCH(DMI_SYS_VENDOR, "HP"),
340 DMI_MATCH(DMI_PRODUCT_NAME, "ProLiant BL35p G1"),
341 },
342 },
343 {
344 .callback = set_bf_sort,
345 .ident = "HP ProLiant BL45p G1",
346 .matches = {
347 DMI_MATCH(DMI_SYS_VENDOR, "HP"),
348 DMI_MATCH(DMI_PRODUCT_NAME, "ProLiant BL45p G1"),
349 },
350 },
351 {
352 .callback = set_bf_sort,
353 .ident = "HP ProLiant BL45p G2",
354 .matches = {
355 DMI_MATCH(DMI_SYS_VENDOR, "HP"),
356 DMI_MATCH(DMI_PRODUCT_NAME, "ProLiant BL45p G2"),
357 },
358 },
359 {
360 .callback = set_bf_sort,
361 .ident = "HP ProLiant BL460c G1",
362 .matches = {
363 DMI_MATCH(DMI_SYS_VENDOR, "HP"),
364 DMI_MATCH(DMI_PRODUCT_NAME, "ProLiant BL460c G1"),
365 },
366 },
367 {
368 .callback = set_bf_sort,
369 .ident = "HP ProLiant BL465c G1",
370 .matches = {
371 DMI_MATCH(DMI_SYS_VENDOR, "HP"),
372 DMI_MATCH(DMI_PRODUCT_NAME, "ProLiant BL465c G1"),
373 },
374 },
375 {
376 .callback = set_bf_sort,
377 .ident = "HP ProLiant BL480c G1",
378 .matches = {
379 DMI_MATCH(DMI_SYS_VENDOR, "HP"),
380 DMI_MATCH(DMI_PRODUCT_NAME, "ProLiant BL480c G1"),
381 },
382 },
383 {
384 .callback = set_bf_sort,
385 .ident = "HP ProLiant BL685c G1",
386 .matches = {
387 DMI_MATCH(DMI_SYS_VENDOR, "HP"),
388 DMI_MATCH(DMI_PRODUCT_NAME, "ProLiant BL685c G1"),
389 },
390 },
Michal Schmidt8f8ae1a2007-10-17 18:04:35 +0200391 {
392 .callback = set_bf_sort,
Tony Camuso8d64c7812008-05-15 14:40:14 -0400393 .ident = "HP ProLiant DL360",
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 DL360"),
Michal Schmidt8f8ae1a2007-10-17 18:04:35 +0200397 },
398 },
399 {
400 .callback = set_bf_sort,
Tony Camuso8d64c7812008-05-15 14:40:14 -0400401 .ident = "HP ProLiant DL380",
Michal Schmidt8f8ae1a2007-10-17 18:04:35 +0200402 .matches = {
403 DMI_MATCH(DMI_SYS_VENDOR, "HP"),
Tony Camuso8d64c7812008-05-15 14:40:14 -0400404 DMI_MATCH(DMI_PRODUCT_NAME, "ProLiant DL380"),
Michal Schmidt8f8ae1a2007-10-17 18:04:35 +0200405 },
406 },
Juha Laiho5b1ea822007-09-13 21:21:34 +0300407#ifdef __i386__
408 {
409 .callback = assign_all_busses,
410 .ident = "Compaq EVO N800c",
411 .matches = {
412 DMI_MATCH(DMI_SYS_VENDOR, "Compaq"),
413 DMI_MATCH(DMI_PRODUCT_NAME, "EVO N800c"),
414 },
415 },
416#endif
Michal Schmidtc82bc5a2007-11-26 20:42:19 +0100417 {
418 .callback = set_bf_sort,
Jesse Barnes739db072008-07-07 09:55:26 -0700419 .ident = "HP ProLiant DL385 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 DL385 G2"),
Michal Schmidtc82bc5a2007-11-26 20:42:19 +0100423 },
424 },
425 {
426 .callback = set_bf_sort,
Jesse Barnes739db072008-07-07 09:55:26 -0700427 .ident = "HP ProLiant DL585 G2",
Michal Schmidtc82bc5a2007-11-26 20:42:19 +0100428 .matches = {
429 DMI_MATCH(DMI_SYS_VENDOR, "HP"),
Jesse Barnes739db072008-07-07 09:55:26 -0700430 DMI_MATCH(DMI_PRODUCT_NAME, "ProLiant DL585 G2"),
Michal Schmidtc82bc5a2007-11-26 20:42:19 +0100431 },
432 },
Bjorn Helgaas284f5f92012-04-30 15:21:02 -0600433 {
434 .callback = set_scan_all,
435 .ident = "Stratus/NEC ftServer",
436 .matches = {
Myron Stowe12789982012-12-26 10:39:23 -0700437 DMI_MATCH(DMI_SYS_VENDOR, "Stratus"),
438 DMI_MATCH(DMI_PRODUCT_NAME, "ftServer"),
Bjorn Helgaas284f5f92012-04-30 15:21:02 -0600439 },
440 },
Bernhard Kaindl8c4b2cf2006-02-18 01:36:55 -0800441 {}
442};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443
Yinghai Lu0df18ff2008-04-14 15:40:37 -0700444void __init dmi_check_pciprobe(void)
445{
446 dmi_check_system(pciprobe_dmi_table);
447}
448
Greg Kroah-Hartmana18e3692012-12-21 14:02:53 -0800449struct pci_bus *pcibios_scan_root(int busnum)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450{
451 struct pci_bus *bus = NULL;
452
453 while ((bus = pci_find_next_bus(bus)) != NULL) {
454 if (bus->number == busnum) {
455 /* Already scanned */
456 return bus;
457 }
458 }
459
Yinghai Luc57ca652012-04-02 18:31:54 -0700460 return pci_scan_bus_on_node(busnum, &pci_root_ops,
461 get_mp_bus_to_node(busnum));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462}
Yinghai Luc57ca652012-04-02 18:31:54 -0700463
Alex Nixon44de3392010-03-18 14:28:12 -0400464void __init pcibios_set_cache_line_size(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465{
466 struct cpuinfo_x86 *c = &boot_cpu_data;
467
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 /*
Dave Jones76b1a872009-10-14 16:31:39 -0400469 * Set PCI cacheline size to that of the CPU if the CPU has reported it.
470 * (For older CPUs that don't support cpuid, we se it to 32 bytes
471 * It's also good for 386/486s (which actually have 16)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 * as quite a few PCI devices do not support smaller values.
473 */
Dave Jones76b1a872009-10-14 16:31:39 -0400474 if (c->x86_clflush_size > 0) {
475 pci_dfl_cache_line_size = c->x86_clflush_size >> 2;
476 printk(KERN_DEBUG "PCI: pci_cache_line_size set to %d bytes\n",
477 pci_dfl_cache_line_size << 2);
478 } else {
479 pci_dfl_cache_line_size = 32 >> 2;
480 printk(KERN_DEBUG "PCI: Unknown cacheline size. Setting to 32 bytes\n");
481 }
Alex Nixon44de3392010-03-18 14:28:12 -0400482}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483
Alex Nixon44de3392010-03-18 14:28:12 -0400484int __init pcibios_init(void)
485{
486 if (!raw_pci_ops) {
487 printk(KERN_WARNING "PCI: System does not support PCI\n");
488 return 0;
489 }
490
491 pcibios_set_cache_line_size();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 pcibios_resource_survey();
493
Matt Domsch6b4b78f2006-09-29 15:23:23 -0500494 if (pci_bf_sort >= pci_force_bf)
495 pci_sort_breadthfirst();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 return 0;
497}
498
Myron Stowe15fa3252012-06-25 21:32:32 -0600499char * __init pcibios_setup(char *str)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500{
501 if (!strcmp(str, "off")) {
502 pci_probe = 0;
503 return NULL;
Matt Domsch6b4b78f2006-09-29 15:23:23 -0500504 } else if (!strcmp(str, "bfsort")) {
505 pci_bf_sort = pci_force_bf;
506 return NULL;
507 } else if (!strcmp(str, "nobfsort")) {
508 pci_bf_sort = pci_force_nobf;
509 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 }
511#ifdef CONFIG_PCI_BIOS
512 else if (!strcmp(str, "bios")) {
513 pci_probe = PCI_PROBE_BIOS;
514 return NULL;
515 } else if (!strcmp(str, "nobios")) {
516 pci_probe &= ~PCI_PROBE_BIOS;
517 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 } else if (!strcmp(str, "biosirq")) {
519 pci_probe |= PCI_BIOS_IRQ_SCAN;
520 return NULL;
jayalk@intworks.biz120bb422005-03-21 20:20:42 -0800521 } else if (!strncmp(str, "pirqaddr=", 9)) {
522 pirq_table_addr = simple_strtoul(str+9, NULL, 0);
523 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 }
525#endif
526#ifdef CONFIG_PCI_DIRECT
527 else if (!strcmp(str, "conf1")) {
528 pci_probe = PCI_PROBE_CONF1 | PCI_NO_CHECKS;
529 return NULL;
530 }
531 else if (!strcmp(str, "conf2")) {
532 pci_probe = PCI_PROBE_CONF2 | PCI_NO_CHECKS;
533 return NULL;
534 }
535#endif
536#ifdef CONFIG_PCI_MMCONFIG
537 else if (!strcmp(str, "nommconf")) {
538 pci_probe &= ~PCI_PROBE_MMCONF;
539 return NULL;
540 }
Yinghai Lu5f0b2972008-04-14 16:08:25 -0700541 else if (!strcmp(str, "check_enable_amd_mmconf")) {
542 pci_probe |= PCI_CHECK_ENABLE_AMD_MMCONF;
543 return NULL;
544 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545#endif
546 else if (!strcmp(str, "noacpi")) {
547 acpi_noirq_set();
548 return NULL;
549 }
Andi Kleen0637a702006-09-26 10:52:41 +0200550 else if (!strcmp(str, "noearly")) {
551 pci_probe |= PCI_PROBE_NOEARLY;
552 return NULL;
553 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554#ifndef CONFIG_X86_VISWS
555 else if (!strcmp(str, "usepirqmask")) {
556 pci_probe |= PCI_USE_PIRQ_MASK;
557 return NULL;
558 } else if (!strncmp(str, "irqmask=", 8)) {
559 pcibios_irq_mask = simple_strtol(str+8, NULL, 0);
560 return NULL;
561 } else if (!strncmp(str, "lastbus=", 8)) {
562 pcibios_last_bus = simple_strtol(str+8, NULL, 0);
563 return NULL;
564 }
565#endif
566 else if (!strcmp(str, "rom")) {
567 pci_probe |= PCI_ASSIGN_ROMS;
568 return NULL;
Gary Hadebb71ad82008-05-12 13:57:46 -0700569 } else if (!strcmp(str, "norom")) {
570 pci_probe |= PCI_NOASSIGN_ROMS;
571 return NULL;
Mike Habeck7bd1c362010-05-12 11:14:32 -0700572 } else if (!strcmp(str, "nobar")) {
573 pci_probe |= PCI_NOASSIGN_BARS;
574 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 } else if (!strcmp(str, "assign-busses")) {
576 pci_probe |= PCI_ASSIGN_ALL_BUSSES;
577 return NULL;
Linus Torvalds236e9462009-06-24 16:23:03 -0700578 } else if (!strcmp(str, "use_crs")) {
579 pci_probe |= PCI_USE__CRS;
Gary Hade62f420f2007-10-03 15:56:51 -0700580 return NULL;
Bjorn Helgaas7bc5e3f2010-02-23 10:24:41 -0700581 } else if (!strcmp(str, "nocrs")) {
582 pci_probe |= PCI_ROOT_NO_CRS;
583 return NULL;
Yinghai Lue3f2bae2008-05-22 14:35:11 -0700584 } else if (!strcmp(str, "earlydump")) {
585 pci_early_dump_regs = 1;
586 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 } else if (!strcmp(str, "routeirq")) {
588 pci_routeirq = 1;
589 return NULL;
Yinghai Lu13a6ddb2008-03-27 01:31:18 -0700590 } else if (!strcmp(str, "skip_isa_align")) {
591 pci_probe |= PCI_CAN_SKIP_ISA_ALIGN;
592 return NULL;
Stefan Assmanna9322f62008-06-11 16:35:14 +0200593 } else if (!strcmp(str, "noioapicquirk")) {
594 noioapicquirk = 1;
595 return NULL;
Stefan Assmann91979792008-06-11 16:35:15 +0200596 } else if (!strcmp(str, "ioapicreroute")) {
597 if (noioapicreroute != -1)
598 noioapicreroute = 0;
599 return NULL;
Stefan Assmann41b9eb22008-07-15 13:48:55 +0200600 } else if (!strcmp(str, "noioapicreroute")) {
601 if (noioapicreroute != -1)
602 noioapicreroute = 1;
603 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 }
605 return str;
606}
607
608unsigned int pcibios_assign_all_busses(void)
609{
610 return (pci_probe & PCI_ASSIGN_ALL_BUSSES) ? 1 : 0;
611}
612
Matthew Garrettf9a37be2012-12-05 14:33:27 -0700613int pcibios_add_device(struct pci_dev *dev)
614{
615 struct setup_data *data;
616 struct pci_setup_rom *rom;
617 u64 pa_data;
618
619 pa_data = boot_params.hdr.setup_data;
620 while (pa_data) {
621 data = phys_to_virt(pa_data);
622
623 if (data->type == SETUP_PCI) {
624 rom = (struct pci_setup_rom *)data;
625
626 if ((pci_domain_nr(dev->bus) == rom->segment) &&
627 (dev->bus->number == rom->bus) &&
628 (PCI_SLOT(dev->devfn) == rom->device) &&
629 (PCI_FUNC(dev->devfn) == rom->function) &&
630 (dev->vendor == rom->vendor) &&
631 (dev->device == rom->devid)) {
Bjorn Helgaasdbd3fc32012-12-10 11:24:42 -0700632 dev->rom = pa_data +
633 offsetof(struct pci_setup_rom, romdata);
Matthew Garrettf9a37be2012-12-05 14:33:27 -0700634 dev->romlen = rom->pcilen;
635 }
636 }
637 pa_data = data->next;
638 }
639 return 0;
640}
641
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642int pcibios_enable_device(struct pci_dev *dev, int mask)
643{
644 int err;
645
Bjorn Helgaasb81d9882008-03-04 11:57:01 -0700646 if ((err = pci_enable_resources(dev, mask)) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 return err;
648
Rafael J. Wysocki16cf0eb2009-01-05 14:50:27 +0100649 if (!pci_dev_msi_enabled(dev))
Eric W. Biedermanbba6f6f2007-03-28 15:36:09 +0200650 return pcibios_enable_irq(dev);
651 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652}
David Shaohua Li87bec662005-07-27 23:02:00 -0400653
654void pcibios_disable_device (struct pci_dev *dev)
655{
Rafael J. Wysocki16cf0eb2009-01-05 14:50:27 +0100656 if (!pci_dev_msi_enabled(dev) && pcibios_disable_irq)
David Shaohua Li87bec662005-07-27 23:02:00 -0400657 pcibios_disable_irq(dev);
658}
Muli Ben-Yehuda73c59af2007-08-10 13:01:19 -0700659
Taku Izumi642c92d2012-10-30 15:26:18 +0900660int pci_ext_cfg_avail(void)
Andrew Patterson0ef5f8f2008-11-10 15:30:50 -0700661{
662 if (raw_pci_ext_ops)
663 return 1;
664 else
665 return 0;
666}
667
Greg Kroah-Hartmana18e3692012-12-21 14:02:53 -0800668struct pci_bus *pci_scan_bus_on_node(int busno, struct pci_ops *ops, int node)
Muli Ben-Yehuda73c59af2007-08-10 13:01:19 -0700669{
Bjorn Helgaas2cd69752011-10-28 16:28:14 -0600670 LIST_HEAD(resources);
Muli Ben-Yehuda73c59af2007-08-10 13:01:19 -0700671 struct pci_bus *bus = NULL;
672 struct pci_sysdata *sd;
673
674 /*
675 * Allocate per-root-bus (not per bus) arch-specific data.
676 * TODO: leak; this memory is never freed.
677 * It's arguable whether it's worth the trouble to care.
678 */
679 sd = kzalloc(sizeof(*sd), GFP_KERNEL);
680 if (!sd) {
681 printk(KERN_ERR "PCI: OOM, skipping PCI bus %02x\n", busno);
682 return NULL;
683 }
Yinghai Lu871d5f82008-02-19 03:20:09 -0800684 sd->node = node;
Bjorn Helgaas2cd69752011-10-28 16:28:14 -0600685 x86_pci_root_bus_resources(busno, &resources);
Yinghai Luc57ca652012-04-02 18:31:54 -0700686 printk(KERN_DEBUG "PCI: Probing PCI hardware (bus %02x)\n", busno);
Bjorn Helgaas2cd69752011-10-28 16:28:14 -0600687 bus = pci_scan_root_bus(NULL, busno, ops, sd, &resources);
688 if (!bus) {
689 pci_free_resource_list(&resources);
Muli Ben-Yehuda73c59af2007-08-10 13:01:19 -0700690 kfree(sd);
Bjorn Helgaas2cd69752011-10-28 16:28:14 -0600691 }
Muli Ben-Yehuda73c59af2007-08-10 13:01:19 -0700692
693 return bus;
694}
Yinghai Lu871d5f82008-02-19 03:20:09 -0800695
Greg Kroah-Hartmana18e3692012-12-21 14:02:53 -0800696struct pci_bus *pci_scan_bus_with_sysdata(int busno)
Yinghai Lu871d5f82008-02-19 03:20:09 -0800697{
698 return pci_scan_bus_on_node(busno, &pci_root_ops, -1);
699}
Jesse Barnes25470892009-07-10 14:04:30 -0700700
701/*
702 * NUMA info for PCI busses
703 *
704 * Early arch code is responsible for filling in reasonable values here.
705 * A node id of "-1" means "use current node". In other words, if a bus
706 * has a -1 node id, it's not tightly coupled to any particular chunk
707 * of memory (as is the case on some Nehalem systems).
708 */
709#ifdef CONFIG_NUMA
710
711#define BUS_NR 256
712
713#ifdef CONFIG_X86_64
714
715static int mp_bus_to_node[BUS_NR] = {
716 [0 ... BUS_NR - 1] = -1
717};
718
719void set_mp_bus_to_node(int busnum, int node)
720{
721 if (busnum >= 0 && busnum < BUS_NR)
722 mp_bus_to_node[busnum] = node;
723}
724
725int get_mp_bus_to_node(int busnum)
726{
727 int node = -1;
728
729 if (busnum < 0 || busnum > (BUS_NR - 1))
730 return node;
731
732 node = mp_bus_to_node[busnum];
733
734 /*
735 * let numa_node_id to decide it later in dma_alloc_pages
736 * if there is no ram on that node
737 */
738 if (node != -1 && !node_online(node))
739 node = -1;
740
741 return node;
742}
743
744#else /* CONFIG_X86_32 */
745
Jesse Barnes76baeeb2009-09-18 09:13:57 -0700746static int mp_bus_to_node[BUS_NR] = {
Jesse Barnes25470892009-07-10 14:04:30 -0700747 [0 ... BUS_NR - 1] = -1
748};
749
750void set_mp_bus_to_node(int busnum, int node)
751{
752 if (busnum >= 0 && busnum < BUS_NR)
753 mp_bus_to_node[busnum] = (unsigned char) node;
754}
755
756int get_mp_bus_to_node(int busnum)
757{
758 int node;
759
760 if (busnum < 0 || busnum > (BUS_NR - 1))
761 return 0;
762 node = mp_bus_to_node[busnum];
763 return node;
764}
765
766#endif /* CONFIG_X86_32 */
767
768#endif /* CONFIG_NUMA */