]> git.ipfire.org Git - thirdparty/kernel/stable.git/commit
MIPS: remove mips_swiotlb_ops
authorChristoph Hellwig <hch@lst.de>
Fri, 27 Jul 2018 17:26:06 +0000 (19:26 +0200)
committerPaul Burton <paul.burton@mips.com>
Fri, 27 Jul 2018 22:19:59 +0000 (15:19 -0700)
commita999933db9ed44f8501e0241f7f1fbdf36554396
tree582181edf96f6389672c90b94654dd6acbaa9aaf
parentd4da0e97baea8768b3d66ccef3967bebd50dfc3b
MIPS: remove mips_swiotlb_ops

mips_swiotlb_ops differs from the generic swiotlb_dma_ops only in that
it contains a mb() barrier after each operations that maps or syncs
dma memory to the device.

The dma operations are defined to not be memory barriers, but instead
the write* operations to kick the DMA off are supposed to contain them.

For mips this handled by war_io_reorder_wmb(), which evaluates to the
stronger wmb() instead of the pure compiler barrier barrier() for
just those platforms that use swiotlb, so I think we are covered
properly.

[paul.burton@mips.com:
  - Include linux/swiotlb.h to fix build failures for configs with
    CONFIG_SWIOTLB=y.]

Signed-off-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Paul Burton <paul.burton@mips.com>
Patchwork: https://patchwork.linux-mips.org/patch/20038/
Cc: David Daney <ddaney@caviumnetworks.com>
Cc: Huacai Chen <chenhc@lemote.com>
Cc: linux-mips@linux-mips.org
Cc: iommu@lists.linux-foundation.org
Cc: linux-kernel@vger.kernel.org
arch/mips/include/asm/dma-mapping.h
arch/mips/mm/Makefile
arch/mips/mm/dma-swiotlb.c [deleted file]