diff options
author | Bin Gao <bin.gao@linux.intel.com> | 2013-04-30 03:21:47 -0400 |
---|---|---|
committer | Bjorn Helgaas <bhelgaas@google.com> | 2013-04-30 12:55:39 -0400 |
commit | dd72be99d11dbf738d910a38479ce414a51eb21e (patch) | |
tree | 51e45d819c18a09bd4bf0b97670b8fb1d1825f08 /arch/x86/pci/mrst.c | |
parent | e5f66eafe5a4c678965a2138b92b645c2c0c4d10 (diff) |
x86/pci/mrst: Use configuration mechanism 1 for 00:00.0, 00:02.0, 00:03.0
For real PCI devices 00:00.0, 00:02.0 and 00:03.0, there is either no
PCI shim, or no guarantee of data correctness of offset 256-4k. So for
whatever reason, Linux kernel should not do MMCFG PCI config access to
those devices. Instead, always use configuration mechanism 1 for those
devices.
The 00:00.0, 00:02.0 and 00:03.0 devices are built-in single-function
devices and are not PCI-PCI bridges, so this set of devices should be
complete.
Signed-off-by: Bin Gao <bin.gao@linux.intel.com>
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
Diffstat (limited to 'arch/x86/pci/mrst.c')
-rw-r--r-- | arch/x86/pci/mrst.c | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/arch/x86/pci/mrst.c b/arch/x86/pci/mrst.c index 6eb18c42a28a..0e0fabf17342 100644 --- a/arch/x86/pci/mrst.c +++ b/arch/x86/pci/mrst.c | |||
@@ -141,6 +141,11 @@ static int pci_device_update_fixed(struct pci_bus *bus, unsigned int devfn, | |||
141 | */ | 141 | */ |
142 | static bool type1_access_ok(unsigned int bus, unsigned int devfn, int reg) | 142 | static bool type1_access_ok(unsigned int bus, unsigned int devfn, int reg) |
143 | { | 143 | { |
144 | if (bus == 0 && (devfn == PCI_DEVFN(2, 0) | ||
145 | || devfn == PCI_DEVFN(0, 0) | ||
146 | || devfn == PCI_DEVFN(3, 0))) | ||
147 | return 1; | ||
148 | |||
144 | /* This is a workaround for A0 LNC bug where PCI status register does | 149 | /* This is a workaround for A0 LNC bug where PCI status register does |
145 | * not have new CAP bit set. can not be written by SW either. | 150 | * not have new CAP bit set. can not be written by SW either. |
146 | * | 151 | * |
@@ -150,10 +155,7 @@ static bool type1_access_ok(unsigned int bus, unsigned int devfn, int reg) | |||
150 | */ | 155 | */ |
151 | if (reg >= 0x100 || reg == PCI_STATUS || reg == PCI_HEADER_TYPE) | 156 | if (reg >= 0x100 || reg == PCI_STATUS || reg == PCI_HEADER_TYPE) |
152 | return 0; | 157 | return 0; |
153 | if (bus == 0 && (devfn == PCI_DEVFN(2, 0) | 158 | |
154 | || devfn == PCI_DEVFN(0, 0) | ||
155 | || devfn == PCI_DEVFN(3, 0))) | ||
156 | return 1; | ||
157 | return 0; /* langwell on others */ | 159 | return 0; /* langwell on others */ |
158 | } | 160 | } |
159 | 161 | ||