aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/dma/ioat/dma_v3.c
diff options
context:
space:
mode:
authorDave Jiang <dave.jiang@intel.com>2015-02-13 12:23:53 -0700
committerVinod Koul <vinod.koul@intel.com>2015-03-05 14:32:02 +0530
commit9ca1c5f2ab9d5bc8955a2cc7ad36ba7074dd7c60 (patch)
treef9fd354c95eb25494169a8052fcc901f2a461cb1 /drivers/dma/ioat/dma_v3.c
parentdmaengine: at_xdmac: fix for chan conf simplification (diff)
downloadlinux-dev-9ca1c5f2ab9d5bc8955a2cc7ad36ba7074dd7c60.tar.xz
linux-dev-9ca1c5f2ab9d5bc8955a2cc7ad36ba7074dd7c60.zip
dmaengine: ioatdma: workaround for incorrect DMACAP register
BDX-DE IOATDMA reports incorrect DMACAP register for PQ related ops. Ignoring those bits. Signed-off-by: Dave Jiang <dave.jiang@intel.com> Acked-by: Dan Williams <dan.j.williams@intel.com> Signed-off-by: Vinod Koul <vinod.koul@intel.com>
Diffstat (limited to '')
-rw-r--r--drivers/dma/ioat/dma_v3.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/dma/ioat/dma_v3.c b/drivers/dma/ioat/dma_v3.c
index 77a6dcf25b98..194ec20c9408 100644
--- a/drivers/dma/ioat/dma_v3.c
+++ b/drivers/dma/ioat/dma_v3.c
@@ -230,6 +230,10 @@ static bool is_bwd_noraid(struct pci_dev *pdev)
switch (pdev->device) {
case PCI_DEVICE_ID_INTEL_IOAT_BWD2:
case PCI_DEVICE_ID_INTEL_IOAT_BWD3:
+ case PCI_DEVICE_ID_INTEL_IOAT_BDXDE0:
+ case PCI_DEVICE_ID_INTEL_IOAT_BDXDE1:
+ case PCI_DEVICE_ID_INTEL_IOAT_BDXDE2:
+ case PCI_DEVICE_ID_INTEL_IOAT_BDXDE3:
return true;
default:
return false;