blob: 4643d68713fa48d415d2aff92e1c86315ff91f6f [file] [log] [blame]
David S. Millerad7ad572007-07-27 22:39:14 -07001/* iommu.c: Generic sparc64 IOMMU support.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 *
David S. Millerd2841422008-02-08 18:05:46 -08003 * Copyright (C) 1999, 2007, 2008 David S. Miller (davem@davemloft.net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 * Copyright (C) 1999, 2000 Jakub Jelinek (jakub@redhat.com)
5 */
6
7#include <linux/kernel.h>
Paul Gortmaker066bcac2011-07-22 13:18:16 -04008#include <linux/export.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +09009#include <linux/slab.h>
David S. Miller4dbc30f2005-05-11 11:37:00 -070010#include <linux/delay.h>
David S. Millerad7ad572007-07-27 22:39:14 -070011#include <linux/device.h>
12#include <linux/dma-mapping.h>
13#include <linux/errno.h>
David S. Millerd2841422008-02-08 18:05:46 -080014#include <linux/iommu-helper.h>
Akinobu Mitaa66022c2009-12-15 16:48:28 -080015#include <linux/bitmap.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016
David S. Millerad7ad572007-07-27 22:39:14 -070017#ifdef CONFIG_PCI
18#include <linux/pci.h>
19#endif
20
21#include <asm/iommu.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022
23#include "iommu_common.h"
24
David S. Millerad7ad572007-07-27 22:39:14 -070025#define STC_CTXMATCH_ADDR(STC, CTX) \
Linus Torvalds1da177e2005-04-16 15:20:36 -070026 ((STC)->strbuf_ctxmatch_base + ((CTX) << 3))
David S. Millerad7ad572007-07-27 22:39:14 -070027#define STC_FLUSHFLAG_INIT(STC) \
28 (*((STC)->strbuf_flushflag) = 0UL)
29#define STC_FLUSHFLAG_SET(STC) \
30 (*((STC)->strbuf_flushflag) != 0UL)
Linus Torvalds1da177e2005-04-16 15:20:36 -070031
David S. Millerad7ad572007-07-27 22:39:14 -070032#define iommu_read(__reg) \
Linus Torvalds1da177e2005-04-16 15:20:36 -070033({ u64 __ret; \
34 __asm__ __volatile__("ldxa [%1] %2, %0" \
35 : "=r" (__ret) \
36 : "r" (__reg), "i" (ASI_PHYS_BYPASS_EC_E) \
37 : "memory"); \
38 __ret; \
39})
David S. Millerad7ad572007-07-27 22:39:14 -070040#define iommu_write(__reg, __val) \
Linus Torvalds1da177e2005-04-16 15:20:36 -070041 __asm__ __volatile__("stxa %0, [%1] %2" \
42 : /* no outputs */ \
43 : "r" (__val), "r" (__reg), \
44 "i" (ASI_PHYS_BYPASS_EC_E))
45
46/* Must be invoked under the IOMMU lock. */
David S. Millerd2841422008-02-08 18:05:46 -080047static void iommu_flushall(struct iommu *iommu)
Linus Torvalds1da177e2005-04-16 15:20:36 -070048{
David S. Miller861fe902007-05-02 17:31:36 -070049 if (iommu->iommu_flushinv) {
David S. Millerad7ad572007-07-27 22:39:14 -070050 iommu_write(iommu->iommu_flushinv, ~(u64)0);
David S. Miller861fe902007-05-02 17:31:36 -070051 } else {
52 unsigned long tag;
53 int entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
David S. Millerad7ad572007-07-27 22:39:14 -070055 tag = iommu->iommu_tags;
David S. Miller861fe902007-05-02 17:31:36 -070056 for (entry = 0; entry < 16; entry++) {
David S. Millerad7ad572007-07-27 22:39:14 -070057 iommu_write(tag, 0);
David S. Miller861fe902007-05-02 17:31:36 -070058 tag += 8;
59 }
60
61 /* Ensure completion of previous PIO writes. */
David S. Millerad7ad572007-07-27 22:39:14 -070062 (void) iommu_read(iommu->write_complete_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -070063 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070064}
65
66#define IOPTE_CONSISTENT(CTX) \
67 (IOPTE_VALID | IOPTE_CACHE | \
68 (((CTX) << 47) & IOPTE_CONTEXT))
69
70#define IOPTE_STREAMING(CTX) \
71 (IOPTE_CONSISTENT(CTX) | IOPTE_STBUF)
72
73/* Existing mappings are never marked invalid, instead they
74 * are pointed to a dummy page.
75 */
76#define IOPTE_IS_DUMMY(iommu, iopte) \
77 ((iopte_val(*iopte) & IOPTE_PAGE) == (iommu)->dummy_page_pa)
78
David S. Miller16ce82d2007-04-26 21:08:21 -070079static inline void iopte_make_dummy(struct iommu *iommu, iopte_t *iopte)
Linus Torvalds1da177e2005-04-16 15:20:36 -070080{
81 unsigned long val = iopte_val(*iopte);
82
83 val &= ~IOPTE_PAGE;
84 val |= iommu->dummy_page_pa;
85
86 iopte_val(*iopte) = val;
87}
88
David S. Millerd2841422008-02-08 18:05:46 -080089/* Based almost entirely upon the ppc64 iommu allocator. If you use the 'handle'
90 * facility it must all be done in one pass while under the iommu lock.
91 *
92 * On sun4u platforms, we only flush the IOMMU once every time we've passed
93 * over the entire page table doing allocations. Therefore we only ever advance
94 * the hint and cannot backtrack it.
95 */
96unsigned long iommu_range_alloc(struct device *dev,
97 struct iommu *iommu,
98 unsigned long npages,
99 unsigned long *handle)
David S. Miller688cb302005-10-13 22:15:24 -0700100{
David S. Millerd2841422008-02-08 18:05:46 -0800101 unsigned long n, end, start, limit, boundary_size;
David S. Miller9b3627f2007-04-24 23:51:18 -0700102 struct iommu_arena *arena = &iommu->arena;
David S. Millerd2841422008-02-08 18:05:46 -0800103 int pass = 0;
104
105 /* This allocator was derived from x86_64's bit string search */
106
107 /* Sanity check */
108 if (unlikely(npages == 0)) {
109 if (printk_ratelimit())
110 WARN_ON(1);
111 return DMA_ERROR_CODE;
112 }
113
114 if (handle && *handle)
115 start = *handle;
116 else
117 start = arena->hint;
David S. Miller688cb302005-10-13 22:15:24 -0700118
119 limit = arena->limit;
David S. Miller688cb302005-10-13 22:15:24 -0700120
David S. Millerd2841422008-02-08 18:05:46 -0800121 /* The case below can happen if we have a small segment appended
122 * to a large, or when the previous alloc was at the very end of
123 * the available space. If so, go back to the beginning and flush.
124 */
125 if (start >= limit) {
126 start = 0;
127 if (iommu->flush_all)
128 iommu->flush_all(iommu);
129 }
130
131 again:
132
133 if (dev)
134 boundary_size = ALIGN(dma_get_seg_boundary(dev) + 1,
135 1 << IO_PAGE_SHIFT);
136 else
137 boundary_size = ALIGN(1UL << 32, 1 << IO_PAGE_SHIFT);
138
FUJITA Tomonori89c94f22008-02-20 22:56:42 -0800139 n = iommu_area_alloc(arena->map, limit, start, npages,
140 iommu->page_table_map_base >> IO_PAGE_SHIFT,
David S. Millerd2841422008-02-08 18:05:46 -0800141 boundary_size >> IO_PAGE_SHIFT, 0);
142 if (n == -1) {
David S. Miller688cb302005-10-13 22:15:24 -0700143 if (likely(pass < 1)) {
David S. Millerd2841422008-02-08 18:05:46 -0800144 /* First failure, rescan from the beginning. */
David S. Miller688cb302005-10-13 22:15:24 -0700145 start = 0;
David S. Millerd2841422008-02-08 18:05:46 -0800146 if (iommu->flush_all)
147 iommu->flush_all(iommu);
David S. Miller688cb302005-10-13 22:15:24 -0700148 pass++;
149 goto again;
150 } else {
David S. Millerd2841422008-02-08 18:05:46 -0800151 /* Second failure, give up */
152 return DMA_ERROR_CODE;
David S. Miller688cb302005-10-13 22:15:24 -0700153 }
154 }
155
David S. Millerd2841422008-02-08 18:05:46 -0800156 end = n + npages;
David S. Miller688cb302005-10-13 22:15:24 -0700157
158 arena->hint = end;
159
David S. Millerd2841422008-02-08 18:05:46 -0800160 /* Update handle for SG allocations */
161 if (handle)
162 *handle = end;
163
David S. Miller688cb302005-10-13 22:15:24 -0700164 return n;
165}
166
David S. Millerd2841422008-02-08 18:05:46 -0800167void iommu_range_free(struct iommu *iommu, dma_addr_t dma_addr, unsigned long npages)
David S. Miller688cb302005-10-13 22:15:24 -0700168{
David S. Millerd2841422008-02-08 18:05:46 -0800169 struct iommu_arena *arena = &iommu->arena;
170 unsigned long entry;
David S. Miller688cb302005-10-13 22:15:24 -0700171
David S. Millerd2841422008-02-08 18:05:46 -0800172 entry = (dma_addr - iommu->page_table_map_base) >> IO_PAGE_SHIFT;
173
Akinobu Mitaa66022c2009-12-15 16:48:28 -0800174 bitmap_clear(arena->map, entry, npages);
David S. Miller688cb302005-10-13 22:15:24 -0700175}
176
David S. Millerad7ad572007-07-27 22:39:14 -0700177int iommu_table_init(struct iommu *iommu, int tsbsize,
David S. Millerc1b1a5f2008-03-19 04:52:48 -0700178 u32 dma_offset, u32 dma_addr_mask,
179 int numa_node)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180{
David S. Millerc1b1a5f2008-03-19 04:52:48 -0700181 unsigned long i, order, sz, num_tsb_entries;
182 struct page *page;
David S. Miller688cb302005-10-13 22:15:24 -0700183
184 num_tsb_entries = tsbsize / sizeof(iopte_t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185
David S. Miller51e85132005-10-13 21:10:08 -0700186 /* Setup initial software IOMMU state. */
187 spin_lock_init(&iommu->lock);
188 iommu->ctx_lowest_free = 1;
189 iommu->page_table_map_base = dma_offset;
190 iommu->dma_addr_mask = dma_addr_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191
David S. Miller688cb302005-10-13 22:15:24 -0700192 /* Allocate and initialize the free area map. */
193 sz = num_tsb_entries / 8;
194 sz = (sz + 7UL) & ~7UL;
David S. Millerc1b1a5f2008-03-19 04:52:48 -0700195 iommu->arena.map = kmalloc_node(sz, GFP_KERNEL, numa_node);
David S. Miller688cb302005-10-13 22:15:24 -0700196 if (!iommu->arena.map) {
David S. Millerad7ad572007-07-27 22:39:14 -0700197 printk(KERN_ERR "IOMMU: Error, kmalloc(arena.map) failed.\n");
198 return -ENOMEM;
David S. Miller51e85132005-10-13 21:10:08 -0700199 }
David S. Millerc1b1a5f2008-03-19 04:52:48 -0700200 memset(iommu->arena.map, 0, sz);
David S. Miller688cb302005-10-13 22:15:24 -0700201 iommu->arena.limit = num_tsb_entries;
David S. Miller51e85132005-10-13 21:10:08 -0700202
David S. Millerd2841422008-02-08 18:05:46 -0800203 if (tlb_type != hypervisor)
204 iommu->flush_all = iommu_flushall;
205
David S. Miller51e85132005-10-13 21:10:08 -0700206 /* Allocate and initialize the dummy page which we
207 * set inactive IO PTEs to point to.
208 */
David S. Millerc1b1a5f2008-03-19 04:52:48 -0700209 page = alloc_pages_node(numa_node, GFP_KERNEL, 0);
210 if (!page) {
David S. Millerad7ad572007-07-27 22:39:14 -0700211 printk(KERN_ERR "IOMMU: Error, gfp(dummy_page) failed.\n");
212 goto out_free_map;
David S. Miller51e85132005-10-13 21:10:08 -0700213 }
David S. Millerc1b1a5f2008-03-19 04:52:48 -0700214 iommu->dummy_page = (unsigned long) page_address(page);
215 memset((void *)iommu->dummy_page, 0, PAGE_SIZE);
David S. Miller51e85132005-10-13 21:10:08 -0700216 iommu->dummy_page_pa = (unsigned long) __pa(iommu->dummy_page);
217
218 /* Now allocate and setup the IOMMU page table itself. */
219 order = get_order(tsbsize);
David S. Millerc1b1a5f2008-03-19 04:52:48 -0700220 page = alloc_pages_node(numa_node, GFP_KERNEL, order);
221 if (!page) {
David S. Millerad7ad572007-07-27 22:39:14 -0700222 printk(KERN_ERR "IOMMU: Error, gfp(tsb) failed.\n");
223 goto out_free_dummy_page;
David S. Miller51e85132005-10-13 21:10:08 -0700224 }
David S. Millerc1b1a5f2008-03-19 04:52:48 -0700225 iommu->page_table = (iopte_t *)page_address(page);
David S. Miller51e85132005-10-13 21:10:08 -0700226
David S. Miller688cb302005-10-13 22:15:24 -0700227 for (i = 0; i < num_tsb_entries; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 iopte_make_dummy(iommu, &iommu->page_table[i]);
David S. Millerad7ad572007-07-27 22:39:14 -0700229
230 return 0;
231
232out_free_dummy_page:
233 free_page(iommu->dummy_page);
234 iommu->dummy_page = 0UL;
235
236out_free_map:
237 kfree(iommu->arena.map);
238 iommu->arena.map = NULL;
239
240 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241}
242
David S. Millerd2841422008-02-08 18:05:46 -0800243static inline iopte_t *alloc_npages(struct device *dev, struct iommu *iommu,
244 unsigned long npages)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245{
David S. Millerd2841422008-02-08 18:05:46 -0800246 unsigned long entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247
David S. Millerd2841422008-02-08 18:05:46 -0800248 entry = iommu_range_alloc(dev, iommu, npages, NULL);
249 if (unlikely(entry == DMA_ERROR_CODE))
David S. Miller688cb302005-10-13 22:15:24 -0700250 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251
David S. Miller688cb302005-10-13 22:15:24 -0700252 return iommu->page_table + entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253}
254
David S. Miller16ce82d2007-04-26 21:08:21 -0700255static int iommu_alloc_ctx(struct iommu *iommu)
David S. Miller7c963ad2005-05-31 16:57:59 -0700256{
257 int lowest = iommu->ctx_lowest_free;
Akinobu Mita711c71a2011-02-08 04:59:50 +0000258 int n = find_next_zero_bit(iommu->ctx_bitmap, IOMMU_NUM_CTXS, lowest);
David S. Miller7c963ad2005-05-31 16:57:59 -0700259
Akinobu Mita711c71a2011-02-08 04:59:50 +0000260 if (unlikely(n == IOMMU_NUM_CTXS)) {
David S. Miller7c963ad2005-05-31 16:57:59 -0700261 n = find_next_zero_bit(iommu->ctx_bitmap, lowest, 1);
262 if (unlikely(n == lowest)) {
263 printk(KERN_WARNING "IOMMU: Ran out of contexts.\n");
264 n = 0;
265 }
266 }
267 if (n)
268 __set_bit(n, iommu->ctx_bitmap);
269
270 return n;
271}
272
David S. Miller16ce82d2007-04-26 21:08:21 -0700273static inline void iommu_free_ctx(struct iommu *iommu, int ctx)
David S. Miller7c963ad2005-05-31 16:57:59 -0700274{
275 if (likely(ctx)) {
276 __clear_bit(ctx, iommu->ctx_bitmap);
277 if (ctx < iommu->ctx_lowest_free)
278 iommu->ctx_lowest_free = ctx;
279 }
280}
281
David S. Millerad7ad572007-07-27 22:39:14 -0700282static void *dma_4u_alloc_coherent(struct device *dev, size_t size,
283 dma_addr_t *dma_addrp, gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284{
David S. Miller688cb302005-10-13 22:15:24 -0700285 unsigned long flags, order, first_page;
David S. Millerc1b1a5f2008-03-19 04:52:48 -0700286 struct iommu *iommu;
287 struct page *page;
288 int npages, nid;
289 iopte_t *iopte;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 void *ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291
292 size = IO_PAGE_ALIGN(size);
293 order = get_order(size);
294 if (order >= 10)
295 return NULL;
296
David S. Millerc1b1a5f2008-03-19 04:52:48 -0700297 nid = dev->archdata.numa_node;
298 page = alloc_pages_node(nid, gfp, order);
299 if (unlikely(!page))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 return NULL;
David S. Millerc1b1a5f2008-03-19 04:52:48 -0700301
302 first_page = (unsigned long) page_address(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 memset((char *)first_page, 0, PAGE_SIZE << order);
304
David S. Millerad7ad572007-07-27 22:39:14 -0700305 iommu = dev->archdata.iommu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306
307 spin_lock_irqsave(&iommu->lock, flags);
David S. Millerd2841422008-02-08 18:05:46 -0800308 iopte = alloc_npages(dev, iommu, size >> IO_PAGE_SHIFT);
David S. Miller688cb302005-10-13 22:15:24 -0700309 spin_unlock_irqrestore(&iommu->lock, flags);
310
311 if (unlikely(iopte == NULL)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 free_pages(first_page, order);
313 return NULL;
314 }
315
316 *dma_addrp = (iommu->page_table_map_base +
317 ((iopte - iommu->page_table) << IO_PAGE_SHIFT));
318 ret = (void *) first_page;
319 npages = size >> IO_PAGE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 first_page = __pa(first_page);
321 while (npages--) {
David S. Miller688cb302005-10-13 22:15:24 -0700322 iopte_val(*iopte) = (IOPTE_CONSISTENT(0UL) |
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 IOPTE_WRITE |
324 (first_page & IOPTE_PAGE));
325 iopte++;
326 first_page += IO_PAGE_SIZE;
327 }
328
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 return ret;
330}
331
David S. Millerad7ad572007-07-27 22:39:14 -0700332static void dma_4u_free_coherent(struct device *dev, size_t size,
333 void *cpu, dma_addr_t dvma)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334{
David S. Miller16ce82d2007-04-26 21:08:21 -0700335 struct iommu *iommu;
David S. Miller688cb302005-10-13 22:15:24 -0700336 unsigned long flags, order, npages;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337
338 npages = IO_PAGE_ALIGN(size) >> IO_PAGE_SHIFT;
David S. Millerad7ad572007-07-27 22:39:14 -0700339 iommu = dev->archdata.iommu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340
341 spin_lock_irqsave(&iommu->lock, flags);
342
David S. Millerd2841422008-02-08 18:05:46 -0800343 iommu_range_free(iommu, dvma, npages);
David S. Miller7c963ad2005-05-31 16:57:59 -0700344
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 spin_unlock_irqrestore(&iommu->lock, flags);
346
347 order = get_order(size);
348 if (order < 10)
349 free_pages((unsigned long)cpu, order);
350}
351
FUJITA Tomonori797a7562009-05-14 16:23:10 +0000352static dma_addr_t dma_4u_map_page(struct device *dev, struct page *page,
353 unsigned long offset, size_t sz,
FUJITA Tomonoribc0a14f2009-08-10 11:53:12 +0900354 enum dma_data_direction direction,
355 struct dma_attrs *attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356{
David S. Miller16ce82d2007-04-26 21:08:21 -0700357 struct iommu *iommu;
358 struct strbuf *strbuf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 iopte_t *base;
360 unsigned long flags, npages, oaddr;
361 unsigned long i, base_paddr, ctx;
362 u32 bus_addr, ret;
363 unsigned long iopte_protection;
364
David S. Millerad7ad572007-07-27 22:39:14 -0700365 iommu = dev->archdata.iommu;
366 strbuf = dev->archdata.stc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367
David S. Millerad7ad572007-07-27 22:39:14 -0700368 if (unlikely(direction == DMA_NONE))
David S. Miller688cb302005-10-13 22:15:24 -0700369 goto bad_no_ctx;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370
FUJITA Tomonori797a7562009-05-14 16:23:10 +0000371 oaddr = (unsigned long)(page_address(page) + offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 npages = IO_PAGE_ALIGN(oaddr + sz) - (oaddr & IO_PAGE_MASK);
373 npages >>= IO_PAGE_SHIFT;
374
375 spin_lock_irqsave(&iommu->lock, flags);
David S. Millerd2841422008-02-08 18:05:46 -0800376 base = alloc_npages(dev, iommu, npages);
David S. Miller688cb302005-10-13 22:15:24 -0700377 ctx = 0;
378 if (iommu->iommu_ctxflush)
379 ctx = iommu_alloc_ctx(iommu);
380 spin_unlock_irqrestore(&iommu->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381
David S. Miller688cb302005-10-13 22:15:24 -0700382 if (unlikely(!base))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 goto bad;
David S. Miller688cb302005-10-13 22:15:24 -0700384
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 bus_addr = (iommu->page_table_map_base +
386 ((base - iommu->page_table) << IO_PAGE_SHIFT));
387 ret = bus_addr | (oaddr & ~IO_PAGE_MASK);
388 base_paddr = __pa(oaddr & IO_PAGE_MASK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 if (strbuf->strbuf_enabled)
390 iopte_protection = IOPTE_STREAMING(ctx);
391 else
392 iopte_protection = IOPTE_CONSISTENT(ctx);
David S. Millerad7ad572007-07-27 22:39:14 -0700393 if (direction != DMA_TO_DEVICE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 iopte_protection |= IOPTE_WRITE;
395
396 for (i = 0; i < npages; i++, base++, base_paddr += IO_PAGE_SIZE)
397 iopte_val(*base) = iopte_protection | base_paddr;
398
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 return ret;
400
401bad:
David S. Miller688cb302005-10-13 22:15:24 -0700402 iommu_free_ctx(iommu, ctx);
403bad_no_ctx:
404 if (printk_ratelimit())
405 WARN_ON(1);
David S. Millerad7ad572007-07-27 22:39:14 -0700406 return DMA_ERROR_CODE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407}
408
David S. Millerad7ad572007-07-27 22:39:14 -0700409static void strbuf_flush(struct strbuf *strbuf, struct iommu *iommu,
410 u32 vaddr, unsigned long ctx, unsigned long npages,
411 enum dma_data_direction direction)
David S. Miller4dbc30f2005-05-11 11:37:00 -0700412{
413 int limit;
414
David S. Miller4dbc30f2005-05-11 11:37:00 -0700415 if (strbuf->strbuf_ctxflush &&
416 iommu->iommu_ctxflush) {
417 unsigned long matchreg, flushreg;
David S. Miller7c963ad2005-05-31 16:57:59 -0700418 u64 val;
David S. Miller4dbc30f2005-05-11 11:37:00 -0700419
420 flushreg = strbuf->strbuf_ctxflush;
David S. Millerad7ad572007-07-27 22:39:14 -0700421 matchreg = STC_CTXMATCH_ADDR(strbuf, ctx);
David S. Miller4dbc30f2005-05-11 11:37:00 -0700422
David S. Millerad7ad572007-07-27 22:39:14 -0700423 iommu_write(flushreg, ctx);
424 val = iommu_read(matchreg);
David S. Miller88314ee2005-05-31 19:13:52 -0700425 val &= 0xffff;
426 if (!val)
David S. Miller7c963ad2005-05-31 16:57:59 -0700427 goto do_flush_sync;
428
David S. Miller7c963ad2005-05-31 16:57:59 -0700429 while (val) {
430 if (val & 0x1)
David S. Millerad7ad572007-07-27 22:39:14 -0700431 iommu_write(flushreg, ctx);
David S. Miller7c963ad2005-05-31 16:57:59 -0700432 val >>= 1;
David S. Millera228dfd2005-05-20 11:40:32 -0700433 }
David S. Millerad7ad572007-07-27 22:39:14 -0700434 val = iommu_read(matchreg);
David S. Miller7c963ad2005-05-31 16:57:59 -0700435 if (unlikely(val)) {
David S. Millerad7ad572007-07-27 22:39:14 -0700436 printk(KERN_WARNING "strbuf_flush: ctx flush "
Sam Ravnborg90181132009-01-06 13:19:28 -0800437 "timeout matchreg[%llx] ctx[%lx]\n",
David S. Miller7c963ad2005-05-31 16:57:59 -0700438 val, ctx);
439 goto do_page_flush;
440 }
David S. Miller4dbc30f2005-05-11 11:37:00 -0700441 } else {
442 unsigned long i;
443
David S. Miller7c963ad2005-05-31 16:57:59 -0700444 do_page_flush:
David S. Miller4dbc30f2005-05-11 11:37:00 -0700445 for (i = 0; i < npages; i++, vaddr += IO_PAGE_SIZE)
David S. Millerad7ad572007-07-27 22:39:14 -0700446 iommu_write(strbuf->strbuf_pflush, vaddr);
David S. Miller4dbc30f2005-05-11 11:37:00 -0700447 }
448
David S. Miller7c963ad2005-05-31 16:57:59 -0700449do_flush_sync:
450 /* If the device could not have possibly put dirty data into
451 * the streaming cache, no flush-flag synchronization needs
452 * to be performed.
453 */
David S. Millerad7ad572007-07-27 22:39:14 -0700454 if (direction == DMA_TO_DEVICE)
David S. Miller7c963ad2005-05-31 16:57:59 -0700455 return;
456
David S. Millerad7ad572007-07-27 22:39:14 -0700457 STC_FLUSHFLAG_INIT(strbuf);
458 iommu_write(strbuf->strbuf_fsync, strbuf->strbuf_flushflag_pa);
459 (void) iommu_read(iommu->write_complete_reg);
David S. Miller4dbc30f2005-05-11 11:37:00 -0700460
David S. Millera228dfd2005-05-20 11:40:32 -0700461 limit = 100000;
David S. Millerad7ad572007-07-27 22:39:14 -0700462 while (!STC_FLUSHFLAG_SET(strbuf)) {
David S. Miller4dbc30f2005-05-11 11:37:00 -0700463 limit--;
464 if (!limit)
465 break;
David S. Millera228dfd2005-05-20 11:40:32 -0700466 udelay(1);
David S. Miller4f071182005-08-29 12:46:22 -0700467 rmb();
David S. Miller4dbc30f2005-05-11 11:37:00 -0700468 }
469 if (!limit)
David S. Millerad7ad572007-07-27 22:39:14 -0700470 printk(KERN_WARNING "strbuf_flush: flushflag timeout "
David S. Miller4dbc30f2005-05-11 11:37:00 -0700471 "vaddr[%08x] ctx[%lx] npages[%ld]\n",
472 vaddr, ctx, npages);
473}
474
FUJITA Tomonori797a7562009-05-14 16:23:10 +0000475static void dma_4u_unmap_page(struct device *dev, dma_addr_t bus_addr,
FUJITA Tomonoribc0a14f2009-08-10 11:53:12 +0900476 size_t sz, enum dma_data_direction direction,
477 struct dma_attrs *attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478{
David S. Miller16ce82d2007-04-26 21:08:21 -0700479 struct iommu *iommu;
480 struct strbuf *strbuf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 iopte_t *base;
David S. Miller688cb302005-10-13 22:15:24 -0700482 unsigned long flags, npages, ctx, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483
David S. Millerad7ad572007-07-27 22:39:14 -0700484 if (unlikely(direction == DMA_NONE)) {
David S. Miller688cb302005-10-13 22:15:24 -0700485 if (printk_ratelimit())
486 WARN_ON(1);
487 return;
488 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489
David S. Millerad7ad572007-07-27 22:39:14 -0700490 iommu = dev->archdata.iommu;
491 strbuf = dev->archdata.stc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492
493 npages = IO_PAGE_ALIGN(bus_addr + sz) - (bus_addr & IO_PAGE_MASK);
494 npages >>= IO_PAGE_SHIFT;
495 base = iommu->page_table +
496 ((bus_addr - iommu->page_table_map_base) >> IO_PAGE_SHIFT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 bus_addr &= IO_PAGE_MASK;
498
499 spin_lock_irqsave(&iommu->lock, flags);
500
501 /* Record the context, if any. */
502 ctx = 0;
503 if (iommu->iommu_ctxflush)
504 ctx = (iopte_val(*base) & IOPTE_CONTEXT) >> 47UL;
505
506 /* Step 1: Kick data out of streaming buffers if necessary. */
David S. Miller4dbc30f2005-05-11 11:37:00 -0700507 if (strbuf->strbuf_enabled)
David S. Millerad7ad572007-07-27 22:39:14 -0700508 strbuf_flush(strbuf, iommu, bus_addr, ctx,
509 npages, direction);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510
David S. Miller688cb302005-10-13 22:15:24 -0700511 /* Step 2: Clear out TSB entries. */
512 for (i = 0; i < npages; i++)
513 iopte_make_dummy(iommu, base + i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514
David S. Millerd2841422008-02-08 18:05:46 -0800515 iommu_range_free(iommu, bus_addr, npages);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516
David S. Miller7c963ad2005-05-31 16:57:59 -0700517 iommu_free_ctx(iommu, ctx);
518
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 spin_unlock_irqrestore(&iommu->lock, flags);
520}
521
David S. Millerad7ad572007-07-27 22:39:14 -0700522static int dma_4u_map_sg(struct device *dev, struct scatterlist *sglist,
FUJITA Tomonoribc0a14f2009-08-10 11:53:12 +0900523 int nelems, enum dma_data_direction direction,
524 struct dma_attrs *attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525{
David S. Miller13fa14e2008-02-09 03:11:01 -0800526 struct scatterlist *s, *outs, *segstart;
527 unsigned long flags, handle, prot, ctx;
528 dma_addr_t dma_next = 0, dma_addr;
529 unsigned int max_seg_size;
FUJITA Tomonorif0880252008-03-28 15:55:41 -0700530 unsigned long seg_boundary_size;
David S. Miller13fa14e2008-02-09 03:11:01 -0800531 int outcount, incount, i;
David S. Miller16ce82d2007-04-26 21:08:21 -0700532 struct strbuf *strbuf;
David S. Miller38192d52008-02-06 03:50:26 -0800533 struct iommu *iommu;
FUJITA Tomonorif0880252008-03-28 15:55:41 -0700534 unsigned long base_shift;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535
David S. Miller13fa14e2008-02-09 03:11:01 -0800536 BUG_ON(direction == DMA_NONE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537
David S. Millerad7ad572007-07-27 22:39:14 -0700538 iommu = dev->archdata.iommu;
539 strbuf = dev->archdata.stc;
David S. Miller13fa14e2008-02-09 03:11:01 -0800540 if (nelems == 0 || !iommu)
541 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542
543 spin_lock_irqsave(&iommu->lock, flags);
544
David S. Miller688cb302005-10-13 22:15:24 -0700545 ctx = 0;
546 if (iommu->iommu_ctxflush)
547 ctx = iommu_alloc_ctx(iommu);
548
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 if (strbuf->strbuf_enabled)
David S. Miller13fa14e2008-02-09 03:11:01 -0800550 prot = IOPTE_STREAMING(ctx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 else
David S. Miller13fa14e2008-02-09 03:11:01 -0800552 prot = IOPTE_CONSISTENT(ctx);
David S. Millerad7ad572007-07-27 22:39:14 -0700553 if (direction != DMA_TO_DEVICE)
David S. Miller13fa14e2008-02-09 03:11:01 -0800554 prot |= IOPTE_WRITE;
David S. Miller688cb302005-10-13 22:15:24 -0700555
David S. Miller13fa14e2008-02-09 03:11:01 -0800556 outs = s = segstart = &sglist[0];
557 outcount = 1;
558 incount = nelems;
559 handle = 0;
David S. Miller688cb302005-10-13 22:15:24 -0700560
David S. Miller13fa14e2008-02-09 03:11:01 -0800561 /* Init first segment length for backout at failure */
562 outs->dma_length = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563
David S. Miller13fa14e2008-02-09 03:11:01 -0800564 max_seg_size = dma_get_max_seg_size(dev);
FUJITA Tomonorif0880252008-03-28 15:55:41 -0700565 seg_boundary_size = ALIGN(dma_get_seg_boundary(dev) + 1,
566 IO_PAGE_SIZE) >> IO_PAGE_SHIFT;
567 base_shift = iommu->page_table_map_base >> IO_PAGE_SHIFT;
David S. Miller13fa14e2008-02-09 03:11:01 -0800568 for_each_sg(sglist, s, nelems, i) {
FUJITA Tomonorif0880252008-03-28 15:55:41 -0700569 unsigned long paddr, npages, entry, out_entry = 0, slen;
David S. Miller13fa14e2008-02-09 03:11:01 -0800570 iopte_t *base;
David S. Miller38192d52008-02-06 03:50:26 -0800571
David S. Miller13fa14e2008-02-09 03:11:01 -0800572 slen = s->length;
573 /* Sanity check */
574 if (slen == 0) {
575 dma_next = 0;
576 continue;
577 }
578 /* Allocate iommu entries for that segment */
579 paddr = (unsigned long) SG_ENT_PHYS_ADDRESS(s);
Joerg Roedel0fcff282008-10-15 22:02:14 -0700580 npages = iommu_num_pages(paddr, slen, IO_PAGE_SIZE);
David S. Miller13fa14e2008-02-09 03:11:01 -0800581 entry = iommu_range_alloc(dev, iommu, npages, &handle);
582
583 /* Handle failure */
584 if (unlikely(entry == DMA_ERROR_CODE)) {
585 if (printk_ratelimit())
586 printk(KERN_INFO "iommu_alloc failed, iommu %p paddr %lx"
587 " npages %lx\n", iommu, paddr, npages);
588 goto iommu_map_failed;
589 }
590
591 base = iommu->page_table + entry;
592
593 /* Convert entry to a dma_addr_t */
594 dma_addr = iommu->page_table_map_base +
595 (entry << IO_PAGE_SHIFT);
596 dma_addr |= (s->offset & ~IO_PAGE_MASK);
597
598 /* Insert into HW table */
David S. Miller38192d52008-02-06 03:50:26 -0800599 paddr &= IO_PAGE_MASK;
David S. Miller13fa14e2008-02-09 03:11:01 -0800600 while (npages--) {
601 iopte_val(*base) = prot | paddr;
David S. Miller38192d52008-02-06 03:50:26 -0800602 base++;
603 paddr += IO_PAGE_SIZE;
David S. Miller38192d52008-02-06 03:50:26 -0800604 }
David S. Miller13fa14e2008-02-09 03:11:01 -0800605
606 /* If we are in an open segment, try merging */
607 if (segstart != s) {
608 /* We cannot merge if:
609 * - allocated dma_addr isn't contiguous to previous allocation
610 */
611 if ((dma_addr != dma_next) ||
FUJITA Tomonorif0880252008-03-28 15:55:41 -0700612 (outs->dma_length + s->length > max_seg_size) ||
613 (is_span_boundary(out_entry, base_shift,
614 seg_boundary_size, outs, s))) {
David S. Miller13fa14e2008-02-09 03:11:01 -0800615 /* Can't merge: create a new segment */
616 segstart = s;
617 outcount++;
618 outs = sg_next(outs);
619 } else {
620 outs->dma_length += s->length;
621 }
622 }
623
624 if (segstart == s) {
625 /* This is a new segment, fill entries */
626 outs->dma_address = dma_addr;
627 outs->dma_length = slen;
FUJITA Tomonorif0880252008-03-28 15:55:41 -0700628 out_entry = entry;
David S. Miller13fa14e2008-02-09 03:11:01 -0800629 }
630
631 /* Calculate next page pointer for contiguous check */
632 dma_next = dma_addr + slen;
David S. Miller38192d52008-02-06 03:50:26 -0800633 }
634
David S. Miller13fa14e2008-02-09 03:11:01 -0800635 spin_unlock_irqrestore(&iommu->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636
David S. Miller13fa14e2008-02-09 03:11:01 -0800637 if (outcount < incount) {
638 outs = sg_next(outs);
639 outs->dma_address = DMA_ERROR_CODE;
640 outs->dma_length = 0;
641 }
642
643 return outcount;
644
645iommu_map_failed:
646 for_each_sg(sglist, s, nelems, i) {
647 if (s->dma_length != 0) {
David S. Miller6c830fe2008-03-25 22:44:10 -0700648 unsigned long vaddr, npages, entry, j;
David S. Miller13fa14e2008-02-09 03:11:01 -0800649 iopte_t *base;
650
651 vaddr = s->dma_address & IO_PAGE_MASK;
Joerg Roedel0fcff282008-10-15 22:02:14 -0700652 npages = iommu_num_pages(s->dma_address, s->dma_length,
653 IO_PAGE_SIZE);
David S. Miller13fa14e2008-02-09 03:11:01 -0800654 iommu_range_free(iommu, vaddr, npages);
655
656 entry = (vaddr - iommu->page_table_map_base)
657 >> IO_PAGE_SHIFT;
658 base = iommu->page_table + entry;
659
David S. Miller6c830fe2008-03-25 22:44:10 -0700660 for (j = 0; j < npages; j++)
661 iopte_make_dummy(iommu, base + j);
David S. Miller13fa14e2008-02-09 03:11:01 -0800662
663 s->dma_address = DMA_ERROR_CODE;
664 s->dma_length = 0;
665 }
666 if (s == outs)
667 break;
668 }
669 spin_unlock_irqrestore(&iommu->lock, flags);
670
David S. Miller688cb302005-10-13 22:15:24 -0700671 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672}
673
David S. Miller13fa14e2008-02-09 03:11:01 -0800674/* If contexts are being used, they are the same in all of the mappings
675 * we make for a particular SG.
676 */
677static unsigned long fetch_sg_ctx(struct iommu *iommu, struct scatterlist *sg)
678{
679 unsigned long ctx = 0;
680
681 if (iommu->iommu_ctxflush) {
682 iopte_t *base;
683 u32 bus_addr;
684
685 bus_addr = sg->dma_address & IO_PAGE_MASK;
686 base = iommu->page_table +
687 ((bus_addr - iommu->page_table_map_base) >> IO_PAGE_SHIFT);
688
689 ctx = (iopte_val(*base) & IOPTE_CONTEXT) >> 47UL;
690 }
691 return ctx;
692}
693
David S. Millerad7ad572007-07-27 22:39:14 -0700694static void dma_4u_unmap_sg(struct device *dev, struct scatterlist *sglist,
FUJITA Tomonoribc0a14f2009-08-10 11:53:12 +0900695 int nelems, enum dma_data_direction direction,
696 struct dma_attrs *attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697{
David S. Miller13fa14e2008-02-09 03:11:01 -0800698 unsigned long flags, ctx;
699 struct scatterlist *sg;
David S. Miller38192d52008-02-06 03:50:26 -0800700 struct strbuf *strbuf;
701 struct iommu *iommu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702
David S. Miller13fa14e2008-02-09 03:11:01 -0800703 BUG_ON(direction == DMA_NONE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704
David S. Millerad7ad572007-07-27 22:39:14 -0700705 iommu = dev->archdata.iommu;
706 strbuf = dev->archdata.stc;
707
David S. Miller13fa14e2008-02-09 03:11:01 -0800708 ctx = fetch_sg_ctx(iommu, sglist);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 spin_lock_irqsave(&iommu->lock, flags);
711
David S. Miller13fa14e2008-02-09 03:11:01 -0800712 sg = sglist;
713 while (nelems--) {
714 dma_addr_t dma_handle = sg->dma_address;
715 unsigned int len = sg->dma_length;
716 unsigned long npages, entry;
717 iopte_t *base;
718 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719
David S. Miller13fa14e2008-02-09 03:11:01 -0800720 if (!len)
721 break;
Joerg Roedel0fcff282008-10-15 22:02:14 -0700722 npages = iommu_num_pages(dma_handle, len, IO_PAGE_SIZE);
David S. Miller13fa14e2008-02-09 03:11:01 -0800723 iommu_range_free(iommu, dma_handle, npages);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724
David S. Miller13fa14e2008-02-09 03:11:01 -0800725 entry = ((dma_handle - iommu->page_table_map_base)
726 >> IO_PAGE_SHIFT);
727 base = iommu->page_table + entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728
David S. Miller13fa14e2008-02-09 03:11:01 -0800729 dma_handle &= IO_PAGE_MASK;
730 if (strbuf->strbuf_enabled)
731 strbuf_flush(strbuf, iommu, dma_handle, ctx,
732 npages, direction);
733
734 for (i = 0; i < npages; i++)
735 iopte_make_dummy(iommu, base + i);
736
737 sg = sg_next(sg);
738 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739
David S. Miller7c963ad2005-05-31 16:57:59 -0700740 iommu_free_ctx(iommu, ctx);
741
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 spin_unlock_irqrestore(&iommu->lock, flags);
743}
744
David S. Millerad7ad572007-07-27 22:39:14 -0700745static void dma_4u_sync_single_for_cpu(struct device *dev,
746 dma_addr_t bus_addr, size_t sz,
747 enum dma_data_direction direction)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748{
David S. Miller16ce82d2007-04-26 21:08:21 -0700749 struct iommu *iommu;
750 struct strbuf *strbuf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 unsigned long flags, ctx, npages;
752
David S. Millerad7ad572007-07-27 22:39:14 -0700753 iommu = dev->archdata.iommu;
754 strbuf = dev->archdata.stc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755
756 if (!strbuf->strbuf_enabled)
757 return;
758
759 spin_lock_irqsave(&iommu->lock, flags);
760
761 npages = IO_PAGE_ALIGN(bus_addr + sz) - (bus_addr & IO_PAGE_MASK);
762 npages >>= IO_PAGE_SHIFT;
763 bus_addr &= IO_PAGE_MASK;
764
765 /* Step 1: Record the context, if any. */
766 ctx = 0;
767 if (iommu->iommu_ctxflush &&
768 strbuf->strbuf_ctxflush) {
769 iopte_t *iopte;
770
771 iopte = iommu->page_table +
772 ((bus_addr - iommu->page_table_map_base)>>IO_PAGE_SHIFT);
773 ctx = (iopte_val(*iopte) & IOPTE_CONTEXT) >> 47UL;
774 }
775
776 /* Step 2: Kick data out of streaming buffers. */
David S. Millerad7ad572007-07-27 22:39:14 -0700777 strbuf_flush(strbuf, iommu, bus_addr, ctx, npages, direction);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778
779 spin_unlock_irqrestore(&iommu->lock, flags);
780}
781
David S. Millerad7ad572007-07-27 22:39:14 -0700782static void dma_4u_sync_sg_for_cpu(struct device *dev,
783 struct scatterlist *sglist, int nelems,
784 enum dma_data_direction direction)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785{
David S. Miller16ce82d2007-04-26 21:08:21 -0700786 struct iommu *iommu;
787 struct strbuf *strbuf;
David S. Miller4dbc30f2005-05-11 11:37:00 -0700788 unsigned long flags, ctx, npages, i;
Jens Axboe2c941a22007-08-07 09:37:10 +0200789 struct scatterlist *sg, *sgprv;
David S. Miller4dbc30f2005-05-11 11:37:00 -0700790 u32 bus_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791
David S. Millerad7ad572007-07-27 22:39:14 -0700792 iommu = dev->archdata.iommu;
793 strbuf = dev->archdata.stc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794
795 if (!strbuf->strbuf_enabled)
796 return;
797
798 spin_lock_irqsave(&iommu->lock, flags);
799
800 /* Step 1: Record the context, if any. */
801 ctx = 0;
802 if (iommu->iommu_ctxflush &&
803 strbuf->strbuf_ctxflush) {
804 iopte_t *iopte;
805
806 iopte = iommu->page_table +
807 ((sglist[0].dma_address - iommu->page_table_map_base) >> IO_PAGE_SHIFT);
808 ctx = (iopte_val(*iopte) & IOPTE_CONTEXT) >> 47UL;
809 }
810
811 /* Step 2: Kick data out of streaming buffers. */
David S. Miller4dbc30f2005-05-11 11:37:00 -0700812 bus_addr = sglist[0].dma_address & IO_PAGE_MASK;
Jens Axboe2c941a22007-08-07 09:37:10 +0200813 sgprv = NULL;
814 for_each_sg(sglist, sg, nelems, i) {
815 if (sg->dma_length == 0)
David S. Miller4dbc30f2005-05-11 11:37:00 -0700816 break;
Jens Axboe2c941a22007-08-07 09:37:10 +0200817 sgprv = sg;
818 }
819
820 npages = (IO_PAGE_ALIGN(sgprv->dma_address + sgprv->dma_length)
David S. Miller4dbc30f2005-05-11 11:37:00 -0700821 - bus_addr) >> IO_PAGE_SHIFT;
David S. Millerad7ad572007-07-27 22:39:14 -0700822 strbuf_flush(strbuf, iommu, bus_addr, ctx, npages, direction);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823
824 spin_unlock_irqrestore(&iommu->lock, flags);
825}
826
FUJITA Tomonori02f7a182009-08-10 11:53:13 +0900827static struct dma_map_ops sun4u_dma_ops = {
David S. Millerad7ad572007-07-27 22:39:14 -0700828 .alloc_coherent = dma_4u_alloc_coherent,
829 .free_coherent = dma_4u_free_coherent,
FUJITA Tomonori797a7562009-05-14 16:23:10 +0000830 .map_page = dma_4u_map_page,
831 .unmap_page = dma_4u_unmap_page,
David S. Millerad7ad572007-07-27 22:39:14 -0700832 .map_sg = dma_4u_map_sg,
833 .unmap_sg = dma_4u_unmap_sg,
834 .sync_single_for_cpu = dma_4u_sync_single_for_cpu,
835 .sync_sg_for_cpu = dma_4u_sync_sg_for_cpu,
David S. Miller8f6a93a2006-02-09 21:32:07 -0800836};
837
FUJITA Tomonori02f7a182009-08-10 11:53:13 +0900838struct dma_map_ops *dma_ops = &sun4u_dma_ops;
David S. Millerad7ad572007-07-27 22:39:14 -0700839EXPORT_SYMBOL(dma_ops);
840
FUJITA Tomonoriee664a92009-08-10 11:53:16 +0900841extern int pci64_dma_supported(struct pci_dev *pdev, u64 device_mask);
842
David S. Millerad7ad572007-07-27 22:39:14 -0700843int dma_supported(struct device *dev, u64 device_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844{
David S. Millerad7ad572007-07-27 22:39:14 -0700845 struct iommu *iommu = dev->archdata.iommu;
846 u64 dma_addr_mask = iommu->dma_addr_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847
848 if (device_mask >= (1UL << 32UL))
849 return 0;
850
David S. Millerad7ad572007-07-27 22:39:14 -0700851 if ((device_mask & dma_addr_mask) == dma_addr_mask)
852 return 1;
853
854#ifdef CONFIG_PCI
855 if (dev->bus == &pci_bus_type)
FUJITA Tomonoriee664a92009-08-10 11:53:16 +0900856 return pci64_dma_supported(to_pci_dev(dev), device_mask);
David S. Millerad7ad572007-07-27 22:39:14 -0700857#endif
858
859 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860}
David S. Millerad7ad572007-07-27 22:39:14 -0700861EXPORT_SYMBOL(dma_supported);