blob: 785046e4c3abc22b0dfe973a80b99aa91f7e2a7d [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.
Becky Brucefb05a372008-12-22 10:26:09 -080017 * 08/12/11 beckyb Add highmem support
Linus Torvalds1da177e2005-04-16 15:20:36 -070018 */
19
20#include <linux/cache.h>
Tony Luck17e5ad62005-09-29 15:52:13 -070021#include <linux/dma-mapping.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <linux/mm.h>
23#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <linux/spinlock.h>
Jeremy Fitzhardinge8c5df162008-12-16 12:17:26 -080025#include <linux/swiotlb.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <linux/string.h>
Ian Campbell0016fde2008-12-16 12:17:27 -080027#include <linux/swiotlb.h>
Becky Brucefb05a372008-12-22 10:26:09 -080028#include <linux/pfn.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <linux/types.h>
30#include <linux/ctype.h>
Jeremy Fitzhardingeef9b1892008-12-16 12:17:33 -080031#include <linux/highmem.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032
33#include <asm/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include <asm/dma.h>
Tony Luck17e5ad62005-09-29 15:52:13 -070035#include <asm/scatterlist.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036
37#include <linux/init.h>
38#include <linux/bootmem.h>
FUJITA Tomonoria8522502008-04-29 00:59:36 -070039#include <linux/iommu-helper.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070040
41#define OFFSET(val,align) ((unsigned long) \
42 ( (val) & ( (align) - 1)))
43
Alex Williamson0b9afed2005-09-06 11:20:49 -060044#define SLABS_PER_PAGE (1 << (PAGE_SHIFT - IO_TLB_SHIFT))
45
46/*
47 * Minimum IO TLB size to bother booting with. Systems with mainly
48 * 64bit capable cards will only lightly use the swiotlb. If we can't
49 * allocate a contiguous 1MB, we're probably in trouble anyway.
50 */
51#define IO_TLB_MIN_SLABS ((1<<20) >> IO_TLB_SHIFT)
52
John W. Linvillede69e0f2005-09-29 14:44:57 -070053/*
54 * Enumeration for sync targets
55 */
56enum dma_sync_target {
57 SYNC_FOR_CPU = 0,
58 SYNC_FOR_DEVICE = 1,
59};
60
Linus Torvalds1da177e2005-04-16 15:20:36 -070061int swiotlb_force;
62
63/*
64 * Used to do a quick range check in swiotlb_unmap_single and
65 * swiotlb_sync_single_*, to see if the memory was in fact allocated by this
66 * API.
67 */
68static char *io_tlb_start, *io_tlb_end;
69
70/*
71 * The number of IO TLB blocks (in groups of 64) betweeen io_tlb_start and
72 * io_tlb_end. This is command line adjustable via setup_io_tlb_npages.
73 */
74static unsigned long io_tlb_nslabs;
75
76/*
77 * When the IOMMU overflows we return a fallback buffer. This sets the size.
78 */
79static unsigned long io_tlb_overflow = 32*1024;
80
81void *io_tlb_overflow_buffer;
82
83/*
84 * This is a free list describing the number of free entries available from
85 * each index
86 */
87static unsigned int *io_tlb_list;
88static unsigned int io_tlb_index;
89
90/*
91 * We need to save away the original address corresponding to a mapped entry
92 * for the sync operations.
93 */
Becky Brucebc40ac62008-12-22 10:26:08 -080094static phys_addr_t *io_tlb_orig_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -070095
96/*
97 * Protect the above data structures in the map and unmap calls
98 */
99static DEFINE_SPINLOCK(io_tlb_lock);
100
101static int __init
102setup_io_tlb_npages(char *str)
103{
104 if (isdigit(*str)) {
Alex Williamsone8579e72005-08-04 13:06:00 -0700105 io_tlb_nslabs = simple_strtoul(str, &str, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 /* avoid tail segment of size < IO_TLB_SEGSIZE */
107 io_tlb_nslabs = ALIGN(io_tlb_nslabs, IO_TLB_SEGSIZE);
108 }
109 if (*str == ',')
110 ++str;
111 if (!strcmp(str, "force"))
112 swiotlb_force = 1;
113 return 1;
114}
115__setup("swiotlb=", setup_io_tlb_npages);
116/* make io_tlb_overflow tunable too? */
117
Jeremy Fitzhardinge8c5df162008-12-16 12:17:26 -0800118void * __weak swiotlb_alloc_boot(size_t size, unsigned long nslabs)
119{
120 return alloc_bootmem_low_pages(size);
121}
122
123void * __weak swiotlb_alloc(unsigned order, unsigned long nslabs)
124{
125 return (void *)__get_free_pages(GFP_DMA | __GFP_NOWARN, order);
126}
127
Jeremy Fitzhardinge70a7d3c2008-12-22 10:26:05 -0800128dma_addr_t __weak swiotlb_phys_to_bus(struct device *hwdev, phys_addr_t paddr)
Ian Campbelle08e1f72008-12-16 12:17:30 -0800129{
130 return paddr;
131}
132
133phys_addr_t __weak swiotlb_bus_to_phys(dma_addr_t baddr)
134{
135 return baddr;
136}
137
Jeremy Fitzhardinge70a7d3c2008-12-22 10:26:05 -0800138static dma_addr_t swiotlb_virt_to_bus(struct device *hwdev,
139 volatile void *address)
Ian Campbelle08e1f72008-12-16 12:17:30 -0800140{
Jeremy Fitzhardinge70a7d3c2008-12-22 10:26:05 -0800141 return swiotlb_phys_to_bus(hwdev, virt_to_phys(address));
Ian Campbelle08e1f72008-12-16 12:17:30 -0800142}
143
144static void *swiotlb_bus_to_virt(dma_addr_t address)
145{
146 return phys_to_virt(swiotlb_bus_to_phys(address));
147}
148
Ian Campbellb81ea272008-12-16 12:17:31 -0800149int __weak swiotlb_arch_range_needs_mapping(void *ptr, size_t size)
150{
151 return 0;
152}
153
Ian Campbell2e5b2b82008-12-16 12:17:34 -0800154static void swiotlb_print_info(unsigned long bytes)
155{
156 phys_addr_t pstart, pend;
Ian Campbell2e5b2b82008-12-16 12:17:34 -0800157
158 pstart = virt_to_phys(io_tlb_start);
159 pend = virt_to_phys(io_tlb_end);
160
Ian Campbell2e5b2b82008-12-16 12:17:34 -0800161 printk(KERN_INFO "Placing %luMB software IO TLB between %p - %p\n",
162 bytes >> 20, io_tlb_start, io_tlb_end);
Jeremy Fitzhardinge70a7d3c2008-12-22 10:26:05 -0800163 printk(KERN_INFO "software IO TLB at phys %#llx - %#llx\n",
164 (unsigned long long)pstart,
165 (unsigned long long)pend);
Ian Campbell2e5b2b82008-12-16 12:17:34 -0800166}
167
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168/*
169 * Statically reserve bounce buffer space and initialize bounce buffer data
Tony Luck17e5ad62005-09-29 15:52:13 -0700170 * structures for the software IO TLB used to implement the DMA API.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 */
Jan Beulich563aaf02007-02-05 18:51:25 -0800172void __init
173swiotlb_init_with_default_size(size_t default_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174{
Jan Beulich563aaf02007-02-05 18:51:25 -0800175 unsigned long i, bytes;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176
177 if (!io_tlb_nslabs) {
Alex Williamsone8579e72005-08-04 13:06:00 -0700178 io_tlb_nslabs = (default_size >> IO_TLB_SHIFT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 io_tlb_nslabs = ALIGN(io_tlb_nslabs, IO_TLB_SEGSIZE);
180 }
181
Jan Beulich563aaf02007-02-05 18:51:25 -0800182 bytes = io_tlb_nslabs << IO_TLB_SHIFT;
183
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 /*
185 * Get IO TLB memory from the low pages
186 */
Jeremy Fitzhardinge8c5df162008-12-16 12:17:26 -0800187 io_tlb_start = swiotlb_alloc_boot(bytes, io_tlb_nslabs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 if (!io_tlb_start)
189 panic("Cannot allocate SWIOTLB buffer");
Jan Beulich563aaf02007-02-05 18:51:25 -0800190 io_tlb_end = io_tlb_start + bytes;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191
192 /*
193 * Allocate and initialize the free list array. This array is used
194 * to find contiguous free memory regions of size up to IO_TLB_SEGSIZE
195 * between io_tlb_start and io_tlb_end.
196 */
197 io_tlb_list = alloc_bootmem(io_tlb_nslabs * sizeof(int));
Tony Luck25667d62007-03-06 13:31:45 -0800198 for (i = 0; i < io_tlb_nslabs; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 io_tlb_list[i] = IO_TLB_SEGSIZE - OFFSET(i, IO_TLB_SEGSIZE);
200 io_tlb_index = 0;
Becky Brucebc40ac62008-12-22 10:26:08 -0800201 io_tlb_orig_addr = alloc_bootmem(io_tlb_nslabs * sizeof(phys_addr_t));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202
203 /*
204 * Get the overflow emergency buffer
205 */
206 io_tlb_overflow_buffer = alloc_bootmem_low(io_tlb_overflow);
Jan Beulich563aaf02007-02-05 18:51:25 -0800207 if (!io_tlb_overflow_buffer)
208 panic("Cannot allocate SWIOTLB overflow buffer!\n");
209
Ian Campbell2e5b2b82008-12-16 12:17:34 -0800210 swiotlb_print_info(bytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211}
212
Jan Beulich563aaf02007-02-05 18:51:25 -0800213void __init
214swiotlb_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215{
Tony Luck25667d62007-03-06 13:31:45 -0800216 swiotlb_init_with_default_size(64 * (1<<20)); /* default to 64MB */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217}
218
Alex Williamson0b9afed2005-09-06 11:20:49 -0600219/*
220 * Systems with larger DMA zones (those that don't support ISA) can
221 * initialize the swiotlb later using the slab allocator if needed.
222 * This should be just like above, but with some error catching.
223 */
224int
Jan Beulich563aaf02007-02-05 18:51:25 -0800225swiotlb_late_init_with_default_size(size_t default_size)
Alex Williamson0b9afed2005-09-06 11:20:49 -0600226{
Jan Beulich563aaf02007-02-05 18:51:25 -0800227 unsigned long i, bytes, req_nslabs = io_tlb_nslabs;
Alex Williamson0b9afed2005-09-06 11:20:49 -0600228 unsigned int order;
229
230 if (!io_tlb_nslabs) {
231 io_tlb_nslabs = (default_size >> IO_TLB_SHIFT);
232 io_tlb_nslabs = ALIGN(io_tlb_nslabs, IO_TLB_SEGSIZE);
233 }
234
235 /*
236 * Get IO TLB memory from the low pages
237 */
Jan Beulich563aaf02007-02-05 18:51:25 -0800238 order = get_order(io_tlb_nslabs << IO_TLB_SHIFT);
Alex Williamson0b9afed2005-09-06 11:20:49 -0600239 io_tlb_nslabs = SLABS_PER_PAGE << order;
Jan Beulich563aaf02007-02-05 18:51:25 -0800240 bytes = io_tlb_nslabs << IO_TLB_SHIFT;
Alex Williamson0b9afed2005-09-06 11:20:49 -0600241
242 while ((SLABS_PER_PAGE << order) > IO_TLB_MIN_SLABS) {
Jeremy Fitzhardinge8c5df162008-12-16 12:17:26 -0800243 io_tlb_start = swiotlb_alloc(order, io_tlb_nslabs);
Alex Williamson0b9afed2005-09-06 11:20:49 -0600244 if (io_tlb_start)
245 break;
246 order--;
247 }
248
249 if (!io_tlb_start)
250 goto cleanup1;
251
Jan Beulich563aaf02007-02-05 18:51:25 -0800252 if (order != get_order(bytes)) {
Alex Williamson0b9afed2005-09-06 11:20:49 -0600253 printk(KERN_WARNING "Warning: only able to allocate %ld MB "
254 "for software IO TLB\n", (PAGE_SIZE << order) >> 20);
255 io_tlb_nslabs = SLABS_PER_PAGE << order;
Jan Beulich563aaf02007-02-05 18:51:25 -0800256 bytes = io_tlb_nslabs << IO_TLB_SHIFT;
Alex Williamson0b9afed2005-09-06 11:20:49 -0600257 }
Jan Beulich563aaf02007-02-05 18:51:25 -0800258 io_tlb_end = io_tlb_start + bytes;
259 memset(io_tlb_start, 0, bytes);
Alex Williamson0b9afed2005-09-06 11:20:49 -0600260
261 /*
262 * Allocate and initialize the free list array. This array is used
263 * to find contiguous free memory regions of size up to IO_TLB_SEGSIZE
264 * between io_tlb_start and io_tlb_end.
265 */
266 io_tlb_list = (unsigned int *)__get_free_pages(GFP_KERNEL,
267 get_order(io_tlb_nslabs * sizeof(int)));
268 if (!io_tlb_list)
269 goto cleanup2;
270
271 for (i = 0; i < io_tlb_nslabs; i++)
272 io_tlb_list[i] = IO_TLB_SEGSIZE - OFFSET(i, IO_TLB_SEGSIZE);
273 io_tlb_index = 0;
274
Becky Brucebc40ac62008-12-22 10:26:08 -0800275 io_tlb_orig_addr = (phys_addr_t *)
276 __get_free_pages(GFP_KERNEL,
277 get_order(io_tlb_nslabs *
278 sizeof(phys_addr_t)));
Alex Williamson0b9afed2005-09-06 11:20:49 -0600279 if (!io_tlb_orig_addr)
280 goto cleanup3;
281
Becky Brucebc40ac62008-12-22 10:26:08 -0800282 memset(io_tlb_orig_addr, 0, io_tlb_nslabs * sizeof(phys_addr_t));
Alex Williamson0b9afed2005-09-06 11:20:49 -0600283
284 /*
285 * Get the overflow emergency buffer
286 */
287 io_tlb_overflow_buffer = (void *)__get_free_pages(GFP_DMA,
288 get_order(io_tlb_overflow));
289 if (!io_tlb_overflow_buffer)
290 goto cleanup4;
291
Ian Campbell2e5b2b82008-12-16 12:17:34 -0800292 swiotlb_print_info(bytes);
Alex Williamson0b9afed2005-09-06 11:20:49 -0600293
294 return 0;
295
296cleanup4:
Becky Brucebc40ac62008-12-22 10:26:08 -0800297 free_pages((unsigned long)io_tlb_orig_addr,
298 get_order(io_tlb_nslabs * sizeof(phys_addr_t)));
Alex Williamson0b9afed2005-09-06 11:20:49 -0600299 io_tlb_orig_addr = NULL;
300cleanup3:
Tony Luck25667d62007-03-06 13:31:45 -0800301 free_pages((unsigned long)io_tlb_list, get_order(io_tlb_nslabs *
302 sizeof(int)));
Alex Williamson0b9afed2005-09-06 11:20:49 -0600303 io_tlb_list = NULL;
Alex Williamson0b9afed2005-09-06 11:20:49 -0600304cleanup2:
Jan Beulich563aaf02007-02-05 18:51:25 -0800305 io_tlb_end = NULL;
Alex Williamson0b9afed2005-09-06 11:20:49 -0600306 free_pages((unsigned long)io_tlb_start, order);
307 io_tlb_start = NULL;
308cleanup1:
309 io_tlb_nslabs = req_nslabs;
310 return -ENOMEM;
311}
312
Andrew Mortonbe6b0262007-02-12 00:52:17 -0800313static int
FUJITA Tomonori27979822008-09-10 01:06:49 +0900314address_needs_mapping(struct device *hwdev, dma_addr_t addr, size_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315{
FUJITA Tomonori07a2c012008-09-19 02:02:05 +0900316 return !is_buffer_dma_capable(dma_get_mask(hwdev), addr, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317}
318
Ian Campbellb81ea272008-12-16 12:17:31 -0800319static inline int range_needs_mapping(void *ptr, size_t size)
320{
321 return swiotlb_force || swiotlb_arch_range_needs_mapping(ptr, size);
322}
323
FUJITA Tomonori640aebf2008-09-08 18:53:50 +0900324static int is_swiotlb_buffer(char *addr)
325{
326 return addr >= io_tlb_start && addr < io_tlb_end;
327}
328
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329/*
Becky Brucefb05a372008-12-22 10:26:09 -0800330 * Bounce: copy the swiotlb buffer back to the original dma location
331 */
332static void swiotlb_bounce(phys_addr_t phys, char *dma_addr, size_t size,
333 enum dma_data_direction dir)
334{
335 unsigned long pfn = PFN_DOWN(phys);
336
337 if (PageHighMem(pfn_to_page(pfn))) {
338 /* The buffer does not have a mapping. Map it in and copy */
339 unsigned int offset = phys & ~PAGE_MASK;
340 char *buffer;
341 unsigned int sz = 0;
342 unsigned long flags;
343
344 while (size) {
345 sz = min(PAGE_SIZE - offset, size);
346
347 local_irq_save(flags);
348 buffer = kmap_atomic(pfn_to_page(pfn),
349 KM_BOUNCE_READ);
350 if (dir == DMA_TO_DEVICE)
351 memcpy(dma_addr, buffer + offset, sz);
352 else
353 memcpy(buffer + offset, dma_addr, sz);
354 kunmap_atomic(buffer, KM_BOUNCE_READ);
355 local_irq_restore(flags);
356
357 size -= sz;
358 pfn++;
359 dma_addr += sz;
360 offset = 0;
361 }
362 } else {
363 if (dir == DMA_TO_DEVICE)
364 memcpy(dma_addr, phys_to_virt(phys), size);
365 else
366 memcpy(phys_to_virt(phys), dma_addr, size);
367 }
368}
369
370/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 * Allocates bounce buffer and returns its kernel virtual address.
372 */
373static void *
Becky Brucebc40ac62008-12-22 10:26:08 -0800374map_single(struct device *hwdev, phys_addr_t phys, size_t size, int dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375{
376 unsigned long flags;
377 char *dma_addr;
378 unsigned int nslots, stride, index, wrap;
379 int i;
FUJITA Tomonori681cc5c2008-02-04 22:28:16 -0800380 unsigned long start_dma_addr;
381 unsigned long mask;
382 unsigned long offset_slots;
383 unsigned long max_slots;
384
385 mask = dma_get_seg_boundary(hwdev);
Jeremy Fitzhardinge70a7d3c2008-12-22 10:26:05 -0800386 start_dma_addr = swiotlb_virt_to_bus(hwdev, io_tlb_start) & mask;
FUJITA Tomonori681cc5c2008-02-04 22:28:16 -0800387
388 offset_slots = ALIGN(start_dma_addr, 1 << IO_TLB_SHIFT) >> IO_TLB_SHIFT;
Ian Campbella5ddde4a2008-12-16 12:17:29 -0800389
390 /*
391 * Carefully handle integer overflow which can occur when mask == ~0UL.
392 */
Jan Beulichb15a38912008-03-13 09:13:30 +0000393 max_slots = mask + 1
394 ? ALIGN(mask + 1, 1 << IO_TLB_SHIFT) >> IO_TLB_SHIFT
395 : 1UL << (BITS_PER_LONG - IO_TLB_SHIFT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396
397 /*
398 * For mappings greater than a page, we limit the stride (and
399 * hence alignment) to a page size.
400 */
401 nslots = ALIGN(size, 1 << IO_TLB_SHIFT) >> IO_TLB_SHIFT;
402 if (size > PAGE_SIZE)
403 stride = (1 << (PAGE_SHIFT - IO_TLB_SHIFT));
404 else
405 stride = 1;
406
Eric Sesterhenn34814542006-03-24 18:47:11 +0100407 BUG_ON(!nslots);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408
409 /*
410 * Find suitable number of IO TLB entries size that will fit this
411 * request and allocate a buffer from that IO TLB pool.
412 */
413 spin_lock_irqsave(&io_tlb_lock, flags);
Andrew Mortona7133a12008-04-29 00:59:36 -0700414 index = ALIGN(io_tlb_index, stride);
415 if (index >= io_tlb_nslabs)
416 index = 0;
417 wrap = index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418
Andrew Mortona7133a12008-04-29 00:59:36 -0700419 do {
FUJITA Tomonoria8522502008-04-29 00:59:36 -0700420 while (iommu_is_span_boundary(index, nslots, offset_slots,
421 max_slots)) {
Jan Beulichb15a38912008-03-13 09:13:30 +0000422 index += stride;
423 if (index >= io_tlb_nslabs)
424 index = 0;
Andrew Mortona7133a12008-04-29 00:59:36 -0700425 if (index == wrap)
426 goto not_found;
427 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428
Andrew Mortona7133a12008-04-29 00:59:36 -0700429 /*
430 * If we find a slot that indicates we have 'nslots' number of
431 * contiguous buffers, we allocate the buffers from that slot
432 * and mark the entries as '0' indicating unavailable.
433 */
434 if (io_tlb_list[index] >= nslots) {
435 int count = 0;
436
437 for (i = index; i < (int) (index + nslots); i++)
438 io_tlb_list[i] = 0;
439 for (i = index - 1; (OFFSET(i, IO_TLB_SEGSIZE) != IO_TLB_SEGSIZE - 1) && io_tlb_list[i]; i--)
440 io_tlb_list[i] = ++count;
441 dma_addr = io_tlb_start + (index << IO_TLB_SHIFT);
442
443 /*
444 * Update the indices to avoid searching in the next
445 * round.
446 */
447 io_tlb_index = ((index + nslots) < io_tlb_nslabs
448 ? (index + nslots) : 0);
449
450 goto found;
451 }
452 index += stride;
453 if (index >= io_tlb_nslabs)
454 index = 0;
455 } while (index != wrap);
456
457not_found:
458 spin_unlock_irqrestore(&io_tlb_lock, flags);
459 return NULL;
460found:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 spin_unlock_irqrestore(&io_tlb_lock, flags);
462
463 /*
464 * Save away the mapping from the original address to the DMA address.
465 * This is needed when we sync the memory. Then we sync the buffer if
466 * needed.
467 */
Becky Brucebc40ac62008-12-22 10:26:08 -0800468 for (i = 0; i < nslots; i++)
469 io_tlb_orig_addr[index+i] = phys + (i << IO_TLB_SHIFT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 if (dir == DMA_TO_DEVICE || dir == DMA_BIDIRECTIONAL)
Becky Brucefb05a372008-12-22 10:26:09 -0800471 swiotlb_bounce(phys, dma_addr, size, DMA_TO_DEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472
473 return dma_addr;
474}
475
476/*
477 * dma_addr is the kernel virtual address of the bounce buffer to unmap.
478 */
479static void
480unmap_single(struct device *hwdev, char *dma_addr, size_t size, int dir)
481{
482 unsigned long flags;
483 int i, count, nslots = ALIGN(size, 1 << IO_TLB_SHIFT) >> IO_TLB_SHIFT;
484 int index = (dma_addr - io_tlb_start) >> IO_TLB_SHIFT;
Becky Brucebc40ac62008-12-22 10:26:08 -0800485 phys_addr_t phys = io_tlb_orig_addr[index];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486
487 /*
488 * First, sync the memory before unmapping the entry
489 */
Becky Brucebc40ac62008-12-22 10:26:08 -0800490 if (phys && ((dir == DMA_FROM_DEVICE) || (dir == DMA_BIDIRECTIONAL)))
Becky Brucefb05a372008-12-22 10:26:09 -0800491 swiotlb_bounce(phys, dma_addr, size, DMA_FROM_DEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492
493 /*
494 * Return the buffer to the free list by setting the corresponding
495 * entries to indicate the number of contigous entries available.
496 * While returning the entries to the free list, we merge the entries
497 * with slots below and above the pool being returned.
498 */
499 spin_lock_irqsave(&io_tlb_lock, flags);
500 {
501 count = ((index + nslots) < ALIGN(index + 1, IO_TLB_SEGSIZE) ?
502 io_tlb_list[index + nslots] : 0);
503 /*
504 * Step 1: return the slots to the free list, merging the
505 * slots with superceeding slots
506 */
507 for (i = index + nslots - 1; i >= index; i--)
508 io_tlb_list[i] = ++count;
509 /*
510 * Step 2: merge the returned slots with the preceding slots,
511 * if available (non zero)
512 */
513 for (i = index - 1; (OFFSET(i, IO_TLB_SEGSIZE) != IO_TLB_SEGSIZE -1) && io_tlb_list[i]; i--)
514 io_tlb_list[i] = ++count;
515 }
516 spin_unlock_irqrestore(&io_tlb_lock, flags);
517}
518
519static void
John W. Linvillede69e0f2005-09-29 14:44:57 -0700520sync_single(struct device *hwdev, char *dma_addr, size_t size,
521 int dir, int target)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522{
Becky Brucebc40ac62008-12-22 10:26:08 -0800523 int index = (dma_addr - io_tlb_start) >> IO_TLB_SHIFT;
524 phys_addr_t phys = io_tlb_orig_addr[index];
525
526 phys += ((unsigned long)dma_addr & ((1 << IO_TLB_SHIFT) - 1));
Keir Fraserdf336d12007-07-21 04:37:24 -0700527
John W. Linvillede69e0f2005-09-29 14:44:57 -0700528 switch (target) {
529 case SYNC_FOR_CPU:
530 if (likely(dir == DMA_FROM_DEVICE || dir == DMA_BIDIRECTIONAL))
Becky Brucefb05a372008-12-22 10:26:09 -0800531 swiotlb_bounce(phys, dma_addr, size, DMA_FROM_DEVICE);
Eric Sesterhenn34814542006-03-24 18:47:11 +0100532 else
533 BUG_ON(dir != DMA_TO_DEVICE);
John W. Linvillede69e0f2005-09-29 14:44:57 -0700534 break;
535 case SYNC_FOR_DEVICE:
536 if (likely(dir == DMA_TO_DEVICE || dir == DMA_BIDIRECTIONAL))
Becky Brucefb05a372008-12-22 10:26:09 -0800537 swiotlb_bounce(phys, dma_addr, size, DMA_TO_DEVICE);
Eric Sesterhenn34814542006-03-24 18:47:11 +0100538 else
539 BUG_ON(dir != DMA_FROM_DEVICE);
John W. Linvillede69e0f2005-09-29 14:44:57 -0700540 break;
541 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 BUG();
John W. Linvillede69e0f2005-09-29 14:44:57 -0700543 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544}
545
546void *
547swiotlb_alloc_coherent(struct device *hwdev, size_t size,
Al Viro06a54492005-10-21 03:21:03 -0400548 dma_addr_t *dma_handle, gfp_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549{
Jan Beulich563aaf02007-02-05 18:51:25 -0800550 dma_addr_t dev_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 void *ret;
552 int order = get_order(size);
FUJITA Tomonori1e74f302008-11-17 16:24:34 +0900553 u64 dma_mask = DMA_32BIT_MASK;
554
555 if (hwdev && hwdev->coherent_dma_mask)
556 dma_mask = hwdev->coherent_dma_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557
Tony Luck25667d62007-03-06 13:31:45 -0800558 ret = (void *)__get_free_pages(flags, order);
Jeremy Fitzhardinge70a7d3c2008-12-22 10:26:05 -0800559 if (ret &&
560 !is_buffer_dma_capable(dma_mask, swiotlb_virt_to_bus(hwdev, ret),
561 size)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 /*
563 * The allocated memory isn't reachable by the device.
564 * Fall back on swiotlb_map_single().
565 */
566 free_pages((unsigned long) ret, order);
567 ret = NULL;
568 }
569 if (!ret) {
570 /*
571 * We are either out of memory or the device can't DMA
572 * to GFP_DMA memory; fall back on
573 * swiotlb_map_single(), which will grab memory from
574 * the lowest available address range.
575 */
Becky Brucebc40ac62008-12-22 10:26:08 -0800576 ret = map_single(hwdev, 0, size, DMA_FROM_DEVICE);
FUJITA Tomonori9dfda122008-09-08 18:53:48 +0900577 if (!ret)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 }
580
581 memset(ret, 0, size);
Jeremy Fitzhardinge70a7d3c2008-12-22 10:26:05 -0800582 dev_addr = swiotlb_virt_to_bus(hwdev, ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583
584 /* Confirm address can be DMA'd by device */
FUJITA Tomonori1e74f302008-11-17 16:24:34 +0900585 if (!is_buffer_dma_capable(dma_mask, dev_addr, size)) {
Jan Beulich563aaf02007-02-05 18:51:25 -0800586 printk("hwdev DMA mask = 0x%016Lx, dev_addr = 0x%016Lx\n",
FUJITA Tomonori1e74f302008-11-17 16:24:34 +0900587 (unsigned long long)dma_mask,
Jan Beulich563aaf02007-02-05 18:51:25 -0800588 (unsigned long long)dev_addr);
FUJITA Tomonoria2b89b52008-10-23 18:42:03 +0900589
590 /* DMA_TO_DEVICE to avoid memcpy in unmap_single */
591 unmap_single(hwdev, ret, size, DMA_TO_DEVICE);
592 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 }
594 *dma_handle = dev_addr;
595 return ret;
596}
597
598void
599swiotlb_free_coherent(struct device *hwdev, size_t size, void *vaddr,
600 dma_addr_t dma_handle)
601{
David Brownellaa248862007-08-10 13:10:27 -0700602 WARN_ON(irqs_disabled());
FUJITA Tomonori640aebf2008-09-08 18:53:50 +0900603 if (!is_swiotlb_buffer(vaddr))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 free_pages((unsigned long) vaddr, get_order(size));
605 else
606 /* DMA_TO_DEVICE to avoid memcpy in unmap_single */
FUJITA Tomonori21f6c4d2008-09-08 18:53:49 +0900607 unmap_single(hwdev, vaddr, size, DMA_TO_DEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608}
609
610static void
611swiotlb_full(struct device *dev, size_t size, int dir, int do_panic)
612{
613 /*
614 * Ran out of IOMMU space for this operation. This is very bad.
615 * Unfortunately the drivers cannot handle this operation properly.
Tony Luck17e5ad62005-09-29 15:52:13 -0700616 * unless they check for dma_mapping_error (most don't)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 * When the mapping is small enough return a static buffer to limit
618 * the damage, or panic when the transfer is too big.
619 */
Jan Beulich563aaf02007-02-05 18:51:25 -0800620 printk(KERN_ERR "DMA: Out of SW-IOMMU space for %zu bytes at "
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 "device %s\n", size, dev ? dev->bus_id : "?");
622
623 if (size > io_tlb_overflow && do_panic) {
Tony Luck17e5ad62005-09-29 15:52:13 -0700624 if (dir == DMA_FROM_DEVICE || dir == DMA_BIDIRECTIONAL)
625 panic("DMA: Memory would be corrupted\n");
626 if (dir == DMA_TO_DEVICE || dir == DMA_BIDIRECTIONAL)
627 panic("DMA: Random memory would be DMAed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 }
629}
630
631/*
632 * Map a single buffer of the indicated size for DMA in streaming mode. The
Tony Luck17e5ad62005-09-29 15:52:13 -0700633 * physical address to use is returned.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 *
635 * Once the device is given the dma address, the device owns this memory until
636 * either swiotlb_unmap_single or swiotlb_dma_sync_single is performed.
637 */
638dma_addr_t
Arthur Kepner309df0c2008-04-29 01:00:32 -0700639swiotlb_map_single_attrs(struct device *hwdev, void *ptr, size_t size,
640 int dir, struct dma_attrs *attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641{
Jeremy Fitzhardinge70a7d3c2008-12-22 10:26:05 -0800642 dma_addr_t dev_addr = swiotlb_virt_to_bus(hwdev, ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 void *map;
644
Eric Sesterhenn34814542006-03-24 18:47:11 +0100645 BUG_ON(dir == DMA_NONE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 /*
647 * If the pointer passed in happens to be in the device's DMA window,
648 * we can safely return the device addr and not worry about bounce
649 * buffering it.
650 */
Ian Campbellb81ea272008-12-16 12:17:31 -0800651 if (!address_needs_mapping(hwdev, dev_addr, size) &&
652 !range_needs_mapping(ptr, size))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 return dev_addr;
654
655 /*
656 * Oh well, have to allocate and map a bounce buffer.
657 */
Becky Brucebc40ac62008-12-22 10:26:08 -0800658 map = map_single(hwdev, virt_to_phys(ptr), size, dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 if (!map) {
660 swiotlb_full(hwdev, size, dir, 1);
661 map = io_tlb_overflow_buffer;
662 }
663
Jeremy Fitzhardinge70a7d3c2008-12-22 10:26:05 -0800664 dev_addr = swiotlb_virt_to_bus(hwdev, map);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665
666 /*
667 * Ensure that the address returned is DMA'ble
668 */
FUJITA Tomonori27979822008-09-10 01:06:49 +0900669 if (address_needs_mapping(hwdev, dev_addr, size))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 panic("map_single: bounce buffer is not DMA'ble");
671
672 return dev_addr;
673}
Arthur Kepner309df0c2008-04-29 01:00:32 -0700674EXPORT_SYMBOL(swiotlb_map_single_attrs);
675
676dma_addr_t
677swiotlb_map_single(struct device *hwdev, void *ptr, size_t size, int dir)
678{
679 return swiotlb_map_single_attrs(hwdev, ptr, size, dir, NULL);
680}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681
682/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 * Unmap a single streaming mode DMA translation. The dma_addr and size must
684 * match what was provided for in a previous swiotlb_map_single call. All
685 * other usages are undefined.
686 *
687 * After this call, reads by the cpu to the buffer are guaranteed to see
688 * whatever the device wrote there.
689 */
690void
Arthur Kepner309df0c2008-04-29 01:00:32 -0700691swiotlb_unmap_single_attrs(struct device *hwdev, dma_addr_t dev_addr,
692 size_t size, int dir, struct dma_attrs *attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693{
Ian Campbelle08e1f72008-12-16 12:17:30 -0800694 char *dma_addr = swiotlb_bus_to_virt(dev_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695
Eric Sesterhenn34814542006-03-24 18:47:11 +0100696 BUG_ON(dir == DMA_NONE);
FUJITA Tomonori640aebf2008-09-08 18:53:50 +0900697 if (is_swiotlb_buffer(dma_addr))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 unmap_single(hwdev, dma_addr, size, dir);
699 else if (dir == DMA_FROM_DEVICE)
Jan Beulichcde14bb2007-02-05 18:46:40 -0800700 dma_mark_clean(dma_addr, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701}
Arthur Kepner309df0c2008-04-29 01:00:32 -0700702EXPORT_SYMBOL(swiotlb_unmap_single_attrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703
Arthur Kepner309df0c2008-04-29 01:00:32 -0700704void
705swiotlb_unmap_single(struct device *hwdev, dma_addr_t dev_addr, size_t size,
706 int dir)
707{
708 return swiotlb_unmap_single_attrs(hwdev, dev_addr, size, dir, NULL);
709}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710/*
711 * Make physical memory consistent for a single streaming mode DMA translation
712 * after a transfer.
713 *
714 * If you perform a swiotlb_map_single() but wish to interrogate the buffer
Tony Luck17e5ad62005-09-29 15:52:13 -0700715 * using the cpu, yet do not wish to teardown the dma mapping, you must
716 * call this function before doing so. At the next point you give the dma
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717 * address back to the card, you must first perform a
718 * swiotlb_dma_sync_for_device, and then the device again owns the buffer
719 */
Andrew Mortonbe6b0262007-02-12 00:52:17 -0800720static void
John W. Linville8270f3f2005-09-29 14:43:32 -0700721swiotlb_sync_single(struct device *hwdev, dma_addr_t dev_addr,
John W. Linvillede69e0f2005-09-29 14:44:57 -0700722 size_t size, int dir, int target)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723{
Ian Campbelle08e1f72008-12-16 12:17:30 -0800724 char *dma_addr = swiotlb_bus_to_virt(dev_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725
Eric Sesterhenn34814542006-03-24 18:47:11 +0100726 BUG_ON(dir == DMA_NONE);
FUJITA Tomonori640aebf2008-09-08 18:53:50 +0900727 if (is_swiotlb_buffer(dma_addr))
John W. Linvillede69e0f2005-09-29 14:44:57 -0700728 sync_single(hwdev, dma_addr, size, dir, target);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 else if (dir == DMA_FROM_DEVICE)
Jan Beulichcde14bb2007-02-05 18:46:40 -0800730 dma_mark_clean(dma_addr, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731}
732
733void
John W. Linville8270f3f2005-09-29 14:43:32 -0700734swiotlb_sync_single_for_cpu(struct device *hwdev, dma_addr_t dev_addr,
735 size_t size, int dir)
736{
John W. Linvillede69e0f2005-09-29 14:44:57 -0700737 swiotlb_sync_single(hwdev, dev_addr, size, dir, SYNC_FOR_CPU);
John W. Linville8270f3f2005-09-29 14:43:32 -0700738}
739
740void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741swiotlb_sync_single_for_device(struct device *hwdev, dma_addr_t dev_addr,
742 size_t size, int dir)
743{
John W. Linvillede69e0f2005-09-29 14:44:57 -0700744 swiotlb_sync_single(hwdev, dev_addr, size, dir, SYNC_FOR_DEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745}
746
747/*
John W. Linville878a97c2005-09-29 14:44:23 -0700748 * Same as above, but for a sub-range of the mapping.
749 */
Andrew Mortonbe6b0262007-02-12 00:52:17 -0800750static void
John W. Linville878a97c2005-09-29 14:44:23 -0700751swiotlb_sync_single_range(struct device *hwdev, dma_addr_t dev_addr,
John W. Linvillede69e0f2005-09-29 14:44:57 -0700752 unsigned long offset, size_t size,
753 int dir, int target)
John W. Linville878a97c2005-09-29 14:44:23 -0700754{
Ian Campbelle08e1f72008-12-16 12:17:30 -0800755 char *dma_addr = swiotlb_bus_to_virt(dev_addr) + offset;
John W. Linville878a97c2005-09-29 14:44:23 -0700756
Eric Sesterhenn34814542006-03-24 18:47:11 +0100757 BUG_ON(dir == DMA_NONE);
FUJITA Tomonori640aebf2008-09-08 18:53:50 +0900758 if (is_swiotlb_buffer(dma_addr))
John W. Linvillede69e0f2005-09-29 14:44:57 -0700759 sync_single(hwdev, dma_addr, size, dir, target);
John W. Linville878a97c2005-09-29 14:44:23 -0700760 else if (dir == DMA_FROM_DEVICE)
Jan Beulichcde14bb2007-02-05 18:46:40 -0800761 dma_mark_clean(dma_addr, size);
John W. Linville878a97c2005-09-29 14:44:23 -0700762}
763
764void
765swiotlb_sync_single_range_for_cpu(struct device *hwdev, dma_addr_t dev_addr,
766 unsigned long offset, size_t size, int dir)
767{
John W. Linvillede69e0f2005-09-29 14:44:57 -0700768 swiotlb_sync_single_range(hwdev, dev_addr, offset, size, dir,
769 SYNC_FOR_CPU);
John W. Linville878a97c2005-09-29 14:44:23 -0700770}
771
772void
773swiotlb_sync_single_range_for_device(struct device *hwdev, dma_addr_t dev_addr,
774 unsigned long offset, size_t size, int dir)
775{
John W. Linvillede69e0f2005-09-29 14:44:57 -0700776 swiotlb_sync_single_range(hwdev, dev_addr, offset, size, dir,
777 SYNC_FOR_DEVICE);
John W. Linville878a97c2005-09-29 14:44:23 -0700778}
779
Arthur Kepner309df0c2008-04-29 01:00:32 -0700780void swiotlb_unmap_sg_attrs(struct device *, struct scatterlist *, int, int,
781 struct dma_attrs *);
John W. Linville878a97c2005-09-29 14:44:23 -0700782/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 * Map a set of buffers described by scatterlist in streaming mode for DMA.
784 * This is the scatter-gather version of the above swiotlb_map_single
785 * interface. Here the scatter gather list elements are each tagged with the
786 * appropriate dma address and length. They are obtained via
787 * sg_dma_{address,length}(SG).
788 *
789 * NOTE: An implementation may be able to use a smaller number of
790 * DMA address/length pairs than there are SG table elements.
791 * (for example via virtual mapping capabilities)
792 * The routine returns the number of addr/length pairs actually
793 * used, at most nents.
794 *
795 * Device ownership issues as mentioned above for swiotlb_map_single are the
796 * same here.
797 */
798int
Arthur Kepner309df0c2008-04-29 01:00:32 -0700799swiotlb_map_sg_attrs(struct device *hwdev, struct scatterlist *sgl, int nelems,
800 int dir, struct dma_attrs *attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801{
Jens Axboedbfd49f2007-05-11 14:56:18 +0200802 struct scatterlist *sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 int i;
804
Eric Sesterhenn34814542006-03-24 18:47:11 +0100805 BUG_ON(dir == DMA_NONE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806
Jens Axboedbfd49f2007-05-11 14:56:18 +0200807 for_each_sg(sgl, sg, nelems, i) {
Becky Brucebc40ac62008-12-22 10:26:08 -0800808 void *addr = sg_virt(sg);
809 dma_addr_t dev_addr = swiotlb_virt_to_bus(hwdev, addr);
810
811 if (range_needs_mapping(addr, sg->length) ||
FUJITA Tomonori27979822008-09-10 01:06:49 +0900812 address_needs_mapping(hwdev, dev_addr, sg->length)) {
Becky Brucebc40ac62008-12-22 10:26:08 -0800813 void *map = map_single(hwdev, sg_phys(sg),
814 sg->length, dir);
Andi Kleen7e870232005-12-20 14:45:19 +0100815 if (!map) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 /* Don't panic here, we expect map_sg users
817 to do proper error handling. */
818 swiotlb_full(hwdev, sg->length, dir, 0);
Arthur Kepner309df0c2008-04-29 01:00:32 -0700819 swiotlb_unmap_sg_attrs(hwdev, sgl, i, dir,
820 attrs);
Jens Axboedbfd49f2007-05-11 14:56:18 +0200821 sgl[0].dma_length = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 return 0;
823 }
Jeremy Fitzhardinge70a7d3c2008-12-22 10:26:05 -0800824 sg->dma_address = swiotlb_virt_to_bus(hwdev, map);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 } else
826 sg->dma_address = dev_addr;
827 sg->dma_length = sg->length;
828 }
829 return nelems;
830}
Arthur Kepner309df0c2008-04-29 01:00:32 -0700831EXPORT_SYMBOL(swiotlb_map_sg_attrs);
832
833int
834swiotlb_map_sg(struct device *hwdev, struct scatterlist *sgl, int nelems,
835 int dir)
836{
837 return swiotlb_map_sg_attrs(hwdev, sgl, nelems, dir, NULL);
838}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839
840/*
841 * Unmap a set of streaming mode DMA translations. Again, cpu read rules
842 * concerning calls here are the same as for swiotlb_unmap_single() above.
843 */
844void
Arthur Kepner309df0c2008-04-29 01:00:32 -0700845swiotlb_unmap_sg_attrs(struct device *hwdev, struct scatterlist *sgl,
846 int nelems, int dir, struct dma_attrs *attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847{
Jens Axboedbfd49f2007-05-11 14:56:18 +0200848 struct scatterlist *sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 int i;
850
Eric Sesterhenn34814542006-03-24 18:47:11 +0100851 BUG_ON(dir == DMA_NONE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852
Jens Axboedbfd49f2007-05-11 14:56:18 +0200853 for_each_sg(sgl, sg, nelems, i) {
Becky Brucefb05a372008-12-22 10:26:09 -0800854 if (sg->dma_address != swiotlb_virt_to_bus(hwdev, sg_virt(sg)))
Ian Campbelle08e1f72008-12-16 12:17:30 -0800855 unmap_single(hwdev, swiotlb_bus_to_virt(sg->dma_address),
Jan Beulich93fbff62007-02-05 18:49:45 -0800856 sg->dma_length, dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 else if (dir == DMA_FROM_DEVICE)
Becky Brucefb05a372008-12-22 10:26:09 -0800858 dma_mark_clean(sg_virt(sg), sg->dma_length);
Jens Axboedbfd49f2007-05-11 14:56:18 +0200859 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860}
Arthur Kepner309df0c2008-04-29 01:00:32 -0700861EXPORT_SYMBOL(swiotlb_unmap_sg_attrs);
862
863void
864swiotlb_unmap_sg(struct device *hwdev, struct scatterlist *sgl, int nelems,
865 int dir)
866{
867 return swiotlb_unmap_sg_attrs(hwdev, sgl, nelems, dir, NULL);
868}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869
870/*
871 * Make physical memory consistent for a set of streaming mode DMA translations
872 * after a transfer.
873 *
874 * The same as swiotlb_sync_single_* but for a scatter-gather list, same rules
875 * and usage.
876 */
Andrew Mortonbe6b0262007-02-12 00:52:17 -0800877static void
Jens Axboedbfd49f2007-05-11 14:56:18 +0200878swiotlb_sync_sg(struct device *hwdev, struct scatterlist *sgl,
John W. Linvillede69e0f2005-09-29 14:44:57 -0700879 int nelems, int dir, int target)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880{
Jens Axboedbfd49f2007-05-11 14:56:18 +0200881 struct scatterlist *sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882 int i;
883
Eric Sesterhenn34814542006-03-24 18:47:11 +0100884 BUG_ON(dir == DMA_NONE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885
Jens Axboedbfd49f2007-05-11 14:56:18 +0200886 for_each_sg(sgl, sg, nelems, i) {
Becky Brucefb05a372008-12-22 10:26:09 -0800887 if (sg->dma_address != swiotlb_virt_to_bus(hwdev, sg_virt(sg)))
Ian Campbelle08e1f72008-12-16 12:17:30 -0800888 sync_single(hwdev, swiotlb_bus_to_virt(sg->dma_address),
John W. Linvillede69e0f2005-09-29 14:44:57 -0700889 sg->dma_length, dir, target);
Jan Beulichcde14bb2007-02-05 18:46:40 -0800890 else if (dir == DMA_FROM_DEVICE)
Becky Brucefb05a372008-12-22 10:26:09 -0800891 dma_mark_clean(sg_virt(sg), sg->dma_length);
Jens Axboedbfd49f2007-05-11 14:56:18 +0200892 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893}
894
895void
John W. Linville8270f3f2005-09-29 14:43:32 -0700896swiotlb_sync_sg_for_cpu(struct device *hwdev, struct scatterlist *sg,
897 int nelems, int dir)
898{
John W. Linvillede69e0f2005-09-29 14:44:57 -0700899 swiotlb_sync_sg(hwdev, sg, nelems, dir, SYNC_FOR_CPU);
John W. Linville8270f3f2005-09-29 14:43:32 -0700900}
901
902void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903swiotlb_sync_sg_for_device(struct device *hwdev, struct scatterlist *sg,
904 int nelems, int dir)
905{
John W. Linvillede69e0f2005-09-29 14:44:57 -0700906 swiotlb_sync_sg(hwdev, sg, nelems, dir, SYNC_FOR_DEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907}
908
909int
FUJITA Tomonori8d8bb392008-07-25 19:44:49 -0700910swiotlb_dma_mapping_error(struct device *hwdev, dma_addr_t dma_addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911{
Jeremy Fitzhardinge70a7d3c2008-12-22 10:26:05 -0800912 return (dma_addr == swiotlb_virt_to_bus(hwdev, io_tlb_overflow_buffer));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913}
914
915/*
Tony Luck17e5ad62005-09-29 15:52:13 -0700916 * Return whether the given device DMA address mask can be supported
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917 * properly. For example, if your device can only drive the low 24-bits
Tony Luck17e5ad62005-09-29 15:52:13 -0700918 * during bus mastering, then you would pass 0x00ffffff as the mask to
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919 * this function.
920 */
921int
Jan Beulich563aaf02007-02-05 18:51:25 -0800922swiotlb_dma_supported(struct device *hwdev, u64 mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923{
Jeremy Fitzhardinge70a7d3c2008-12-22 10:26:05 -0800924 return swiotlb_virt_to_bus(hwdev, io_tlb_end - 1) <= mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925}
926
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927EXPORT_SYMBOL(swiotlb_map_single);
928EXPORT_SYMBOL(swiotlb_unmap_single);
929EXPORT_SYMBOL(swiotlb_map_sg);
930EXPORT_SYMBOL(swiotlb_unmap_sg);
931EXPORT_SYMBOL(swiotlb_sync_single_for_cpu);
932EXPORT_SYMBOL(swiotlb_sync_single_for_device);
John W. Linville878a97c2005-09-29 14:44:23 -0700933EXPORT_SYMBOL_GPL(swiotlb_sync_single_range_for_cpu);
934EXPORT_SYMBOL_GPL(swiotlb_sync_single_range_for_device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935EXPORT_SYMBOL(swiotlb_sync_sg_for_cpu);
936EXPORT_SYMBOL(swiotlb_sync_sg_for_device);
937EXPORT_SYMBOL(swiotlb_dma_mapping_error);
Tony Luck25667d62007-03-06 13:31:45 -0800938EXPORT_SYMBOL(swiotlb_alloc_coherent);
939EXPORT_SYMBOL(swiotlb_free_coherent);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940EXPORT_SYMBOL(swiotlb_dma_supported);