drm/panthor: Don't add write fences to the shared BOs
[drm/drm-misc.git] / arch / mips / loongson64 / vbios_quirk.c
blob3115d4de982c5c5d337caf6ea0a71cc077e34427
1 // SPDX-License-Identifier: GPL-2.0+
3 #include <linux/pci.h>
4 #include <loongson.h>
6 static void pci_fixup_video(struct pci_dev *pdev)
8 struct resource *res = &pdev->resource[PCI_ROM_RESOURCE];
10 if (res->start)
11 return;
13 if (!loongson_sysconf.vgabios_addr)
14 return;
16 pci_disable_rom(pdev);
17 if (res->parent)
18 release_resource(res);
20 res->start = virt_to_phys((void *) loongson_sysconf.vgabios_addr);
21 res->end = res->start + 256*1024 - 1;
22 res->flags = IORESOURCE_MEM | IORESOURCE_ROM_SHADOW |
23 IORESOURCE_PCI_FIXED;
25 dev_info(&pdev->dev, "Video device with shadowed ROM at %pR\n", res);
27 DECLARE_PCI_FIXUP_CLASS_HEADER(PCI_VENDOR_ID_ATI, 0x9615,
28 PCI_CLASS_DISPLAY_VGA, 8, pci_fixup_video);