Committer: Michael Beasley <mike@snafu.setup>
[mikesnafu-overlay.git] / include / asm-cris / dma-mapping.h
blobedc8d1bfaae2a6fa303f7dfa1f844fdff7eac812
1 /* DMA mapping. Nothing tricky here, just virt_to_phys */
3 #ifndef _ASM_CRIS_DMA_MAPPING_H
4 #define _ASM_CRIS_DMA_MAPPING_H
6 #include <linux/mm.h>
7 #include <linux/kernel.h>
9 #include <asm/cache.h>
10 #include <asm/io.h>
11 #include <asm/scatterlist.h>
13 #define dma_alloc_noncoherent(d, s, h, f) dma_alloc_coherent(d, s, h, f)
14 #define dma_free_noncoherent(d, s, v, h) dma_free_coherent(d, s, v, h)
16 #ifdef CONFIG_PCI
17 void *dma_alloc_coherent(struct device *dev, size_t size,
18 dma_addr_t *dma_handle, gfp_t flag);
20 void dma_free_coherent(struct device *dev, size_t size,
21 void *vaddr, dma_addr_t dma_handle);
22 #else
23 static inline void *
24 dma_alloc_coherent(struct device *dev, size_t size, dma_addr_t *dma_handle,
25 gfp_t flag)
27 BUG();
28 return NULL;
31 static inline void
32 dma_free_coherent(struct device *dev, size_t size, void *cpu_addr,
33 dma_addr_t dma_handle)
35 BUG();
37 #endif
38 static inline dma_addr_t
39 dma_map_single(struct device *dev, void *ptr, size_t size,
40 enum dma_data_direction direction)
42 BUG_ON(direction == DMA_NONE);
43 return virt_to_phys(ptr);
46 static inline void
47 dma_unmap_single(struct device *dev, dma_addr_t dma_addr, size_t size,
48 enum dma_data_direction direction)
50 BUG_ON(direction == DMA_NONE);
53 static inline int
54 dma_map_sg(struct device *dev, struct scatterlist *sg, int nents,
55 enum dma_data_direction direction)
57 printk("Map sg\n");
58 return nents;
61 static inline dma_addr_t
62 dma_map_page(struct device *dev, struct page *page, unsigned long offset,
63 size_t size, enum dma_data_direction direction)
65 BUG_ON(direction == DMA_NONE);
66 return page_to_phys(page) + offset;
69 static inline void
70 dma_unmap_page(struct device *dev, dma_addr_t dma_address, size_t size,
71 enum dma_data_direction direction)
73 BUG_ON(direction == DMA_NONE);
77 static inline void
78 dma_unmap_sg(struct device *dev, struct scatterlist *sg, int nhwentries,
79 enum dma_data_direction direction)
81 BUG_ON(direction == DMA_NONE);
84 static inline void
85 dma_sync_single_for_cpu(struct device *dev, dma_addr_t dma_handle, size_t size,
86 enum dma_data_direction direction)
90 static inline void
91 dma_sync_single_for_device(struct device *dev, dma_addr_t dma_handle, size_t size,
92 enum dma_data_direction direction)
96 static inline void
97 dma_sync_single_range_for_cpu(struct device *dev, dma_addr_t dma_handle,
98 unsigned long offset, size_t size,
99 enum dma_data_direction direction)
103 static inline void
104 dma_sync_single_range_for_device(struct device *dev, dma_addr_t dma_handle,
105 unsigned long offset, size_t size,
106 enum dma_data_direction direction)
110 static inline void
111 dma_sync_sg_for_cpu(struct device *dev, struct scatterlist *sg, int nelems,
112 enum dma_data_direction direction)
116 static inline void
117 dma_sync_sg_for_device(struct device *dev, struct scatterlist *sg, int nelems,
118 enum dma_data_direction direction)
122 static inline int
123 dma_mapping_error(dma_addr_t dma_addr)
125 return 0;
128 static inline int
129 dma_supported(struct device *dev, u64 mask)
132 * we fall back to GFP_DMA when the mask isn't all 1s,
133 * so we can't guarantee allocations that must be
134 * within a tighter range than GFP_DMA..
136 if(mask < 0x00ffffff)
137 return 0;
139 return 1;
142 static inline int
143 dma_set_mask(struct device *dev, u64 mask)
145 if(!dev->dma_mask || !dma_supported(dev, mask))
146 return -EIO;
148 *dev->dma_mask = mask;
150 return 0;
153 static inline int
154 dma_get_cache_alignment(void)
156 return (1 << INTERNODE_CACHE_SHIFT);
159 #define dma_is_consistent(d, h) (1)
161 static inline void
162 dma_cache_sync(struct device *dev, void *vaddr, size_t size,
163 enum dma_data_direction direction)
168 #endif