-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
dma-mapping: factor out dummy DMA ops
The dummy DMA ops are currently used by arm64 for any device which has an invalid ACPI description and is thus barred from using DMA due to not knowing whether is is cache-coherent or not. Factor these out into general dma-mapping code so that they can be referenced from other common code paths. In the process, we can prune all the optional callbacks which just do the same thing as the default behaviour, and fill in .map_resource for completeness. Signed-off-by: Robin Murphy <robin.murphy@arm.com> [hch: moved to a separate source file] Reviewed-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com> Acked-by: Jesper Dangaard Brouer <brouer@redhat.com> Tested-by: Jesper Dangaard Brouer <brouer@redhat.com> Tested-by: Tony Luck <tony.luck@intel.com> Signed-off-by: Christoph Hellwig <hch@lst.de>
- Loading branch information
Robin Murphy
authored and
Christoph Hellwig
committed
Dec 13, 2018
1 parent
3731c3d
commit 90ac706
Showing
5 changed files
with
42 additions
and
90 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
// SPDX-License-Identifier: GPL-2.0 | ||
/* | ||
* Dummy DMA ops that always fail. | ||
*/ | ||
#include <linux/dma-mapping.h> | ||
|
||
static int dma_dummy_mmap(struct device *dev, struct vm_area_struct *vma, | ||
void *cpu_addr, dma_addr_t dma_addr, size_t size, | ||
unsigned long attrs) | ||
{ | ||
return -ENXIO; | ||
} | ||
|
||
static dma_addr_t dma_dummy_map_page(struct device *dev, struct page *page, | ||
unsigned long offset, size_t size, enum dma_data_direction dir, | ||
unsigned long attrs) | ||
{ | ||
return DMA_MAPPING_ERROR; | ||
} | ||
|
||
static int dma_dummy_map_sg(struct device *dev, struct scatterlist *sgl, | ||
int nelems, enum dma_data_direction dir, | ||
unsigned long attrs) | ||
{ | ||
return 0; | ||
} | ||
|
||
static int dma_dummy_supported(struct device *hwdev, u64 mask) | ||
{ | ||
return 0; | ||
} | ||
|
||
const struct dma_map_ops dma_dummy_ops = { | ||
.mmap = dma_dummy_mmap, | ||
.map_page = dma_dummy_map_page, | ||
.map_sg = dma_dummy_map_sg, | ||
.dma_supported = dma_dummy_supported, | ||
}; | ||
EXPORT_SYMBOL(dma_dummy_ops); |