]> git.proxmox.com Git - mirror_ubuntu-eoan-kernel.git/blame - include/asm-i386/dma-mapping.h
[PATCH] gfp flags annotations - part 1
[mirror_ubuntu-eoan-kernel.git] / include / asm-i386 / dma-mapping.h
CommitLineData
1da177e4
LT
1#ifndef _ASM_I386_DMA_MAPPING_H
2#define _ASM_I386_DMA_MAPPING_H
3
4#include <linux/mm.h>
5
6#include <asm/cache.h>
7#include <asm/io.h>
8#include <asm/scatterlist.h>
9
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)
12
13void *dma_alloc_coherent(struct device *dev, size_t size,
dd0fc66f 14 dma_addr_t *dma_handle, gfp_t flag);
1da177e4
LT
15
16void dma_free_coherent(struct device *dev, size_t size,
17 void *vaddr, dma_addr_t dma_handle);
18
19static inline dma_addr_t
20dma_map_single(struct device *dev, void *ptr, size_t size,
21 enum dma_data_direction direction)
22{
23 BUG_ON(direction == DMA_NONE);
24 flush_write_buffers();
25 return virt_to_phys(ptr);
26}
27
28static inline void
29dma_unmap_single(struct device *dev, dma_addr_t dma_addr, size_t size,
30 enum dma_data_direction direction)
31{
32 BUG_ON(direction == DMA_NONE);
33}
34
35static inline int
36dma_map_sg(struct device *dev, struct scatterlist *sg, int nents,
37 enum dma_data_direction direction)
38{
39 int i;
40
41 BUG_ON(direction == DMA_NONE);
42
43 for (i = 0; i < nents; i++ ) {
44 BUG_ON(!sg[i].page);
45
46 sg[i].dma_address = page_to_phys(sg[i].page) + sg[i].offset;
47 }
48
49 flush_write_buffers();
50 return nents;
51}
52
53static inline dma_addr_t
54dma_map_page(struct device *dev, struct page *page, unsigned long offset,
55 size_t size, enum dma_data_direction direction)
56{
57 BUG_ON(direction == DMA_NONE);
58 return page_to_phys(page) + offset;
59}
60
61static inline void
62dma_unmap_page(struct device *dev, dma_addr_t dma_address, size_t size,
63 enum dma_data_direction direction)
64{
65 BUG_ON(direction == DMA_NONE);
66}
67
68
69static inline void
70dma_unmap_sg(struct device *dev, struct scatterlist *sg, int nhwentries,
71 enum dma_data_direction direction)
72{
73 BUG_ON(direction == DMA_NONE);
74}
75
76static inline void
77dma_sync_single_for_cpu(struct device *dev, dma_addr_t dma_handle, size_t size,
78 enum dma_data_direction direction)
79{
80}
81
82static inline void
83dma_sync_single_for_device(struct device *dev, dma_addr_t dma_handle, size_t size,
84 enum dma_data_direction direction)
85{
86 flush_write_buffers();
87}
88
89static inline void
90dma_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)
93{
94}
95
96static inline void
97dma_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)
100{
101 flush_write_buffers();
102}
103
104static inline void
105dma_sync_sg_for_cpu(struct device *dev, struct scatterlist *sg, int nelems,
106 enum dma_data_direction direction)
107{
108}
109
110static inline void
111dma_sync_sg_for_device(struct device *dev, struct scatterlist *sg, int nelems,
112 enum dma_data_direction direction)
113{
114 flush_write_buffers();
115}
116
117static inline int
118dma_mapping_error(dma_addr_t dma_addr)
119{
120 return 0;
121}
122
123static inline int
124dma_supported(struct device *dev, u64 mask)
125{
126 /*
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..
130 */
131 if(mask < 0x00ffffff)
132 return 0;
133
134 return 1;
135}
136
137static inline int
138dma_set_mask(struct device *dev, u64 mask)
139{
140 if(!dev->dma_mask || !dma_supported(dev, mask))
141 return -EIO;
142
143 *dev->dma_mask = mask;
144
145 return 0;
146}
147
148static inline int
149dma_get_cache_alignment(void)
150{
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);
154}
155
156#define dma_is_consistent(d) (1)
157
158static inline void
159dma_cache_sync(void *vaddr, size_t size,
160 enum dma_data_direction direction)
161{
162 flush_write_buffers();
163}
164
165#define ARCH_HAS_DMA_DECLARE_COHERENT_MEMORY
166extern int
167dma_declare_coherent_memory(struct device *dev, dma_addr_t bus_addr,
168 dma_addr_t device_addr, size_t size, int flags);
169
170extern void
171dma_release_declared_memory(struct device *dev);
172
173extern void *
174dma_mark_declared_memory_occupied(struct device *dev,
175 dma_addr_t device_addr, size_t size);
176
177#endif