blob: b5f5d11330420fb502ca13c2acba6848f1ca17a7 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Dynamic DMA mapping support.
3 *
Jan Beulich563aaf02007-02-05 18:51:25 -08004 * This implementation is a fallback for platforms that do not support
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 * I/O TLBs (aka DMA address translation hardware).
6 * Copyright (C) 2000 Asit Mallick <Asit.K.Mallick@intel.com>
7 * Copyright (C) 2000 Goutham Rao <goutham.rao@intel.com>
8 * Copyright (C) 2000, 2003 Hewlett-Packard Co
9 * David Mosberger-Tang <davidm@hpl.hp.com>
10 *
11 * 03/05/07 davidm Switch from PCI-DMA to generic device DMA API.
12 * 00/12/13 davidm Rename to swiotlb.c and add mark_clean() to avoid
13 * unnecessary i-cache flushing.
John W. Linville569c8bf2005-09-29 14:45:24 -070014 * 04/07/.. ak Better overflow handling. Assorted fixes.
15 * 05/09/10 linville Add support for syncing ranges, support syncing for
16 * DMA_BIDIRECTIONAL mappings, miscellaneous cleanup.
Linus Torvalds1da177e2005-04-16 15:20:36 -070017 */
18
19#include <linux/cache.h>
Tony Luck17e5ad62005-09-29 15:52:13 -070020#include <linux/dma-mapping.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include <linux/mm.h>
22#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <linux/spinlock.h>
24#include <linux/string.h>
25#include <linux/types.h>
26#include <linux/ctype.h>
27
28#include <asm/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <asm/dma.h>
Tony Luck17e5ad62005-09-29 15:52:13 -070030#include <asm/scatterlist.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031
32#include <linux/init.h>
33#include <linux/bootmem.h>
FUJITA Tomonoria8522502008-04-29 00:59:36 -070034#include <linux/iommu-helper.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
36#define OFFSET(val,align) ((unsigned long) \
37 ( (val) & ( (align) - 1)))
38
Jens Axboef9527f12007-10-22 19:44:53 +020039#define SG_ENT_VIRT_ADDRESS(sg) (sg_virt((sg)))
Jan Beulich93fbff62007-02-05 18:49:45 -080040#define SG_ENT_PHYS_ADDRESS(sg) virt_to_bus(SG_ENT_VIRT_ADDRESS(sg))
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
42/*
43 * Maximum allowable number of contiguous slabs to map,
44 * must be a power of 2. What is the appropriate value ?
45 * The complexity of {map,unmap}_single is linearly dependent on this value.
46 */
47#define IO_TLB_SEGSIZE 128
48
49/*
50 * log of the size of each IO TLB slab. The number of slabs is command line
51 * controllable.
52 */
53#define IO_TLB_SHIFT 11
54
Alex Williamson0b9afed2005-09-06 11:20:49 -060055#define SLABS_PER_PAGE (1 << (PAGE_SHIFT - IO_TLB_SHIFT))
56
57/*
58 * Minimum IO TLB size to bother booting with. Systems with mainly
59 * 64bit capable cards will only lightly use the swiotlb. If we can't
60 * allocate a contiguous 1MB, we're probably in trouble anyway.
61 */
62#define IO_TLB_MIN_SLABS ((1<<20) >> IO_TLB_SHIFT)
63
John W. Linvillede69e0f2005-09-29 14:44:57 -070064/*
65 * Enumeration for sync targets
66 */
67enum dma_sync_target {
68 SYNC_FOR_CPU = 0,
69 SYNC_FOR_DEVICE = 1,
70};
71
Linus Torvalds1da177e2005-04-16 15:20:36 -070072int swiotlb_force;
73
74/*
75 * Used to do a quick range check in swiotlb_unmap_single and
76 * swiotlb_sync_single_*, to see if the memory was in fact allocated by this
77 * API.
78 */
79static char *io_tlb_start, *io_tlb_end;
80
81/*
82 * The number of IO TLB blocks (in groups of 64) betweeen io_tlb_start and
83 * io_tlb_end. This is command line adjustable via setup_io_tlb_npages.
84 */
85static unsigned long io_tlb_nslabs;
86
87/*
88 * When the IOMMU overflows we return a fallback buffer. This sets the size.
89 */
90static unsigned long io_tlb_overflow = 32*1024;
91
92void *io_tlb_overflow_buffer;
93
94/*
95 * This is a free list describing the number of free entries available from
96 * each index
97 */
98static unsigned int *io_tlb_list;
99static unsigned int io_tlb_index;
100
101/*
102 * We need to save away the original address corresponding to a mapped entry
103 * for the sync operations.
104 */
Tony Luck25667d62007-03-06 13:31:45 -0800105static unsigned char **io_tlb_orig_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106
107/*
108 * Protect the above data structures in the map and unmap calls
109 */
110static DEFINE_SPINLOCK(io_tlb_lock);
111
112static int __init
113setup_io_tlb_npages(char *str)
114{
115 if (isdigit(*str)) {
Alex Williamsone8579e72005-08-04 13:06:00 -0700116 io_tlb_nslabs = simple_strtoul(str, &str, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 /* avoid tail segment of size < IO_TLB_SEGSIZE */
118 io_tlb_nslabs = ALIGN(io_tlb_nslabs, IO_TLB_SEGSIZE);
119 }
120 if (*str == ',')
121 ++str;
122 if (!strcmp(str, "force"))
123 swiotlb_force = 1;
124 return 1;
125}
126__setup("swiotlb=", setup_io_tlb_npages);
127/* make io_tlb_overflow tunable too? */
128
129/*
130 * Statically reserve bounce buffer space and initialize bounce buffer data
Tony Luck17e5ad62005-09-29 15:52:13 -0700131 * structures for the software IO TLB used to implement the DMA API.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 */
Jan Beulich563aaf02007-02-05 18:51:25 -0800133void __init
134swiotlb_init_with_default_size(size_t default_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135{
Jan Beulich563aaf02007-02-05 18:51:25 -0800136 unsigned long i, bytes;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137
138 if (!io_tlb_nslabs) {
Alex Williamsone8579e72005-08-04 13:06:00 -0700139 io_tlb_nslabs = (default_size >> IO_TLB_SHIFT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 io_tlb_nslabs = ALIGN(io_tlb_nslabs, IO_TLB_SEGSIZE);
141 }
142
Jan Beulich563aaf02007-02-05 18:51:25 -0800143 bytes = io_tlb_nslabs << IO_TLB_SHIFT;
144
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 /*
146 * Get IO TLB memory from the low pages
147 */
Jan Beulich563aaf02007-02-05 18:51:25 -0800148 io_tlb_start = alloc_bootmem_low_pages(bytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 if (!io_tlb_start)
150 panic("Cannot allocate SWIOTLB buffer");
Jan Beulich563aaf02007-02-05 18:51:25 -0800151 io_tlb_end = io_tlb_start + bytes;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152
153 /*
154 * Allocate and initialize the free list array. This array is used
155 * to find contiguous free memory regions of size up to IO_TLB_SEGSIZE
156 * between io_tlb_start and io_tlb_end.
157 */
158 io_tlb_list = alloc_bootmem(io_tlb_nslabs * sizeof(int));
Tony Luck25667d62007-03-06 13:31:45 -0800159 for (i = 0; i < io_tlb_nslabs; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 io_tlb_list[i] = IO_TLB_SEGSIZE - OFFSET(i, IO_TLB_SEGSIZE);
161 io_tlb_index = 0;
Tony Luck25667d62007-03-06 13:31:45 -0800162 io_tlb_orig_addr = alloc_bootmem(io_tlb_nslabs * sizeof(char *));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163
164 /*
165 * Get the overflow emergency buffer
166 */
167 io_tlb_overflow_buffer = alloc_bootmem_low(io_tlb_overflow);
Jan Beulich563aaf02007-02-05 18:51:25 -0800168 if (!io_tlb_overflow_buffer)
169 panic("Cannot allocate SWIOTLB overflow buffer!\n");
170
Tony Luck25667d62007-03-06 13:31:45 -0800171 printk(KERN_INFO "Placing software IO TLB between 0x%lx - 0x%lx\n",
172 virt_to_bus(io_tlb_start), virt_to_bus(io_tlb_end));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173}
174
Jan Beulich563aaf02007-02-05 18:51:25 -0800175void __init
176swiotlb_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177{
Tony Luck25667d62007-03-06 13:31:45 -0800178 swiotlb_init_with_default_size(64 * (1<<20)); /* default to 64MB */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179}
180
Alex Williamson0b9afed2005-09-06 11:20:49 -0600181/*
182 * Systems with larger DMA zones (those that don't support ISA) can
183 * initialize the swiotlb later using the slab allocator if needed.
184 * This should be just like above, but with some error catching.
185 */
186int
Jan Beulich563aaf02007-02-05 18:51:25 -0800187swiotlb_late_init_with_default_size(size_t default_size)
Alex Williamson0b9afed2005-09-06 11:20:49 -0600188{
Jan Beulich563aaf02007-02-05 18:51:25 -0800189 unsigned long i, bytes, req_nslabs = io_tlb_nslabs;
Alex Williamson0b9afed2005-09-06 11:20:49 -0600190 unsigned int order;
191
192 if (!io_tlb_nslabs) {
193 io_tlb_nslabs = (default_size >> IO_TLB_SHIFT);
194 io_tlb_nslabs = ALIGN(io_tlb_nslabs, IO_TLB_SEGSIZE);
195 }
196
197 /*
198 * Get IO TLB memory from the low pages
199 */
Jan Beulich563aaf02007-02-05 18:51:25 -0800200 order = get_order(io_tlb_nslabs << IO_TLB_SHIFT);
Alex Williamson0b9afed2005-09-06 11:20:49 -0600201 io_tlb_nslabs = SLABS_PER_PAGE << order;
Jan Beulich563aaf02007-02-05 18:51:25 -0800202 bytes = io_tlb_nslabs << IO_TLB_SHIFT;
Alex Williamson0b9afed2005-09-06 11:20:49 -0600203
204 while ((SLABS_PER_PAGE << order) > IO_TLB_MIN_SLABS) {
205 io_tlb_start = (char *)__get_free_pages(GFP_DMA | __GFP_NOWARN,
206 order);
207 if (io_tlb_start)
208 break;
209 order--;
210 }
211
212 if (!io_tlb_start)
213 goto cleanup1;
214
Jan Beulich563aaf02007-02-05 18:51:25 -0800215 if (order != get_order(bytes)) {
Alex Williamson0b9afed2005-09-06 11:20:49 -0600216 printk(KERN_WARNING "Warning: only able to allocate %ld MB "
217 "for software IO TLB\n", (PAGE_SIZE << order) >> 20);
218 io_tlb_nslabs = SLABS_PER_PAGE << order;
Jan Beulich563aaf02007-02-05 18:51:25 -0800219 bytes = io_tlb_nslabs << IO_TLB_SHIFT;
Alex Williamson0b9afed2005-09-06 11:20:49 -0600220 }
Jan Beulich563aaf02007-02-05 18:51:25 -0800221 io_tlb_end = io_tlb_start + bytes;
222 memset(io_tlb_start, 0, bytes);
Alex Williamson0b9afed2005-09-06 11:20:49 -0600223
224 /*
225 * Allocate and initialize the free list array. This array is used
226 * to find contiguous free memory regions of size up to IO_TLB_SEGSIZE
227 * between io_tlb_start and io_tlb_end.
228 */
229 io_tlb_list = (unsigned int *)__get_free_pages(GFP_KERNEL,
230 get_order(io_tlb_nslabs * sizeof(int)));
231 if (!io_tlb_list)
232 goto cleanup2;
233
234 for (i = 0; i < io_tlb_nslabs; i++)
235 io_tlb_list[i] = IO_TLB_SEGSIZE - OFFSET(i, IO_TLB_SEGSIZE);
236 io_tlb_index = 0;
237
Tony Luck25667d62007-03-06 13:31:45 -0800238 io_tlb_orig_addr = (unsigned char **)__get_free_pages(GFP_KERNEL,
239 get_order(io_tlb_nslabs * sizeof(char *)));
Alex Williamson0b9afed2005-09-06 11:20:49 -0600240 if (!io_tlb_orig_addr)
241 goto cleanup3;
242
Tony Luck25667d62007-03-06 13:31:45 -0800243 memset(io_tlb_orig_addr, 0, io_tlb_nslabs * sizeof(char *));
Alex Williamson0b9afed2005-09-06 11:20:49 -0600244
245 /*
246 * Get the overflow emergency buffer
247 */
248 io_tlb_overflow_buffer = (void *)__get_free_pages(GFP_DMA,
249 get_order(io_tlb_overflow));
250 if (!io_tlb_overflow_buffer)
251 goto cleanup4;
252
Tony Luck25667d62007-03-06 13:31:45 -0800253 printk(KERN_INFO "Placing %luMB software IO TLB between 0x%lx - "
254 "0x%lx\n", bytes >> 20,
255 virt_to_bus(io_tlb_start), virt_to_bus(io_tlb_end));
Alex Williamson0b9afed2005-09-06 11:20:49 -0600256
257 return 0;
258
259cleanup4:
Tony Luck25667d62007-03-06 13:31:45 -0800260 free_pages((unsigned long)io_tlb_orig_addr, get_order(io_tlb_nslabs *
261 sizeof(char *)));
Alex Williamson0b9afed2005-09-06 11:20:49 -0600262 io_tlb_orig_addr = NULL;
263cleanup3:
Tony Luck25667d62007-03-06 13:31:45 -0800264 free_pages((unsigned long)io_tlb_list, get_order(io_tlb_nslabs *
265 sizeof(int)));
Alex Williamson0b9afed2005-09-06 11:20:49 -0600266 io_tlb_list = NULL;
Alex Williamson0b9afed2005-09-06 11:20:49 -0600267cleanup2:
Jan Beulich563aaf02007-02-05 18:51:25 -0800268 io_tlb_end = NULL;
Alex Williamson0b9afed2005-09-06 11:20:49 -0600269 free_pages((unsigned long)io_tlb_start, order);
270 io_tlb_start = NULL;
271cleanup1:
272 io_tlb_nslabs = req_nslabs;
273 return -ENOMEM;
274}
275
Andrew Mortonbe6b0262007-02-12 00:52:17 -0800276static int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277address_needs_mapping(struct device *hwdev, dma_addr_t addr)
278{
279 dma_addr_t mask = 0xffffffff;
280 /* If the device has a mask, use it, otherwise default to 32 bits */
281 if (hwdev && hwdev->dma_mask)
282 mask = *hwdev->dma_mask;
283 return (addr & ~mask) != 0;
284}
285
FUJITA Tomonori640aebf2008-09-08 18:53:50 +0900286static int is_swiotlb_buffer(char *addr)
287{
288 return addr >= io_tlb_start && addr < io_tlb_end;
289}
290
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291/*
292 * Allocates bounce buffer and returns its kernel virtual address.
293 */
294static void *
Tony Luck25667d62007-03-06 13:31:45 -0800295map_single(struct device *hwdev, char *buffer, size_t size, int dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296{
297 unsigned long flags;
298 char *dma_addr;
299 unsigned int nslots, stride, index, wrap;
300 int i;
FUJITA Tomonori681cc5c2008-02-04 22:28:16 -0800301 unsigned long start_dma_addr;
302 unsigned long mask;
303 unsigned long offset_slots;
304 unsigned long max_slots;
305
306 mask = dma_get_seg_boundary(hwdev);
307 start_dma_addr = virt_to_bus(io_tlb_start) & mask;
308
309 offset_slots = ALIGN(start_dma_addr, 1 << IO_TLB_SHIFT) >> IO_TLB_SHIFT;
Jan Beulichb15a38912008-03-13 09:13:30 +0000310 max_slots = mask + 1
311 ? ALIGN(mask + 1, 1 << IO_TLB_SHIFT) >> IO_TLB_SHIFT
312 : 1UL << (BITS_PER_LONG - IO_TLB_SHIFT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313
314 /*
315 * For mappings greater than a page, we limit the stride (and
316 * hence alignment) to a page size.
317 */
318 nslots = ALIGN(size, 1 << IO_TLB_SHIFT) >> IO_TLB_SHIFT;
319 if (size > PAGE_SIZE)
320 stride = (1 << (PAGE_SHIFT - IO_TLB_SHIFT));
321 else
322 stride = 1;
323
Eric Sesterhenn34814542006-03-24 18:47:11 +0100324 BUG_ON(!nslots);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325
326 /*
327 * Find suitable number of IO TLB entries size that will fit this
328 * request and allocate a buffer from that IO TLB pool.
329 */
330 spin_lock_irqsave(&io_tlb_lock, flags);
Andrew Mortona7133a12008-04-29 00:59:36 -0700331 index = ALIGN(io_tlb_index, stride);
332 if (index >= io_tlb_nslabs)
333 index = 0;
334 wrap = index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335
Andrew Mortona7133a12008-04-29 00:59:36 -0700336 do {
FUJITA Tomonoria8522502008-04-29 00:59:36 -0700337 while (iommu_is_span_boundary(index, nslots, offset_slots,
338 max_slots)) {
Jan Beulichb15a38912008-03-13 09:13:30 +0000339 index += stride;
340 if (index >= io_tlb_nslabs)
341 index = 0;
Andrew Mortona7133a12008-04-29 00:59:36 -0700342 if (index == wrap)
343 goto not_found;
344 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345
Andrew Mortona7133a12008-04-29 00:59:36 -0700346 /*
347 * If we find a slot that indicates we have 'nslots' number of
348 * contiguous buffers, we allocate the buffers from that slot
349 * and mark the entries as '0' indicating unavailable.
350 */
351 if (io_tlb_list[index] >= nslots) {
352 int count = 0;
353
354 for (i = index; i < (int) (index + nslots); i++)
355 io_tlb_list[i] = 0;
356 for (i = index - 1; (OFFSET(i, IO_TLB_SEGSIZE) != IO_TLB_SEGSIZE - 1) && io_tlb_list[i]; i--)
357 io_tlb_list[i] = ++count;
358 dma_addr = io_tlb_start + (index << IO_TLB_SHIFT);
359
360 /*
361 * Update the indices to avoid searching in the next
362 * round.
363 */
364 io_tlb_index = ((index + nslots) < io_tlb_nslabs
365 ? (index + nslots) : 0);
366
367 goto found;
368 }
369 index += stride;
370 if (index >= io_tlb_nslabs)
371 index = 0;
372 } while (index != wrap);
373
374not_found:
375 spin_unlock_irqrestore(&io_tlb_lock, flags);
376 return NULL;
377found:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 spin_unlock_irqrestore(&io_tlb_lock, flags);
379
380 /*
381 * Save away the mapping from the original address to the DMA address.
382 * This is needed when we sync the memory. Then we sync the buffer if
383 * needed.
384 */
Keir Fraserdf336d12007-07-21 04:37:24 -0700385 for (i = 0; i < nslots; i++)
386 io_tlb_orig_addr[index+i] = buffer + (i << IO_TLB_SHIFT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 if (dir == DMA_TO_DEVICE || dir == DMA_BIDIRECTIONAL)
Tony Luck25667d62007-03-06 13:31:45 -0800388 memcpy(dma_addr, buffer, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389
390 return dma_addr;
391}
392
393/*
394 * dma_addr is the kernel virtual address of the bounce buffer to unmap.
395 */
396static void
397unmap_single(struct device *hwdev, char *dma_addr, size_t size, int dir)
398{
399 unsigned long flags;
400 int i, count, nslots = ALIGN(size, 1 << IO_TLB_SHIFT) >> IO_TLB_SHIFT;
401 int index = (dma_addr - io_tlb_start) >> IO_TLB_SHIFT;
Tony Luck25667d62007-03-06 13:31:45 -0800402 char *buffer = io_tlb_orig_addr[index];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403
404 /*
405 * First, sync the memory before unmapping the entry
406 */
Tony Luck25667d62007-03-06 13:31:45 -0800407 if (buffer && ((dir == DMA_FROM_DEVICE) || (dir == DMA_BIDIRECTIONAL)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 /*
409 * bounce... copy the data back into the original buffer * and
410 * delete the bounce buffer.
411 */
Tony Luck25667d62007-03-06 13:31:45 -0800412 memcpy(buffer, dma_addr, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413
414 /*
415 * Return the buffer to the free list by setting the corresponding
416 * entries to indicate the number of contigous entries available.
417 * While returning the entries to the free list, we merge the entries
418 * with slots below and above the pool being returned.
419 */
420 spin_lock_irqsave(&io_tlb_lock, flags);
421 {
422 count = ((index + nslots) < ALIGN(index + 1, IO_TLB_SEGSIZE) ?
423 io_tlb_list[index + nslots] : 0);
424 /*
425 * Step 1: return the slots to the free list, merging the
426 * slots with superceeding slots
427 */
428 for (i = index + nslots - 1; i >= index; i--)
429 io_tlb_list[i] = ++count;
430 /*
431 * Step 2: merge the returned slots with the preceding slots,
432 * if available (non zero)
433 */
434 for (i = index - 1; (OFFSET(i, IO_TLB_SEGSIZE) != IO_TLB_SEGSIZE -1) && io_tlb_list[i]; i--)
435 io_tlb_list[i] = ++count;
436 }
437 spin_unlock_irqrestore(&io_tlb_lock, flags);
438}
439
440static void
John W. Linvillede69e0f2005-09-29 14:44:57 -0700441sync_single(struct device *hwdev, char *dma_addr, size_t size,
442 int dir, int target)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443{
444 int index = (dma_addr - io_tlb_start) >> IO_TLB_SHIFT;
Tony Luck25667d62007-03-06 13:31:45 -0800445 char *buffer = io_tlb_orig_addr[index];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446
Keir Fraserdf336d12007-07-21 04:37:24 -0700447 buffer += ((unsigned long)dma_addr & ((1 << IO_TLB_SHIFT) - 1));
448
John W. Linvillede69e0f2005-09-29 14:44:57 -0700449 switch (target) {
450 case SYNC_FOR_CPU:
451 if (likely(dir == DMA_FROM_DEVICE || dir == DMA_BIDIRECTIONAL))
Tony Luck25667d62007-03-06 13:31:45 -0800452 memcpy(buffer, dma_addr, size);
Eric Sesterhenn34814542006-03-24 18:47:11 +0100453 else
454 BUG_ON(dir != DMA_TO_DEVICE);
John W. Linvillede69e0f2005-09-29 14:44:57 -0700455 break;
456 case SYNC_FOR_DEVICE:
457 if (likely(dir == DMA_TO_DEVICE || dir == DMA_BIDIRECTIONAL))
Tony Luck25667d62007-03-06 13:31:45 -0800458 memcpy(dma_addr, buffer, size);
Eric Sesterhenn34814542006-03-24 18:47:11 +0100459 else
460 BUG_ON(dir != DMA_FROM_DEVICE);
John W. Linvillede69e0f2005-09-29 14:44:57 -0700461 break;
462 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 BUG();
John W. Linvillede69e0f2005-09-29 14:44:57 -0700464 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465}
466
467void *
468swiotlb_alloc_coherent(struct device *hwdev, size_t size,
Al Viro06a54492005-10-21 03:21:03 -0400469 dma_addr_t *dma_handle, gfp_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470{
Jan Beulich563aaf02007-02-05 18:51:25 -0800471 dma_addr_t dev_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 void *ret;
473 int order = get_order(size);
474
Tony Luck25667d62007-03-06 13:31:45 -0800475 ret = (void *)__get_free_pages(flags, order);
Jan Beulich93fbff62007-02-05 18:49:45 -0800476 if (ret && address_needs_mapping(hwdev, virt_to_bus(ret))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 /*
478 * The allocated memory isn't reachable by the device.
479 * Fall back on swiotlb_map_single().
480 */
481 free_pages((unsigned long) ret, order);
482 ret = NULL;
483 }
484 if (!ret) {
485 /*
486 * We are either out of memory or the device can't DMA
487 * to GFP_DMA memory; fall back on
488 * swiotlb_map_single(), which will grab memory from
489 * the lowest available address range.
490 */
FUJITA Tomonori9dfda122008-09-08 18:53:48 +0900491 ret = map_single(hwdev, NULL, size, DMA_FROM_DEVICE);
492 if (!ret)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 }
495
496 memset(ret, 0, size);
Jan Beulich93fbff62007-02-05 18:49:45 -0800497 dev_addr = virt_to_bus(ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498
499 /* Confirm address can be DMA'd by device */
500 if (address_needs_mapping(hwdev, dev_addr)) {
Jan Beulich563aaf02007-02-05 18:51:25 -0800501 printk("hwdev DMA mask = 0x%016Lx, dev_addr = 0x%016Lx\n",
502 (unsigned long long)*hwdev->dma_mask,
503 (unsigned long long)dev_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 panic("swiotlb_alloc_coherent: allocated memory is out of "
505 "range for device");
506 }
507 *dma_handle = dev_addr;
508 return ret;
509}
510
511void
512swiotlb_free_coherent(struct device *hwdev, size_t size, void *vaddr,
513 dma_addr_t dma_handle)
514{
David Brownellaa248862007-08-10 13:10:27 -0700515 WARN_ON(irqs_disabled());
FUJITA Tomonori640aebf2008-09-08 18:53:50 +0900516 if (!is_swiotlb_buffer(vaddr))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 free_pages((unsigned long) vaddr, get_order(size));
518 else
519 /* DMA_TO_DEVICE to avoid memcpy in unmap_single */
FUJITA Tomonori21f6c4d2008-09-08 18:53:49 +0900520 unmap_single(hwdev, vaddr, size, DMA_TO_DEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521}
522
523static void
524swiotlb_full(struct device *dev, size_t size, int dir, int do_panic)
525{
526 /*
527 * Ran out of IOMMU space for this operation. This is very bad.
528 * Unfortunately the drivers cannot handle this operation properly.
Tony Luck17e5ad62005-09-29 15:52:13 -0700529 * unless they check for dma_mapping_error (most don't)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 * When the mapping is small enough return a static buffer to limit
531 * the damage, or panic when the transfer is too big.
532 */
Jan Beulich563aaf02007-02-05 18:51:25 -0800533 printk(KERN_ERR "DMA: Out of SW-IOMMU space for %zu bytes at "
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 "device %s\n", size, dev ? dev->bus_id : "?");
535
536 if (size > io_tlb_overflow && do_panic) {
Tony Luck17e5ad62005-09-29 15:52:13 -0700537 if (dir == DMA_FROM_DEVICE || dir == DMA_BIDIRECTIONAL)
538 panic("DMA: Memory would be corrupted\n");
539 if (dir == DMA_TO_DEVICE || dir == DMA_BIDIRECTIONAL)
540 panic("DMA: Random memory would be DMAed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 }
542}
543
544/*
545 * Map a single buffer of the indicated size for DMA in streaming mode. The
Tony Luck17e5ad62005-09-29 15:52:13 -0700546 * physical address to use is returned.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 *
548 * Once the device is given the dma address, the device owns this memory until
549 * either swiotlb_unmap_single or swiotlb_dma_sync_single is performed.
550 */
551dma_addr_t
Arthur Kepner309df0c2008-04-29 01:00:32 -0700552swiotlb_map_single_attrs(struct device *hwdev, void *ptr, size_t size,
553 int dir, struct dma_attrs *attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554{
Jan Beulich563aaf02007-02-05 18:51:25 -0800555 dma_addr_t dev_addr = virt_to_bus(ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 void *map;
557
Eric Sesterhenn34814542006-03-24 18:47:11 +0100558 BUG_ON(dir == DMA_NONE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 /*
560 * If the pointer passed in happens to be in the device's DMA window,
561 * we can safely return the device addr and not worry about bounce
562 * buffering it.
563 */
Tony Luck25667d62007-03-06 13:31:45 -0800564 if (!address_needs_mapping(hwdev, dev_addr) && !swiotlb_force)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 return dev_addr;
566
567 /*
568 * Oh well, have to allocate and map a bounce buffer.
569 */
Tony Luck25667d62007-03-06 13:31:45 -0800570 map = map_single(hwdev, ptr, size, dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 if (!map) {
572 swiotlb_full(hwdev, size, dir, 1);
573 map = io_tlb_overflow_buffer;
574 }
575
Jan Beulich93fbff62007-02-05 18:49:45 -0800576 dev_addr = virt_to_bus(map);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577
578 /*
579 * Ensure that the address returned is DMA'ble
580 */
581 if (address_needs_mapping(hwdev, dev_addr))
582 panic("map_single: bounce buffer is not DMA'ble");
583
584 return dev_addr;
585}
Arthur Kepner309df0c2008-04-29 01:00:32 -0700586EXPORT_SYMBOL(swiotlb_map_single_attrs);
587
588dma_addr_t
589swiotlb_map_single(struct device *hwdev, void *ptr, size_t size, int dir)
590{
591 return swiotlb_map_single_attrs(hwdev, ptr, size, dir, NULL);
592}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593
594/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 * Unmap a single streaming mode DMA translation. The dma_addr and size must
596 * match what was provided for in a previous swiotlb_map_single call. All
597 * other usages are undefined.
598 *
599 * After this call, reads by the cpu to the buffer are guaranteed to see
600 * whatever the device wrote there.
601 */
602void
Arthur Kepner309df0c2008-04-29 01:00:32 -0700603swiotlb_unmap_single_attrs(struct device *hwdev, dma_addr_t dev_addr,
604 size_t size, int dir, struct dma_attrs *attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605{
Jan Beulich93fbff62007-02-05 18:49:45 -0800606 char *dma_addr = bus_to_virt(dev_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607
Eric Sesterhenn34814542006-03-24 18:47:11 +0100608 BUG_ON(dir == DMA_NONE);
FUJITA Tomonori640aebf2008-09-08 18:53:50 +0900609 if (is_swiotlb_buffer(dma_addr))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 unmap_single(hwdev, dma_addr, size, dir);
611 else if (dir == DMA_FROM_DEVICE)
Jan Beulichcde14bb2007-02-05 18:46:40 -0800612 dma_mark_clean(dma_addr, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613}
Arthur Kepner309df0c2008-04-29 01:00:32 -0700614EXPORT_SYMBOL(swiotlb_unmap_single_attrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615
Arthur Kepner309df0c2008-04-29 01:00:32 -0700616void
617swiotlb_unmap_single(struct device *hwdev, dma_addr_t dev_addr, size_t size,
618 int dir)
619{
620 return swiotlb_unmap_single_attrs(hwdev, dev_addr, size, dir, NULL);
621}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622/*
623 * Make physical memory consistent for a single streaming mode DMA translation
624 * after a transfer.
625 *
626 * If you perform a swiotlb_map_single() but wish to interrogate the buffer
Tony Luck17e5ad62005-09-29 15:52:13 -0700627 * using the cpu, yet do not wish to teardown the dma mapping, you must
628 * call this function before doing so. At the next point you give the dma
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 * address back to the card, you must first perform a
630 * swiotlb_dma_sync_for_device, and then the device again owns the buffer
631 */
Andrew Mortonbe6b0262007-02-12 00:52:17 -0800632static void
John W. Linville8270f3f2005-09-29 14:43:32 -0700633swiotlb_sync_single(struct device *hwdev, dma_addr_t dev_addr,
John W. Linvillede69e0f2005-09-29 14:44:57 -0700634 size_t size, int dir, int target)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635{
Jan Beulich93fbff62007-02-05 18:49:45 -0800636 char *dma_addr = bus_to_virt(dev_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637
Eric Sesterhenn34814542006-03-24 18:47:11 +0100638 BUG_ON(dir == DMA_NONE);
FUJITA Tomonori640aebf2008-09-08 18:53:50 +0900639 if (is_swiotlb_buffer(dma_addr))
John W. Linvillede69e0f2005-09-29 14:44:57 -0700640 sync_single(hwdev, dma_addr, size, dir, target);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 else if (dir == DMA_FROM_DEVICE)
Jan Beulichcde14bb2007-02-05 18:46:40 -0800642 dma_mark_clean(dma_addr, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643}
644
645void
John W. Linville8270f3f2005-09-29 14:43:32 -0700646swiotlb_sync_single_for_cpu(struct device *hwdev, dma_addr_t dev_addr,
647 size_t size, int dir)
648{
John W. Linvillede69e0f2005-09-29 14:44:57 -0700649 swiotlb_sync_single(hwdev, dev_addr, size, dir, SYNC_FOR_CPU);
John W. Linville8270f3f2005-09-29 14:43:32 -0700650}
651
652void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653swiotlb_sync_single_for_device(struct device *hwdev, dma_addr_t dev_addr,
654 size_t size, int dir)
655{
John W. Linvillede69e0f2005-09-29 14:44:57 -0700656 swiotlb_sync_single(hwdev, dev_addr, size, dir, SYNC_FOR_DEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657}
658
659/*
John W. Linville878a97c2005-09-29 14:44:23 -0700660 * Same as above, but for a sub-range of the mapping.
661 */
Andrew Mortonbe6b0262007-02-12 00:52:17 -0800662static void
John W. Linville878a97c2005-09-29 14:44:23 -0700663swiotlb_sync_single_range(struct device *hwdev, dma_addr_t dev_addr,
John W. Linvillede69e0f2005-09-29 14:44:57 -0700664 unsigned long offset, size_t size,
665 int dir, int target)
John W. Linville878a97c2005-09-29 14:44:23 -0700666{
Jan Beulich93fbff62007-02-05 18:49:45 -0800667 char *dma_addr = bus_to_virt(dev_addr) + offset;
John W. Linville878a97c2005-09-29 14:44:23 -0700668
Eric Sesterhenn34814542006-03-24 18:47:11 +0100669 BUG_ON(dir == DMA_NONE);
FUJITA Tomonori640aebf2008-09-08 18:53:50 +0900670 if (is_swiotlb_buffer(dma_addr))
John W. Linvillede69e0f2005-09-29 14:44:57 -0700671 sync_single(hwdev, dma_addr, size, dir, target);
John W. Linville878a97c2005-09-29 14:44:23 -0700672 else if (dir == DMA_FROM_DEVICE)
Jan Beulichcde14bb2007-02-05 18:46:40 -0800673 dma_mark_clean(dma_addr, size);
John W. Linville878a97c2005-09-29 14:44:23 -0700674}
675
676void
677swiotlb_sync_single_range_for_cpu(struct device *hwdev, dma_addr_t dev_addr,
678 unsigned long offset, size_t size, int dir)
679{
John W. Linvillede69e0f2005-09-29 14:44:57 -0700680 swiotlb_sync_single_range(hwdev, dev_addr, offset, size, dir,
681 SYNC_FOR_CPU);
John W. Linville878a97c2005-09-29 14:44:23 -0700682}
683
684void
685swiotlb_sync_single_range_for_device(struct device *hwdev, dma_addr_t dev_addr,
686 unsigned long offset, size_t size, int dir)
687{
John W. Linvillede69e0f2005-09-29 14:44:57 -0700688 swiotlb_sync_single_range(hwdev, dev_addr, offset, size, dir,
689 SYNC_FOR_DEVICE);
John W. Linville878a97c2005-09-29 14:44:23 -0700690}
691
Arthur Kepner309df0c2008-04-29 01:00:32 -0700692void swiotlb_unmap_sg_attrs(struct device *, struct scatterlist *, int, int,
693 struct dma_attrs *);
John W. Linville878a97c2005-09-29 14:44:23 -0700694/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 * Map a set of buffers described by scatterlist in streaming mode for DMA.
696 * This is the scatter-gather version of the above swiotlb_map_single
697 * interface. Here the scatter gather list elements are each tagged with the
698 * appropriate dma address and length. They are obtained via
699 * sg_dma_{address,length}(SG).
700 *
701 * NOTE: An implementation may be able to use a smaller number of
702 * DMA address/length pairs than there are SG table elements.
703 * (for example via virtual mapping capabilities)
704 * The routine returns the number of addr/length pairs actually
705 * used, at most nents.
706 *
707 * Device ownership issues as mentioned above for swiotlb_map_single are the
708 * same here.
709 */
710int
Arthur Kepner309df0c2008-04-29 01:00:32 -0700711swiotlb_map_sg_attrs(struct device *hwdev, struct scatterlist *sgl, int nelems,
712 int dir, struct dma_attrs *attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713{
Jens Axboedbfd49f2007-05-11 14:56:18 +0200714 struct scatterlist *sg;
Tony Luck25667d62007-03-06 13:31:45 -0800715 void *addr;
Jan Beulich563aaf02007-02-05 18:51:25 -0800716 dma_addr_t dev_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717 int i;
718
Eric Sesterhenn34814542006-03-24 18:47:11 +0100719 BUG_ON(dir == DMA_NONE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720
Jens Axboedbfd49f2007-05-11 14:56:18 +0200721 for_each_sg(sgl, sg, nelems, i) {
Tony Luck25667d62007-03-06 13:31:45 -0800722 addr = SG_ENT_VIRT_ADDRESS(sg);
723 dev_addr = virt_to_bus(addr);
724 if (swiotlb_force || address_needs_mapping(hwdev, dev_addr)) {
725 void *map = map_single(hwdev, addr, sg->length, dir);
Andi Kleen7e870232005-12-20 14:45:19 +0100726 if (!map) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 /* Don't panic here, we expect map_sg users
728 to do proper error handling. */
729 swiotlb_full(hwdev, sg->length, dir, 0);
Arthur Kepner309df0c2008-04-29 01:00:32 -0700730 swiotlb_unmap_sg_attrs(hwdev, sgl, i, dir,
731 attrs);
Jens Axboedbfd49f2007-05-11 14:56:18 +0200732 sgl[0].dma_length = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 return 0;
734 }
Jan Beulichcde14bb2007-02-05 18:46:40 -0800735 sg->dma_address = virt_to_bus(map);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 } else
737 sg->dma_address = dev_addr;
738 sg->dma_length = sg->length;
739 }
740 return nelems;
741}
Arthur Kepner309df0c2008-04-29 01:00:32 -0700742EXPORT_SYMBOL(swiotlb_map_sg_attrs);
743
744int
745swiotlb_map_sg(struct device *hwdev, struct scatterlist *sgl, int nelems,
746 int dir)
747{
748 return swiotlb_map_sg_attrs(hwdev, sgl, nelems, dir, NULL);
749}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750
751/*
752 * Unmap a set of streaming mode DMA translations. Again, cpu read rules
753 * concerning calls here are the same as for swiotlb_unmap_single() above.
754 */
755void
Arthur Kepner309df0c2008-04-29 01:00:32 -0700756swiotlb_unmap_sg_attrs(struct device *hwdev, struct scatterlist *sgl,
757 int nelems, int dir, struct dma_attrs *attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758{
Jens Axboedbfd49f2007-05-11 14:56:18 +0200759 struct scatterlist *sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 int i;
761
Eric Sesterhenn34814542006-03-24 18:47:11 +0100762 BUG_ON(dir == DMA_NONE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763
Jens Axboedbfd49f2007-05-11 14:56:18 +0200764 for_each_sg(sgl, sg, nelems, i) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 if (sg->dma_address != SG_ENT_PHYS_ADDRESS(sg))
Jan Beulich93fbff62007-02-05 18:49:45 -0800766 unmap_single(hwdev, bus_to_virt(sg->dma_address),
767 sg->dma_length, dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 else if (dir == DMA_FROM_DEVICE)
Jan Beulichcde14bb2007-02-05 18:46:40 -0800769 dma_mark_clean(SG_ENT_VIRT_ADDRESS(sg), sg->dma_length);
Jens Axboedbfd49f2007-05-11 14:56:18 +0200770 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771}
Arthur Kepner309df0c2008-04-29 01:00:32 -0700772EXPORT_SYMBOL(swiotlb_unmap_sg_attrs);
773
774void
775swiotlb_unmap_sg(struct device *hwdev, struct scatterlist *sgl, int nelems,
776 int dir)
777{
778 return swiotlb_unmap_sg_attrs(hwdev, sgl, nelems, dir, NULL);
779}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780
781/*
782 * Make physical memory consistent for a set of streaming mode DMA translations
783 * after a transfer.
784 *
785 * The same as swiotlb_sync_single_* but for a scatter-gather list, same rules
786 * and usage.
787 */
Andrew Mortonbe6b0262007-02-12 00:52:17 -0800788static void
Jens Axboedbfd49f2007-05-11 14:56:18 +0200789swiotlb_sync_sg(struct device *hwdev, struct scatterlist *sgl,
John W. Linvillede69e0f2005-09-29 14:44:57 -0700790 int nelems, int dir, int target)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791{
Jens Axboedbfd49f2007-05-11 14:56:18 +0200792 struct scatterlist *sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 int i;
794
Eric Sesterhenn34814542006-03-24 18:47:11 +0100795 BUG_ON(dir == DMA_NONE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796
Jens Axboedbfd49f2007-05-11 14:56:18 +0200797 for_each_sg(sgl, sg, nelems, i) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 if (sg->dma_address != SG_ENT_PHYS_ADDRESS(sg))
Jan Beulich93fbff62007-02-05 18:49:45 -0800799 sync_single(hwdev, bus_to_virt(sg->dma_address),
John W. Linvillede69e0f2005-09-29 14:44:57 -0700800 sg->dma_length, dir, target);
Jan Beulichcde14bb2007-02-05 18:46:40 -0800801 else if (dir == DMA_FROM_DEVICE)
802 dma_mark_clean(SG_ENT_VIRT_ADDRESS(sg), sg->dma_length);
Jens Axboedbfd49f2007-05-11 14:56:18 +0200803 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804}
805
806void
John W. Linville8270f3f2005-09-29 14:43:32 -0700807swiotlb_sync_sg_for_cpu(struct device *hwdev, struct scatterlist *sg,
808 int nelems, int dir)
809{
John W. Linvillede69e0f2005-09-29 14:44:57 -0700810 swiotlb_sync_sg(hwdev, sg, nelems, dir, SYNC_FOR_CPU);
John W. Linville8270f3f2005-09-29 14:43:32 -0700811}
812
813void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814swiotlb_sync_sg_for_device(struct device *hwdev, struct scatterlist *sg,
815 int nelems, int dir)
816{
John W. Linvillede69e0f2005-09-29 14:44:57 -0700817 swiotlb_sync_sg(hwdev, sg, nelems, dir, SYNC_FOR_DEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818}
819
820int
FUJITA Tomonori8d8bb392008-07-25 19:44:49 -0700821swiotlb_dma_mapping_error(struct device *hwdev, dma_addr_t dma_addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822{
Jan Beulich93fbff62007-02-05 18:49:45 -0800823 return (dma_addr == virt_to_bus(io_tlb_overflow_buffer));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824}
825
826/*
Tony Luck17e5ad62005-09-29 15:52:13 -0700827 * Return whether the given device DMA address mask can be supported
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 * properly. For example, if your device can only drive the low 24-bits
Tony Luck17e5ad62005-09-29 15:52:13 -0700829 * during bus mastering, then you would pass 0x00ffffff as the mask to
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830 * this function.
831 */
832int
Jan Beulich563aaf02007-02-05 18:51:25 -0800833swiotlb_dma_supported(struct device *hwdev, u64 mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834{
Tony Luck25667d62007-03-06 13:31:45 -0800835 return virt_to_bus(io_tlb_end - 1) <= mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836}
837
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838EXPORT_SYMBOL(swiotlb_map_single);
839EXPORT_SYMBOL(swiotlb_unmap_single);
840EXPORT_SYMBOL(swiotlb_map_sg);
841EXPORT_SYMBOL(swiotlb_unmap_sg);
842EXPORT_SYMBOL(swiotlb_sync_single_for_cpu);
843EXPORT_SYMBOL(swiotlb_sync_single_for_device);
John W. Linville878a97c2005-09-29 14:44:23 -0700844EXPORT_SYMBOL_GPL(swiotlb_sync_single_range_for_cpu);
845EXPORT_SYMBOL_GPL(swiotlb_sync_single_range_for_device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846EXPORT_SYMBOL(swiotlb_sync_sg_for_cpu);
847EXPORT_SYMBOL(swiotlb_sync_sg_for_device);
848EXPORT_SYMBOL(swiotlb_dma_mapping_error);
Tony Luck25667d62007-03-06 13:31:45 -0800849EXPORT_SYMBOL(swiotlb_alloc_coherent);
850EXPORT_SYMBOL(swiotlb_free_coherent);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851EXPORT_SYMBOL(swiotlb_dma_supported);