]> git.kernelconcepts.de Git - karo-tx-linux.git/blob - arch/xtensa/include/asm/dma-mapping.h
dma-mapping: consolidate dma_{alloc,free}_{attrs,coherent}
[karo-tx-linux.git] / arch / xtensa / include / asm / dma-mapping.h
1 /*
2  * This file is subject to the terms and conditions of the GNU General Public
3  * License.  See the file "COPYING" in the main directory of this archive
4  * for more details.
5  *
6  * Copyright (C) 2003 - 2005 Tensilica Inc.
7  * Copyright (C) 2015 Cadence Design Systems Inc.
8  */
9
10 #ifndef _XTENSA_DMA_MAPPING_H
11 #define _XTENSA_DMA_MAPPING_H
12
13 #include <asm/cache.h>
14 #include <asm/io.h>
15
16 #include <asm-generic/dma-coherent.h>
17
18 #include <linux/mm.h>
19 #include <linux/scatterlist.h>
20
21 #define DMA_ERROR_CODE          (~(dma_addr_t)0x0)
22
23 extern struct dma_map_ops xtensa_dma_map_ops;
24
25 static inline struct dma_map_ops *get_dma_ops(struct device *dev)
26 {
27         if (dev && dev->archdata.dma_ops)
28                 return dev->archdata.dma_ops;
29         else
30                 return &xtensa_dma_map_ops;
31 }
32
33 #include <asm-generic/dma-mapping-common.h>
34
35 #define dma_alloc_noncoherent(d, s, h, f) dma_alloc_attrs(d, s, h, f, NULL)
36 #define dma_free_noncoherent(d, s, v, h) dma_free_attrs(d, s, v, h, NULL)
37
38 static inline int
39 dma_mapping_error(struct device *dev, dma_addr_t dma_addr)
40 {
41         struct dma_map_ops *ops = get_dma_ops(dev);
42
43         debug_dma_mapping_error(dev, dma_addr);
44         return ops->mapping_error(dev, dma_addr);
45 }
46
47 static inline int
48 dma_supported(struct device *dev, u64 mask)
49 {
50         return 1;
51 }
52
53 static inline int
54 dma_set_mask(struct device *dev, u64 mask)
55 {
56         if(!dev->dma_mask || !dma_supported(dev, mask))
57                 return -EIO;
58
59         *dev->dma_mask = mask;
60
61         return 0;
62 }
63
64 void dma_cache_sync(struct device *dev, void *vaddr, size_t size,
65                     enum dma_data_direction direction);
66
67 #endif  /* _XTENSA_DMA_MAPPING_H */