powerpc/fsl_pci: simplify fsl_pci_dma_set_mask
authorChristoph Hellwig <hch@lst.de>
Wed, 14 Nov 2018 08:23:07 +0000 (09:23 +0100)
committerScott Wood <oss@buserror.net>
Sat, 22 Dec 2018 02:09:24 +0000 (20:09 -0600)
swiotlb will only bounce buffer when the effective dma address for the
device is smaller than the actual DMA range.  Instead of flipping between
the swiotlb and nommu ops for FSL SOCs that have the second outbound
window just don't set the bus dma_mask in this case.

Signed-off-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Scott Wood <oss@buserror.net>
arch/powerpc/sysdev/fsl_pci.c

index 918be816b0977c5feba2a9ef79b57111de1901c3..f82d274fc91dcfe958e9cecbab060fd49e59ac9c 100644 (file)
@@ -135,7 +135,7 @@ static int fsl_pci_dma_set_mask(struct device *dev, u64 dma_mask)
         * mapping that allows addressing any RAM address from across PCI.
         */
        if (dev_is_pci(dev) && dma_mask >= pci64_dma_offset * 2 - 1) {
-               set_dma_ops(dev, &dma_nommu_ops);
+               dev->bus_dma_mask = 0;
                set_dma_offset(dev, pci64_dma_offset);
        }
 
@@ -395,10 +395,6 @@ static void setup_pci_atmu(struct pci_controller *hose)
                                out_be32(&pci->piw[win_idx].piwar,  piwar);
                        }
 
-                       /*
-                        * install our own dma_set_mask handler to fixup dma_ops
-                        * and dma_offset
-                        */
                        ppc_md.dma_set_mask = fsl_pci_dma_set_mask;
 
                        pr_info("%pOF: Setup 64-bit PCI DMA window\n", hose->dn);