blob: 41caa99add513964a638bda32eb725848b9e4d53 [file] [log] [blame]
Eiichiro Oiwa6b5c76b2006-10-23 15:14:07 +09001/*
2 * Exceptions for specific devices. Usually work-arounds for fatal design flaws.
3 * Derived from fixup.c of i386 tree.
4 */
5
6#include <linux/pci.h>
7#include <linux/init.h>
Sander Eikelenboom058a2e12014-02-14 11:55:13 -07008#include <linux/vgaarb.h>
Bruno Prémont20cde692014-06-25 00:55:01 +02009#include <linux/screen_info.h>
Eiichiro Oiwa6b5c76b2006-10-23 15:14:07 +090010
11#include <asm/machvec.h>
12
13/*
14 * Fixup to mark boot BIOS video selected by BIOS before it changes
15 *
16 * From information provided by "Jon Smirl" <jonsmirl@gmail.com>
17 *
18 * The standard boot ROM sequence for an x86 machine uses the BIOS
19 * to select an initial video card for boot display. This boot video
Bjorn Helgaas0c0e0732016-03-01 11:38:46 -060020 * card will have its BIOS copied to 0xC0000 in system RAM.
Eiichiro Oiwa6b5c76b2006-10-23 15:14:07 +090021 * IORESOURCE_ROM_SHADOW is used to associate the boot video
22 * card with this copy. On laptops this copy has to be used since
23 * the main ROM may be compressed or combined with another image.
Sander Eikelenboom058a2e12014-02-14 11:55:13 -070024 * See pci_map_rom() for use of this flag. Before marking the device
25 * with IORESOURCE_ROM_SHADOW check if a vga_default_device is already set
Bjorn Helgaas0c0e0732016-03-01 11:38:46 -060026 * by either arch code or vga-arbitration; if so only apply the fixup to this
27 * already-determined primary video card.
Eiichiro Oiwa6b5c76b2006-10-23 15:14:07 +090028 */
29
Greg Kroah-Hartman5b5e76e2012-12-21 14:05:13 -080030static void pci_fixup_video(struct pci_dev *pdev)
Eiichiro Oiwa6b5c76b2006-10-23 15:14:07 +090031{
32 struct pci_dev *bridge;
33 struct pci_bus *bus;
34 u16 config;
Bjorn Helgaas0c0e0732016-03-01 11:38:46 -060035 struct resource *res;
Eiichiro Oiwa6b5c76b2006-10-23 15:14:07 +090036
Fengguang Wuf9445a32012-07-25 15:15:13 +080037 if ((strcmp(ia64_platform_name, "dig") != 0)
38 && (strcmp(ia64_platform_name, "hpzx1") != 0))
Eiichiro Oiwa6b5c76b2006-10-23 15:14:07 +090039 return;
40 /* Maybe, this machine supports legacy memory map. */
41
Eiichiro Oiwa6b5c76b2006-10-23 15:14:07 +090042 /* Is VGA routed to us? */
43 bus = pdev->bus;
44 while (bus) {
45 bridge = bus->self;
46
47 /*
48 * From information provided by
49 * "David Miller" <davem@davemloft.net>
50 * The bridge control register is valid for PCI header
51 * type BRIDGE, or CARDBUS. Host to PCI controllers use
52 * PCI header type NORMAL.
53 */
Yijing Wang11a3bd02014-05-04 12:23:40 +080054 if (bridge && (pci_is_bridge(bridge))) {
Eiichiro Oiwa6b5c76b2006-10-23 15:14:07 +090055 pci_read_config_word(bridge, PCI_BRIDGE_CONTROL,
56 &config);
57 if (!(config & PCI_BRIDGE_CTL_VGA))
58 return;
59 }
60 bus = bus->parent;
61 }
Sander Eikelenboom058a2e12014-02-14 11:55:13 -070062 if (!vga_default_device() || pdev == vga_default_device()) {
63 pci_read_config_word(pdev, PCI_COMMAND, &config);
64 if (config & (PCI_COMMAND_IO | PCI_COMMAND_MEMORY)) {
Bjorn Helgaas0c0e0732016-03-01 11:38:46 -060065 res = &pdev->resource[PCI_ROM_RESOURCE];
66
67 pci_disable_rom(pdev);
68 if (res->parent)
69 release_resource(res);
70
71 res->start = 0xC0000;
72 res->end = res->start + 0x20000 - 1;
73 res->flags = IORESOURCE_MEM | IORESOURCE_ROM_SHADOW |
74 IORESOURCE_PCI_FIXED;
75 dev_info(&pdev->dev, "Video device with shadowed ROM at %pR\n",
76 res);
Sander Eikelenboom058a2e12014-02-14 11:55:13 -070077 }
Eiichiro Oiwa6b5c76b2006-10-23 15:14:07 +090078 }
79}
Sander Eikelenboom058a2e12014-02-14 11:55:13 -070080DECLARE_PCI_FIXUP_CLASS_FINAL(PCI_ANY_ID, PCI_ANY_ID,
81 PCI_CLASS_DISPLAY_VGA, 8, pci_fixup_video);