[PATCH] v4l: 810: vidioc log status is added to videodev2.h
[linux-2.6/suspend2-2.6.18.git] / include / asm-i386 / dma-mapping.h
blobe56c335f8ef9f0f5c7294eeee9e65a1b98d0165b
1 #ifndef _ASM_I386_DMA_MAPPING_H
2 #define _ASM_I386_DMA_MAPPING_H
4 #include <linux/mm.h>
6 #include <asm/cache.h>
7 #include <asm/io.h>
8 #include <asm/scatterlist.h>
10 #define dma_alloc_noncoherent(d, s, h, f) dma_alloc_coherent(d, s, h, f)
11 #define dma_free_noncoherent(d, s, v, h) dma_free_coherent(d, s, v, h)
13 void *dma_alloc_coherent(struct device *dev, size_t size,
14 dma_addr_t *dma_handle, gfp_t flag);
16 void dma_free_coherent(struct device *dev, size_t size,
17 void *vaddr, dma_addr_t dma_handle);
19 static inline dma_addr_t
20 dma_map_single(struct device *dev, void *ptr, size_t size,
21 enum dma_data_direction direction)
23 BUG_ON(direction == DMA_NONE);
24 flush_write_buffers();
25 return virt_to_phys(ptr);
28 static inline void
29 dma_unmap_single(struct device *dev, dma_addr_t dma_addr, size_t size,
30 enum dma_data_direction direction)
32 BUG_ON(direction == DMA_NONE);
35 static inline int
36 dma_map_sg(struct device *dev, struct scatterlist *sg, int nents,
37 enum dma_data_direction direction)
39 int i;
41 BUG_ON(direction == DMA_NONE);
43 for (i = 0; i < nents; i++ ) {
44 BUG_ON(!sg[i].page);
46 sg[i].dma_address = page_to_phys(sg[i].page) + sg[i].offset;
49 flush_write_buffers();
50 return nents;
53 static inline dma_addr_t
54 dma_map_page(struct device *dev, struct page *page, unsigned long offset,
55 size_t size, enum dma_data_direction direction)
57 BUG_ON(direction == DMA_NONE);
58 return page_to_phys(page) + offset;
61 static inline void
62 dma_unmap_page(struct device *dev, dma_addr_t dma_address, size_t size,
63 enum dma_data_direction direction)
65 BUG_ON(direction == DMA_NONE);
69 static inline void
70 dma_unmap_sg(struct device *dev, struct scatterlist *sg, int nhwentries,
71 enum dma_data_direction direction)
73 BUG_ON(direction == DMA_NONE);
76 static inline void
77 dma_sync_single_for_cpu(struct device *dev, dma_addr_t dma_handle, size_t size,
78 enum dma_data_direction direction)
82 static inline void
83 dma_sync_single_for_device(struct device *dev, dma_addr_t dma_handle, size_t size,
84 enum dma_data_direction direction)
86 flush_write_buffers();
89 static inline void
90 dma_sync_single_range_for_cpu(struct device *dev, dma_addr_t dma_handle,
91 unsigned long offset, size_t size,
92 enum dma_data_direction direction)
96 static inline void
97 dma_sync_single_range_for_device(struct device *dev, dma_addr_t dma_handle,
98 unsigned long offset, size_t size,
99 enum dma_data_direction direction)
101 flush_write_buffers();
104 static inline void
105 dma_sync_sg_for_cpu(struct device *dev, struct scatterlist *sg, int nelems,
106 enum dma_data_direction direction)
110 static inline void
111 dma_sync_sg_for_device(struct device *dev, struct scatterlist *sg, int nelems,
112 enum dma_data_direction direction)
114 flush_write_buffers();
117 static inline int
118 dma_mapping_error(dma_addr_t dma_addr)
120 return 0;
123 static inline int
124 dma_supported(struct device *dev, u64 mask)
127 * we fall back to GFP_DMA when the mask isn't all 1s,
128 * so we can't guarantee allocations that must be
129 * within a tighter range than GFP_DMA..
131 if(mask < 0x00ffffff)
132 return 0;
134 return 1;
137 static inline int
138 dma_set_mask(struct device *dev, u64 mask)
140 if(!dev->dma_mask || !dma_supported(dev, mask))
141 return -EIO;
143 *dev->dma_mask = mask;
145 return 0;
148 static inline int
149 dma_get_cache_alignment(void)
151 /* no easy way to get cache size on all x86, so return the
152 * maximum possible, to be safe */
153 return (1 << L1_CACHE_SHIFT_MAX);
156 #define dma_is_consistent(d) (1)
158 static inline void
159 dma_cache_sync(void *vaddr, size_t size,
160 enum dma_data_direction direction)
162 flush_write_buffers();
165 #define ARCH_HAS_DMA_DECLARE_COHERENT_MEMORY
166 extern int
167 dma_declare_coherent_memory(struct device *dev, dma_addr_t bus_addr,
168 dma_addr_t device_addr, size_t size, int flags);
170 extern void
171 dma_release_declared_memory(struct device *dev);
173 extern void *
174 dma_mark_declared_memory_occupied(struct device *dev,
175 dma_addr_t device_addr, size_t size);
177 #endif