Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Dynamic DMA mapping support. |
| 3 | * |
Jan Beulich | 563aaf0 | 2007-02-05 18:51:25 -0800 | [diff] [blame] | 4 | * This implementation is a fallback for platforms that do not support |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5 | * 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. Linville | 569c8bf | 2005-09-29 14:45:24 -0700 | [diff] [blame] | 14 | * 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | */ |
| 18 | |
| 19 | #include <linux/cache.h> |
Tony Luck | 17e5ad6 | 2005-09-29 15:52:13 -0700 | [diff] [blame] | 20 | #include <linux/dma-mapping.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 21 | #include <linux/mm.h> |
| 22 | #include <linux/module.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 | #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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | #include <asm/dma.h> |
Tony Luck | 17e5ad6 | 2005-09-29 15:52:13 -0700 | [diff] [blame] | 30 | #include <asm/scatterlist.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | |
| 32 | #include <linux/init.h> |
| 33 | #include <linux/bootmem.h> |
| 34 | |
| 35 | #define OFFSET(val,align) ((unsigned long) \ |
| 36 | ( (val) & ( (align) - 1))) |
| 37 | |
Jens Axboe | f9527f1 | 2007-10-22 19:44:53 +0200 | [diff] [blame] | 38 | #define SG_ENT_VIRT_ADDRESS(sg) (sg_virt((sg))) |
Jan Beulich | 93fbff6 | 2007-02-05 18:49:45 -0800 | [diff] [blame] | 39 | #define SG_ENT_PHYS_ADDRESS(sg) virt_to_bus(SG_ENT_VIRT_ADDRESS(sg)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 40 | |
| 41 | /* |
| 42 | * Maximum allowable number of contiguous slabs to map, |
| 43 | * must be a power of 2. What is the appropriate value ? |
| 44 | * The complexity of {map,unmap}_single is linearly dependent on this value. |
| 45 | */ |
| 46 | #define IO_TLB_SEGSIZE 128 |
| 47 | |
| 48 | /* |
| 49 | * log of the size of each IO TLB slab. The number of slabs is command line |
| 50 | * controllable. |
| 51 | */ |
| 52 | #define IO_TLB_SHIFT 11 |
| 53 | |
Alex Williamson | 0b9afed | 2005-09-06 11:20:49 -0600 | [diff] [blame] | 54 | #define SLABS_PER_PAGE (1 << (PAGE_SHIFT - IO_TLB_SHIFT)) |
| 55 | |
| 56 | /* |
| 57 | * Minimum IO TLB size to bother booting with. Systems with mainly |
| 58 | * 64bit capable cards will only lightly use the swiotlb. If we can't |
| 59 | * allocate a contiguous 1MB, we're probably in trouble anyway. |
| 60 | */ |
| 61 | #define IO_TLB_MIN_SLABS ((1<<20) >> IO_TLB_SHIFT) |
| 62 | |
John W. Linville | de69e0f | 2005-09-29 14:44:57 -0700 | [diff] [blame] | 63 | /* |
| 64 | * Enumeration for sync targets |
| 65 | */ |
| 66 | enum dma_sync_target { |
| 67 | SYNC_FOR_CPU = 0, |
| 68 | SYNC_FOR_DEVICE = 1, |
| 69 | }; |
| 70 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 71 | int swiotlb_force; |
| 72 | |
| 73 | /* |
| 74 | * Used to do a quick range check in swiotlb_unmap_single and |
| 75 | * swiotlb_sync_single_*, to see if the memory was in fact allocated by this |
| 76 | * API. |
| 77 | */ |
| 78 | static char *io_tlb_start, *io_tlb_end; |
| 79 | |
| 80 | /* |
| 81 | * The number of IO TLB blocks (in groups of 64) betweeen io_tlb_start and |
| 82 | * io_tlb_end. This is command line adjustable via setup_io_tlb_npages. |
| 83 | */ |
| 84 | static unsigned long io_tlb_nslabs; |
| 85 | |
| 86 | /* |
| 87 | * When the IOMMU overflows we return a fallback buffer. This sets the size. |
| 88 | */ |
| 89 | static unsigned long io_tlb_overflow = 32*1024; |
| 90 | |
| 91 | void *io_tlb_overflow_buffer; |
| 92 | |
| 93 | /* |
| 94 | * This is a free list describing the number of free entries available from |
| 95 | * each index |
| 96 | */ |
| 97 | static unsigned int *io_tlb_list; |
| 98 | static unsigned int io_tlb_index; |
| 99 | |
| 100 | /* |
| 101 | * We need to save away the original address corresponding to a mapped entry |
| 102 | * for the sync operations. |
| 103 | */ |
Tony Luck | 25667d6 | 2007-03-06 13:31:45 -0800 | [diff] [blame] | 104 | static unsigned char **io_tlb_orig_addr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 105 | |
| 106 | /* |
| 107 | * Protect the above data structures in the map and unmap calls |
| 108 | */ |
| 109 | static DEFINE_SPINLOCK(io_tlb_lock); |
| 110 | |
| 111 | static int __init |
| 112 | setup_io_tlb_npages(char *str) |
| 113 | { |
| 114 | if (isdigit(*str)) { |
Alex Williamson | e8579e7 | 2005-08-04 13:06:00 -0700 | [diff] [blame] | 115 | io_tlb_nslabs = simple_strtoul(str, &str, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 116 | /* avoid tail segment of size < IO_TLB_SEGSIZE */ |
| 117 | io_tlb_nslabs = ALIGN(io_tlb_nslabs, IO_TLB_SEGSIZE); |
| 118 | } |
| 119 | if (*str == ',') |
| 120 | ++str; |
| 121 | if (!strcmp(str, "force")) |
| 122 | swiotlb_force = 1; |
| 123 | return 1; |
| 124 | } |
| 125 | __setup("swiotlb=", setup_io_tlb_npages); |
| 126 | /* make io_tlb_overflow tunable too? */ |
| 127 | |
| 128 | /* |
| 129 | * Statically reserve bounce buffer space and initialize bounce buffer data |
Tony Luck | 17e5ad6 | 2005-09-29 15:52:13 -0700 | [diff] [blame] | 130 | * structures for the software IO TLB used to implement the DMA API. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 131 | */ |
Jan Beulich | 563aaf0 | 2007-02-05 18:51:25 -0800 | [diff] [blame] | 132 | void __init |
| 133 | swiotlb_init_with_default_size(size_t default_size) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 134 | { |
Jan Beulich | 563aaf0 | 2007-02-05 18:51:25 -0800 | [diff] [blame] | 135 | unsigned long i, bytes; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 136 | |
| 137 | if (!io_tlb_nslabs) { |
Alex Williamson | e8579e7 | 2005-08-04 13:06:00 -0700 | [diff] [blame] | 138 | io_tlb_nslabs = (default_size >> IO_TLB_SHIFT); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 139 | io_tlb_nslabs = ALIGN(io_tlb_nslabs, IO_TLB_SEGSIZE); |
| 140 | } |
| 141 | |
Jan Beulich | 563aaf0 | 2007-02-05 18:51:25 -0800 | [diff] [blame] | 142 | bytes = io_tlb_nslabs << IO_TLB_SHIFT; |
| 143 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 144 | /* |
| 145 | * Get IO TLB memory from the low pages |
| 146 | */ |
Jan Beulich | 563aaf0 | 2007-02-05 18:51:25 -0800 | [diff] [blame] | 147 | io_tlb_start = alloc_bootmem_low_pages(bytes); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 148 | if (!io_tlb_start) |
| 149 | panic("Cannot allocate SWIOTLB buffer"); |
Jan Beulich | 563aaf0 | 2007-02-05 18:51:25 -0800 | [diff] [blame] | 150 | io_tlb_end = io_tlb_start + bytes; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 151 | |
| 152 | /* |
| 153 | * Allocate and initialize the free list array. This array is used |
| 154 | * to find contiguous free memory regions of size up to IO_TLB_SEGSIZE |
| 155 | * between io_tlb_start and io_tlb_end. |
| 156 | */ |
| 157 | io_tlb_list = alloc_bootmem(io_tlb_nslabs * sizeof(int)); |
Tony Luck | 25667d6 | 2007-03-06 13:31:45 -0800 | [diff] [blame] | 158 | for (i = 0; i < io_tlb_nslabs; i++) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 159 | io_tlb_list[i] = IO_TLB_SEGSIZE - OFFSET(i, IO_TLB_SEGSIZE); |
| 160 | io_tlb_index = 0; |
Tony Luck | 25667d6 | 2007-03-06 13:31:45 -0800 | [diff] [blame] | 161 | io_tlb_orig_addr = alloc_bootmem(io_tlb_nslabs * sizeof(char *)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 162 | |
| 163 | /* |
| 164 | * Get the overflow emergency buffer |
| 165 | */ |
| 166 | io_tlb_overflow_buffer = alloc_bootmem_low(io_tlb_overflow); |
Jan Beulich | 563aaf0 | 2007-02-05 18:51:25 -0800 | [diff] [blame] | 167 | if (!io_tlb_overflow_buffer) |
| 168 | panic("Cannot allocate SWIOTLB overflow buffer!\n"); |
| 169 | |
Tony Luck | 25667d6 | 2007-03-06 13:31:45 -0800 | [diff] [blame] | 170 | printk(KERN_INFO "Placing software IO TLB between 0x%lx - 0x%lx\n", |
| 171 | virt_to_bus(io_tlb_start), virt_to_bus(io_tlb_end)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 172 | } |
| 173 | |
Jan Beulich | 563aaf0 | 2007-02-05 18:51:25 -0800 | [diff] [blame] | 174 | void __init |
| 175 | swiotlb_init(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 176 | { |
Tony Luck | 25667d6 | 2007-03-06 13:31:45 -0800 | [diff] [blame] | 177 | swiotlb_init_with_default_size(64 * (1<<20)); /* default to 64MB */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 178 | } |
| 179 | |
Alex Williamson | 0b9afed | 2005-09-06 11:20:49 -0600 | [diff] [blame] | 180 | /* |
| 181 | * Systems with larger DMA zones (those that don't support ISA) can |
| 182 | * initialize the swiotlb later using the slab allocator if needed. |
| 183 | * This should be just like above, but with some error catching. |
| 184 | */ |
| 185 | int |
Jan Beulich | 563aaf0 | 2007-02-05 18:51:25 -0800 | [diff] [blame] | 186 | swiotlb_late_init_with_default_size(size_t default_size) |
Alex Williamson | 0b9afed | 2005-09-06 11:20:49 -0600 | [diff] [blame] | 187 | { |
Jan Beulich | 563aaf0 | 2007-02-05 18:51:25 -0800 | [diff] [blame] | 188 | unsigned long i, bytes, req_nslabs = io_tlb_nslabs; |
Alex Williamson | 0b9afed | 2005-09-06 11:20:49 -0600 | [diff] [blame] | 189 | unsigned int order; |
| 190 | |
| 191 | if (!io_tlb_nslabs) { |
| 192 | io_tlb_nslabs = (default_size >> IO_TLB_SHIFT); |
| 193 | io_tlb_nslabs = ALIGN(io_tlb_nslabs, IO_TLB_SEGSIZE); |
| 194 | } |
| 195 | |
| 196 | /* |
| 197 | * Get IO TLB memory from the low pages |
| 198 | */ |
Jan Beulich | 563aaf0 | 2007-02-05 18:51:25 -0800 | [diff] [blame] | 199 | order = get_order(io_tlb_nslabs << IO_TLB_SHIFT); |
Alex Williamson | 0b9afed | 2005-09-06 11:20:49 -0600 | [diff] [blame] | 200 | io_tlb_nslabs = SLABS_PER_PAGE << order; |
Jan Beulich | 563aaf0 | 2007-02-05 18:51:25 -0800 | [diff] [blame] | 201 | bytes = io_tlb_nslabs << IO_TLB_SHIFT; |
Alex Williamson | 0b9afed | 2005-09-06 11:20:49 -0600 | [diff] [blame] | 202 | |
| 203 | while ((SLABS_PER_PAGE << order) > IO_TLB_MIN_SLABS) { |
| 204 | io_tlb_start = (char *)__get_free_pages(GFP_DMA | __GFP_NOWARN, |
| 205 | order); |
| 206 | if (io_tlb_start) |
| 207 | break; |
| 208 | order--; |
| 209 | } |
| 210 | |
| 211 | if (!io_tlb_start) |
| 212 | goto cleanup1; |
| 213 | |
Jan Beulich | 563aaf0 | 2007-02-05 18:51:25 -0800 | [diff] [blame] | 214 | if (order != get_order(bytes)) { |
Alex Williamson | 0b9afed | 2005-09-06 11:20:49 -0600 | [diff] [blame] | 215 | printk(KERN_WARNING "Warning: only able to allocate %ld MB " |
| 216 | "for software IO TLB\n", (PAGE_SIZE << order) >> 20); |
| 217 | io_tlb_nslabs = SLABS_PER_PAGE << order; |
Jan Beulich | 563aaf0 | 2007-02-05 18:51:25 -0800 | [diff] [blame] | 218 | bytes = io_tlb_nslabs << IO_TLB_SHIFT; |
Alex Williamson | 0b9afed | 2005-09-06 11:20:49 -0600 | [diff] [blame] | 219 | } |
Jan Beulich | 563aaf0 | 2007-02-05 18:51:25 -0800 | [diff] [blame] | 220 | io_tlb_end = io_tlb_start + bytes; |
| 221 | memset(io_tlb_start, 0, bytes); |
Alex Williamson | 0b9afed | 2005-09-06 11:20:49 -0600 | [diff] [blame] | 222 | |
| 223 | /* |
| 224 | * Allocate and initialize the free list array. This array is used |
| 225 | * to find contiguous free memory regions of size up to IO_TLB_SEGSIZE |
| 226 | * between io_tlb_start and io_tlb_end. |
| 227 | */ |
| 228 | io_tlb_list = (unsigned int *)__get_free_pages(GFP_KERNEL, |
| 229 | get_order(io_tlb_nslabs * sizeof(int))); |
| 230 | if (!io_tlb_list) |
| 231 | goto cleanup2; |
| 232 | |
| 233 | for (i = 0; i < io_tlb_nslabs; i++) |
| 234 | io_tlb_list[i] = IO_TLB_SEGSIZE - OFFSET(i, IO_TLB_SEGSIZE); |
| 235 | io_tlb_index = 0; |
| 236 | |
Tony Luck | 25667d6 | 2007-03-06 13:31:45 -0800 | [diff] [blame] | 237 | io_tlb_orig_addr = (unsigned char **)__get_free_pages(GFP_KERNEL, |
| 238 | get_order(io_tlb_nslabs * sizeof(char *))); |
Alex Williamson | 0b9afed | 2005-09-06 11:20:49 -0600 | [diff] [blame] | 239 | if (!io_tlb_orig_addr) |
| 240 | goto cleanup3; |
| 241 | |
Tony Luck | 25667d6 | 2007-03-06 13:31:45 -0800 | [diff] [blame] | 242 | memset(io_tlb_orig_addr, 0, io_tlb_nslabs * sizeof(char *)); |
Alex Williamson | 0b9afed | 2005-09-06 11:20:49 -0600 | [diff] [blame] | 243 | |
| 244 | /* |
| 245 | * Get the overflow emergency buffer |
| 246 | */ |
| 247 | io_tlb_overflow_buffer = (void *)__get_free_pages(GFP_DMA, |
| 248 | get_order(io_tlb_overflow)); |
| 249 | if (!io_tlb_overflow_buffer) |
| 250 | goto cleanup4; |
| 251 | |
Tony Luck | 25667d6 | 2007-03-06 13:31:45 -0800 | [diff] [blame] | 252 | printk(KERN_INFO "Placing %luMB software IO TLB between 0x%lx - " |
| 253 | "0x%lx\n", bytes >> 20, |
| 254 | virt_to_bus(io_tlb_start), virt_to_bus(io_tlb_end)); |
Alex Williamson | 0b9afed | 2005-09-06 11:20:49 -0600 | [diff] [blame] | 255 | |
| 256 | return 0; |
| 257 | |
| 258 | cleanup4: |
Tony Luck | 25667d6 | 2007-03-06 13:31:45 -0800 | [diff] [blame] | 259 | free_pages((unsigned long)io_tlb_orig_addr, get_order(io_tlb_nslabs * |
| 260 | sizeof(char *))); |
Alex Williamson | 0b9afed | 2005-09-06 11:20:49 -0600 | [diff] [blame] | 261 | io_tlb_orig_addr = NULL; |
| 262 | cleanup3: |
Tony Luck | 25667d6 | 2007-03-06 13:31:45 -0800 | [diff] [blame] | 263 | free_pages((unsigned long)io_tlb_list, get_order(io_tlb_nslabs * |
| 264 | sizeof(int))); |
Alex Williamson | 0b9afed | 2005-09-06 11:20:49 -0600 | [diff] [blame] | 265 | io_tlb_list = NULL; |
Alex Williamson | 0b9afed | 2005-09-06 11:20:49 -0600 | [diff] [blame] | 266 | cleanup2: |
Jan Beulich | 563aaf0 | 2007-02-05 18:51:25 -0800 | [diff] [blame] | 267 | io_tlb_end = NULL; |
Alex Williamson | 0b9afed | 2005-09-06 11:20:49 -0600 | [diff] [blame] | 268 | free_pages((unsigned long)io_tlb_start, order); |
| 269 | io_tlb_start = NULL; |
| 270 | cleanup1: |
| 271 | io_tlb_nslabs = req_nslabs; |
| 272 | return -ENOMEM; |
| 273 | } |
| 274 | |
Andrew Morton | be6b026 | 2007-02-12 00:52:17 -0800 | [diff] [blame] | 275 | static int |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 276 | address_needs_mapping(struct device *hwdev, dma_addr_t addr) |
| 277 | { |
| 278 | dma_addr_t mask = 0xffffffff; |
| 279 | /* If the device has a mask, use it, otherwise default to 32 bits */ |
| 280 | if (hwdev && hwdev->dma_mask) |
| 281 | mask = *hwdev->dma_mask; |
| 282 | return (addr & ~mask) != 0; |
| 283 | } |
| 284 | |
FUJITA Tomonori | 681cc5c | 2008-02-04 22:28:16 -0800 | [diff] [blame] | 285 | static inline unsigned int is_span_boundary(unsigned int index, |
| 286 | unsigned int nslots, |
| 287 | unsigned long offset_slots, |
| 288 | unsigned long max_slots) |
| 289 | { |
| 290 | unsigned long offset = (offset_slots + index) & (max_slots - 1); |
| 291 | return offset + nslots > max_slots; |
| 292 | } |
| 293 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 294 | /* |
| 295 | * Allocates bounce buffer and returns its kernel virtual address. |
| 296 | */ |
| 297 | static void * |
Tony Luck | 25667d6 | 2007-03-06 13:31:45 -0800 | [diff] [blame] | 298 | map_single(struct device *hwdev, char *buffer, size_t size, int dir) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 299 | { |
| 300 | unsigned long flags; |
| 301 | char *dma_addr; |
| 302 | unsigned int nslots, stride, index, wrap; |
| 303 | int i; |
FUJITA Tomonori | 681cc5c | 2008-02-04 22:28:16 -0800 | [diff] [blame] | 304 | unsigned long start_dma_addr; |
| 305 | unsigned long mask; |
| 306 | unsigned long offset_slots; |
| 307 | unsigned long max_slots; |
| 308 | |
| 309 | mask = dma_get_seg_boundary(hwdev); |
| 310 | start_dma_addr = virt_to_bus(io_tlb_start) & mask; |
| 311 | |
| 312 | offset_slots = ALIGN(start_dma_addr, 1 << IO_TLB_SHIFT) >> IO_TLB_SHIFT; |
| 313 | max_slots = ALIGN(mask + 1, 1 << IO_TLB_SHIFT) >> IO_TLB_SHIFT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 314 | |
| 315 | /* |
| 316 | * For mappings greater than a page, we limit the stride (and |
| 317 | * hence alignment) to a page size. |
| 318 | */ |
| 319 | nslots = ALIGN(size, 1 << IO_TLB_SHIFT) >> IO_TLB_SHIFT; |
| 320 | if (size > PAGE_SIZE) |
| 321 | stride = (1 << (PAGE_SHIFT - IO_TLB_SHIFT)); |
| 322 | else |
| 323 | stride = 1; |
| 324 | |
Eric Sesterhenn | 3481454 | 2006-03-24 18:47:11 +0100 | [diff] [blame] | 325 | BUG_ON(!nslots); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 326 | |
| 327 | /* |
| 328 | * Find suitable number of IO TLB entries size that will fit this |
| 329 | * request and allocate a buffer from that IO TLB pool. |
| 330 | */ |
| 331 | spin_lock_irqsave(&io_tlb_lock, flags); |
| 332 | { |
FUJITA Tomonori | 681cc5c | 2008-02-04 22:28:16 -0800 | [diff] [blame] | 333 | index = ALIGN(io_tlb_index, stride); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 334 | if (index >= io_tlb_nslabs) |
FUJITA Tomonori | 681cc5c | 2008-02-04 22:28:16 -0800 | [diff] [blame] | 335 | index = 0; |
| 336 | |
| 337 | while (is_span_boundary(index, nslots, offset_slots, |
| 338 | max_slots)) { |
| 339 | index += stride; |
| 340 | if (index >= io_tlb_nslabs) |
| 341 | index = 0; |
| 342 | } |
| 343 | wrap = index; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 344 | |
| 345 | do { |
| 346 | /* |
| 347 | * If we find a slot that indicates we have 'nslots' |
| 348 | * number of contiguous buffers, we allocate the |
| 349 | * buffers from that slot and mark the entries as '0' |
| 350 | * indicating unavailable. |
| 351 | */ |
| 352 | if (io_tlb_list[index] >= nslots) { |
| 353 | int count = 0; |
| 354 | |
| 355 | for (i = index; i < (int) (index + nslots); i++) |
| 356 | io_tlb_list[i] = 0; |
| 357 | for (i = index - 1; (OFFSET(i, IO_TLB_SEGSIZE) != IO_TLB_SEGSIZE -1) && io_tlb_list[i]; i--) |
| 358 | io_tlb_list[i] = ++count; |
| 359 | dma_addr = io_tlb_start + (index << IO_TLB_SHIFT); |
| 360 | |
| 361 | /* |
| 362 | * Update the indices to avoid searching in |
| 363 | * the next round. |
| 364 | */ |
| 365 | io_tlb_index = ((index + nslots) < io_tlb_nslabs |
| 366 | ? (index + nslots) : 0); |
| 367 | |
| 368 | goto found; |
| 369 | } |
FUJITA Tomonori | 681cc5c | 2008-02-04 22:28:16 -0800 | [diff] [blame] | 370 | do { |
| 371 | index += stride; |
| 372 | if (index >= io_tlb_nslabs) |
| 373 | index = 0; |
| 374 | } while (is_span_boundary(index, nslots, offset_slots, |
| 375 | max_slots)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 376 | } while (index != wrap); |
| 377 | |
| 378 | spin_unlock_irqrestore(&io_tlb_lock, flags); |
| 379 | return NULL; |
| 380 | } |
| 381 | found: |
| 382 | spin_unlock_irqrestore(&io_tlb_lock, flags); |
| 383 | |
| 384 | /* |
| 385 | * Save away the mapping from the original address to the DMA address. |
| 386 | * This is needed when we sync the memory. Then we sync the buffer if |
| 387 | * needed. |
| 388 | */ |
Keir Fraser | df336d1 | 2007-07-21 04:37:24 -0700 | [diff] [blame] | 389 | for (i = 0; i < nslots; i++) |
| 390 | io_tlb_orig_addr[index+i] = buffer + (i << IO_TLB_SHIFT); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 391 | if (dir == DMA_TO_DEVICE || dir == DMA_BIDIRECTIONAL) |
Tony Luck | 25667d6 | 2007-03-06 13:31:45 -0800 | [diff] [blame] | 392 | memcpy(dma_addr, buffer, size); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 393 | |
| 394 | return dma_addr; |
| 395 | } |
| 396 | |
| 397 | /* |
| 398 | * dma_addr is the kernel virtual address of the bounce buffer to unmap. |
| 399 | */ |
| 400 | static void |
| 401 | unmap_single(struct device *hwdev, char *dma_addr, size_t size, int dir) |
| 402 | { |
| 403 | unsigned long flags; |
| 404 | int i, count, nslots = ALIGN(size, 1 << IO_TLB_SHIFT) >> IO_TLB_SHIFT; |
| 405 | int index = (dma_addr - io_tlb_start) >> IO_TLB_SHIFT; |
Tony Luck | 25667d6 | 2007-03-06 13:31:45 -0800 | [diff] [blame] | 406 | char *buffer = io_tlb_orig_addr[index]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 407 | |
| 408 | /* |
| 409 | * First, sync the memory before unmapping the entry |
| 410 | */ |
Tony Luck | 25667d6 | 2007-03-06 13:31:45 -0800 | [diff] [blame] | 411 | if (buffer && ((dir == DMA_FROM_DEVICE) || (dir == DMA_BIDIRECTIONAL))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 412 | /* |
| 413 | * bounce... copy the data back into the original buffer * and |
| 414 | * delete the bounce buffer. |
| 415 | */ |
Tony Luck | 25667d6 | 2007-03-06 13:31:45 -0800 | [diff] [blame] | 416 | memcpy(buffer, dma_addr, size); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 417 | |
| 418 | /* |
| 419 | * Return the buffer to the free list by setting the corresponding |
| 420 | * entries to indicate the number of contigous entries available. |
| 421 | * While returning the entries to the free list, we merge the entries |
| 422 | * with slots below and above the pool being returned. |
| 423 | */ |
| 424 | spin_lock_irqsave(&io_tlb_lock, flags); |
| 425 | { |
| 426 | count = ((index + nslots) < ALIGN(index + 1, IO_TLB_SEGSIZE) ? |
| 427 | io_tlb_list[index + nslots] : 0); |
| 428 | /* |
| 429 | * Step 1: return the slots to the free list, merging the |
| 430 | * slots with superceeding slots |
| 431 | */ |
| 432 | for (i = index + nslots - 1; i >= index; i--) |
| 433 | io_tlb_list[i] = ++count; |
| 434 | /* |
| 435 | * Step 2: merge the returned slots with the preceding slots, |
| 436 | * if available (non zero) |
| 437 | */ |
| 438 | for (i = index - 1; (OFFSET(i, IO_TLB_SEGSIZE) != IO_TLB_SEGSIZE -1) && io_tlb_list[i]; i--) |
| 439 | io_tlb_list[i] = ++count; |
| 440 | } |
| 441 | spin_unlock_irqrestore(&io_tlb_lock, flags); |
| 442 | } |
| 443 | |
| 444 | static void |
John W. Linville | de69e0f | 2005-09-29 14:44:57 -0700 | [diff] [blame] | 445 | sync_single(struct device *hwdev, char *dma_addr, size_t size, |
| 446 | int dir, int target) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 447 | { |
| 448 | int index = (dma_addr - io_tlb_start) >> IO_TLB_SHIFT; |
Tony Luck | 25667d6 | 2007-03-06 13:31:45 -0800 | [diff] [blame] | 449 | char *buffer = io_tlb_orig_addr[index]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 450 | |
Keir Fraser | df336d1 | 2007-07-21 04:37:24 -0700 | [diff] [blame] | 451 | buffer += ((unsigned long)dma_addr & ((1 << IO_TLB_SHIFT) - 1)); |
| 452 | |
John W. Linville | de69e0f | 2005-09-29 14:44:57 -0700 | [diff] [blame] | 453 | switch (target) { |
| 454 | case SYNC_FOR_CPU: |
| 455 | if (likely(dir == DMA_FROM_DEVICE || dir == DMA_BIDIRECTIONAL)) |
Tony Luck | 25667d6 | 2007-03-06 13:31:45 -0800 | [diff] [blame] | 456 | memcpy(buffer, dma_addr, size); |
Eric Sesterhenn | 3481454 | 2006-03-24 18:47:11 +0100 | [diff] [blame] | 457 | else |
| 458 | BUG_ON(dir != DMA_TO_DEVICE); |
John W. Linville | de69e0f | 2005-09-29 14:44:57 -0700 | [diff] [blame] | 459 | break; |
| 460 | case SYNC_FOR_DEVICE: |
| 461 | if (likely(dir == DMA_TO_DEVICE || dir == DMA_BIDIRECTIONAL)) |
Tony Luck | 25667d6 | 2007-03-06 13:31:45 -0800 | [diff] [blame] | 462 | memcpy(dma_addr, buffer, size); |
Eric Sesterhenn | 3481454 | 2006-03-24 18:47:11 +0100 | [diff] [blame] | 463 | else |
| 464 | BUG_ON(dir != DMA_FROM_DEVICE); |
John W. Linville | de69e0f | 2005-09-29 14:44:57 -0700 | [diff] [blame] | 465 | break; |
| 466 | default: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 467 | BUG(); |
John W. Linville | de69e0f | 2005-09-29 14:44:57 -0700 | [diff] [blame] | 468 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 469 | } |
| 470 | |
| 471 | void * |
| 472 | swiotlb_alloc_coherent(struct device *hwdev, size_t size, |
Al Viro | 06a5449 | 2005-10-21 03:21:03 -0400 | [diff] [blame] | 473 | dma_addr_t *dma_handle, gfp_t flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 474 | { |
Jan Beulich | 563aaf0 | 2007-02-05 18:51:25 -0800 | [diff] [blame] | 475 | dma_addr_t dev_addr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 476 | void *ret; |
| 477 | int order = get_order(size); |
| 478 | |
| 479 | /* |
| 480 | * XXX fix me: the DMA API should pass us an explicit DMA mask |
| 481 | * instead, or use ZONE_DMA32 (ia64 overloads ZONE_DMA to be a ~32 |
| 482 | * bit range instead of a 16MB one). |
| 483 | */ |
| 484 | flags |= GFP_DMA; |
| 485 | |
Tony Luck | 25667d6 | 2007-03-06 13:31:45 -0800 | [diff] [blame] | 486 | ret = (void *)__get_free_pages(flags, order); |
Jan Beulich | 93fbff6 | 2007-02-05 18:49:45 -0800 | [diff] [blame] | 487 | if (ret && address_needs_mapping(hwdev, virt_to_bus(ret))) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 488 | /* |
| 489 | * The allocated memory isn't reachable by the device. |
| 490 | * Fall back on swiotlb_map_single(). |
| 491 | */ |
| 492 | free_pages((unsigned long) ret, order); |
| 493 | ret = NULL; |
| 494 | } |
| 495 | if (!ret) { |
| 496 | /* |
| 497 | * We are either out of memory or the device can't DMA |
| 498 | * to GFP_DMA memory; fall back on |
| 499 | * swiotlb_map_single(), which will grab memory from |
| 500 | * the lowest available address range. |
| 501 | */ |
| 502 | dma_addr_t handle; |
| 503 | handle = swiotlb_map_single(NULL, NULL, size, DMA_FROM_DEVICE); |
Muli Ben-Yehuda | 17a941d | 2006-01-11 22:44:42 +0100 | [diff] [blame] | 504 | if (swiotlb_dma_mapping_error(handle)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 505 | return NULL; |
| 506 | |
Jan Beulich | 93fbff6 | 2007-02-05 18:49:45 -0800 | [diff] [blame] | 507 | ret = bus_to_virt(handle); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 508 | } |
| 509 | |
| 510 | memset(ret, 0, size); |
Jan Beulich | 93fbff6 | 2007-02-05 18:49:45 -0800 | [diff] [blame] | 511 | dev_addr = virt_to_bus(ret); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 512 | |
| 513 | /* Confirm address can be DMA'd by device */ |
| 514 | if (address_needs_mapping(hwdev, dev_addr)) { |
Jan Beulich | 563aaf0 | 2007-02-05 18:51:25 -0800 | [diff] [blame] | 515 | printk("hwdev DMA mask = 0x%016Lx, dev_addr = 0x%016Lx\n", |
| 516 | (unsigned long long)*hwdev->dma_mask, |
| 517 | (unsigned long long)dev_addr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 518 | panic("swiotlb_alloc_coherent: allocated memory is out of " |
| 519 | "range for device"); |
| 520 | } |
| 521 | *dma_handle = dev_addr; |
| 522 | return ret; |
| 523 | } |
| 524 | |
| 525 | void |
| 526 | swiotlb_free_coherent(struct device *hwdev, size_t size, void *vaddr, |
| 527 | dma_addr_t dma_handle) |
| 528 | { |
David Brownell | aa24886 | 2007-08-10 13:10:27 -0700 | [diff] [blame] | 529 | WARN_ON(irqs_disabled()); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 530 | if (!(vaddr >= (void *)io_tlb_start |
| 531 | && vaddr < (void *)io_tlb_end)) |
| 532 | free_pages((unsigned long) vaddr, get_order(size)); |
| 533 | else |
| 534 | /* DMA_TO_DEVICE to avoid memcpy in unmap_single */ |
| 535 | swiotlb_unmap_single (hwdev, dma_handle, size, DMA_TO_DEVICE); |
| 536 | } |
| 537 | |
| 538 | static void |
| 539 | swiotlb_full(struct device *dev, size_t size, int dir, int do_panic) |
| 540 | { |
| 541 | /* |
| 542 | * Ran out of IOMMU space for this operation. This is very bad. |
| 543 | * Unfortunately the drivers cannot handle this operation properly. |
Tony Luck | 17e5ad6 | 2005-09-29 15:52:13 -0700 | [diff] [blame] | 544 | * unless they check for dma_mapping_error (most don't) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 545 | * When the mapping is small enough return a static buffer to limit |
| 546 | * the damage, or panic when the transfer is too big. |
| 547 | */ |
Jan Beulich | 563aaf0 | 2007-02-05 18:51:25 -0800 | [diff] [blame] | 548 | printk(KERN_ERR "DMA: Out of SW-IOMMU space for %zu bytes at " |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 549 | "device %s\n", size, dev ? dev->bus_id : "?"); |
| 550 | |
| 551 | if (size > io_tlb_overflow && do_panic) { |
Tony Luck | 17e5ad6 | 2005-09-29 15:52:13 -0700 | [diff] [blame] | 552 | if (dir == DMA_FROM_DEVICE || dir == DMA_BIDIRECTIONAL) |
| 553 | panic("DMA: Memory would be corrupted\n"); |
| 554 | if (dir == DMA_TO_DEVICE || dir == DMA_BIDIRECTIONAL) |
| 555 | panic("DMA: Random memory would be DMAed\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 556 | } |
| 557 | } |
| 558 | |
| 559 | /* |
| 560 | * Map a single buffer of the indicated size for DMA in streaming mode. The |
Tony Luck | 17e5ad6 | 2005-09-29 15:52:13 -0700 | [diff] [blame] | 561 | * physical address to use is returned. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 562 | * |
| 563 | * Once the device is given the dma address, the device owns this memory until |
| 564 | * either swiotlb_unmap_single or swiotlb_dma_sync_single is performed. |
| 565 | */ |
| 566 | dma_addr_t |
| 567 | swiotlb_map_single(struct device *hwdev, void *ptr, size_t size, int dir) |
| 568 | { |
Jan Beulich | 563aaf0 | 2007-02-05 18:51:25 -0800 | [diff] [blame] | 569 | dma_addr_t dev_addr = virt_to_bus(ptr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 570 | void *map; |
| 571 | |
Eric Sesterhenn | 3481454 | 2006-03-24 18:47:11 +0100 | [diff] [blame] | 572 | BUG_ON(dir == DMA_NONE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 573 | /* |
| 574 | * If the pointer passed in happens to be in the device's DMA window, |
| 575 | * we can safely return the device addr and not worry about bounce |
| 576 | * buffering it. |
| 577 | */ |
Tony Luck | 25667d6 | 2007-03-06 13:31:45 -0800 | [diff] [blame] | 578 | if (!address_needs_mapping(hwdev, dev_addr) && !swiotlb_force) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 579 | return dev_addr; |
| 580 | |
| 581 | /* |
| 582 | * Oh well, have to allocate and map a bounce buffer. |
| 583 | */ |
Tony Luck | 25667d6 | 2007-03-06 13:31:45 -0800 | [diff] [blame] | 584 | map = map_single(hwdev, ptr, size, dir); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 585 | if (!map) { |
| 586 | swiotlb_full(hwdev, size, dir, 1); |
| 587 | map = io_tlb_overflow_buffer; |
| 588 | } |
| 589 | |
Jan Beulich | 93fbff6 | 2007-02-05 18:49:45 -0800 | [diff] [blame] | 590 | dev_addr = virt_to_bus(map); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 591 | |
| 592 | /* |
| 593 | * Ensure that the address returned is DMA'ble |
| 594 | */ |
| 595 | if (address_needs_mapping(hwdev, dev_addr)) |
| 596 | panic("map_single: bounce buffer is not DMA'ble"); |
| 597 | |
| 598 | return dev_addr; |
| 599 | } |
| 600 | |
| 601 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 602 | * Unmap a single streaming mode DMA translation. The dma_addr and size must |
| 603 | * match what was provided for in a previous swiotlb_map_single call. All |
| 604 | * other usages are undefined. |
| 605 | * |
| 606 | * After this call, reads by the cpu to the buffer are guaranteed to see |
| 607 | * whatever the device wrote there. |
| 608 | */ |
| 609 | void |
| 610 | swiotlb_unmap_single(struct device *hwdev, dma_addr_t dev_addr, size_t size, |
| 611 | int dir) |
| 612 | { |
Jan Beulich | 93fbff6 | 2007-02-05 18:49:45 -0800 | [diff] [blame] | 613 | char *dma_addr = bus_to_virt(dev_addr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 614 | |
Eric Sesterhenn | 3481454 | 2006-03-24 18:47:11 +0100 | [diff] [blame] | 615 | BUG_ON(dir == DMA_NONE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 616 | if (dma_addr >= io_tlb_start && dma_addr < io_tlb_end) |
| 617 | unmap_single(hwdev, dma_addr, size, dir); |
| 618 | else if (dir == DMA_FROM_DEVICE) |
Jan Beulich | cde14bb | 2007-02-05 18:46:40 -0800 | [diff] [blame] | 619 | dma_mark_clean(dma_addr, size); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 620 | } |
| 621 | |
| 622 | /* |
| 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 Luck | 17e5ad6 | 2005-09-29 15:52:13 -0700 | [diff] [blame] | 627 | * 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 629 | * 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 Morton | be6b026 | 2007-02-12 00:52:17 -0800 | [diff] [blame] | 632 | static void |
John W. Linville | 8270f3f | 2005-09-29 14:43:32 -0700 | [diff] [blame] | 633 | swiotlb_sync_single(struct device *hwdev, dma_addr_t dev_addr, |
John W. Linville | de69e0f | 2005-09-29 14:44:57 -0700 | [diff] [blame] | 634 | size_t size, int dir, int target) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 635 | { |
Jan Beulich | 93fbff6 | 2007-02-05 18:49:45 -0800 | [diff] [blame] | 636 | char *dma_addr = bus_to_virt(dev_addr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 637 | |
Eric Sesterhenn | 3481454 | 2006-03-24 18:47:11 +0100 | [diff] [blame] | 638 | BUG_ON(dir == DMA_NONE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 639 | if (dma_addr >= io_tlb_start && dma_addr < io_tlb_end) |
John W. Linville | de69e0f | 2005-09-29 14:44:57 -0700 | [diff] [blame] | 640 | sync_single(hwdev, dma_addr, size, dir, target); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 641 | else if (dir == DMA_FROM_DEVICE) |
Jan Beulich | cde14bb | 2007-02-05 18:46:40 -0800 | [diff] [blame] | 642 | dma_mark_clean(dma_addr, size); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 643 | } |
| 644 | |
| 645 | void |
John W. Linville | 8270f3f | 2005-09-29 14:43:32 -0700 | [diff] [blame] | 646 | swiotlb_sync_single_for_cpu(struct device *hwdev, dma_addr_t dev_addr, |
| 647 | size_t size, int dir) |
| 648 | { |
John W. Linville | de69e0f | 2005-09-29 14:44:57 -0700 | [diff] [blame] | 649 | swiotlb_sync_single(hwdev, dev_addr, size, dir, SYNC_FOR_CPU); |
John W. Linville | 8270f3f | 2005-09-29 14:43:32 -0700 | [diff] [blame] | 650 | } |
| 651 | |
| 652 | void |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 653 | swiotlb_sync_single_for_device(struct device *hwdev, dma_addr_t dev_addr, |
| 654 | size_t size, int dir) |
| 655 | { |
John W. Linville | de69e0f | 2005-09-29 14:44:57 -0700 | [diff] [blame] | 656 | swiotlb_sync_single(hwdev, dev_addr, size, dir, SYNC_FOR_DEVICE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 657 | } |
| 658 | |
| 659 | /* |
John W. Linville | 878a97c | 2005-09-29 14:44:23 -0700 | [diff] [blame] | 660 | * Same as above, but for a sub-range of the mapping. |
| 661 | */ |
Andrew Morton | be6b026 | 2007-02-12 00:52:17 -0800 | [diff] [blame] | 662 | static void |
John W. Linville | 878a97c | 2005-09-29 14:44:23 -0700 | [diff] [blame] | 663 | swiotlb_sync_single_range(struct device *hwdev, dma_addr_t dev_addr, |
John W. Linville | de69e0f | 2005-09-29 14:44:57 -0700 | [diff] [blame] | 664 | unsigned long offset, size_t size, |
| 665 | int dir, int target) |
John W. Linville | 878a97c | 2005-09-29 14:44:23 -0700 | [diff] [blame] | 666 | { |
Jan Beulich | 93fbff6 | 2007-02-05 18:49:45 -0800 | [diff] [blame] | 667 | char *dma_addr = bus_to_virt(dev_addr) + offset; |
John W. Linville | 878a97c | 2005-09-29 14:44:23 -0700 | [diff] [blame] | 668 | |
Eric Sesterhenn | 3481454 | 2006-03-24 18:47:11 +0100 | [diff] [blame] | 669 | BUG_ON(dir == DMA_NONE); |
John W. Linville | 878a97c | 2005-09-29 14:44:23 -0700 | [diff] [blame] | 670 | if (dma_addr >= io_tlb_start && dma_addr < io_tlb_end) |
John W. Linville | de69e0f | 2005-09-29 14:44:57 -0700 | [diff] [blame] | 671 | sync_single(hwdev, dma_addr, size, dir, target); |
John W. Linville | 878a97c | 2005-09-29 14:44:23 -0700 | [diff] [blame] | 672 | else if (dir == DMA_FROM_DEVICE) |
Jan Beulich | cde14bb | 2007-02-05 18:46:40 -0800 | [diff] [blame] | 673 | dma_mark_clean(dma_addr, size); |
John W. Linville | 878a97c | 2005-09-29 14:44:23 -0700 | [diff] [blame] | 674 | } |
| 675 | |
| 676 | void |
| 677 | swiotlb_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. Linville | de69e0f | 2005-09-29 14:44:57 -0700 | [diff] [blame] | 680 | swiotlb_sync_single_range(hwdev, dev_addr, offset, size, dir, |
| 681 | SYNC_FOR_CPU); |
John W. Linville | 878a97c | 2005-09-29 14:44:23 -0700 | [diff] [blame] | 682 | } |
| 683 | |
| 684 | void |
| 685 | swiotlb_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. Linville | de69e0f | 2005-09-29 14:44:57 -0700 | [diff] [blame] | 688 | swiotlb_sync_single_range(hwdev, dev_addr, offset, size, dir, |
| 689 | SYNC_FOR_DEVICE); |
John W. Linville | 878a97c | 2005-09-29 14:44:23 -0700 | [diff] [blame] | 690 | } |
| 691 | |
| 692 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 693 | * Map a set of buffers described by scatterlist in streaming mode for DMA. |
| 694 | * This is the scatter-gather version of the above swiotlb_map_single |
| 695 | * interface. Here the scatter gather list elements are each tagged with the |
| 696 | * appropriate dma address and length. They are obtained via |
| 697 | * sg_dma_{address,length}(SG). |
| 698 | * |
| 699 | * NOTE: An implementation may be able to use a smaller number of |
| 700 | * DMA address/length pairs than there are SG table elements. |
| 701 | * (for example via virtual mapping capabilities) |
| 702 | * The routine returns the number of addr/length pairs actually |
| 703 | * used, at most nents. |
| 704 | * |
| 705 | * Device ownership issues as mentioned above for swiotlb_map_single are the |
| 706 | * same here. |
| 707 | */ |
| 708 | int |
Jens Axboe | dbfd49f | 2007-05-11 14:56:18 +0200 | [diff] [blame] | 709 | swiotlb_map_sg(struct device *hwdev, struct scatterlist *sgl, int nelems, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 710 | int dir) |
| 711 | { |
Jens Axboe | dbfd49f | 2007-05-11 14:56:18 +0200 | [diff] [blame] | 712 | struct scatterlist *sg; |
Tony Luck | 25667d6 | 2007-03-06 13:31:45 -0800 | [diff] [blame] | 713 | void *addr; |
Jan Beulich | 563aaf0 | 2007-02-05 18:51:25 -0800 | [diff] [blame] | 714 | dma_addr_t dev_addr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 715 | int i; |
| 716 | |
Eric Sesterhenn | 3481454 | 2006-03-24 18:47:11 +0100 | [diff] [blame] | 717 | BUG_ON(dir == DMA_NONE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 718 | |
Jens Axboe | dbfd49f | 2007-05-11 14:56:18 +0200 | [diff] [blame] | 719 | for_each_sg(sgl, sg, nelems, i) { |
Tony Luck | 25667d6 | 2007-03-06 13:31:45 -0800 | [diff] [blame] | 720 | addr = SG_ENT_VIRT_ADDRESS(sg); |
| 721 | dev_addr = virt_to_bus(addr); |
| 722 | if (swiotlb_force || address_needs_mapping(hwdev, dev_addr)) { |
| 723 | void *map = map_single(hwdev, addr, sg->length, dir); |
Andi Kleen | 7e87023 | 2005-12-20 14:45:19 +0100 | [diff] [blame] | 724 | if (!map) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 725 | /* Don't panic here, we expect map_sg users |
| 726 | to do proper error handling. */ |
| 727 | swiotlb_full(hwdev, sg->length, dir, 0); |
FUJITA Tomonori | 9e91fdb | 2007-10-17 10:06:18 +0200 | [diff] [blame] | 728 | swiotlb_unmap_sg(hwdev, sgl, i, dir); |
Jens Axboe | dbfd49f | 2007-05-11 14:56:18 +0200 | [diff] [blame] | 729 | sgl[0].dma_length = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 730 | return 0; |
| 731 | } |
Jan Beulich | cde14bb | 2007-02-05 18:46:40 -0800 | [diff] [blame] | 732 | sg->dma_address = virt_to_bus(map); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 733 | } else |
| 734 | sg->dma_address = dev_addr; |
| 735 | sg->dma_length = sg->length; |
| 736 | } |
| 737 | return nelems; |
| 738 | } |
| 739 | |
| 740 | /* |
| 741 | * Unmap a set of streaming mode DMA translations. Again, cpu read rules |
| 742 | * concerning calls here are the same as for swiotlb_unmap_single() above. |
| 743 | */ |
| 744 | void |
Jens Axboe | dbfd49f | 2007-05-11 14:56:18 +0200 | [diff] [blame] | 745 | swiotlb_unmap_sg(struct device *hwdev, struct scatterlist *sgl, int nelems, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 746 | int dir) |
| 747 | { |
Jens Axboe | dbfd49f | 2007-05-11 14:56:18 +0200 | [diff] [blame] | 748 | struct scatterlist *sg; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 749 | int i; |
| 750 | |
Eric Sesterhenn | 3481454 | 2006-03-24 18:47:11 +0100 | [diff] [blame] | 751 | BUG_ON(dir == DMA_NONE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 752 | |
Jens Axboe | dbfd49f | 2007-05-11 14:56:18 +0200 | [diff] [blame] | 753 | for_each_sg(sgl, sg, nelems, i) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 754 | if (sg->dma_address != SG_ENT_PHYS_ADDRESS(sg)) |
Jan Beulich | 93fbff6 | 2007-02-05 18:49:45 -0800 | [diff] [blame] | 755 | unmap_single(hwdev, bus_to_virt(sg->dma_address), |
| 756 | sg->dma_length, dir); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 757 | else if (dir == DMA_FROM_DEVICE) |
Jan Beulich | cde14bb | 2007-02-05 18:46:40 -0800 | [diff] [blame] | 758 | dma_mark_clean(SG_ENT_VIRT_ADDRESS(sg), sg->dma_length); |
Jens Axboe | dbfd49f | 2007-05-11 14:56:18 +0200 | [diff] [blame] | 759 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 760 | } |
| 761 | |
| 762 | /* |
| 763 | * Make physical memory consistent for a set of streaming mode DMA translations |
| 764 | * after a transfer. |
| 765 | * |
| 766 | * The same as swiotlb_sync_single_* but for a scatter-gather list, same rules |
| 767 | * and usage. |
| 768 | */ |
Andrew Morton | be6b026 | 2007-02-12 00:52:17 -0800 | [diff] [blame] | 769 | static void |
Jens Axboe | dbfd49f | 2007-05-11 14:56:18 +0200 | [diff] [blame] | 770 | swiotlb_sync_sg(struct device *hwdev, struct scatterlist *sgl, |
John W. Linville | de69e0f | 2005-09-29 14:44:57 -0700 | [diff] [blame] | 771 | int nelems, int dir, int target) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 772 | { |
Jens Axboe | dbfd49f | 2007-05-11 14:56:18 +0200 | [diff] [blame] | 773 | struct scatterlist *sg; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 774 | int i; |
| 775 | |
Eric Sesterhenn | 3481454 | 2006-03-24 18:47:11 +0100 | [diff] [blame] | 776 | BUG_ON(dir == DMA_NONE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 777 | |
Jens Axboe | dbfd49f | 2007-05-11 14:56:18 +0200 | [diff] [blame] | 778 | for_each_sg(sgl, sg, nelems, i) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 779 | if (sg->dma_address != SG_ENT_PHYS_ADDRESS(sg)) |
Jan Beulich | 93fbff6 | 2007-02-05 18:49:45 -0800 | [diff] [blame] | 780 | sync_single(hwdev, bus_to_virt(sg->dma_address), |
John W. Linville | de69e0f | 2005-09-29 14:44:57 -0700 | [diff] [blame] | 781 | sg->dma_length, dir, target); |
Jan Beulich | cde14bb | 2007-02-05 18:46:40 -0800 | [diff] [blame] | 782 | else if (dir == DMA_FROM_DEVICE) |
| 783 | dma_mark_clean(SG_ENT_VIRT_ADDRESS(sg), sg->dma_length); |
Jens Axboe | dbfd49f | 2007-05-11 14:56:18 +0200 | [diff] [blame] | 784 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 785 | } |
| 786 | |
| 787 | void |
John W. Linville | 8270f3f | 2005-09-29 14:43:32 -0700 | [diff] [blame] | 788 | swiotlb_sync_sg_for_cpu(struct device *hwdev, struct scatterlist *sg, |
| 789 | int nelems, int dir) |
| 790 | { |
John W. Linville | de69e0f | 2005-09-29 14:44:57 -0700 | [diff] [blame] | 791 | swiotlb_sync_sg(hwdev, sg, nelems, dir, SYNC_FOR_CPU); |
John W. Linville | 8270f3f | 2005-09-29 14:43:32 -0700 | [diff] [blame] | 792 | } |
| 793 | |
| 794 | void |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 795 | swiotlb_sync_sg_for_device(struct device *hwdev, struct scatterlist *sg, |
| 796 | int nelems, int dir) |
| 797 | { |
John W. Linville | de69e0f | 2005-09-29 14:44:57 -0700 | [diff] [blame] | 798 | swiotlb_sync_sg(hwdev, sg, nelems, dir, SYNC_FOR_DEVICE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 799 | } |
| 800 | |
| 801 | int |
| 802 | swiotlb_dma_mapping_error(dma_addr_t dma_addr) |
| 803 | { |
Jan Beulich | 93fbff6 | 2007-02-05 18:49:45 -0800 | [diff] [blame] | 804 | return (dma_addr == virt_to_bus(io_tlb_overflow_buffer)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 805 | } |
| 806 | |
| 807 | /* |
Tony Luck | 17e5ad6 | 2005-09-29 15:52:13 -0700 | [diff] [blame] | 808 | * Return whether the given device DMA address mask can be supported |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 809 | * properly. For example, if your device can only drive the low 24-bits |
Tony Luck | 17e5ad6 | 2005-09-29 15:52:13 -0700 | [diff] [blame] | 810 | * during bus mastering, then you would pass 0x00ffffff as the mask to |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 811 | * this function. |
| 812 | */ |
| 813 | int |
Jan Beulich | 563aaf0 | 2007-02-05 18:51:25 -0800 | [diff] [blame] | 814 | swiotlb_dma_supported(struct device *hwdev, u64 mask) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 815 | { |
Tony Luck | 25667d6 | 2007-03-06 13:31:45 -0800 | [diff] [blame] | 816 | return virt_to_bus(io_tlb_end - 1) <= mask; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 817 | } |
| 818 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 819 | EXPORT_SYMBOL(swiotlb_map_single); |
| 820 | EXPORT_SYMBOL(swiotlb_unmap_single); |
| 821 | EXPORT_SYMBOL(swiotlb_map_sg); |
| 822 | EXPORT_SYMBOL(swiotlb_unmap_sg); |
| 823 | EXPORT_SYMBOL(swiotlb_sync_single_for_cpu); |
| 824 | EXPORT_SYMBOL(swiotlb_sync_single_for_device); |
John W. Linville | 878a97c | 2005-09-29 14:44:23 -0700 | [diff] [blame] | 825 | EXPORT_SYMBOL_GPL(swiotlb_sync_single_range_for_cpu); |
| 826 | EXPORT_SYMBOL_GPL(swiotlb_sync_single_range_for_device); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 827 | EXPORT_SYMBOL(swiotlb_sync_sg_for_cpu); |
| 828 | EXPORT_SYMBOL(swiotlb_sync_sg_for_device); |
| 829 | EXPORT_SYMBOL(swiotlb_dma_mapping_error); |
Tony Luck | 25667d6 | 2007-03-06 13:31:45 -0800 | [diff] [blame] | 830 | EXPORT_SYMBOL(swiotlb_alloc_coherent); |
| 831 | EXPORT_SYMBOL(swiotlb_free_coherent); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 832 | EXPORT_SYMBOL(swiotlb_dma_supported); |