OSDN Git Service

switchtec: Set DMA coherent mask
authorBoris Glimcher <Boris.Glimcher@emc.com>
Mon, 10 Dec 2018 09:12:21 +0000 (17:12 +0800)
committerBjorn Helgaas <bhelgaas@google.com>
Wed, 12 Dec 2018 22:31:54 +0000 (16:31 -0600)
Switchtec hardware supports 64-bit DMA, so set the correct DMA mask.  This
allows the CMA to allocate larger buffers for memory windows.

Signed-off-by: Boris Glimcher <Boris.Glimcher@emc.com>
Signed-off-by: Wesley Sheng <wesley.sheng@microchip.com>
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
Reviewed-by: Logan Gunthorpe <logang@deltatee.com>
drivers/pci/switch/switchtec.c

index d2bca2d..480107e 100644 (file)
@@ -1237,6 +1237,10 @@ static int switchtec_init_pci(struct switchtec_dev *stdev,
        if (rc)
                return rc;
 
+       rc = dma_set_coherent_mask(&pdev->dev, DMA_BIT_MASK(64));
+       if (rc)
+               return rc;
+
        pci_set_master(pdev);
 
        stdev->mmio = pcim_iomap_table(pdev)[0];