diff options
author | Christian Borntraeger <borntraeger@de.ibm.com> | 2016-02-03 00:46:32 -0500 |
---|---|---|
committer | Michael S. Tsirkin <mst@redhat.com> | 2016-03-02 10:01:55 -0500 |
commit | a8463d4b0e47d1f37af684d97884ffcf35de043b (patch) | |
tree | 22edc03944c201629c6fd2c77805b014c05f9fbc /lib | |
parent | e1f33be9186363da7955bcb5f0b03e6685544c50 (diff) |
dma: Provide simple noop dma ops
We are going to require dma_ops for several common drivers, even for
systems that do have an identity mapping. Lets provide some minimal
no-op dma_ops that can be used for that purpose.
Signed-off-by: Christian Borntraeger <borntraeger@de.ibm.com>
Reviewed-by: Joerg Roedel <jroedel@suse.de>
Signed-off-by: Andy Lutomirski <luto@kernel.org>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Makefile | 1 | ||||
-rw-r--r-- | lib/dma-noop.c | 75 |
2 files changed, 76 insertions, 0 deletions
diff --git a/lib/Makefile b/lib/Makefile index a7c26a41a738..a572b86a1b1d 100644 --- a/lib/Makefile +++ b/lib/Makefile | |||
@@ -18,6 +18,7 @@ lib-y := ctype.o string.o vsprintf.o cmdline.o \ | |||
18 | obj-$(CONFIG_ARCH_HAS_DEBUG_STRICT_USER_COPY_CHECKS) += usercopy.o | 18 | obj-$(CONFIG_ARCH_HAS_DEBUG_STRICT_USER_COPY_CHECKS) += usercopy.o |
19 | lib-$(CONFIG_MMU) += ioremap.o | 19 | lib-$(CONFIG_MMU) += ioremap.o |
20 | lib-$(CONFIG_SMP) += cpumask.o | 20 | lib-$(CONFIG_SMP) += cpumask.o |
21 | lib-$(CONFIG_HAS_DMA) += dma-noop.o | ||
21 | 22 | ||
22 | lib-y += kobject.o klist.o | 23 | lib-y += kobject.o klist.o |
23 | obj-y += lockref.o | 24 | obj-y += lockref.o |
diff --git a/lib/dma-noop.c b/lib/dma-noop.c new file mode 100644 index 000000000000..72145646857e --- /dev/null +++ b/lib/dma-noop.c | |||
@@ -0,0 +1,75 @@ | |||
1 | /* | ||
2 | * lib/dma-noop.c | ||
3 | * | ||
4 | * Simple DMA noop-ops that map 1:1 with memory | ||
5 | */ | ||
6 | #include <linux/export.h> | ||
7 | #include <linux/mm.h> | ||
8 | #include <linux/dma-mapping.h> | ||
9 | #include <linux/scatterlist.h> | ||
10 | |||
11 | static void *dma_noop_alloc(struct device *dev, size_t size, | ||
12 | dma_addr_t *dma_handle, gfp_t gfp, | ||
13 | struct dma_attrs *attrs) | ||
14 | { | ||
15 | void *ret; | ||
16 | |||
17 | ret = (void *)__get_free_pages(gfp, get_order(size)); | ||
18 | if (ret) | ||
19 | *dma_handle = virt_to_phys(ret); | ||
20 | return ret; | ||
21 | } | ||
22 | |||
23 | static void dma_noop_free(struct device *dev, size_t size, | ||
24 | void *cpu_addr, dma_addr_t dma_addr, | ||
25 | struct dma_attrs *attrs) | ||
26 | { | ||
27 | free_pages((unsigned long)cpu_addr, get_order(size)); | ||
28 | } | ||
29 | |||
30 | static dma_addr_t dma_noop_map_page(struct device *dev, struct page *page, | ||
31 | unsigned long offset, size_t size, | ||
32 | enum dma_data_direction dir, | ||
33 | struct dma_attrs *attrs) | ||
34 | { | ||
35 | return page_to_phys(page) + offset; | ||
36 | } | ||
37 | |||
38 | static int dma_noop_map_sg(struct device *dev, struct scatterlist *sgl, int nents, | ||
39 | enum dma_data_direction dir, struct dma_attrs *attrs) | ||
40 | { | ||
41 | int i; | ||
42 | struct scatterlist *sg; | ||
43 | |||
44 | for_each_sg(sgl, sg, nents, i) { | ||
45 | void *va; | ||
46 | |||
47 | BUG_ON(!sg_page(sg)); | ||
48 | va = sg_virt(sg); | ||
49 | sg_dma_address(sg) = (dma_addr_t)virt_to_phys(va); | ||
50 | sg_dma_len(sg) = sg->length; | ||
51 | } | ||
52 | |||
53 | return nents; | ||
54 | } | ||
55 | |||
56 | static int dma_noop_mapping_error(struct device *dev, dma_addr_t dma_addr) | ||
57 | { | ||
58 | return 0; | ||
59 | } | ||
60 | |||
61 | static int dma_noop_supported(struct device *dev, u64 mask) | ||
62 | { | ||
63 | return 1; | ||
64 | } | ||
65 | |||
66 | struct dma_map_ops dma_noop_ops = { | ||
67 | .alloc = dma_noop_alloc, | ||
68 | .free = dma_noop_free, | ||
69 | .map_page = dma_noop_map_page, | ||
70 | .map_sg = dma_noop_map_sg, | ||
71 | .mapping_error = dma_noop_mapping_error, | ||
72 | .dma_supported = dma_noop_supported, | ||
73 | }; | ||
74 | |||
75 | EXPORT_SYMBOL(dma_noop_ops); | ||