GNU Linux-libre 4.14.257-gnu1
[releases.git] / lib / swiotlb.c
1 /*
2  * Dynamic DMA mapping support.
3  *
4  * This implementation is a fallback for platforms that do not support
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.
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.
17  * 08/12/11 beckyb      Add highmem support
18  */
19
20 #define pr_fmt(fmt) "software IO TLB: " fmt
21
22 #include <linux/cache.h>
23 #include <linux/dma-mapping.h>
24 #include <linux/mm.h>
25 #include <linux/export.h>
26 #include <linux/spinlock.h>
27 #include <linux/string.h>
28 #include <linux/swiotlb.h>
29 #include <linux/pfn.h>
30 #include <linux/types.h>
31 #include <linux/ctype.h>
32 #include <linux/highmem.h>
33 #include <linux/gfp.h>
34 #include <linux/scatterlist.h>
35 #include <linux/mem_encrypt.h>
36
37 #include <asm/io.h>
38 #include <asm/dma.h>
39
40 #include <linux/init.h>
41 #include <linux/bootmem.h>
42 #include <linux/iommu-helper.h>
43
44 #define CREATE_TRACE_POINTS
45 #include <trace/events/swiotlb.h>
46
47 #define OFFSET(val,align) ((unsigned long)      \
48                            ( (val) & ( (align) - 1)))
49
50 #define SLABS_PER_PAGE (1 << (PAGE_SHIFT - IO_TLB_SHIFT))
51
52 /*
53  * Minimum IO TLB size to bother booting with.  Systems with mainly
54  * 64bit capable cards will only lightly use the swiotlb.  If we can't
55  * allocate a contiguous 1MB, we're probably in trouble anyway.
56  */
57 #define IO_TLB_MIN_SLABS ((1<<20) >> IO_TLB_SHIFT)
58
59 enum swiotlb_force swiotlb_force;
60
61 /*
62  * Used to do a quick range check in swiotlb_tbl_unmap_single and
63  * swiotlb_tbl_sync_single_*, to see if the memory was in fact allocated by this
64  * API.
65  */
66 static phys_addr_t io_tlb_start, io_tlb_end;
67
68 /*
69  * The number of IO TLB blocks (in groups of 64) between io_tlb_start and
70  * io_tlb_end.  This is command line adjustable via setup_io_tlb_npages.
71  */
72 static unsigned long io_tlb_nslabs;
73
74 /*
75  * When the IOMMU overflows we return a fallback buffer. This sets the size.
76  */
77 static unsigned long io_tlb_overflow = 32*1024;
78
79 static phys_addr_t io_tlb_overflow_buffer;
80
81 /*
82  * This is a free list describing the number of free entries available from
83  * each index
84  */
85 static unsigned int *io_tlb_list;
86 static unsigned int io_tlb_index;
87
88 /*
89  * Max segment that we can provide which (if pages are contingous) will
90  * not be bounced (unless SWIOTLB_FORCE is set).
91  */
92 unsigned int max_segment;
93
94 /*
95  * We need to save away the original address corresponding to a mapped entry
96  * for the sync operations.
97  */
98 #define INVALID_PHYS_ADDR (~(phys_addr_t)0)
99 static phys_addr_t *io_tlb_orig_addr;
100
101 /*
102  * Protect the above data structures in the map and unmap calls
103  */
104 static DEFINE_SPINLOCK(io_tlb_lock);
105
106 static int late_alloc;
107
108 static int __init
109 setup_io_tlb_npages(char *str)
110 {
111         if (isdigit(*str)) {
112                 io_tlb_nslabs = simple_strtoul(str, &str, 0);
113                 /* avoid tail segment of size < IO_TLB_SEGSIZE */
114                 io_tlb_nslabs = ALIGN(io_tlb_nslabs, IO_TLB_SEGSIZE);
115         }
116         if (*str == ',')
117                 ++str;
118         if (!strcmp(str, "force")) {
119                 swiotlb_force = SWIOTLB_FORCE;
120         } else if (!strcmp(str, "noforce")) {
121                 swiotlb_force = SWIOTLB_NO_FORCE;
122                 io_tlb_nslabs = 1;
123         }
124
125         return 0;
126 }
127 early_param("swiotlb", setup_io_tlb_npages);
128 /* make io_tlb_overflow tunable too? */
129
130 unsigned long swiotlb_nr_tbl(void)
131 {
132         return io_tlb_nslabs;
133 }
134 EXPORT_SYMBOL_GPL(swiotlb_nr_tbl);
135
136 unsigned int swiotlb_max_segment(void)
137 {
138         return max_segment;
139 }
140 EXPORT_SYMBOL_GPL(swiotlb_max_segment);
141
142 void swiotlb_set_max_segment(unsigned int val)
143 {
144         if (swiotlb_force == SWIOTLB_FORCE)
145                 max_segment = 1;
146         else
147                 max_segment = rounddown(val, PAGE_SIZE);
148 }
149
150 /* default to 64MB */
151 #define IO_TLB_DEFAULT_SIZE (64UL<<20)
152 unsigned long swiotlb_size_or_default(void)
153 {
154         unsigned long size;
155
156         size = io_tlb_nslabs << IO_TLB_SHIFT;
157
158         return size ? size : (IO_TLB_DEFAULT_SIZE);
159 }
160
161 void __weak swiotlb_set_mem_attributes(void *vaddr, unsigned long size) { }
162
163 /* For swiotlb, clear memory encryption mask from dma addresses */
164 static dma_addr_t swiotlb_phys_to_dma(struct device *hwdev,
165                                       phys_addr_t address)
166 {
167         return __sme_clr(phys_to_dma(hwdev, address));
168 }
169
170 /* Note that this doesn't work with highmem page */
171 static dma_addr_t swiotlb_virt_to_bus(struct device *hwdev,
172                                       volatile void *address)
173 {
174         return phys_to_dma(hwdev, virt_to_phys(address));
175 }
176
177 static bool no_iotlb_memory;
178
179 void swiotlb_print_info(void)
180 {
181         unsigned long bytes = io_tlb_nslabs << IO_TLB_SHIFT;
182
183         if (no_iotlb_memory) {
184                 pr_warn("No low mem\n");
185                 return;
186         }
187
188         pr_info("mapped [mem %#010llx-%#010llx] (%luMB)\n",
189                (unsigned long long)io_tlb_start,
190                (unsigned long long)io_tlb_end,
191                bytes >> 20);
192 }
193
194 /*
195  * Early SWIOTLB allocation may be too early to allow an architecture to
196  * perform the desired operations.  This function allows the architecture to
197  * call SWIOTLB when the operations are possible.  It needs to be called
198  * before the SWIOTLB memory is used.
199  */
200 void __init swiotlb_update_mem_attributes(void)
201 {
202         void *vaddr;
203         unsigned long bytes;
204
205         if (no_iotlb_memory || late_alloc)
206                 return;
207
208         vaddr = phys_to_virt(io_tlb_start);
209         bytes = PAGE_ALIGN(io_tlb_nslabs << IO_TLB_SHIFT);
210         swiotlb_set_mem_attributes(vaddr, bytes);
211         memset(vaddr, 0, bytes);
212
213         vaddr = phys_to_virt(io_tlb_overflow_buffer);
214         bytes = PAGE_ALIGN(io_tlb_overflow);
215         swiotlb_set_mem_attributes(vaddr, bytes);
216         memset(vaddr, 0, bytes);
217 }
218
219 int __init swiotlb_init_with_tbl(char *tlb, unsigned long nslabs, int verbose)
220 {
221         void *v_overflow_buffer;
222         unsigned long i, bytes;
223
224         bytes = nslabs << IO_TLB_SHIFT;
225
226         io_tlb_nslabs = nslabs;
227         io_tlb_start = __pa(tlb);
228         io_tlb_end = io_tlb_start + bytes;
229
230         /*
231          * Get the overflow emergency buffer
232          */
233         v_overflow_buffer = memblock_virt_alloc_low_nopanic(
234                                                 PAGE_ALIGN(io_tlb_overflow),
235                                                 PAGE_SIZE);
236         if (!v_overflow_buffer)
237                 return -ENOMEM;
238
239         io_tlb_overflow_buffer = __pa(v_overflow_buffer);
240
241         /*
242          * Allocate and initialize the free list array.  This array is used
243          * to find contiguous free memory regions of size up to IO_TLB_SEGSIZE
244          * between io_tlb_start and io_tlb_end.
245          */
246         io_tlb_list = memblock_virt_alloc(
247                                 PAGE_ALIGN(io_tlb_nslabs * sizeof(int)),
248                                 PAGE_SIZE);
249         io_tlb_orig_addr = memblock_virt_alloc(
250                                 PAGE_ALIGN(io_tlb_nslabs * sizeof(phys_addr_t)),
251                                 PAGE_SIZE);
252         for (i = 0; i < io_tlb_nslabs; i++) {
253                 io_tlb_list[i] = IO_TLB_SEGSIZE - OFFSET(i, IO_TLB_SEGSIZE);
254                 io_tlb_orig_addr[i] = INVALID_PHYS_ADDR;
255         }
256         io_tlb_index = 0;
257         no_iotlb_memory = false;
258
259         if (verbose)
260                 swiotlb_print_info();
261
262         swiotlb_set_max_segment(io_tlb_nslabs << IO_TLB_SHIFT);
263         return 0;
264 }
265
266 /*
267  * Statically reserve bounce buffer space and initialize bounce buffer data
268  * structures for the software IO TLB used to implement the DMA API.
269  */
270 void  __init
271 swiotlb_init(int verbose)
272 {
273         size_t default_size = IO_TLB_DEFAULT_SIZE;
274         unsigned char *vstart;
275         unsigned long bytes;
276
277         if (!io_tlb_nslabs) {
278                 io_tlb_nslabs = (default_size >> IO_TLB_SHIFT);
279                 io_tlb_nslabs = ALIGN(io_tlb_nslabs, IO_TLB_SEGSIZE);
280         }
281
282         bytes = io_tlb_nslabs << IO_TLB_SHIFT;
283
284         /* Get IO TLB memory from the low pages */
285         vstart = memblock_virt_alloc_low_nopanic(PAGE_ALIGN(bytes), PAGE_SIZE);
286         if (vstart && !swiotlb_init_with_tbl(vstart, io_tlb_nslabs, verbose))
287                 return;
288
289         if (io_tlb_start) {
290                 memblock_free_early(io_tlb_start,
291                                     PAGE_ALIGN(io_tlb_nslabs << IO_TLB_SHIFT));
292                 io_tlb_start = 0;
293         }
294         pr_warn("Cannot allocate buffer");
295         no_iotlb_memory = true;
296 }
297
298 /*
299  * Systems with larger DMA zones (those that don't support ISA) can
300  * initialize the swiotlb later using the slab allocator if needed.
301  * This should be just like above, but with some error catching.
302  */
303 int
304 swiotlb_late_init_with_default_size(size_t default_size)
305 {
306         unsigned long bytes, req_nslabs = io_tlb_nslabs;
307         unsigned char *vstart = NULL;
308         unsigned int order;
309         int rc = 0;
310
311         if (!io_tlb_nslabs) {
312                 io_tlb_nslabs = (default_size >> IO_TLB_SHIFT);
313                 io_tlb_nslabs = ALIGN(io_tlb_nslabs, IO_TLB_SEGSIZE);
314         }
315
316         /*
317          * Get IO TLB memory from the low pages
318          */
319         order = get_order(io_tlb_nslabs << IO_TLB_SHIFT);
320         io_tlb_nslabs = SLABS_PER_PAGE << order;
321         bytes = io_tlb_nslabs << IO_TLB_SHIFT;
322
323         while ((SLABS_PER_PAGE << order) > IO_TLB_MIN_SLABS) {
324                 vstart = (void *)__get_free_pages(GFP_DMA | __GFP_NOWARN,
325                                                   order);
326                 if (vstart)
327                         break;
328                 order--;
329         }
330
331         if (!vstart) {
332                 io_tlb_nslabs = req_nslabs;
333                 return -ENOMEM;
334         }
335         if (order != get_order(bytes)) {
336                 pr_warn("only able to allocate %ld MB\n",
337                         (PAGE_SIZE << order) >> 20);
338                 io_tlb_nslabs = SLABS_PER_PAGE << order;
339         }
340         rc = swiotlb_late_init_with_tbl(vstart, io_tlb_nslabs);
341         if (rc)
342                 free_pages((unsigned long)vstart, order);
343
344         return rc;
345 }
346
347 int
348 swiotlb_late_init_with_tbl(char *tlb, unsigned long nslabs)
349 {
350         unsigned long i, bytes;
351         unsigned char *v_overflow_buffer;
352
353         bytes = nslabs << IO_TLB_SHIFT;
354
355         io_tlb_nslabs = nslabs;
356         io_tlb_start = virt_to_phys(tlb);
357         io_tlb_end = io_tlb_start + bytes;
358
359         swiotlb_set_mem_attributes(tlb, bytes);
360         memset(tlb, 0, bytes);
361
362         /*
363          * Get the overflow emergency buffer
364          */
365         v_overflow_buffer = (void *)__get_free_pages(GFP_DMA,
366                                                      get_order(io_tlb_overflow));
367         if (!v_overflow_buffer)
368                 goto cleanup2;
369
370         swiotlb_set_mem_attributes(v_overflow_buffer, io_tlb_overflow);
371         memset(v_overflow_buffer, 0, io_tlb_overflow);
372         io_tlb_overflow_buffer = virt_to_phys(v_overflow_buffer);
373
374         /*
375          * Allocate and initialize the free list array.  This array is used
376          * to find contiguous free memory regions of size up to IO_TLB_SEGSIZE
377          * between io_tlb_start and io_tlb_end.
378          */
379         io_tlb_list = (unsigned int *)__get_free_pages(GFP_KERNEL,
380                                       get_order(io_tlb_nslabs * sizeof(int)));
381         if (!io_tlb_list)
382                 goto cleanup3;
383
384         io_tlb_orig_addr = (phys_addr_t *)
385                 __get_free_pages(GFP_KERNEL,
386                                  get_order(io_tlb_nslabs *
387                                            sizeof(phys_addr_t)));
388         if (!io_tlb_orig_addr)
389                 goto cleanup4;
390
391         for (i = 0; i < io_tlb_nslabs; i++) {
392                 io_tlb_list[i] = IO_TLB_SEGSIZE - OFFSET(i, IO_TLB_SEGSIZE);
393                 io_tlb_orig_addr[i] = INVALID_PHYS_ADDR;
394         }
395         io_tlb_index = 0;
396         no_iotlb_memory = false;
397
398         swiotlb_print_info();
399
400         late_alloc = 1;
401
402         swiotlb_set_max_segment(io_tlb_nslabs << IO_TLB_SHIFT);
403
404         return 0;
405
406 cleanup4:
407         free_pages((unsigned long)io_tlb_list, get_order(io_tlb_nslabs *
408                                                          sizeof(int)));
409         io_tlb_list = NULL;
410 cleanup3:
411         free_pages((unsigned long)v_overflow_buffer,
412                    get_order(io_tlb_overflow));
413         io_tlb_overflow_buffer = 0;
414 cleanup2:
415         io_tlb_end = 0;
416         io_tlb_start = 0;
417         io_tlb_nslabs = 0;
418         max_segment = 0;
419         return -ENOMEM;
420 }
421
422 void __init swiotlb_free(void)
423 {
424         if (!io_tlb_orig_addr)
425                 return;
426
427         if (late_alloc) {
428                 free_pages((unsigned long)phys_to_virt(io_tlb_overflow_buffer),
429                            get_order(io_tlb_overflow));
430                 free_pages((unsigned long)io_tlb_orig_addr,
431                            get_order(io_tlb_nslabs * sizeof(phys_addr_t)));
432                 free_pages((unsigned long)io_tlb_list, get_order(io_tlb_nslabs *
433                                                                  sizeof(int)));
434                 free_pages((unsigned long)phys_to_virt(io_tlb_start),
435                            get_order(io_tlb_nslabs << IO_TLB_SHIFT));
436         } else {
437                 memblock_free_late(io_tlb_overflow_buffer,
438                                    PAGE_ALIGN(io_tlb_overflow));
439                 memblock_free_late(__pa(io_tlb_orig_addr),
440                                    PAGE_ALIGN(io_tlb_nslabs * sizeof(phys_addr_t)));
441                 memblock_free_late(__pa(io_tlb_list),
442                                    PAGE_ALIGN(io_tlb_nslabs * sizeof(int)));
443                 memblock_free_late(io_tlb_start,
444                                    PAGE_ALIGN(io_tlb_nslabs << IO_TLB_SHIFT));
445         }
446         io_tlb_nslabs = 0;
447         max_segment = 0;
448 }
449
450 int is_swiotlb_buffer(phys_addr_t paddr)
451 {
452         return paddr >= io_tlb_start && paddr < io_tlb_end;
453 }
454
455 /*
456  * Bounce: copy the swiotlb buffer back to the original dma location
457  */
458 static void swiotlb_bounce(phys_addr_t orig_addr, phys_addr_t tlb_addr,
459                            size_t size, enum dma_data_direction dir)
460 {
461         unsigned long pfn = PFN_DOWN(orig_addr);
462         unsigned char *vaddr = phys_to_virt(tlb_addr);
463
464         if (PageHighMem(pfn_to_page(pfn))) {
465                 /* The buffer does not have a mapping.  Map it in and copy */
466                 unsigned int offset = orig_addr & ~PAGE_MASK;
467                 char *buffer;
468                 unsigned int sz = 0;
469                 unsigned long flags;
470
471                 while (size) {
472                         sz = min_t(size_t, PAGE_SIZE - offset, size);
473
474                         local_irq_save(flags);
475                         buffer = kmap_atomic(pfn_to_page(pfn));
476                         if (dir == DMA_TO_DEVICE)
477                                 memcpy(vaddr, buffer + offset, sz);
478                         else
479                                 memcpy(buffer + offset, vaddr, sz);
480                         kunmap_atomic(buffer);
481                         local_irq_restore(flags);
482
483                         size -= sz;
484                         pfn++;
485                         vaddr += sz;
486                         offset = 0;
487                 }
488         } else if (dir == DMA_TO_DEVICE) {
489                 memcpy(vaddr, phys_to_virt(orig_addr), size);
490         } else {
491                 memcpy(phys_to_virt(orig_addr), vaddr, size);
492         }
493 }
494
495 phys_addr_t swiotlb_tbl_map_single(struct device *hwdev,
496                                    dma_addr_t tbl_dma_addr,
497                                    phys_addr_t orig_addr, size_t size,
498                                    enum dma_data_direction dir,
499                                    unsigned long attrs)
500 {
501         unsigned long flags;
502         phys_addr_t tlb_addr;
503         unsigned int nslots, stride, index, wrap;
504         int i;
505         unsigned long mask;
506         unsigned long offset_slots;
507         unsigned long max_slots;
508
509         if (no_iotlb_memory)
510                 panic("Can not allocate SWIOTLB buffer earlier and can't now provide you with the DMA bounce buffer");
511
512         if (sme_active())
513                 pr_warn_once("SME is active and system is using DMA bounce buffers\n");
514
515         mask = dma_get_seg_boundary(hwdev);
516
517         tbl_dma_addr &= mask;
518
519         offset_slots = ALIGN(tbl_dma_addr, 1 << IO_TLB_SHIFT) >> IO_TLB_SHIFT;
520
521         /*
522          * Carefully handle integer overflow which can occur when mask == ~0UL.
523          */
524         max_slots = mask + 1
525                     ? ALIGN(mask + 1, 1 << IO_TLB_SHIFT) >> IO_TLB_SHIFT
526                     : 1UL << (BITS_PER_LONG - IO_TLB_SHIFT);
527
528         /*
529          * For mappings greater than or equal to a page, we limit the stride
530          * (and hence alignment) to a page size.
531          */
532         nslots = ALIGN(size, 1 << IO_TLB_SHIFT) >> IO_TLB_SHIFT;
533         if (size >= PAGE_SIZE)
534                 stride = (1 << (PAGE_SHIFT - IO_TLB_SHIFT));
535         else
536                 stride = 1;
537
538         BUG_ON(!nslots);
539
540         /*
541          * Find suitable number of IO TLB entries size that will fit this
542          * request and allocate a buffer from that IO TLB pool.
543          */
544         spin_lock_irqsave(&io_tlb_lock, flags);
545         index = ALIGN(io_tlb_index, stride);
546         if (index >= io_tlb_nslabs)
547                 index = 0;
548         wrap = index;
549
550         do {
551                 while (iommu_is_span_boundary(index, nslots, offset_slots,
552                                               max_slots)) {
553                         index += stride;
554                         if (index >= io_tlb_nslabs)
555                                 index = 0;
556                         if (index == wrap)
557                                 goto not_found;
558                 }
559
560                 /*
561                  * If we find a slot that indicates we have 'nslots' number of
562                  * contiguous buffers, we allocate the buffers from that slot
563                  * and mark the entries as '0' indicating unavailable.
564                  */
565                 if (io_tlb_list[index] >= nslots) {
566                         int count = 0;
567
568                         for (i = index; i < (int) (index + nslots); i++)
569                                 io_tlb_list[i] = 0;
570                         for (i = index - 1; (OFFSET(i, IO_TLB_SEGSIZE) != IO_TLB_SEGSIZE - 1) && io_tlb_list[i]; i--)
571                                 io_tlb_list[i] = ++count;
572                         tlb_addr = io_tlb_start + (index << IO_TLB_SHIFT);
573
574                         /*
575                          * Update the indices to avoid searching in the next
576                          * round.
577                          */
578                         io_tlb_index = ((index + nslots) < io_tlb_nslabs
579                                         ? (index + nslots) : 0);
580
581                         goto found;
582                 }
583                 index += stride;
584                 if (index >= io_tlb_nslabs)
585                         index = 0;
586         } while (index != wrap);
587
588 not_found:
589         spin_unlock_irqrestore(&io_tlb_lock, flags);
590         if (!(attrs & DMA_ATTR_NO_WARN) && printk_ratelimit())
591                 dev_warn(hwdev, "swiotlb buffer is full (sz: %zd bytes)\n", size);
592         return SWIOTLB_MAP_ERROR;
593 found:
594         spin_unlock_irqrestore(&io_tlb_lock, flags);
595
596         /*
597          * Save away the mapping from the original address to the DMA address.
598          * This is needed when we sync the memory.  Then we sync the buffer if
599          * needed.
600          */
601         for (i = 0; i < nslots; i++)
602                 io_tlb_orig_addr[index+i] = orig_addr + (i << IO_TLB_SHIFT);
603         if (!(attrs & DMA_ATTR_SKIP_CPU_SYNC) &&
604             (dir == DMA_TO_DEVICE || dir == DMA_BIDIRECTIONAL))
605                 swiotlb_bounce(orig_addr, tlb_addr, size, DMA_TO_DEVICE);
606
607         return tlb_addr;
608 }
609 EXPORT_SYMBOL_GPL(swiotlb_tbl_map_single);
610
611 /*
612  * Allocates bounce buffer and returns its kernel virtual address.
613  */
614
615 static phys_addr_t
616 map_single(struct device *hwdev, phys_addr_t phys, size_t size,
617            enum dma_data_direction dir, unsigned long attrs)
618 {
619         dma_addr_t start_dma_addr;
620
621         if (swiotlb_force == SWIOTLB_NO_FORCE) {
622                 dev_warn_ratelimited(hwdev, "Cannot do DMA to address %pa\n",
623                                      &phys);
624                 return SWIOTLB_MAP_ERROR;
625         }
626
627         start_dma_addr = swiotlb_phys_to_dma(hwdev, io_tlb_start);
628         return swiotlb_tbl_map_single(hwdev, start_dma_addr, phys, size,
629                                       dir, attrs);
630 }
631
632 /*
633  * dma_addr is the kernel virtual address of the bounce buffer to unmap.
634  */
635 void swiotlb_tbl_unmap_single(struct device *hwdev, phys_addr_t tlb_addr,
636                               size_t size, enum dma_data_direction dir,
637                               unsigned long attrs)
638 {
639         unsigned long flags;
640         int i, count, nslots = ALIGN(size, 1 << IO_TLB_SHIFT) >> IO_TLB_SHIFT;
641         int index = (tlb_addr - io_tlb_start) >> IO_TLB_SHIFT;
642         phys_addr_t orig_addr = io_tlb_orig_addr[index];
643
644         /*
645          * First, sync the memory before unmapping the entry
646          */
647         if (orig_addr != INVALID_PHYS_ADDR &&
648             !(attrs & DMA_ATTR_SKIP_CPU_SYNC) &&
649             ((dir == DMA_FROM_DEVICE) || (dir == DMA_BIDIRECTIONAL)))
650                 swiotlb_bounce(orig_addr, tlb_addr, size, DMA_FROM_DEVICE);
651
652         /*
653          * Return the buffer to the free list by setting the corresponding
654          * entries to indicate the number of contiguous entries available.
655          * While returning the entries to the free list, we merge the entries
656          * with slots below and above the pool being returned.
657          */
658         spin_lock_irqsave(&io_tlb_lock, flags);
659         {
660                 count = ((index + nslots) < ALIGN(index + 1, IO_TLB_SEGSIZE) ?
661                          io_tlb_list[index + nslots] : 0);
662                 /*
663                  * Step 1: return the slots to the free list, merging the
664                  * slots with superceeding slots
665                  */
666                 for (i = index + nslots - 1; i >= index; i--) {
667                         io_tlb_list[i] = ++count;
668                         io_tlb_orig_addr[i] = INVALID_PHYS_ADDR;
669                 }
670                 /*
671                  * Step 2: merge the returned slots with the preceding slots,
672                  * if available (non zero)
673                  */
674                 for (i = index - 1; (OFFSET(i, IO_TLB_SEGSIZE) != IO_TLB_SEGSIZE -1) && io_tlb_list[i]; i--)
675                         io_tlb_list[i] = ++count;
676         }
677         spin_unlock_irqrestore(&io_tlb_lock, flags);
678 }
679 EXPORT_SYMBOL_GPL(swiotlb_tbl_unmap_single);
680
681 void swiotlb_tbl_sync_single(struct device *hwdev, phys_addr_t tlb_addr,
682                              size_t size, enum dma_data_direction dir,
683                              enum dma_sync_target target)
684 {
685         int index = (tlb_addr - io_tlb_start) >> IO_TLB_SHIFT;
686         phys_addr_t orig_addr = io_tlb_orig_addr[index];
687
688         if (orig_addr == INVALID_PHYS_ADDR)
689                 return;
690         orig_addr += (unsigned long)tlb_addr & ((1 << IO_TLB_SHIFT) - 1);
691
692         switch (target) {
693         case SYNC_FOR_CPU:
694                 if (likely(dir == DMA_FROM_DEVICE || dir == DMA_BIDIRECTIONAL))
695                         swiotlb_bounce(orig_addr, tlb_addr,
696                                        size, DMA_FROM_DEVICE);
697                 else
698                         BUG_ON(dir != DMA_TO_DEVICE);
699                 break;
700         case SYNC_FOR_DEVICE:
701                 if (likely(dir == DMA_TO_DEVICE || dir == DMA_BIDIRECTIONAL))
702                         swiotlb_bounce(orig_addr, tlb_addr,
703                                        size, DMA_TO_DEVICE);
704                 else
705                         BUG_ON(dir != DMA_FROM_DEVICE);
706                 break;
707         default:
708                 BUG();
709         }
710 }
711 EXPORT_SYMBOL_GPL(swiotlb_tbl_sync_single);
712
713 void *
714 swiotlb_alloc_coherent(struct device *hwdev, size_t size,
715                        dma_addr_t *dma_handle, gfp_t flags)
716 {
717         bool warn = !(flags & __GFP_NOWARN);
718         dma_addr_t dev_addr;
719         void *ret;
720         int order = get_order(size);
721         u64 dma_mask = DMA_BIT_MASK(32);
722
723         if (hwdev && hwdev->coherent_dma_mask)
724                 dma_mask = hwdev->coherent_dma_mask;
725
726         ret = (void *)__get_free_pages(flags, order);
727         if (ret) {
728                 dev_addr = swiotlb_virt_to_bus(hwdev, ret);
729                 if (dev_addr + size - 1 > dma_mask) {
730                         /*
731                          * The allocated memory isn't reachable by the device.
732                          */
733                         free_pages((unsigned long) ret, order);
734                         ret = NULL;
735                 }
736         }
737         if (!ret) {
738                 /*
739                  * We are either out of memory or the device can't DMA to
740                  * GFP_DMA memory; fall back on map_single(), which
741                  * will grab memory from the lowest available address range.
742                  */
743                 phys_addr_t paddr = map_single(hwdev, 0, size, DMA_FROM_DEVICE,
744                                                warn ? 0 : DMA_ATTR_NO_WARN);
745                 if (paddr == SWIOTLB_MAP_ERROR)
746                         goto err_warn;
747
748                 ret = phys_to_virt(paddr);
749                 dev_addr = swiotlb_phys_to_dma(hwdev, paddr);
750
751                 /* Confirm address can be DMA'd by device */
752                 if (dev_addr + size - 1 > dma_mask) {
753                         printk("hwdev DMA mask = 0x%016Lx, dev_addr = 0x%016Lx\n",
754                                (unsigned long long)dma_mask,
755                                (unsigned long long)dev_addr);
756
757                         /*
758                          * DMA_TO_DEVICE to avoid memcpy in unmap_single.
759                          * The DMA_ATTR_SKIP_CPU_SYNC is optional.
760                          */
761                         swiotlb_tbl_unmap_single(hwdev, paddr,
762                                                  size, DMA_TO_DEVICE,
763                                                  DMA_ATTR_SKIP_CPU_SYNC);
764                         goto err_warn;
765                 }
766         }
767
768         *dma_handle = dev_addr;
769         memset(ret, 0, size);
770
771         return ret;
772
773 err_warn:
774         if (warn && printk_ratelimit()) {
775                 pr_warn("coherent allocation failed for device %s size=%zu\n",
776                         dev_name(hwdev), size);
777                 dump_stack();
778         }
779
780         return NULL;
781 }
782 EXPORT_SYMBOL(swiotlb_alloc_coherent);
783
784 void
785 swiotlb_free_coherent(struct device *hwdev, size_t size, void *vaddr,
786                       dma_addr_t dev_addr)
787 {
788         phys_addr_t paddr = dma_to_phys(hwdev, dev_addr);
789
790         WARN_ON(irqs_disabled());
791         if (!is_swiotlb_buffer(paddr))
792                 free_pages((unsigned long)vaddr, get_order(size));
793         else
794                 /*
795                  * DMA_TO_DEVICE to avoid memcpy in swiotlb_tbl_unmap_single.
796                  * DMA_ATTR_SKIP_CPU_SYNC is optional.
797                  */
798                 swiotlb_tbl_unmap_single(hwdev, paddr, size, DMA_TO_DEVICE,
799                                          DMA_ATTR_SKIP_CPU_SYNC);
800 }
801 EXPORT_SYMBOL(swiotlb_free_coherent);
802
803 static void
804 swiotlb_full(struct device *dev, size_t size, enum dma_data_direction dir,
805              int do_panic)
806 {
807         if (swiotlb_force == SWIOTLB_NO_FORCE)
808                 return;
809
810         /*
811          * Ran out of IOMMU space for this operation. This is very bad.
812          * Unfortunately the drivers cannot handle this operation properly.
813          * unless they check for dma_mapping_error (most don't)
814          * When the mapping is small enough return a static buffer to limit
815          * the damage, or panic when the transfer is too big.
816          */
817         dev_err_ratelimited(dev, "DMA: Out of SW-IOMMU space for %zu bytes\n",
818                             size);
819
820         if (size <= io_tlb_overflow || !do_panic)
821                 return;
822
823         if (dir == DMA_BIDIRECTIONAL)
824                 panic("DMA: Random memory could be DMA accessed\n");
825         if (dir == DMA_FROM_DEVICE)
826                 panic("DMA: Random memory could be DMA written\n");
827         if (dir == DMA_TO_DEVICE)
828                 panic("DMA: Random memory could be DMA read\n");
829 }
830
831 /*
832  * Map a single buffer of the indicated size for DMA in streaming mode.  The
833  * physical address to use is returned.
834  *
835  * Once the device is given the dma address, the device owns this memory until
836  * either swiotlb_unmap_page or swiotlb_dma_sync_single is performed.
837  */
838 dma_addr_t swiotlb_map_page(struct device *dev, struct page *page,
839                             unsigned long offset, size_t size,
840                             enum dma_data_direction dir,
841                             unsigned long attrs)
842 {
843         phys_addr_t map, phys = page_to_phys(page) + offset;
844         dma_addr_t dev_addr = phys_to_dma(dev, phys);
845
846         BUG_ON(dir == DMA_NONE);
847         /*
848          * If the address happens to be in the device's DMA window,
849          * we can safely return the device addr and not worry about bounce
850          * buffering it.
851          */
852         if (dma_capable(dev, dev_addr, size) && swiotlb_force != SWIOTLB_FORCE)
853                 return dev_addr;
854
855         trace_swiotlb_bounced(dev, dev_addr, size, swiotlb_force);
856
857         /* Oh well, have to allocate and map a bounce buffer. */
858         map = map_single(dev, phys, size, dir, attrs);
859         if (map == SWIOTLB_MAP_ERROR) {
860                 swiotlb_full(dev, size, dir, 1);
861                 return swiotlb_phys_to_dma(dev, io_tlb_overflow_buffer);
862         }
863
864         dev_addr = swiotlb_phys_to_dma(dev, map);
865
866         /* Ensure that the address returned is DMA'ble */
867         if (dma_capable(dev, dev_addr, size))
868                 return dev_addr;
869
870         attrs |= DMA_ATTR_SKIP_CPU_SYNC;
871         swiotlb_tbl_unmap_single(dev, map, size, dir, attrs);
872
873         return swiotlb_phys_to_dma(dev, io_tlb_overflow_buffer);
874 }
875 EXPORT_SYMBOL_GPL(swiotlb_map_page);
876
877 /*
878  * Unmap a single streaming mode DMA translation.  The dma_addr and size must
879  * match what was provided for in a previous swiotlb_map_page call.  All
880  * other usages are undefined.
881  *
882  * After this call, reads by the cpu to the buffer are guaranteed to see
883  * whatever the device wrote there.
884  */
885 static void unmap_single(struct device *hwdev, dma_addr_t dev_addr,
886                          size_t size, enum dma_data_direction dir,
887                          unsigned long attrs)
888 {
889         phys_addr_t paddr = dma_to_phys(hwdev, dev_addr);
890
891         BUG_ON(dir == DMA_NONE);
892
893         if (is_swiotlb_buffer(paddr)) {
894                 swiotlb_tbl_unmap_single(hwdev, paddr, size, dir, attrs);
895                 return;
896         }
897
898         if (dir != DMA_FROM_DEVICE)
899                 return;
900
901         /*
902          * phys_to_virt doesn't work with hihgmem page but we could
903          * call dma_mark_clean() with hihgmem page here. However, we
904          * are fine since dma_mark_clean() is null on POWERPC. We can
905          * make dma_mark_clean() take a physical address if necessary.
906          */
907         dma_mark_clean(phys_to_virt(paddr), size);
908 }
909
910 void swiotlb_unmap_page(struct device *hwdev, dma_addr_t dev_addr,
911                         size_t size, enum dma_data_direction dir,
912                         unsigned long attrs)
913 {
914         unmap_single(hwdev, dev_addr, size, dir, attrs);
915 }
916 EXPORT_SYMBOL_GPL(swiotlb_unmap_page);
917
918 /*
919  * Make physical memory consistent for a single streaming mode DMA translation
920  * after a transfer.
921  *
922  * If you perform a swiotlb_map_page() but wish to interrogate the buffer
923  * using the cpu, yet do not wish to teardown the dma mapping, you must
924  * call this function before doing so.  At the next point you give the dma
925  * address back to the card, you must first perform a
926  * swiotlb_dma_sync_for_device, and then the device again owns the buffer
927  */
928 static void
929 swiotlb_sync_single(struct device *hwdev, dma_addr_t dev_addr,
930                     size_t size, enum dma_data_direction dir,
931                     enum dma_sync_target target)
932 {
933         phys_addr_t paddr = dma_to_phys(hwdev, dev_addr);
934
935         BUG_ON(dir == DMA_NONE);
936
937         if (is_swiotlb_buffer(paddr)) {
938                 swiotlb_tbl_sync_single(hwdev, paddr, size, dir, target);
939                 return;
940         }
941
942         if (dir != DMA_FROM_DEVICE)
943                 return;
944
945         dma_mark_clean(phys_to_virt(paddr), size);
946 }
947
948 void
949 swiotlb_sync_single_for_cpu(struct device *hwdev, dma_addr_t dev_addr,
950                             size_t size, enum dma_data_direction dir)
951 {
952         swiotlb_sync_single(hwdev, dev_addr, size, dir, SYNC_FOR_CPU);
953 }
954 EXPORT_SYMBOL(swiotlb_sync_single_for_cpu);
955
956 void
957 swiotlb_sync_single_for_device(struct device *hwdev, dma_addr_t dev_addr,
958                                size_t size, enum dma_data_direction dir)
959 {
960         swiotlb_sync_single(hwdev, dev_addr, size, dir, SYNC_FOR_DEVICE);
961 }
962 EXPORT_SYMBOL(swiotlb_sync_single_for_device);
963
964 /*
965  * Map a set of buffers described by scatterlist in streaming mode for DMA.
966  * This is the scatter-gather version of the above swiotlb_map_page
967  * interface.  Here the scatter gather list elements are each tagged with the
968  * appropriate dma address and length.  They are obtained via
969  * sg_dma_{address,length}(SG).
970  *
971  * NOTE: An implementation may be able to use a smaller number of
972  *       DMA address/length pairs than there are SG table elements.
973  *       (for example via virtual mapping capabilities)
974  *       The routine returns the number of addr/length pairs actually
975  *       used, at most nents.
976  *
977  * Device ownership issues as mentioned above for swiotlb_map_page are the
978  * same here.
979  */
980 int
981 swiotlb_map_sg_attrs(struct device *hwdev, struct scatterlist *sgl, int nelems,
982                      enum dma_data_direction dir, unsigned long attrs)
983 {
984         struct scatterlist *sg;
985         int i;
986
987         BUG_ON(dir == DMA_NONE);
988
989         for_each_sg(sgl, sg, nelems, i) {
990                 phys_addr_t paddr = sg_phys(sg);
991                 dma_addr_t dev_addr = phys_to_dma(hwdev, paddr);
992
993                 if (swiotlb_force == SWIOTLB_FORCE ||
994                     !dma_capable(hwdev, dev_addr, sg->length)) {
995                         phys_addr_t map = map_single(hwdev, sg_phys(sg),
996                                                      sg->length, dir, attrs);
997                         if (map == SWIOTLB_MAP_ERROR) {
998                                 /* Don't panic here, we expect map_sg users
999                                    to do proper error handling. */
1000                                 swiotlb_full(hwdev, sg->length, dir, 0);
1001                                 attrs |= DMA_ATTR_SKIP_CPU_SYNC;
1002                                 swiotlb_unmap_sg_attrs(hwdev, sgl, i, dir,
1003                                                        attrs);
1004                                 sg_dma_len(sgl) = 0;
1005                                 return 0;
1006                         }
1007                         sg->dma_address = swiotlb_phys_to_dma(hwdev, map);
1008                 } else
1009                         sg->dma_address = dev_addr;
1010                 sg_dma_len(sg) = sg->length;
1011         }
1012         return nelems;
1013 }
1014 EXPORT_SYMBOL(swiotlb_map_sg_attrs);
1015
1016 /*
1017  * Unmap a set of streaming mode DMA translations.  Again, cpu read rules
1018  * concerning calls here are the same as for swiotlb_unmap_page() above.
1019  */
1020 void
1021 swiotlb_unmap_sg_attrs(struct device *hwdev, struct scatterlist *sgl,
1022                        int nelems, enum dma_data_direction dir,
1023                        unsigned long attrs)
1024 {
1025         struct scatterlist *sg;
1026         int i;
1027
1028         BUG_ON(dir == DMA_NONE);
1029
1030         for_each_sg(sgl, sg, nelems, i)
1031                 unmap_single(hwdev, sg->dma_address, sg_dma_len(sg), dir,
1032                              attrs);
1033 }
1034 EXPORT_SYMBOL(swiotlb_unmap_sg_attrs);
1035
1036 /*
1037  * Make physical memory consistent for a set of streaming mode DMA translations
1038  * after a transfer.
1039  *
1040  * The same as swiotlb_sync_single_* but for a scatter-gather list, same rules
1041  * and usage.
1042  */
1043 static void
1044 swiotlb_sync_sg(struct device *hwdev, struct scatterlist *sgl,
1045                 int nelems, enum dma_data_direction dir,
1046                 enum dma_sync_target target)
1047 {
1048         struct scatterlist *sg;
1049         int i;
1050
1051         for_each_sg(sgl, sg, nelems, i)
1052                 swiotlb_sync_single(hwdev, sg->dma_address,
1053                                     sg_dma_len(sg), dir, target);
1054 }
1055
1056 void
1057 swiotlb_sync_sg_for_cpu(struct device *hwdev, struct scatterlist *sg,
1058                         int nelems, enum dma_data_direction dir)
1059 {
1060         swiotlb_sync_sg(hwdev, sg, nelems, dir, SYNC_FOR_CPU);
1061 }
1062 EXPORT_SYMBOL(swiotlb_sync_sg_for_cpu);
1063
1064 void
1065 swiotlb_sync_sg_for_device(struct device *hwdev, struct scatterlist *sg,
1066                            int nelems, enum dma_data_direction dir)
1067 {
1068         swiotlb_sync_sg(hwdev, sg, nelems, dir, SYNC_FOR_DEVICE);
1069 }
1070 EXPORT_SYMBOL(swiotlb_sync_sg_for_device);
1071
1072 int
1073 swiotlb_dma_mapping_error(struct device *hwdev, dma_addr_t dma_addr)
1074 {
1075         return (dma_addr == swiotlb_phys_to_dma(hwdev, io_tlb_overflow_buffer));
1076 }
1077 EXPORT_SYMBOL(swiotlb_dma_mapping_error);
1078
1079 /*
1080  * Return whether the given device DMA address mask can be supported
1081  * properly.  For example, if your device can only drive the low 24-bits
1082  * during bus mastering, then you would pass 0x00ffffff as the mask to
1083  * this function.
1084  */
1085 int
1086 swiotlb_dma_supported(struct device *hwdev, u64 mask)
1087 {
1088         return swiotlb_phys_to_dma(hwdev, io_tlb_end - 1) <= mask;
1089 }
1090 EXPORT_SYMBOL(swiotlb_dma_supported);