blob: 6a2d26cb5da641fc169be3cc9eea47fe30124448 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef _ASM_I386_DMA_MAPPING_H
2#define _ASM_I386_DMA_MAPPING_H
3
4#include <linux/mm.h>
Jens Axboea17b4902007-05-09 09:15:27 +02005#include <linux/scatterlist.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006
7#include <asm/cache.h>
8#include <asm/io.h>
Andi Kleenfd78f112006-01-11 22:44:54 +01009#include <asm/bug.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010
11#define dma_alloc_noncoherent(d, s, h, f) dma_alloc_coherent(d, s, h, f)
12#define dma_free_noncoherent(d, s, v, h) dma_free_coherent(d, s, v, h)
13
14void *dma_alloc_coherent(struct device *dev, size_t size,
Al Virodd0fc662005-10-07 07:46:04 +010015 dma_addr_t *dma_handle, gfp_t flag);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016
17void dma_free_coherent(struct device *dev, size_t size,
18 void *vaddr, dma_addr_t dma_handle);
19
20static inline dma_addr_t
21dma_map_single(struct device *dev, void *ptr, size_t size,
22 enum dma_data_direction direction)
23{
Rolf Eike Beercd1c6a42006-09-29 01:59:49 -070024 BUG_ON(!valid_dma_direction(direction));
Andi Kleenfd78f112006-01-11 22:44:54 +010025 WARN_ON(size == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070026 flush_write_buffers();
27 return virt_to_phys(ptr);
28}
29
30static inline void
31dma_unmap_single(struct device *dev, dma_addr_t dma_addr, size_t size,
32 enum dma_data_direction direction)
33{
Rolf Eike Beercd1c6a42006-09-29 01:59:49 -070034 BUG_ON(!valid_dma_direction(direction));
Linus Torvalds1da177e2005-04-16 15:20:36 -070035}
36
37static inline int
Jens Axboea17b4902007-05-09 09:15:27 +020038dma_map_sg(struct device *dev, struct scatterlist *sglist, int nents,
Linus Torvalds1da177e2005-04-16 15:20:36 -070039 enum dma_data_direction direction)
40{
Jens Axboea17b4902007-05-09 09:15:27 +020041 struct scatterlist *sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -070042 int i;
43
Rolf Eike Beercd1c6a42006-09-29 01:59:49 -070044 BUG_ON(!valid_dma_direction(direction));
Jens Axboea17b4902007-05-09 09:15:27 +020045 WARN_ON(nents == 0 || sglist[0].length == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070046
Jens Axboea17b4902007-05-09 09:15:27 +020047 for_each_sg(sglist, sg, nents, i) {
48 BUG_ON(!sg->page);
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
Jens Axboea17b4902007-05-09 09:15:27 +020050 sg->dma_address = page_to_phys(sg->page) + sg->offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -070051 }
52
53 flush_write_buffers();
54 return nents;
55}
56
57static inline dma_addr_t
58dma_map_page(struct device *dev, struct page *page, unsigned long offset,
59 size_t size, enum dma_data_direction direction)
60{
Rolf Eike Beercd1c6a42006-09-29 01:59:49 -070061 BUG_ON(!valid_dma_direction(direction));
Linus Torvalds1da177e2005-04-16 15:20:36 -070062 return page_to_phys(page) + offset;
63}
64
65static inline void
66dma_unmap_page(struct device *dev, dma_addr_t dma_address, size_t size,
67 enum dma_data_direction direction)
68{
Rolf Eike Beercd1c6a42006-09-29 01:59:49 -070069 BUG_ON(!valid_dma_direction(direction));
Linus Torvalds1da177e2005-04-16 15:20:36 -070070}
71
72
73static inline void
74dma_unmap_sg(struct device *dev, struct scatterlist *sg, int nhwentries,
75 enum dma_data_direction direction)
76{
Rolf Eike Beercd1c6a42006-09-29 01:59:49 -070077 BUG_ON(!valid_dma_direction(direction));
Linus Torvalds1da177e2005-04-16 15:20:36 -070078}
79
80static inline void
81dma_sync_single_for_cpu(struct device *dev, dma_addr_t dma_handle, size_t size,
82 enum dma_data_direction direction)
83{
84}
85
86static inline void
87dma_sync_single_for_device(struct device *dev, dma_addr_t dma_handle, size_t size,
88 enum dma_data_direction direction)
89{
90 flush_write_buffers();
91}
92
93static inline void
94dma_sync_single_range_for_cpu(struct device *dev, dma_addr_t dma_handle,
95 unsigned long offset, size_t size,
96 enum dma_data_direction direction)
97{
98}
99
100static inline void
101dma_sync_single_range_for_device(struct device *dev, dma_addr_t dma_handle,
102 unsigned long offset, size_t size,
103 enum dma_data_direction direction)
104{
105 flush_write_buffers();
106}
107
108static inline void
109dma_sync_sg_for_cpu(struct device *dev, struct scatterlist *sg, int nelems,
110 enum dma_data_direction direction)
111{
112}
113
114static inline void
115dma_sync_sg_for_device(struct device *dev, struct scatterlist *sg, int nelems,
116 enum dma_data_direction direction)
117{
118 flush_write_buffers();
119}
120
121static inline int
122dma_mapping_error(dma_addr_t dma_addr)
123{
124 return 0;
125}
126
Andi Kleen388c19e2007-06-20 12:23:32 +0200127extern int forbid_dac;
128
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129static inline int
130dma_supported(struct device *dev, u64 mask)
131{
132 /*
133 * we fall back to GFP_DMA when the mask isn't all 1s,
134 * so we can't guarantee allocations that must be
135 * within a tighter range than GFP_DMA..
136 */
137 if(mask < 0x00ffffff)
138 return 0;
139
Andi Kleen388c19e2007-06-20 12:23:32 +0200140 /* Work around chipset bugs */
141 if (forbid_dac > 0 && mask > 0xffffffffULL)
142 return 0;
143
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 return 1;
145}
146
147static inline int
148dma_set_mask(struct device *dev, u64 mask)
149{
150 if(!dev->dma_mask || !dma_supported(dev, mask))
151 return -EIO;
152
153 *dev->dma_mask = mask;
154
155 return 0;
156}
157
158static inline int
159dma_get_cache_alignment(void)
160{
161 /* no easy way to get cache size on all x86, so return the
162 * maximum possible, to be safe */
Ravikiran G Thirumalai1fd73c62006-01-08 01:01:28 -0800163 return (1 << INTERNODE_CACHE_SHIFT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164}
165
Ralf Baechlef67637e2006-12-06 20:38:54 -0800166#define dma_is_consistent(d, h) (1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167
168static inline void
Ralf Baechled3fa72e2006-12-06 20:38:56 -0800169dma_cache_sync(struct device *dev, void *vaddr, size_t size,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 enum dma_data_direction direction)
171{
172 flush_write_buffers();
173}
174
175#define ARCH_HAS_DMA_DECLARE_COHERENT_MEMORY
176extern int
177dma_declare_coherent_memory(struct device *dev, dma_addr_t bus_addr,
178 dma_addr_t device_addr, size_t size, int flags);
179
180extern void
181dma_release_declared_memory(struct device *dev);
182
183extern void *
184dma_mark_declared_memory_occupied(struct device *dev,
185 dma_addr_t device_addr, size_t size);
186
187#endif