1
2
3
4
5
6
7
8
9
10
11
12
13#include <linux/pci.h>
14#include <linux/acpi.h>
15#include <linux/delay.h>
16#include <linux/pci_ids.h>
17#include <linux/bcma/bcma.h>
18#include <linux/bcma/bcma_regs.h>
19#include <linux/platform_data/x86/apple.h>
20#include <drm/i915_drm.h>
21#include <asm/pci-direct.h>
22#include <asm/dma.h>
23#include <asm/io_apic.h>
24#include <asm/apic.h>
25#include <asm/hpet.h>
26#include <asm/iommu.h>
27#include <asm/gart.h>
28#include <asm/irq_remapping.h>
29#include <asm/early_ioremap.h>
30
31#define dev_err(msg) pr_err("pci 0000:%02x:%02x.%d: %s", bus, slot, func, msg)
32
33static void __init fix_hypertransport_config(int num, int slot, int func)
34{
35 u32 htcfg;
36
37
38
39
40
41
42 htcfg = read_pci_config(num, slot, func, 0x68);
43 if (htcfg & (1 << 18)) {
44 printk(KERN_INFO "Detected use of extended apic ids "
45 "on hypertransport bus\n");
46 if ((htcfg & (1 << 17)) == 0) {
47 printk(KERN_INFO "Enabling hypertransport extended "
48 "apic interrupt broadcast\n");
49 printk(KERN_INFO "Note this is a bios bug, "
50 "please contact your hw vendor\n");
51 htcfg |= (1 << 17);
52 write_pci_config(num, slot, func, 0x68, htcfg);
53 }
54 }
55
56
57}
58
59static void __init via_bugs(int num, int slot, int func)
60{
61#ifdef CONFIG_GART_IOMMU
62 if ((max_pfn > MAX_DMA32_PFN || force_iommu) &&
63 !gart_iommu_aperture_allowed) {
64 printk(KERN_INFO
65 "Looks like a VIA chipset. Disabling IOMMU."
66 " Override with iommu=allowed\n");
67 gart_iommu_aperture_disabled = 1;
68 }
69#endif
70}
71
72#ifdef CONFIG_ACPI
73#ifdef CONFIG_X86_IO_APIC
74
75static int __init nvidia_hpet_check(struct acpi_table_header *header)
76{
77 return 0;
78}
79#endif
80#endif
81
82static void __init nvidia_bugs(int num, int slot, int func)
83{
84#ifdef CONFIG_ACPI
85#ifdef CONFIG_X86_IO_APIC
86
87
88
89
90 if (num)
91 return;
92
93
94
95
96
97
98
99
100 if (acpi_use_timer_override)
101 return;
102
103 if (acpi_table_parse(ACPI_SIG_HPET, nvidia_hpet_check)) {
104 acpi_skip_timer_override = 1;
105 printk(KERN_INFO "Nvidia board "
106 "detected. Ignoring ACPI "
107 "timer override.\n");
108 printk(KERN_INFO "If you got timer trouble "
109 "try acpi_use_timer_override\n");
110 }
111#endif
112#endif
113
114
115}
116
117#if defined(CONFIG_ACPI) && defined(CONFIG_X86_IO_APIC)
118static u32 __init ati_ixp4x0_rev(int num, int slot, int func)
119{
120 u32 d;
121 u8 b;
122
123 b = read_pci_config_byte(num, slot, func, 0xac);
124 b &= ~(1<<5);
125 write_pci_config_byte(num, slot, func, 0xac, b);
126
127 d = read_pci_config(num, slot, func, 0x70);
128 d |= 1<<8;
129 write_pci_config(num, slot, func, 0x70, d);
130
131 d = read_pci_config(num, slot, func, 0x8);
132 d &= 0xff;
133 return d;
134}
135
136static void __init ati_bugs(int num, int slot, int func)
137{
138 u32 d;
139 u8 b;
140
141 if (acpi_use_timer_override)
142 return;
143
144 d = ati_ixp4x0_rev(num, slot, func);
145 if (d < 0x82)
146 acpi_skip_timer_override = 1;
147 else {
148
149 outb(0x72, 0xcd6); b = inb(0xcd7);
150 if (!(b & 0x2))
151 acpi_skip_timer_override = 1;
152 }
153
154 if (acpi_skip_timer_override) {
155 printk(KERN_INFO "SB4X0 revision 0x%x\n", d);
156 printk(KERN_INFO "Ignoring ACPI timer override.\n");
157 printk(KERN_INFO "If you got timer trouble "
158 "try acpi_use_timer_override\n");
159 }
160}
161
162static u32 __init ati_sbx00_rev(int num, int slot, int func)
163{
164 u32 d;
165
166 d = read_pci_config(num, slot, func, 0x8);
167 d &= 0xff;
168
169 return d;
170}
171
172static void __init ati_bugs_contd(int num, int slot, int func)
173{
174 u32 d, rev;
175
176 rev = ati_sbx00_rev(num, slot, func);
177 if (rev >= 0x40)
178 acpi_fix_pin2_polarity = 1;
179
180
181
182
183
184
185 if (rev >= 0x39)
186 return;
187
188 if (acpi_use_timer_override)
189 return;
190
191
192 d = read_pci_config(num, slot, func, 0x64);
193 if (!(d & (1<<14)))
194 acpi_skip_timer_override = 1;
195
196 if (acpi_skip_timer_override) {
197 printk(KERN_INFO "SB600 revision 0x%x\n", rev);
198 printk(KERN_INFO "Ignoring ACPI timer override.\n");
199 printk(KERN_INFO "If you got timer trouble "
200 "try acpi_use_timer_override\n");
201 }
202}
203#else
204static void __init ati_bugs(int num, int slot, int func)
205{
206}
207
208static void __init ati_bugs_contd(int num, int slot, int func)
209{
210}
211#endif
212
213static void __init intel_remapping_check(int num, int slot, int func)
214{
215 u8 revision;
216 u16 device;
217
218 device = read_pci_config_16(num, slot, func, PCI_DEVICE_ID);
219 revision = read_pci_config_byte(num, slot, func, PCI_REVISION_ID);
220
221
222
223
224
225
226
227 if (revision <= 0x13)
228 set_irq_remapping_broken();
229 else if (device == 0x3405 && revision == 0x22)
230 set_irq_remapping_broken();
231}
232
233
234
235
236
237
238
239
240
241
242
243#define KB(x) ((x) * 1024UL)
244#define MB(x) (KB (KB (x)))
245
246static size_t __init i830_tseg_size(void)
247{
248 u8 esmramc = read_pci_config_byte(0, 0, 0, I830_ESMRAMC);
249
250 if (!(esmramc & TSEG_ENABLE))
251 return 0;
252
253 if (esmramc & I830_TSEG_SIZE_1M)
254 return MB(1);
255 else
256 return KB(512);
257}
258
259static size_t __init i845_tseg_size(void)
260{
261 u8 esmramc = read_pci_config_byte(0, 0, 0, I845_ESMRAMC);
262 u8 tseg_size = esmramc & I845_TSEG_SIZE_MASK;
263
264 if (!(esmramc & TSEG_ENABLE))
265 return 0;
266
267 switch (tseg_size) {
268 case I845_TSEG_SIZE_512K: return KB(512);
269 case I845_TSEG_SIZE_1M: return MB(1);
270 default:
271 WARN(1, "Unknown ESMRAMC value: %x!\n", esmramc);
272 }
273 return 0;
274}
275
276static size_t __init i85x_tseg_size(void)
277{
278 u8 esmramc = read_pci_config_byte(0, 0, 0, I85X_ESMRAMC);
279
280 if (!(esmramc & TSEG_ENABLE))
281 return 0;
282
283 return MB(1);
284}
285
286static size_t __init i830_mem_size(void)
287{
288 return read_pci_config_byte(0, 0, 0, I830_DRB3) * MB(32);
289}
290
291static size_t __init i85x_mem_size(void)
292{
293 return read_pci_config_byte(0, 0, 1, I85X_DRB3) * MB(32);
294}
295
296
297
298
299
300static phys_addr_t __init i830_stolen_base(int num, int slot, int func,
301 size_t stolen_size)
302{
303 return (phys_addr_t)i830_mem_size() - i830_tseg_size() - stolen_size;
304}
305
306static phys_addr_t __init i845_stolen_base(int num, int slot, int func,
307 size_t stolen_size)
308{
309 return (phys_addr_t)i830_mem_size() - i845_tseg_size() - stolen_size;
310}
311
312static phys_addr_t __init i85x_stolen_base(int num, int slot, int func,
313 size_t stolen_size)
314{
315 return (phys_addr_t)i85x_mem_size() - i85x_tseg_size() - stolen_size;
316}
317
318static phys_addr_t __init i865_stolen_base(int num, int slot, int func,
319 size_t stolen_size)
320{
321 u16 toud = 0;
322
323 toud = read_pci_config_16(0, 0, 0, I865_TOUD);
324
325 return (phys_addr_t)(toud << 16) + i845_tseg_size();
326}
327
328static phys_addr_t __init gen3_stolen_base(int num, int slot, int func,
329 size_t stolen_size)
330{
331 u32 bsm;
332
333
334
335
336
337
338 bsm = read_pci_config(num, slot, func, INTEL_BSM);
339
340 return (phys_addr_t)bsm & INTEL_BSM_MASK;
341}
342
343static size_t __init i830_stolen_size(int num, int slot, int func)
344{
345 u16 gmch_ctrl;
346 u16 gms;
347
348 gmch_ctrl = read_pci_config_16(0, 0, 0, I830_GMCH_CTRL);
349 gms = gmch_ctrl & I830_GMCH_GMS_MASK;
350
351 switch (gms) {
352 case I830_GMCH_GMS_STOLEN_512: return KB(512);
353 case I830_GMCH_GMS_STOLEN_1024: return MB(1);
354 case I830_GMCH_GMS_STOLEN_8192: return MB(8);
355
356 case I830_GMCH_GMS_LOCAL: return 0;
357 default:
358 WARN(1, "Unknown GMCH_CTRL value: %x!\n", gmch_ctrl);
359 }
360
361 return 0;
362}
363
364static size_t __init gen3_stolen_size(int num, int slot, int func)
365{
366 u16 gmch_ctrl;
367 u16 gms;
368
369 gmch_ctrl = read_pci_config_16(0, 0, 0, I830_GMCH_CTRL);
370 gms = gmch_ctrl & I855_GMCH_GMS_MASK;
371
372 switch (gms) {
373 case I855_GMCH_GMS_STOLEN_1M: return MB(1);
374 case I855_GMCH_GMS_STOLEN_4M: return MB(4);
375 case I855_GMCH_GMS_STOLEN_8M: return MB(8);
376 case I855_GMCH_GMS_STOLEN_16M: return MB(16);
377 case I855_GMCH_GMS_STOLEN_32M: return MB(32);
378 case I915_GMCH_GMS_STOLEN_48M: return MB(48);
379 case I915_GMCH_GMS_STOLEN_64M: return MB(64);
380 case G33_GMCH_GMS_STOLEN_128M: return MB(128);
381 case G33_GMCH_GMS_STOLEN_256M: return MB(256);
382 case INTEL_GMCH_GMS_STOLEN_96M: return MB(96);
383 case INTEL_GMCH_GMS_STOLEN_160M:return MB(160);
384 case INTEL_GMCH_GMS_STOLEN_224M:return MB(224);
385 case INTEL_GMCH_GMS_STOLEN_352M:return MB(352);
386 default:
387 WARN(1, "Unknown GMCH_CTRL value: %x!\n", gmch_ctrl);
388 }
389
390 return 0;
391}
392
393static size_t __init gen6_stolen_size(int num, int slot, int func)
394{
395 u16 gmch_ctrl;
396 u16 gms;
397
398 gmch_ctrl = read_pci_config_16(num, slot, func, SNB_GMCH_CTRL);
399 gms = (gmch_ctrl >> SNB_GMCH_GMS_SHIFT) & SNB_GMCH_GMS_MASK;
400
401 return (size_t)gms * MB(32);
402}
403
404static size_t __init gen8_stolen_size(int num, int slot, int func)
405{
406 u16 gmch_ctrl;
407 u16 gms;
408
409 gmch_ctrl = read_pci_config_16(num, slot, func, SNB_GMCH_CTRL);
410 gms = (gmch_ctrl >> BDW_GMCH_GMS_SHIFT) & BDW_GMCH_GMS_MASK;
411
412 return (size_t)gms * MB(32);
413}
414
415static size_t __init chv_stolen_size(int num, int slot, int func)
416{
417 u16 gmch_ctrl;
418 u16 gms;
419
420 gmch_ctrl = read_pci_config_16(num, slot, func, SNB_GMCH_CTRL);
421 gms = (gmch_ctrl >> SNB_GMCH_GMS_SHIFT) & SNB_GMCH_GMS_MASK;
422
423
424
425
426
427
428 if (gms < 0x11)
429 return (size_t)gms * MB(32);
430 else if (gms < 0x17)
431 return (size_t)(gms - 0x11 + 2) * MB(4);
432 else
433 return (size_t)(gms - 0x17 + 9) * MB(4);
434}
435
436static size_t __init gen9_stolen_size(int num, int slot, int func)
437{
438 u16 gmch_ctrl;
439 u16 gms;
440
441 gmch_ctrl = read_pci_config_16(num, slot, func, SNB_GMCH_CTRL);
442 gms = (gmch_ctrl >> BDW_GMCH_GMS_SHIFT) & BDW_GMCH_GMS_MASK;
443
444
445
446 if (gms < 0xf0)
447 return (size_t)gms * MB(32);
448 else
449 return (size_t)(gms - 0xf0 + 1) * MB(4);
450}
451
452struct intel_early_ops {
453 size_t (*stolen_size)(int num, int slot, int func);
454 phys_addr_t (*stolen_base)(int num, int slot, int func, size_t size);
455};
456
457static const struct intel_early_ops i830_early_ops __initconst = {
458 .stolen_base = i830_stolen_base,
459 .stolen_size = i830_stolen_size,
460};
461
462static const struct intel_early_ops i845_early_ops __initconst = {
463 .stolen_base = i845_stolen_base,
464 .stolen_size = i830_stolen_size,
465};
466
467static const struct intel_early_ops i85x_early_ops __initconst = {
468 .stolen_base = i85x_stolen_base,
469 .stolen_size = gen3_stolen_size,
470};
471
472static const struct intel_early_ops i865_early_ops __initconst = {
473 .stolen_base = i865_stolen_base,
474 .stolen_size = gen3_stolen_size,
475};
476
477static const struct intel_early_ops gen3_early_ops __initconst = {
478 .stolen_base = gen3_stolen_base,
479 .stolen_size = gen3_stolen_size,
480};
481
482static const struct intel_early_ops gen6_early_ops __initconst = {
483 .stolen_base = gen3_stolen_base,
484 .stolen_size = gen6_stolen_size,
485};
486
487static const struct intel_early_ops gen8_early_ops __initconst = {
488 .stolen_base = gen3_stolen_base,
489 .stolen_size = gen8_stolen_size,
490};
491
492static const struct intel_early_ops gen9_early_ops __initconst = {
493 .stolen_base = gen3_stolen_base,
494 .stolen_size = gen9_stolen_size,
495};
496
497static const struct intel_early_ops chv_early_ops __initconst = {
498 .stolen_base = gen3_stolen_base,
499 .stolen_size = chv_stolen_size,
500};
501
502static const struct pci_device_id intel_early_ids[] __initconst = {
503 INTEL_I830_IDS(&i830_early_ops),
504 INTEL_I845G_IDS(&i845_early_ops),
505 INTEL_I85X_IDS(&i85x_early_ops),
506 INTEL_I865G_IDS(&i865_early_ops),
507 INTEL_I915G_IDS(&gen3_early_ops),
508 INTEL_I915GM_IDS(&gen3_early_ops),
509 INTEL_I945G_IDS(&gen3_early_ops),
510 INTEL_I945GM_IDS(&gen3_early_ops),
511 INTEL_VLV_IDS(&gen6_early_ops),
512 INTEL_PINEVIEW_IDS(&gen3_early_ops),
513 INTEL_I965G_IDS(&gen3_early_ops),
514 INTEL_G33_IDS(&gen3_early_ops),
515 INTEL_I965GM_IDS(&gen3_early_ops),
516 INTEL_GM45_IDS(&gen3_early_ops),
517 INTEL_G45_IDS(&gen3_early_ops),
518 INTEL_IRONLAKE_D_IDS(&gen3_early_ops),
519 INTEL_IRONLAKE_M_IDS(&gen3_early_ops),
520 INTEL_SNB_D_IDS(&gen6_early_ops),
521 INTEL_SNB_M_IDS(&gen6_early_ops),
522 INTEL_IVB_M_IDS(&gen6_early_ops),
523 INTEL_IVB_D_IDS(&gen6_early_ops),
524 INTEL_HSW_IDS(&gen6_early_ops),
525 INTEL_BDW_IDS(&gen8_early_ops),
526 INTEL_CHV_IDS(&chv_early_ops),
527 INTEL_SKL_IDS(&gen9_early_ops),
528 INTEL_BXT_IDS(&gen9_early_ops),
529 INTEL_KBL_IDS(&gen9_early_ops),
530 INTEL_GLK_IDS(&gen9_early_ops),
531 INTEL_CNL_IDS(&gen9_early_ops),
532};
533
534static void __init
535intel_graphics_stolen(int num, int slot, int func,
536 const struct intel_early_ops *early_ops)
537{
538 phys_addr_t base, end;
539 size_t size;
540
541 size = early_ops->stolen_size(num, slot, func);
542 base = early_ops->stolen_base(num, slot, func, size);
543
544 if (!size || !base)
545 return;
546
547 end = base + size - 1;
548 printk(KERN_INFO "Reserving Intel graphics memory at %pa-%pa\n",
549 &base, &end);
550
551
552 e820__range_add(base, size, E820_TYPE_RESERVED);
553 e820__update_table(e820_table);
554}
555
556static void __init intel_graphics_quirks(int num, int slot, int func)
557{
558 const struct intel_early_ops *early_ops;
559 u16 device;
560 int i;
561
562 device = read_pci_config_16(num, slot, func, PCI_DEVICE_ID);
563
564 for (i = 0; i < ARRAY_SIZE(intel_early_ids); i++) {
565 kernel_ulong_t driver_data = intel_early_ids[i].driver_data;
566
567 if (intel_early_ids[i].device != device)
568 continue;
569
570 early_ops = (typeof(early_ops))driver_data;
571
572 intel_graphics_stolen(num, slot, func, early_ops);
573
574 return;
575 }
576}
577
578static void __init force_disable_hpet(int num, int slot, int func)
579{
580#ifdef CONFIG_HPET_TIMER
581 boot_hpet_disable = true;
582 pr_info("x86/hpet: Will disable the HPET for this platform because it's not reliable\n");
583#endif
584}
585
586#define BCM4331_MMIO_SIZE 16384
587#define BCM4331_PM_CAP 0x40
588#define bcma_aread32(reg) ioread32(mmio + 1 * BCMA_CORE_SIZE + reg)
589#define bcma_awrite32(reg, val) iowrite32(val, mmio + 1 * BCMA_CORE_SIZE + reg)
590
591static void __init apple_airport_reset(int bus, int slot, int func)
592{
593 void __iomem *mmio;
594 u16 pmcsr;
595 u64 addr;
596 int i;
597
598 if (!x86_apple_machine)
599 return;
600
601
602 pmcsr = read_pci_config_16(bus, slot, func, BCM4331_PM_CAP + PCI_PM_CTRL);
603
604 if ((pmcsr & PCI_PM_CTRL_STATE_MASK) != PCI_D0) {
605 pmcsr &= ~PCI_PM_CTRL_STATE_MASK;
606 write_pci_config_16(bus, slot, func, BCM4331_PM_CAP + PCI_PM_CTRL, pmcsr);
607 mdelay(10);
608
609 pmcsr = read_pci_config_16(bus, slot, func, BCM4331_PM_CAP + PCI_PM_CTRL);
610 if ((pmcsr & PCI_PM_CTRL_STATE_MASK) != PCI_D0) {
611 dev_err("Cannot power up Apple AirPort card\n");
612 return;
613 }
614 }
615
616 addr = read_pci_config(bus, slot, func, PCI_BASE_ADDRESS_0);
617 addr |= (u64)read_pci_config(bus, slot, func, PCI_BASE_ADDRESS_1) << 32;
618 addr &= PCI_BASE_ADDRESS_MEM_MASK;
619
620 mmio = early_ioremap(addr, BCM4331_MMIO_SIZE);
621 if (!mmio) {
622 dev_err("Cannot iomap Apple AirPort card\n");
623 return;
624 }
625
626 pr_info("Resetting Apple AirPort card (left enabled by EFI)\n");
627
628 for (i = 0; bcma_aread32(BCMA_RESET_ST) && i < 30; i++)
629 udelay(10);
630
631 bcma_awrite32(BCMA_RESET_CTL, BCMA_RESET_CTL_RESET);
632 bcma_aread32(BCMA_RESET_CTL);
633 udelay(1);
634
635 bcma_awrite32(BCMA_RESET_CTL, 0);
636 bcma_aread32(BCMA_RESET_CTL);
637 udelay(10);
638
639 early_iounmap(mmio, BCM4331_MMIO_SIZE);
640}
641
642#define QFLAG_APPLY_ONCE 0x1
643#define QFLAG_APPLIED 0x2
644#define QFLAG_DONE (QFLAG_APPLY_ONCE|QFLAG_APPLIED)
645struct chipset {
646 u32 vendor;
647 u32 device;
648 u32 class;
649 u32 class_mask;
650 u32 flags;
651 void (*f)(int num, int slot, int func);
652};
653
654static struct chipset early_qrk[] __initdata = {
655 { PCI_VENDOR_ID_NVIDIA, PCI_ANY_ID,
656 PCI_CLASS_BRIDGE_PCI, PCI_ANY_ID, QFLAG_APPLY_ONCE, nvidia_bugs },
657 { PCI_VENDOR_ID_VIA, PCI_ANY_ID,
658 PCI_CLASS_BRIDGE_PCI, PCI_ANY_ID, QFLAG_APPLY_ONCE, via_bugs },
659 { PCI_VENDOR_ID_AMD, PCI_DEVICE_ID_AMD_K8_NB,
660 PCI_CLASS_BRIDGE_HOST, PCI_ANY_ID, 0, fix_hypertransport_config },
661 { PCI_VENDOR_ID_ATI, PCI_DEVICE_ID_ATI_IXP400_SMBUS,
662 PCI_CLASS_SERIAL_SMBUS, PCI_ANY_ID, 0, ati_bugs },
663 { PCI_VENDOR_ID_ATI, PCI_DEVICE_ID_ATI_SBX00_SMBUS,
664 PCI_CLASS_SERIAL_SMBUS, PCI_ANY_ID, 0, ati_bugs_contd },
665 { PCI_VENDOR_ID_INTEL, 0x3403, PCI_CLASS_BRIDGE_HOST,
666 PCI_BASE_CLASS_BRIDGE, 0, intel_remapping_check },
667 { PCI_VENDOR_ID_INTEL, 0x3405, PCI_CLASS_BRIDGE_HOST,
668 PCI_BASE_CLASS_BRIDGE, 0, intel_remapping_check },
669 { PCI_VENDOR_ID_INTEL, 0x3406, PCI_CLASS_BRIDGE_HOST,
670 PCI_BASE_CLASS_BRIDGE, 0, intel_remapping_check },
671 { PCI_VENDOR_ID_INTEL, PCI_ANY_ID, PCI_CLASS_DISPLAY_VGA, PCI_ANY_ID,
672 QFLAG_APPLY_ONCE, intel_graphics_quirks },
673
674
675
676
677
678
679
680
681 { PCI_VENDOR_ID_INTEL, 0x0f00,
682 PCI_CLASS_BRIDGE_HOST, PCI_ANY_ID, 0, force_disable_hpet},
683 { PCI_VENDOR_ID_BROADCOM, 0x4331,
684 PCI_CLASS_NETWORK_OTHER, PCI_ANY_ID, 0, apple_airport_reset},
685 {}
686};
687
688static void __init early_pci_scan_bus(int bus);
689
690
691
692
693
694
695
696
697
698
699
700
701static int __init check_dev_quirk(int num, int slot, int func)
702{
703 u16 class;
704 u16 vendor;
705 u16 device;
706 u8 type;
707 u8 sec;
708 int i;
709
710 class = read_pci_config_16(num, slot, func, PCI_CLASS_DEVICE);
711
712 if (class == 0xffff)
713 return -1;
714
715 vendor = read_pci_config_16(num, slot, func, PCI_VENDOR_ID);
716
717 device = read_pci_config_16(num, slot, func, PCI_DEVICE_ID);
718
719 for (i = 0; early_qrk[i].f != NULL; i++) {
720 if (((early_qrk[i].vendor == PCI_ANY_ID) ||
721 (early_qrk[i].vendor == vendor)) &&
722 ((early_qrk[i].device == PCI_ANY_ID) ||
723 (early_qrk[i].device == device)) &&
724 (!((early_qrk[i].class ^ class) &
725 early_qrk[i].class_mask))) {
726 if ((early_qrk[i].flags &
727 QFLAG_DONE) != QFLAG_DONE)
728 early_qrk[i].f(num, slot, func);
729 early_qrk[i].flags |= QFLAG_APPLIED;
730 }
731 }
732
733 type = read_pci_config_byte(num, slot, func,
734 PCI_HEADER_TYPE);
735
736 if ((type & 0x7f) == PCI_HEADER_TYPE_BRIDGE) {
737 sec = read_pci_config_byte(num, slot, func, PCI_SECONDARY_BUS);
738 if (sec > num)
739 early_pci_scan_bus(sec);
740 }
741
742 if (!(type & 0x80))
743 return -1;
744
745 return 0;
746}
747
748static void __init early_pci_scan_bus(int bus)
749{
750 int slot, func;
751
752
753 for (slot = 0; slot < 32; slot++)
754 for (func = 0; func < 8; func++) {
755
756 if (check_dev_quirk(bus, slot, func))
757 break;
758 }
759}
760
761void __init early_quirks(void)
762{
763 if (!early_pci_allowed())
764 return;
765
766 early_pci_scan_bus(0);
767}
768