|
@@ -18,9 +18,21 @@ swiotlb_map_single_phys(struct device *hwdev, phys_addr_t paddr, size_t size,
|
|
|
return swiotlb_map_single(hwdev, phys_to_virt(paddr), size, direction);
|
|
|
}
|
|
|
|
|
|
+static void *x86_swiotlb_alloc_coherent(struct device *hwdev, size_t size,
|
|
|
+ dma_addr_t *dma_handle, gfp_t flags)
|
|
|
+{
|
|
|
+ void *vaddr;
|
|
|
+
|
|
|
+ vaddr = dma_generic_alloc_coherent(hwdev, size, dma_handle, flags);
|
|
|
+ if (vaddr)
|
|
|
+ return vaddr;
|
|
|
+
|
|
|
+ return swiotlb_alloc_coherent(hwdev, size, dma_handle, flags);
|
|
|
+}
|
|
|
+
|
|
|
struct dma_mapping_ops swiotlb_dma_ops = {
|
|
|
.mapping_error = swiotlb_dma_mapping_error,
|
|
|
- .alloc_coherent = swiotlb_alloc_coherent,
|
|
|
+ .alloc_coherent = x86_swiotlb_alloc_coherent,
|
|
|
.free_coherent = swiotlb_free_coherent,
|
|
|
.map_single = swiotlb_map_single_phys,
|
|
|
.unmap_single = swiotlb_unmap_single,
|