projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ebdb51e
)
PCI: Add bridge DMA alias quirk for ITE bridge
author
Alex Williamson
<
[email protected]
>
Mon, 9 Jun 2014 18:43:25 +0000
(12:43 -0600)
committer
Bjorn Helgaas
<
[email protected]
>
Mon, 9 Jun 2014 19:56:04 +0000
(13:56 -0600)
The ITE 8892 is a PCIe-to-PCI bridge but doesn't have a PCIe capability.
Quirk it so we can figure out the DMA alias for devices below the bridge,
so they work correctly with an IOMMU.
[bhelgaas: add changelog]
Link:
https://bugzilla.kernel.org/show_bug.cgi?id=73551
Reported-by: Ronald <
[email protected]
>
Tested-by: Ronald <
[email protected]
>
Signed-off-by: Alex Williamson <
[email protected]
>
Signed-off-by: Bjorn Helgaas <
[email protected]
>
drivers/pci/quirks.c
patch
|
blob
|
history
diff --git
a/drivers/pci/quirks.c
b/drivers/pci/quirks.c
index ab620aca632bf5499eaa830cc54eeb58b13bc215..533cd0dfbed8ae68bfcff8c0dbe340ddfd08ea4d 100644
(file)
--- a/
drivers/pci/quirks.c
+++ b/
drivers/pci/quirks.c
@@
-3407,6
+3407,8
@@
DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_ASMEDIA, 0x1080,
quirk_use_pcie_bridge_dma_alias);
/* Tundra 8113, https://bugzilla.kernel.org/show_bug.cgi?id=44881#c43 */
DECLARE_PCI_FIXUP_HEADER(0x10e3, 0x8113, quirk_use_pcie_bridge_dma_alias);
+/* ITE 8892, https://bugzilla.kernel.org/show_bug.cgi?id=73551 */
+DECLARE_PCI_FIXUP_HEADER(0x1283, 0x8892, quirk_use_pcie_bridge_dma_alias);
static struct pci_dev *pci_func_0_dma_source(struct pci_dev *dev)
{