1 // SPDX-License-Identifier: GPL-2.0
3 * Exceptions for specific devices. Usually work-arounds for fatal design flaws.
6 #include <linux/delay.h>
9 #include <linux/vgaarb.h>
10 #include <asm/amd_nb.h>
12 #include <asm/pci_x86.h>
14 static void pci_fixup_i450nx(struct pci_dev *d)
17 * i450NX -- Find and scan all secondary buses on all PXB's.
22 dev_warn(&d->dev, "Searching for i450NX host bridges\n");
24 for(pxb = 0; pxb < 2; pxb++) {
25 pci_read_config_byte(d, reg++, &busno);
26 pci_read_config_byte(d, reg++, &suba);
27 pci_read_config_byte(d, reg++, &subb);
28 dev_dbg(&d->dev, "i450NX PXB %d: %02x/%02x/%02x\n", pxb, busno,
31 pcibios_scan_root(busno); /* Bus A */
33 pcibios_scan_root(suba+1); /* Bus B */
35 pcibios_last_bus = -1;
37 DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82451NX, pci_fixup_i450nx);
39 static void pci_fixup_i450gx(struct pci_dev *d)
42 * i450GX and i450KX -- Find and scan all secondary buses.
43 * (called separately for each PCI bridge found)
46 pci_read_config_byte(d, 0x4a, &busno);
47 dev_info(&d->dev, "i440KX/GX host bridge; secondary bus %02x\n", busno);
48 pcibios_scan_root(busno);
49 pcibios_last_bus = -1;
51 DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82454GX, pci_fixup_i450gx);
53 static void pci_fixup_umc_ide(struct pci_dev *d)
56 * UM8886BF IDE controller sets region type bits incorrectly,
57 * therefore they look like memory despite of them being I/O.
61 dev_warn(&d->dev, "Fixing base address flags\n");
62 for(i = 0; i < 4; i++)
63 d->resource[i].flags |= PCI_BASE_ADDRESS_SPACE_IO;
65 DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_UMC, PCI_DEVICE_ID_UMC_UM8886BF, pci_fixup_umc_ide);
67 static void pci_fixup_latency(struct pci_dev *d)
70 * SiS 5597 and 5598 chipsets require latency timer set to
71 * at most 32 to avoid lockups.
73 dev_dbg(&d->dev, "Setting max latency to 32\n");
74 pcibios_max_latency = 32;
76 DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_SI, PCI_DEVICE_ID_SI_5597, pci_fixup_latency);
77 DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_SI, PCI_DEVICE_ID_SI_5598, pci_fixup_latency);
79 static void pci_fixup_piix4_acpi(struct pci_dev *d)
82 * PIIX4 ACPI device: hardwired IRQ9
86 DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82371AB_3, pci_fixup_piix4_acpi);
89 * Addresses issues with problems in the memory write queue timer in
90 * certain VIA Northbridges. This bugfix is per VIA's specifications,
91 * except for the KL133/KM133: clearing bit 5 on those Northbridges seems
92 * to trigger a bug in its integrated ProSavage video card, which
93 * causes screen corruption. We only clear bits 6 and 7 for that chipset,
94 * until VIA can provide us with definitive information on why screen
95 * corruption occurs, and what exactly those bits do.
97 * VIA 8363,8622,8361 Northbridges:
98 * - bits 5, 6, 7 at offset 0x55 need to be turned off
99 * VIA 8367 (KT266x) Northbridges:
100 * - bits 5, 6, 7 at offset 0x95 need to be turned off
101 * VIA 8363 rev 0x81/0x84 (KL133/KM133) Northbridges:
102 * - bits 6, 7 at offset 0x55 need to be turned off
105 #define VIA_8363_KL133_REVISION_ID 0x81
106 #define VIA_8363_KM133_REVISION_ID 0x84
108 static void pci_fixup_via_northbridge_bug(struct pci_dev *d)
112 int mask = 0x1f; /* clear bits 5, 6, 7 by default */
114 if (d->device == PCI_DEVICE_ID_VIA_8367_0) {
115 /* fix pci bus latency issues resulted by NB bios error
116 it appears on bug free^Wreduced kt266x's bios forces
117 NB latency to zero */
118 pci_write_config_byte(d, PCI_LATENCY_TIMER, 0);
120 where = 0x95; /* the memory write queue timer register is
121 different for the KT266x's: 0x95 not 0x55 */
122 } else if (d->device == PCI_DEVICE_ID_VIA_8363_0 &&
123 (d->revision == VIA_8363_KL133_REVISION_ID ||
124 d->revision == VIA_8363_KM133_REVISION_ID)) {
125 mask = 0x3f; /* clear only bits 6 and 7; clearing bit 5
126 causes screen corruption on the KL133/KM133 */
129 pci_read_config_byte(d, where, &v);
131 dev_warn(&d->dev, "Disabling VIA memory write queue (PCI ID %04x, rev %02x): [%02x] %02x & %02x -> %02x\n", \
132 d->device, d->revision, where, v, mask, v & mask);
134 pci_write_config_byte(d, where, v);
137 DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_VIA, PCI_DEVICE_ID_VIA_8363_0, pci_fixup_via_northbridge_bug);
138 DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_VIA, PCI_DEVICE_ID_VIA_8622, pci_fixup_via_northbridge_bug);
139 DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_VIA, PCI_DEVICE_ID_VIA_8361, pci_fixup_via_northbridge_bug);
140 DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_VIA, PCI_DEVICE_ID_VIA_8367_0, pci_fixup_via_northbridge_bug);
141 DECLARE_PCI_FIXUP_RESUME(PCI_VENDOR_ID_VIA, PCI_DEVICE_ID_VIA_8363_0, pci_fixup_via_northbridge_bug);
142 DECLARE_PCI_FIXUP_RESUME(PCI_VENDOR_ID_VIA, PCI_DEVICE_ID_VIA_8622, pci_fixup_via_northbridge_bug);
143 DECLARE_PCI_FIXUP_RESUME(PCI_VENDOR_ID_VIA, PCI_DEVICE_ID_VIA_8361, pci_fixup_via_northbridge_bug);
144 DECLARE_PCI_FIXUP_RESUME(PCI_VENDOR_ID_VIA, PCI_DEVICE_ID_VIA_8367_0, pci_fixup_via_northbridge_bug);
147 * For some reasons Intel decided that certain parts of their
148 * 815, 845 and some other chipsets must look like PCI-to-PCI bridges
149 * while they are obviously not. The 82801 family (AA, AB, BAM/CAM,
150 * BA/CA/DB and E) PCI bridges are actually HUB-to-PCI ones, according
151 * to Intel terminology. These devices do forward all addresses from
152 * system to PCI bus no matter what are their window settings, so they are
153 * "transparent" (or subtractive decoding) from programmers point of view.
155 static void pci_fixup_transparent_bridge(struct pci_dev *dev)
157 if ((dev->device & 0xff00) == 0x2400)
158 dev->transparent = 1;
160 DECLARE_PCI_FIXUP_CLASS_HEADER(PCI_VENDOR_ID_INTEL, PCI_ANY_ID,
161 PCI_CLASS_BRIDGE_PCI, 8, pci_fixup_transparent_bridge);
164 * Fixup for C1 Halt Disconnect problem on nForce2 systems.
166 * From information provided by "Allen Martin" <AMartin@nvidia.com>:
168 * A hang is caused when the CPU generates a very fast CONNECT/HALT cycle
169 * sequence. Workaround is to set the SYSTEM_IDLE_TIMEOUT to 80 ns.
170 * This allows the state-machine and timer to return to a proper state within
171 * 80 ns of the CONNECT and probe appearing together. Since the CPU will not
172 * issue another HALT within 80 ns of the initial HALT, the failure condition
175 static void pci_fixup_nforce2(struct pci_dev *dev)
180 * Chip Old value New value
181 * C17 0x1F0FFF01 0x1F01FF01
182 * C18D 0x9F0FFF01 0x9F01FF01
184 * Northbridge chip version may be determined by
185 * reading the PCI revision ID (0xC1 or greater is C18D).
187 pci_read_config_dword(dev, 0x6c, &val);
190 * Apply fixup if needed, but don't touch disconnect state
192 if ((val & 0x00FF0000) != 0x00010000) {
193 dev_warn(&dev->dev, "nForce2 C1 Halt Disconnect fixup\n");
194 pci_write_config_dword(dev, 0x6c, (val & 0xFF00FFFF) | 0x00010000);
197 DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_NVIDIA, PCI_DEVICE_ID_NVIDIA_NFORCE2, pci_fixup_nforce2);
198 DECLARE_PCI_FIXUP_RESUME(PCI_VENDOR_ID_NVIDIA, PCI_DEVICE_ID_NVIDIA_NFORCE2, pci_fixup_nforce2);
200 /* Max PCI Express root ports */
201 #define MAX_PCIEROOT 6
202 static int quirk_aspm_offset[MAX_PCIEROOT << 3];
204 #define GET_INDEX(a, b) ((((a) - PCI_DEVICE_ID_INTEL_MCH_PA) << 3) + ((b) & 7))
206 static int quirk_pcie_aspm_read(struct pci_bus *bus, unsigned int devfn, int where, int size, u32 *value)
208 return raw_pci_read(pci_domain_nr(bus), bus->number,
209 devfn, where, size, value);
213 * Replace the original pci bus ops for write with a new one that will filter
214 * the request to insure ASPM cannot be enabled.
216 static int quirk_pcie_aspm_write(struct pci_bus *bus, unsigned int devfn, int where, int size, u32 value)
220 offset = quirk_aspm_offset[GET_INDEX(bus->self->device, devfn)];
222 if ((offset) && (where == offset))
223 value = value & ~PCI_EXP_LNKCTL_ASPMC;
225 return raw_pci_write(pci_domain_nr(bus), bus->number,
226 devfn, where, size, value);
229 static struct pci_ops quirk_pcie_aspm_ops = {
230 .read = quirk_pcie_aspm_read,
231 .write = quirk_pcie_aspm_write,
235 * Prevents PCI Express ASPM (Active State Power Management) being enabled.
237 * Save the register offset, where the ASPM control bits are located,
238 * for each PCI Express device that is in the device list of
239 * the root port in an array for fast indexing. Replace the bus ops
240 * with the modified one.
242 static void pcie_rootport_aspm_quirk(struct pci_dev *pdev)
245 struct pci_bus *pbus;
248 if ((pbus = pdev->subordinate) == NULL)
252 * Check if the DID of pdev matches one of the six root ports. This
253 * check is needed in the case this function is called directly by the
256 if ((pdev->device < PCI_DEVICE_ID_INTEL_MCH_PA) ||
257 (pdev->device > PCI_DEVICE_ID_INTEL_MCH_PC1))
260 if (list_empty(&pbus->devices)) {
262 * If no device is attached to the root port at power-up or
263 * after hot-remove, the pbus->devices is empty and this code
264 * will set the offsets to zero and the bus ops to parent's bus
265 * ops, which is unmodified.
267 for (i = GET_INDEX(pdev->device, 0); i <= GET_INDEX(pdev->device, 7); ++i)
268 quirk_aspm_offset[i] = 0;
270 pci_bus_set_ops(pbus, pbus->parent->ops);
273 * If devices are attached to the root port at power-up or
274 * after hot-add, the code loops through the device list of
275 * each root port to save the register offsets and replace the
278 list_for_each_entry(dev, &pbus->devices, bus_list)
279 /* There are 0 to 8 devices attached to this bus */
280 quirk_aspm_offset[GET_INDEX(pdev->device, dev->devfn)] =
281 dev->pcie_cap + PCI_EXP_LNKCTL;
283 pci_bus_set_ops(pbus, &quirk_pcie_aspm_ops);
284 dev_info(&pbus->dev, "writes to ASPM control bits will be ignored\n");
288 DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_MCH_PA, pcie_rootport_aspm_quirk);
289 DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_MCH_PA1, pcie_rootport_aspm_quirk);
290 DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_MCH_PB, pcie_rootport_aspm_quirk);
291 DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_MCH_PB1, pcie_rootport_aspm_quirk);
292 DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_MCH_PC, pcie_rootport_aspm_quirk);
293 DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_MCH_PC1, pcie_rootport_aspm_quirk);
296 * Fixup to mark boot BIOS video selected by BIOS before it changes
298 * From information provided by "Jon Smirl" <jonsmirl@gmail.com>
300 * The standard boot ROM sequence for an x86 machine uses the BIOS
301 * to select an initial video card for boot display. This boot video
302 * card will have its BIOS copied to 0xC0000 in system RAM.
303 * IORESOURCE_ROM_SHADOW is used to associate the boot video
304 * card with this copy. On laptops this copy has to be used since
305 * the main ROM may be compressed or combined with another image.
306 * See pci_map_rom() for use of this flag. Before marking the device
307 * with IORESOURCE_ROM_SHADOW check if a vga_default_device is already set
308 * by either arch code or vga-arbitration; if so only apply the fixup to this
309 * already-determined primary video card.
312 static void pci_fixup_video(struct pci_dev *pdev)
314 struct pci_dev *bridge;
317 struct resource *res;
319 /* Is VGA routed to us? */
325 * From information provided by
326 * "David Miller" <davem@davemloft.net>
327 * The bridge control register is valid for PCI header
328 * type BRIDGE, or CARDBUS. Host to PCI controllers use
329 * PCI header type NORMAL.
331 if (bridge && (pci_is_bridge(bridge))) {
332 pci_read_config_word(bridge, PCI_BRIDGE_CONTROL,
334 if (!(config & PCI_BRIDGE_CTL_VGA))
339 if (!vga_default_device() || pdev == vga_default_device()) {
340 pci_read_config_word(pdev, PCI_COMMAND, &config);
341 if (config & (PCI_COMMAND_IO | PCI_COMMAND_MEMORY)) {
342 res = &pdev->resource[PCI_ROM_RESOURCE];
344 pci_disable_rom(pdev);
346 release_resource(res);
348 res->start = 0xC0000;
349 res->end = res->start + 0x20000 - 1;
350 res->flags = IORESOURCE_MEM | IORESOURCE_ROM_SHADOW |
351 IORESOURCE_PCI_FIXED;
352 dev_info(&pdev->dev, "Video device with shadowed ROM at %pR\n",
357 DECLARE_PCI_FIXUP_CLASS_HEADER(PCI_ANY_ID, PCI_ANY_ID,
358 PCI_CLASS_DISPLAY_VGA, 8, pci_fixup_video);
361 static const struct dmi_system_id msi_k8t_dmi_table[] = {
363 .ident = "MSI-K8T-Neo2Fir",
365 DMI_MATCH(DMI_SYS_VENDOR, "MSI"),
366 DMI_MATCH(DMI_PRODUCT_NAME, "MS-6702E"),
373 * The AMD-Athlon64 board MSI "K8T Neo2-FIR" disables the onboard sound
374 * card if a PCI-soundcard is added.
376 * The BIOS only gives options "DISABLED" and "AUTO". This code sets
377 * the corresponding register-value to enable the soundcard.
379 * The soundcard is only enabled, if the mainboard is identified
380 * via DMI-tables and the soundcard is detected to be off.
382 static void pci_fixup_msi_k8t_onboard_sound(struct pci_dev *dev)
385 if (!dmi_check_system(msi_k8t_dmi_table))
386 return; /* only applies to MSI K8T Neo2-FIR */
388 pci_read_config_byte(dev, 0x50, &val);
390 pci_write_config_byte(dev, 0x50, val & (~0x40));
392 /* verify the change for status output */
393 pci_read_config_byte(dev, 0x50, &val);
395 dev_info(&dev->dev, "Detected MSI K8T Neo2-FIR; "
396 "can't enable onboard soundcard!\n");
398 dev_info(&dev->dev, "Detected MSI K8T Neo2-FIR; "
399 "enabled onboard soundcard\n");
402 DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_VIA, PCI_DEVICE_ID_VIA_8237,
403 pci_fixup_msi_k8t_onboard_sound);
404 DECLARE_PCI_FIXUP_RESUME(PCI_VENDOR_ID_VIA, PCI_DEVICE_ID_VIA_8237,
405 pci_fixup_msi_k8t_onboard_sound);
408 * Some Toshiba laptops need extra code to enable their TI TSB43AB22/A.
410 * We pretend to bring them out of full D3 state, and restore the proper
411 * IRQ, PCI cache line size, and BARs, otherwise the device won't function
412 * properly. In some cases, the device will generate an interrupt on
413 * the wrong IRQ line, causing any devices sharing the line it's
414 * *supposed* to use to be disabled by the kernel's IRQ debug code.
416 static u16 toshiba_line_size;
418 static const struct dmi_system_id toshiba_ohci1394_dmi_table[] = {
420 .ident = "Toshiba PS5 based laptop",
422 DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"),
423 DMI_MATCH(DMI_PRODUCT_VERSION, "PS5"),
427 .ident = "Toshiba PSM4 based laptop",
429 DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"),
430 DMI_MATCH(DMI_PRODUCT_VERSION, "PSM4"),
434 .ident = "Toshiba A40 based laptop",
436 DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"),
437 DMI_MATCH(DMI_PRODUCT_VERSION, "PSA40U"),
443 static void pci_pre_fixup_toshiba_ohci1394(struct pci_dev *dev)
445 if (!dmi_check_system(toshiba_ohci1394_dmi_table))
446 return; /* only applies to certain Toshibas (so far) */
448 dev->current_state = PCI_D3cold;
449 pci_read_config_word(dev, PCI_CACHE_LINE_SIZE, &toshiba_line_size);
451 DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_TI, 0x8032,
452 pci_pre_fixup_toshiba_ohci1394);
454 static void pci_post_fixup_toshiba_ohci1394(struct pci_dev *dev)
456 if (!dmi_check_system(toshiba_ohci1394_dmi_table))
457 return; /* only applies to certain Toshibas (so far) */
459 /* Restore config space on Toshiba laptops */
460 pci_write_config_word(dev, PCI_CACHE_LINE_SIZE, toshiba_line_size);
461 pci_read_config_byte(dev, PCI_INTERRUPT_LINE, (u8 *)&dev->irq);
462 pci_write_config_dword(dev, PCI_BASE_ADDRESS_0,
463 pci_resource_start(dev, 0));
464 pci_write_config_dword(dev, PCI_BASE_ADDRESS_1,
465 pci_resource_start(dev, 1));
467 DECLARE_PCI_FIXUP_ENABLE(PCI_VENDOR_ID_TI, 0x8032,
468 pci_post_fixup_toshiba_ohci1394);
472 * Prevent the BIOS trapping accesses to the Cyrix CS5530A video device
473 * configuration space.
475 static void pci_early_fixup_cyrix_5530(struct pci_dev *dev)
478 /* clear 'F4 Video Configuration Trap' bit */
479 pci_read_config_byte(dev, 0x42, &r);
481 pci_write_config_byte(dev, 0x42, r);
483 DECLARE_PCI_FIXUP_EARLY(PCI_VENDOR_ID_CYRIX, PCI_DEVICE_ID_CYRIX_5530_LEGACY,
484 pci_early_fixup_cyrix_5530);
485 DECLARE_PCI_FIXUP_RESUME(PCI_VENDOR_ID_CYRIX, PCI_DEVICE_ID_CYRIX_5530_LEGACY,
486 pci_early_fixup_cyrix_5530);
489 * Siemens Nixdorf AG FSC Multiprocessor Interrupt Controller:
490 * prevent update of the BAR0, which doesn't look like a normal BAR.
492 static void pci_siemens_interrupt_controller(struct pci_dev *dev)
494 dev->resource[0].flags |= IORESOURCE_PCI_FIXED;
496 DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_SIEMENS, 0x0015,
497 pci_siemens_interrupt_controller);
500 * SB600: Disable BAR1 on device 14.0 to avoid HPET resources from
501 * confusing the PCI engine:
503 static void sb600_disable_hpet_bar(struct pci_dev *dev)
508 * The SB600 and SB700 both share the same device
509 * ID, but the PM register 0x55 does something different
510 * for the SB700, so make sure we are dealing with the
511 * SB600 before touching the bit:
514 pci_read_config_byte(dev, 0x08, &val);
520 /* Set bit 7 in PM register 0x55 */
522 outb(val | 0x80, 0xCD7);
525 DECLARE_PCI_FIXUP_EARLY(PCI_VENDOR_ID_ATI, 0x4385, sb600_disable_hpet_bar);
527 #ifdef CONFIG_HPET_TIMER
528 static void sb600_hpet_quirk(struct pci_dev *dev)
530 struct resource *r = &dev->resource[1];
532 if (r->flags & IORESOURCE_MEM && r->start == hpet_address) {
533 r->flags |= IORESOURCE_PCI_FIXED;
534 dev_info(&dev->dev, "reg 0x14 contains HPET; making it immovable\n");
537 DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_ATI, 0x4385, sb600_hpet_quirk);
541 * Twinhead H12Y needs us to block out a region otherwise we map devices
542 * there and any access kills the box.
544 * See: https://bugzilla.kernel.org/show_bug.cgi?id=10231
546 * Match off the LPC and svid/sdid (older kernels lose the bridge subvendor)
548 static void twinhead_reserve_killing_zone(struct pci_dev *dev)
550 if (dev->subsystem_vendor == 0x14FF && dev->subsystem_device == 0xA003) {
551 pr_info("Reserving memory on Twinhead H12Y\n");
552 request_mem_region(0xFFB00000, 0x100000, "twinhead");
555 DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, 0x27B9, twinhead_reserve_killing_zone);
560 * CONFIG_TDP_NOMINAL CSR Implemented at Incorrect Offset
561 * https://www.intel.com/content/www/us/en/processors/xeon/xeon-e5-v3-spec-update.html
563 * Devices [8086:6f60,6fa0,6fc0]
565 * PCI BARs in the Home Agent Will Return Non-Zero Values During Enumeration
566 * https://www.intel.com/content/www/us/en/processors/xeon/xeon-e5-v4-spec-update.html
568 static void pci_invalid_bar(struct pci_dev *dev)
570 dev->non_compliant_bars = 1;
572 DECLARE_PCI_FIXUP_EARLY(PCI_VENDOR_ID_INTEL, 0x2fc0, pci_invalid_bar);
573 DECLARE_PCI_FIXUP_EARLY(PCI_VENDOR_ID_INTEL, 0x6f60, pci_invalid_bar);
574 DECLARE_PCI_FIXUP_EARLY(PCI_VENDOR_ID_INTEL, 0x6fa0, pci_invalid_bar);
575 DECLARE_PCI_FIXUP_EARLY(PCI_VENDOR_ID_INTEL, 0x6fc0, pci_invalid_bar);
576 DECLARE_PCI_FIXUP_EARLY(PCI_VENDOR_ID_INTEL, 0xa1ec, pci_invalid_bar);
577 DECLARE_PCI_FIXUP_EARLY(PCI_VENDOR_ID_INTEL, 0xa1ed, pci_invalid_bar);
578 DECLARE_PCI_FIXUP_EARLY(PCI_VENDOR_ID_INTEL, 0xa26c, pci_invalid_bar);
579 DECLARE_PCI_FIXUP_EARLY(PCI_VENDOR_ID_INTEL, 0xa26d, pci_invalid_bar);
583 * 23. USB Wake on Connect/Disconnect with Low Speed Devices
584 * https://support.amd.com/TechDocs/46837.pdf
586 * https://support.amd.com/TechDocs/42413.pdf
588 static void pci_fixup_amd_ehci_pme(struct pci_dev *dev)
590 dev_info(&dev->dev, "PME# does not work under D3, disabling it\n");
591 dev->pme_support &= ~((PCI_PM_CAP_PME_D3hot | PCI_PM_CAP_PME_D3cold)
592 >> PCI_PM_CAP_PME_SHIFT);
594 DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_AMD, 0x7808, pci_fixup_amd_ehci_pme);
598 * When in D0, PME# doesn't get asserted when plugging USB 2.0 device.
600 static void pci_fixup_amd_fch_xhci_pme(struct pci_dev *dev)
602 dev_info(&dev->dev, "PME# does not work under D0, disabling it\n");
603 dev->pme_support &= ~(PCI_PM_CAP_PME_D0 >> PCI_PM_CAP_PME_SHIFT);
605 DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_AMD, 0x7914, pci_fixup_amd_fch_xhci_pme);
608 * Apple MacBook Pro: Avoid [mem 0x7fa00000-0x7fbfffff]
610 * Using the [mem 0x7fa00000-0x7fbfffff] region, e.g., by assigning it to
611 * the 00:1c.0 Root Port, causes a conflict with [io 0x1804], which is used
612 * for soft poweroff and suspend-to-RAM.
614 * As far as we know, this is related to the address space, not to the Root
615 * Port itself. Attaching the quirk to the Root Port is a convenience, but
616 * it could probably also be a standalone DMI quirk.
618 * https://bugzilla.kernel.org/show_bug.cgi?id=103211
620 static void quirk_apple_mbp_poweroff(struct pci_dev *pdev)
622 struct device *dev = &pdev->dev;
623 struct resource *res;
625 if ((!dmi_match(DMI_PRODUCT_NAME, "MacBookPro11,4") &&
626 !dmi_match(DMI_PRODUCT_NAME, "MacBookPro11,5")) ||
627 pdev->bus->number != 0 || pdev->devfn != PCI_DEVFN(0x1c, 0))
630 res = request_mem_region(0x7fa00000, 0x200000,
631 "MacBook Pro poweroff workaround");
633 dev_info(dev, "claimed %s %pR\n", res->name, res);
635 dev_info(dev, "can't work around MacBook Pro poweroff issue\n");
637 DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, 0x8c10, quirk_apple_mbp_poweroff);
640 * VMD-enabled root ports will change the source ID for all messages
641 * to the VMD device. Rather than doing device matching with the source
642 * ID, the AER driver should traverse the child device tree, reading
643 * AER registers to find the faulting device.
645 static void quirk_no_aersid(struct pci_dev *pdev)
648 if (is_vmd(pdev->bus) && pci_is_root_bus(pdev->bus))
649 pdev->bus->bus_flags |= PCI_BUS_FLAGS_NO_AERSID;
651 DECLARE_PCI_FIXUP_CLASS_EARLY(PCI_VENDOR_ID_INTEL, PCI_ANY_ID,
652 PCI_CLASS_BRIDGE_PCI, 8, quirk_no_aersid);
654 static void quirk_intel_th_dnv(struct pci_dev *dev)
656 struct resource *r = &dev->resource[4];
659 * Denverton reports 2k of RTIT_BAR (intel_th resource 4), which
660 * appears to be 4 MB in reality.
662 if (r->end == r->start + 0x7ff) {
665 r->flags |= IORESOURCE_UNSET;
668 DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, 0x19e1, quirk_intel_th_dnv);
670 #ifdef CONFIG_PHYS_ADDR_T_64BIT
672 #define AMD_141b_MMIO_BASE(x) (0x80 + (x) * 0x8)
673 #define AMD_141b_MMIO_BASE_RE_MASK BIT(0)
674 #define AMD_141b_MMIO_BASE_WE_MASK BIT(1)
675 #define AMD_141b_MMIO_BASE_MMIOBASE_MASK GENMASK(31,8)
677 #define AMD_141b_MMIO_LIMIT(x) (0x84 + (x) * 0x8)
678 #define AMD_141b_MMIO_LIMIT_MMIOLIMIT_MASK GENMASK(31,8)
680 #define AMD_141b_MMIO_HIGH(x) (0x180 + (x) * 0x4)
681 #define AMD_141b_MMIO_HIGH_MMIOBASE_MASK GENMASK(7,0)
682 #define AMD_141b_MMIO_HIGH_MMIOLIMIT_SHIFT 16
683 #define AMD_141b_MMIO_HIGH_MMIOLIMIT_MASK GENMASK(23,16)
686 * The PCI Firmware Spec, rev 3.2, notes that ACPI should optionally allow
687 * configuring host bridge windows using the _PRS and _SRS methods.
689 * But this is rarely implemented, so we manually enable a large 64bit BAR for
690 * PCIe device on AMD Family 15h (Models 00h-1fh, 30h-3fh, 60h-7fh) Processors
693 static void pci_amd_enable_64bit_bar(struct pci_dev *dev)
695 static const char *name = "PCI Bus 0000:00";
696 struct resource *res, *conflict;
697 u32 base, limit, high;
698 struct pci_dev *other;
701 if (!(pci_probe & PCI_BIG_ROOT_WINDOW))
704 /* Check that we are the only device of that type */
705 other = pci_get_device(dev->vendor, dev->device, NULL);
707 (other = pci_get_device(dev->vendor, dev->device, other))) {
708 /* This is a multi-socket system, don't touch it for now */
713 for (i = 0; i < 8; i++) {
714 pci_read_config_dword(dev, AMD_141b_MMIO_BASE(i), &base);
715 pci_read_config_dword(dev, AMD_141b_MMIO_HIGH(i), &high);
717 /* Is this slot free? */
718 if (!(base & (AMD_141b_MMIO_BASE_RE_MASK |
719 AMD_141b_MMIO_BASE_WE_MASK)))
725 /* Abort if a slot already configures a 64bit BAR. */
732 res = kzalloc(sizeof(*res), GFP_KERNEL);
737 * Allocate a 256GB window directly below the 0xfd00000000 hardware
738 * limit (see AMD Family 15h Models 30h-3Fh BKDG, sec 2.4.6).
741 res->flags = IORESOURCE_PREFETCH | IORESOURCE_MEM |
742 IORESOURCE_MEM_64 | IORESOURCE_WINDOW;
743 res->start = 0xbd00000000ull;
744 res->end = 0xfd00000000ull - 1;
746 conflict = request_resource_conflict(&iomem_resource, res);
749 if (conflict->name != name)
752 /* We are resuming from suspend; just reenable the window */
755 dev_info(&dev->dev, "adding root bus resource %pR (tainting kernel)\n",
757 add_taint(TAINT_FIRMWARE_WORKAROUND, LOCKDEP_STILL_OK);
758 pci_bus_add_resource(dev->bus, res, 0);
761 base = ((res->start >> 8) & AMD_141b_MMIO_BASE_MMIOBASE_MASK) |
762 AMD_141b_MMIO_BASE_RE_MASK | AMD_141b_MMIO_BASE_WE_MASK;
763 limit = ((res->end + 1) >> 8) & AMD_141b_MMIO_LIMIT_MMIOLIMIT_MASK;
764 high = ((res->start >> 40) & AMD_141b_MMIO_HIGH_MMIOBASE_MASK) |
765 ((((res->end + 1) >> 40) << AMD_141b_MMIO_HIGH_MMIOLIMIT_SHIFT)
766 & AMD_141b_MMIO_HIGH_MMIOLIMIT_MASK);
768 pci_write_config_dword(dev, AMD_141b_MMIO_HIGH(i), high);
769 pci_write_config_dword(dev, AMD_141b_MMIO_LIMIT(i), limit);
770 pci_write_config_dword(dev, AMD_141b_MMIO_BASE(i), base);
772 DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_AMD, 0x1401, pci_amd_enable_64bit_bar);
773 DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_AMD, 0x141b, pci_amd_enable_64bit_bar);
774 DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_AMD, 0x1571, pci_amd_enable_64bit_bar);
775 DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_AMD, 0x15b1, pci_amd_enable_64bit_bar);
776 DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_AMD, 0x1601, pci_amd_enable_64bit_bar);
777 DECLARE_PCI_FIXUP_RESUME(PCI_VENDOR_ID_AMD, 0x1401, pci_amd_enable_64bit_bar);
778 DECLARE_PCI_FIXUP_RESUME(PCI_VENDOR_ID_AMD, 0x141b, pci_amd_enable_64bit_bar);
779 DECLARE_PCI_FIXUP_RESUME(PCI_VENDOR_ID_AMD, 0x1571, pci_amd_enable_64bit_bar);
780 DECLARE_PCI_FIXUP_RESUME(PCI_VENDOR_ID_AMD, 0x15b1, pci_amd_enable_64bit_bar);
781 DECLARE_PCI_FIXUP_RESUME(PCI_VENDOR_ID_AMD, 0x1601, pci_amd_enable_64bit_bar);
783 #define RS690_LOWER_TOP_OF_DRAM2 0x30
784 #define RS690_LOWER_TOP_OF_DRAM2_VALID 0x1
785 #define RS690_UPPER_TOP_OF_DRAM2 0x31
786 #define RS690_HTIU_NB_INDEX 0xA8
787 #define RS690_HTIU_NB_INDEX_WR_ENABLE 0x100
788 #define RS690_HTIU_NB_DATA 0xAC
791 * Some BIOS implementations support RAM above 4GB, but do not configure the
792 * PCI host to respond to bus master accesses for these addresses. These
793 * implementations set the TOP_OF_DRAM_SLOT1 register correctly, so PCI DMA
794 * works as expected for addresses below 4GB.
796 * Reference: "AMD RS690 ASIC Family Register Reference Guide" (pg. 2-57)
797 * https://www.amd.com/system/files/TechDocs/43372_rs690_rrg_3.00o.pdf
799 static void rs690_fix_64bit_dma(struct pci_dev *pdev)
802 phys_addr_t top_of_dram = __pa(high_memory - 1) + 1;
804 if (top_of_dram <= (1ULL << 32))
807 pci_write_config_dword(pdev, RS690_HTIU_NB_INDEX,
808 RS690_LOWER_TOP_OF_DRAM2);
809 pci_read_config_dword(pdev, RS690_HTIU_NB_DATA, &val);
814 pci_info(pdev, "Adjusting top of DRAM to %pa for 64-bit DMA support\n", &top_of_dram);
816 pci_write_config_dword(pdev, RS690_HTIU_NB_INDEX,
817 RS690_UPPER_TOP_OF_DRAM2 | RS690_HTIU_NB_INDEX_WR_ENABLE);
818 pci_write_config_dword(pdev, RS690_HTIU_NB_DATA, top_of_dram >> 32);
820 pci_write_config_dword(pdev, RS690_HTIU_NB_INDEX,
821 RS690_LOWER_TOP_OF_DRAM2 | RS690_HTIU_NB_INDEX_WR_ENABLE);
822 pci_write_config_dword(pdev, RS690_HTIU_NB_DATA,
823 top_of_dram | RS690_LOWER_TOP_OF_DRAM2_VALID);
825 DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_ATI, 0x7910, rs690_fix_64bit_dma);
831 #define AMD_15B8_RCC_DEV2_EPF0_STRAP2 0x10136008
832 #define AMD_15B8_RCC_DEV2_EPF0_STRAP2_NO_SOFT_RESET_DEV2_F0_MASK 0x00000080L
834 static void quirk_clear_strap_no_soft_reset_dev2_f0(struct pci_dev *dev)
838 if (!amd_smn_read(0, AMD_15B8_RCC_DEV2_EPF0_STRAP2, &data)) {
839 data &= ~AMD_15B8_RCC_DEV2_EPF0_STRAP2_NO_SOFT_RESET_DEV2_F0_MASK;
840 if (amd_smn_write(0, AMD_15B8_RCC_DEV2_EPF0_STRAP2, data))
841 pci_err(dev, "Failed to write data 0x%x\n", data);
843 pci_err(dev, "Failed to read data\n");
846 DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_AMD, 0x15b8, quirk_clear_strap_no_soft_reset_dev2_f0);