1 // SPDX-License-Identifier: GPL-2.0
5 * DMA operations that map to physical addresses without flushing memory.
7 #include <linux/export.h>
9 #include <linux/dma-mapping.h>
10 #include <linux/scatterlist.h>
11 #include <linux/pfn.h>
13 static void *dma_noop_alloc(struct device *dev, size_t size,
14 dma_addr_t *dma_handle, gfp_t gfp,
19 ret = (void *)__get_free_pages(gfp, get_order(size));
21 *dma_handle = virt_to_phys(ret) - PFN_PHYS(dev->dma_pfn_offset);
26 static void dma_noop_free(struct device *dev, size_t size,
27 void *cpu_addr, dma_addr_t dma_addr,
30 free_pages((unsigned long)cpu_addr, get_order(size));
33 static dma_addr_t dma_noop_map_page(struct device *dev, struct page *page,
34 unsigned long offset, size_t size,
35 enum dma_data_direction dir,
38 return page_to_phys(page) + offset - PFN_PHYS(dev->dma_pfn_offset);
41 static int dma_noop_map_sg(struct device *dev, struct scatterlist *sgl, int nents,
42 enum dma_data_direction dir,
46 struct scatterlist *sg;
48 for_each_sg(sgl, sg, nents, i) {
49 dma_addr_t offset = PFN_PHYS(dev->dma_pfn_offset);
54 sg_dma_address(sg) = (dma_addr_t)virt_to_phys(va) - offset;
55 sg_dma_len(sg) = sg->length;
61 const struct dma_map_ops dma_noop_ops = {
62 .alloc = dma_noop_alloc,
63 .free = dma_noop_free,
64 .map_page = dma_noop_map_page,
65 .map_sg = dma_noop_map_sg,
68 EXPORT_SYMBOL(dma_noop_ops);