Linux 3.8-rc7
[cris-mirror.git] / arch / unicore32 / include / asm / dma-mapping.h
blob366460a817965d2ed7d1d4dceb987784067e87e6
1 /*
2 * linux/arch/unicore32/include/asm/dma-mapping.h
4 * Code specific to PKUnity SoC and UniCore ISA
6 * Copyright (C) 2001-2010 GUAN Xue-tao
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
12 #ifndef __UNICORE_DMA_MAPPING_H__
13 #define __UNICORE_DMA_MAPPING_H__
15 #ifdef __KERNEL__
17 #include <linux/mm_types.h>
18 #include <linux/scatterlist.h>
19 #include <linux/swiotlb.h>
21 #include <asm-generic/dma-coherent.h>
23 #include <asm/memory.h>
24 #include <asm/cacheflush.h>
26 extern struct dma_map_ops swiotlb_dma_map_ops;
28 static inline struct dma_map_ops *get_dma_ops(struct device *dev)
30 return &swiotlb_dma_map_ops;
33 static inline int dma_supported(struct device *dev, u64 mask)
35 struct dma_map_ops *dma_ops = get_dma_ops(dev);
37 if (unlikely(dma_ops == NULL))
38 return 0;
40 return dma_ops->dma_supported(dev, mask);
43 static inline int dma_mapping_error(struct device *dev, dma_addr_t dma_addr)
45 struct dma_map_ops *dma_ops = get_dma_ops(dev);
47 if (dma_ops->mapping_error)
48 return dma_ops->mapping_error(dev, dma_addr);
50 return 0;
53 #include <asm-generic/dma-mapping-common.h>
55 static inline bool dma_capable(struct device *dev, dma_addr_t addr, size_t size)
57 if (dev && dev->dma_mask)
58 return addr + size - 1 <= *dev->dma_mask;
60 return 1;
63 static inline dma_addr_t phys_to_dma(struct device *dev, phys_addr_t paddr)
65 return paddr;
68 static inline phys_addr_t dma_to_phys(struct device *dev, dma_addr_t daddr)
70 return daddr;
73 static inline void dma_mark_clean(void *addr, size_t size) {}
75 static inline int dma_set_mask(struct device *dev, u64 dma_mask)
77 if (!dev->dma_mask || !dma_supported(dev, dma_mask))
78 return -EIO;
80 *dev->dma_mask = dma_mask;
82 return 0;
85 #define dma_alloc_coherent(d,s,h,f) dma_alloc_attrs(d,s,h,f,NULL)
87 static inline void *dma_alloc_attrs(struct device *dev, size_t size,
88 dma_addr_t *dma_handle, gfp_t flag,
89 struct dma_attrs *attrs)
91 struct dma_map_ops *dma_ops = get_dma_ops(dev);
93 return dma_ops->alloc(dev, size, dma_handle, flag, attrs);
96 #define dma_free_coherent(d,s,c,h) dma_free_attrs(d,s,c,h,NULL)
98 static inline void dma_free_attrs(struct device *dev, size_t size,
99 void *cpu_addr, dma_addr_t dma_handle,
100 struct dma_attrs *attrs)
102 struct dma_map_ops *dma_ops = get_dma_ops(dev);
104 dma_ops->free(dev, size, cpu_addr, dma_handle, attrs);
107 #define dma_alloc_noncoherent(d, s, h, f) dma_alloc_coherent(d, s, h, f)
108 #define dma_free_noncoherent(d, s, v, h) dma_free_coherent(d, s, v, h)
110 static inline void dma_cache_sync(struct device *dev, void *vaddr,
111 size_t size, enum dma_data_direction direction)
113 unsigned long start = (unsigned long)vaddr;
114 unsigned long end = start + size;
116 switch (direction) {
117 case DMA_NONE:
118 BUG();
119 case DMA_FROM_DEVICE:
120 case DMA_BIDIRECTIONAL: /* writeback and invalidate */
121 __cpuc_dma_flush_range(start, end);
122 break;
123 case DMA_TO_DEVICE: /* writeback only */
124 __cpuc_dma_clean_range(start, end);
125 break;
129 #endif /* __KERNEL__ */
130 #endif