diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2012-07-23 22:10:54 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2012-07-23 22:10:54 -0400 |
commit | f0a08fcb5972167e55faa330c4a24fbaa3328b1f (patch) | |
tree | e24c42230888bd0e6422b2f81d7991da4373bb5d /drivers/pci/quirks.c | |
parent | 474183b188b3c5af45831c71151f819fc70479b8 (diff) | |
parent | f6d2ce00da145ae31ec22d21daca6ca5e22b3c84 (diff) |
Merge git://git.kernel.org/pub/scm/linux/kernel/git/cmetcalf/linux-tile
Pull arch/tile updates from Chris Metcalf:
"These changes provide support for PCIe root complex and USB host mode
for tilegx's on-chip I/Os.
In addition, this pull provides the required underpinning for the
on-chip networking support that was pulled into 3.5. The changes have
all been through LKML (with several rounds for PCIe RC) and on
linux-next."
* git://git.kernel.org/pub/scm/linux/kernel/git/cmetcalf/linux-tile:
tile: updates to pci root complex from community feedback
bounce: allow use of bounce pool via config option
usb: add host support for the tilegx architecture
arch/tile: provide kernel support for the tilegx USB shim
tile pci: enable IOMMU to support DMA for legacy devices
arch/tile: enable ZONE_DMA for tilegx
tilegx pci: support I/O to arbitrarily-cached pages
tile: remove unused header
arch/tile: tilegx PCI root complex support
arch/tile: provide kernel support for the tilegx TRIO shim
arch/tile: break out the "csum a long" function to <asm/checksum.h>
arch/tile: provide kernel support for the tilegx mPIPE shim
arch/tile: common DMA code for the GXIO IORPC subsystem
arch/tile: support MMIO-based readb/writeb etc.
arch/tile: introduce GXIO IORPC framework for tilegx
Diffstat (limited to 'drivers/pci/quirks.c')
-rw-r--r-- | drivers/pci/quirks.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/pci/quirks.c b/drivers/pci/quirks.c index 2a7521677541..d41d4c522960 100644 --- a/drivers/pci/quirks.c +++ b/drivers/pci/quirks.c | |||
@@ -2143,9 +2143,9 @@ DECLARE_PCI_FIXUP_EARLY(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82865_HB, | |||
2143 | DECLARE_PCI_FIXUP_EARLY(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82875_HB, | 2143 | DECLARE_PCI_FIXUP_EARLY(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82875_HB, |
2144 | quirk_unhide_mch_dev6); | 2144 | quirk_unhide_mch_dev6); |
2145 | 2145 | ||
2146 | #ifdef CONFIG_TILE | 2146 | #ifdef CONFIG_TILEPRO |
2147 | /* | 2147 | /* |
2148 | * The Tilera TILEmpower platform needs to set the link speed | 2148 | * The Tilera TILEmpower tilepro platform needs to set the link speed |
2149 | * to 2.5GT(Giga-Transfers)/s (Gen 1). The default link speed | 2149 | * to 2.5GT(Giga-Transfers)/s (Gen 1). The default link speed |
2150 | * setting is 5GT/s (Gen 2). 0x98 is the Link Control2 PCIe | 2150 | * setting is 5GT/s (Gen 2). 0x98 is the Link Control2 PCIe |
2151 | * capability register of the PEX8624 PCIe switch. The switch | 2151 | * capability register of the PEX8624 PCIe switch. The switch |
@@ -2160,7 +2160,7 @@ static void __devinit quirk_tile_plx_gen1(struct pci_dev *dev) | |||
2160 | } | 2160 | } |
2161 | } | 2161 | } |
2162 | DECLARE_PCI_FIXUP_EARLY(PCI_VENDOR_ID_PLX, 0x8624, quirk_tile_plx_gen1); | 2162 | DECLARE_PCI_FIXUP_EARLY(PCI_VENDOR_ID_PLX, 0x8624, quirk_tile_plx_gen1); |
2163 | #endif /* CONFIG_TILE */ | 2163 | #endif /* CONFIG_TILEPRO */ |
2164 | 2164 | ||
2165 | #ifdef CONFIG_PCI_MSI | 2165 | #ifdef CONFIG_PCI_MSI |
2166 | /* Some chipsets do not support MSI. We cannot easily rely on setting | 2166 | /* Some chipsets do not support MSI. We cannot easily rely on setting |