blob: 756fa24eeefa18ae72da4a4825e8ba7f143cf682 [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>
David S. Millerad7ad572007-07-27 22:39:14 -07008#include <linux/module.h>
David S. Miller4dbc30f2005-05-11 11:37:00 -07009#include <linux/delay.h>
David S. Millerad7ad572007-07-27 22:39:14 -070010#include <linux/device.h>
11#include <linux/dma-mapping.h>
12#include <linux/errno.h>
David S. Millerd2841422008-02-08 18:05:46 -080013#include <linux/iommu-helper.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014
David S. Millerad7ad572007-07-27 22:39:14 -070015#ifdef CONFIG_PCI
16#include <linux/pci.h>
17#endif
18
19#include <asm/iommu.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020
21#include "iommu_common.h"
22
David S. Millerad7ad572007-07-27 22:39:14 -070023#define STC_CTXMATCH_ADDR(STC, CTX) \
Linus Torvalds1da177e2005-04-16 15:20:36 -070024 ((STC)->strbuf_ctxmatch_base + ((CTX) << 3))
David S. Millerad7ad572007-07-27 22:39:14 -070025#define STC_FLUSHFLAG_INIT(STC) \
26 (*((STC)->strbuf_flushflag) = 0UL)
27#define STC_FLUSHFLAG_SET(STC) \
28 (*((STC)->strbuf_flushflag) != 0UL)
Linus Torvalds1da177e2005-04-16 15:20:36 -070029
David S. Millerad7ad572007-07-27 22:39:14 -070030#define iommu_read(__reg) \
Linus Torvalds1da177e2005-04-16 15:20:36 -070031({ u64 __ret; \
32 __asm__ __volatile__("ldxa [%1] %2, %0" \
33 : "=r" (__ret) \
34 : "r" (__reg), "i" (ASI_PHYS_BYPASS_EC_E) \
35 : "memory"); \
36 __ret; \
37})
David S. Millerad7ad572007-07-27 22:39:14 -070038#define iommu_write(__reg, __val) \
Linus Torvalds1da177e2005-04-16 15:20:36 -070039 __asm__ __volatile__("stxa %0, [%1] %2" \
40 : /* no outputs */ \
41 : "r" (__val), "r" (__reg), \
42 "i" (ASI_PHYS_BYPASS_EC_E))
43
44/* Must be invoked under the IOMMU lock. */
David S. Millerd2841422008-02-08 18:05:46 -080045static void iommu_flushall(struct iommu *iommu)
Linus Torvalds1da177e2005-04-16 15:20:36 -070046{
David S. Miller861fe902007-05-02 17:31:36 -070047 if (iommu->iommu_flushinv) {
David S. Millerad7ad572007-07-27 22:39:14 -070048 iommu_write(iommu->iommu_flushinv, ~(u64)0);
David S. Miller861fe902007-05-02 17:31:36 -070049 } else {
50 unsigned long tag;
51 int entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
David S. Millerad7ad572007-07-27 22:39:14 -070053 tag = iommu->iommu_tags;
David S. Miller861fe902007-05-02 17:31:36 -070054 for (entry = 0; entry < 16; entry++) {
David S. Millerad7ad572007-07-27 22:39:14 -070055 iommu_write(tag, 0);
David S. Miller861fe902007-05-02 17:31:36 -070056 tag += 8;
57 }
58
59 /* Ensure completion of previous PIO writes. */
David S. Millerad7ad572007-07-27 22:39:14 -070060 (void) iommu_read(iommu->write_complete_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -070061 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070062}
63
64#define IOPTE_CONSISTENT(CTX) \
65 (IOPTE_VALID | IOPTE_CACHE | \
66 (((CTX) << 47) & IOPTE_CONTEXT))
67
68#define IOPTE_STREAMING(CTX) \
69 (IOPTE_CONSISTENT(CTX) | IOPTE_STBUF)
70
71/* Existing mappings are never marked invalid, instead they
72 * are pointed to a dummy page.
73 */
74#define IOPTE_IS_DUMMY(iommu, iopte) \
75 ((iopte_val(*iopte) & IOPTE_PAGE) == (iommu)->dummy_page_pa)
76
David S. Miller16ce82d2007-04-26 21:08:21 -070077static inline void iopte_make_dummy(struct iommu *iommu, iopte_t *iopte)
Linus Torvalds1da177e2005-04-16 15:20:36 -070078{
79 unsigned long val = iopte_val(*iopte);
80
81 val &= ~IOPTE_PAGE;
82 val |= iommu->dummy_page_pa;
83
84 iopte_val(*iopte) = val;
85}
86
David S. Millerd2841422008-02-08 18:05:46 -080087/* Based almost entirely upon the ppc64 iommu allocator. If you use the 'handle'
88 * facility it must all be done in one pass while under the iommu lock.
89 *
90 * On sun4u platforms, we only flush the IOMMU once every time we've passed
91 * over the entire page table doing allocations. Therefore we only ever advance
92 * the hint and cannot backtrack it.
93 */
94unsigned long iommu_range_alloc(struct device *dev,
95 struct iommu *iommu,
96 unsigned long npages,
97 unsigned long *handle)
David S. Miller688cb302005-10-13 22:15:24 -070098{
David S. Millerd2841422008-02-08 18:05:46 -080099 unsigned long n, end, start, limit, boundary_size;
David S. Miller9b3627f2007-04-24 23:51:18 -0700100 struct iommu_arena *arena = &iommu->arena;
David S. Millerd2841422008-02-08 18:05:46 -0800101 int pass = 0;
102
103 /* This allocator was derived from x86_64's bit string search */
104
105 /* Sanity check */
106 if (unlikely(npages == 0)) {
107 if (printk_ratelimit())
108 WARN_ON(1);
109 return DMA_ERROR_CODE;
110 }
111
112 if (handle && *handle)
113 start = *handle;
114 else
115 start = arena->hint;
David S. Miller688cb302005-10-13 22:15:24 -0700116
117 limit = arena->limit;
David S. Miller688cb302005-10-13 22:15:24 -0700118
David S. Millerd2841422008-02-08 18:05:46 -0800119 /* The case below can happen if we have a small segment appended
120 * to a large, or when the previous alloc was at the very end of
121 * the available space. If so, go back to the beginning and flush.
122 */
123 if (start >= limit) {
124 start = 0;
125 if (iommu->flush_all)
126 iommu->flush_all(iommu);
127 }
128
129 again:
130
131 if (dev)
132 boundary_size = ALIGN(dma_get_seg_boundary(dev) + 1,
133 1 << IO_PAGE_SHIFT);
134 else
135 boundary_size = ALIGN(1UL << 32, 1 << IO_PAGE_SHIFT);
136
FUJITA Tomonori89c94f22008-02-20 22:56:42 -0800137 n = iommu_area_alloc(arena->map, limit, start, npages,
138 iommu->page_table_map_base >> IO_PAGE_SHIFT,
David S. Millerd2841422008-02-08 18:05:46 -0800139 boundary_size >> IO_PAGE_SHIFT, 0);
140 if (n == -1) {
David S. Miller688cb302005-10-13 22:15:24 -0700141 if (likely(pass < 1)) {
David S. Millerd2841422008-02-08 18:05:46 -0800142 /* First failure, rescan from the beginning. */
David S. Miller688cb302005-10-13 22:15:24 -0700143 start = 0;
David S. Millerd2841422008-02-08 18:05:46 -0800144 if (iommu->flush_all)
145 iommu->flush_all(iommu);
David S. Miller688cb302005-10-13 22:15:24 -0700146 pass++;
147 goto again;
148 } else {
David S. Millerd2841422008-02-08 18:05:46 -0800149 /* Second failure, give up */
150 return DMA_ERROR_CODE;
David S. Miller688cb302005-10-13 22:15:24 -0700151 }
152 }
153
David S. Millerd2841422008-02-08 18:05:46 -0800154 end = n + npages;
David S. Miller688cb302005-10-13 22:15:24 -0700155
156 arena->hint = end;
157
David S. Millerd2841422008-02-08 18:05:46 -0800158 /* Update handle for SG allocations */
159 if (handle)
160 *handle = end;
161
David S. Miller688cb302005-10-13 22:15:24 -0700162 return n;
163}
164
David S. Millerd2841422008-02-08 18:05:46 -0800165void iommu_range_free(struct iommu *iommu, dma_addr_t dma_addr, unsigned long npages)
David S. Miller688cb302005-10-13 22:15:24 -0700166{
David S. Millerd2841422008-02-08 18:05:46 -0800167 struct iommu_arena *arena = &iommu->arena;
168 unsigned long entry;
David S. Miller688cb302005-10-13 22:15:24 -0700169
David S. Millerd2841422008-02-08 18:05:46 -0800170 entry = (dma_addr - iommu->page_table_map_base) >> IO_PAGE_SHIFT;
171
172 iommu_area_free(arena->map, entry, npages);
David S. Miller688cb302005-10-13 22:15:24 -0700173}
174
David S. Millerad7ad572007-07-27 22:39:14 -0700175int iommu_table_init(struct iommu *iommu, int tsbsize,
176 u32 dma_offset, u32 dma_addr_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177{
David S. Miller688cb302005-10-13 22:15:24 -0700178 unsigned long i, tsbbase, order, sz, num_tsb_entries;
179
180 num_tsb_entries = tsbsize / sizeof(iopte_t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181
David S. Miller51e85132005-10-13 21:10:08 -0700182 /* Setup initial software IOMMU state. */
183 spin_lock_init(&iommu->lock);
184 iommu->ctx_lowest_free = 1;
185 iommu->page_table_map_base = dma_offset;
186 iommu->dma_addr_mask = dma_addr_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187
David S. Miller688cb302005-10-13 22:15:24 -0700188 /* Allocate and initialize the free area map. */
189 sz = num_tsb_entries / 8;
190 sz = (sz + 7UL) & ~7UL;
Eric Sesterhenn91329832006-03-06 13:48:40 -0800191 iommu->arena.map = kzalloc(sz, GFP_KERNEL);
David S. Miller688cb302005-10-13 22:15:24 -0700192 if (!iommu->arena.map) {
David S. Millerad7ad572007-07-27 22:39:14 -0700193 printk(KERN_ERR "IOMMU: Error, kmalloc(arena.map) failed.\n");
194 return -ENOMEM;
David S. Miller51e85132005-10-13 21:10:08 -0700195 }
David S. Miller688cb302005-10-13 22:15:24 -0700196 iommu->arena.limit = num_tsb_entries;
David S. Miller51e85132005-10-13 21:10:08 -0700197
David S. Millerd2841422008-02-08 18:05:46 -0800198 if (tlb_type != hypervisor)
199 iommu->flush_all = iommu_flushall;
200
David S. Miller51e85132005-10-13 21:10:08 -0700201 /* Allocate and initialize the dummy page which we
202 * set inactive IO PTEs to point to.
203 */
Robert P. J. Dayb83ebf52008-02-12 22:09:29 -0800204 iommu->dummy_page = get_zeroed_page(GFP_KERNEL);
David S. Miller51e85132005-10-13 21:10:08 -0700205 if (!iommu->dummy_page) {
David S. Millerad7ad572007-07-27 22:39:14 -0700206 printk(KERN_ERR "IOMMU: Error, gfp(dummy_page) failed.\n");
207 goto out_free_map;
David S. Miller51e85132005-10-13 21:10:08 -0700208 }
David S. Miller51e85132005-10-13 21:10:08 -0700209 iommu->dummy_page_pa = (unsigned long) __pa(iommu->dummy_page);
210
211 /* Now allocate and setup the IOMMU page table itself. */
212 order = get_order(tsbsize);
213 tsbbase = __get_free_pages(GFP_KERNEL, order);
214 if (!tsbbase) {
David S. Millerad7ad572007-07-27 22:39:14 -0700215 printk(KERN_ERR "IOMMU: Error, gfp(tsb) failed.\n");
216 goto out_free_dummy_page;
David S. Miller51e85132005-10-13 21:10:08 -0700217 }
218 iommu->page_table = (iopte_t *)tsbbase;
219
David S. Miller688cb302005-10-13 22:15:24 -0700220 for (i = 0; i < num_tsb_entries; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 iopte_make_dummy(iommu, &iommu->page_table[i]);
David S. Millerad7ad572007-07-27 22:39:14 -0700222
223 return 0;
224
225out_free_dummy_page:
226 free_page(iommu->dummy_page);
227 iommu->dummy_page = 0UL;
228
229out_free_map:
230 kfree(iommu->arena.map);
231 iommu->arena.map = NULL;
232
233 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234}
235
David S. Millerd2841422008-02-08 18:05:46 -0800236static inline iopte_t *alloc_npages(struct device *dev, struct iommu *iommu,
237 unsigned long npages)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238{
David S. Millerd2841422008-02-08 18:05:46 -0800239 unsigned long entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240
David S. Millerd2841422008-02-08 18:05:46 -0800241 entry = iommu_range_alloc(dev, iommu, npages, NULL);
242 if (unlikely(entry == DMA_ERROR_CODE))
David S. Miller688cb302005-10-13 22:15:24 -0700243 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244
David S. Miller688cb302005-10-13 22:15:24 -0700245 return iommu->page_table + entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246}
247
David S. Miller16ce82d2007-04-26 21:08:21 -0700248static int iommu_alloc_ctx(struct iommu *iommu)
David S. Miller7c963ad2005-05-31 16:57:59 -0700249{
250 int lowest = iommu->ctx_lowest_free;
251 int sz = IOMMU_NUM_CTXS - lowest;
252 int n = find_next_zero_bit(iommu->ctx_bitmap, sz, lowest);
253
254 if (unlikely(n == sz)) {
255 n = find_next_zero_bit(iommu->ctx_bitmap, lowest, 1);
256 if (unlikely(n == lowest)) {
257 printk(KERN_WARNING "IOMMU: Ran out of contexts.\n");
258 n = 0;
259 }
260 }
261 if (n)
262 __set_bit(n, iommu->ctx_bitmap);
263
264 return n;
265}
266
David S. Miller16ce82d2007-04-26 21:08:21 -0700267static inline void iommu_free_ctx(struct iommu *iommu, int ctx)
David S. Miller7c963ad2005-05-31 16:57:59 -0700268{
269 if (likely(ctx)) {
270 __clear_bit(ctx, iommu->ctx_bitmap);
271 if (ctx < iommu->ctx_lowest_free)
272 iommu->ctx_lowest_free = ctx;
273 }
274}
275
David S. Millerad7ad572007-07-27 22:39:14 -0700276static void *dma_4u_alloc_coherent(struct device *dev, size_t size,
277 dma_addr_t *dma_addrp, gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278{
David S. Miller16ce82d2007-04-26 21:08:21 -0700279 struct iommu *iommu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 iopte_t *iopte;
David S. Miller688cb302005-10-13 22:15:24 -0700281 unsigned long flags, order, first_page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 void *ret;
283 int npages;
284
285 size = IO_PAGE_ALIGN(size);
286 order = get_order(size);
287 if (order >= 10)
288 return NULL;
289
David S. Miller42f14232006-05-23 02:07:22 -0700290 first_page = __get_free_pages(gfp, order);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 if (first_page == 0UL)
292 return NULL;
293 memset((char *)first_page, 0, PAGE_SIZE << order);
294
David S. Millerad7ad572007-07-27 22:39:14 -0700295 iommu = dev->archdata.iommu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296
297 spin_lock_irqsave(&iommu->lock, flags);
David S. Millerd2841422008-02-08 18:05:46 -0800298 iopte = alloc_npages(dev, iommu, size >> IO_PAGE_SHIFT);
David S. Miller688cb302005-10-13 22:15:24 -0700299 spin_unlock_irqrestore(&iommu->lock, flags);
300
301 if (unlikely(iopte == NULL)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 free_pages(first_page, order);
303 return NULL;
304 }
305
306 *dma_addrp = (iommu->page_table_map_base +
307 ((iopte - iommu->page_table) << IO_PAGE_SHIFT));
308 ret = (void *) first_page;
309 npages = size >> IO_PAGE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 first_page = __pa(first_page);
311 while (npages--) {
David S. Miller688cb302005-10-13 22:15:24 -0700312 iopte_val(*iopte) = (IOPTE_CONSISTENT(0UL) |
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 IOPTE_WRITE |
314 (first_page & IOPTE_PAGE));
315 iopte++;
316 first_page += IO_PAGE_SIZE;
317 }
318
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 return ret;
320}
321
David S. Millerad7ad572007-07-27 22:39:14 -0700322static void dma_4u_free_coherent(struct device *dev, size_t size,
323 void *cpu, dma_addr_t dvma)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324{
David S. Miller16ce82d2007-04-26 21:08:21 -0700325 struct iommu *iommu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 iopte_t *iopte;
David S. Miller688cb302005-10-13 22:15:24 -0700327 unsigned long flags, order, npages;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328
329 npages = IO_PAGE_ALIGN(size) >> IO_PAGE_SHIFT;
David S. Millerad7ad572007-07-27 22:39:14 -0700330 iommu = dev->archdata.iommu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 iopte = iommu->page_table +
332 ((dvma - iommu->page_table_map_base) >> IO_PAGE_SHIFT);
333
334 spin_lock_irqsave(&iommu->lock, flags);
335
David S. Millerd2841422008-02-08 18:05:46 -0800336 iommu_range_free(iommu, dvma, npages);
David S. Miller7c963ad2005-05-31 16:57:59 -0700337
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 spin_unlock_irqrestore(&iommu->lock, flags);
339
340 order = get_order(size);
341 if (order < 10)
342 free_pages((unsigned long)cpu, order);
343}
344
David S. Millerad7ad572007-07-27 22:39:14 -0700345static dma_addr_t dma_4u_map_single(struct device *dev, void *ptr, size_t sz,
346 enum dma_data_direction direction)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347{
David S. Miller16ce82d2007-04-26 21:08:21 -0700348 struct iommu *iommu;
349 struct strbuf *strbuf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 iopte_t *base;
351 unsigned long flags, npages, oaddr;
352 unsigned long i, base_paddr, ctx;
353 u32 bus_addr, ret;
354 unsigned long iopte_protection;
355
David S. Millerad7ad572007-07-27 22:39:14 -0700356 iommu = dev->archdata.iommu;
357 strbuf = dev->archdata.stc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358
David S. Millerad7ad572007-07-27 22:39:14 -0700359 if (unlikely(direction == DMA_NONE))
David S. Miller688cb302005-10-13 22:15:24 -0700360 goto bad_no_ctx;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361
362 oaddr = (unsigned long)ptr;
363 npages = IO_PAGE_ALIGN(oaddr + sz) - (oaddr & IO_PAGE_MASK);
364 npages >>= IO_PAGE_SHIFT;
365
366 spin_lock_irqsave(&iommu->lock, flags);
David S. Millerd2841422008-02-08 18:05:46 -0800367 base = alloc_npages(dev, iommu, npages);
David S. Miller688cb302005-10-13 22:15:24 -0700368 ctx = 0;
369 if (iommu->iommu_ctxflush)
370 ctx = iommu_alloc_ctx(iommu);
371 spin_unlock_irqrestore(&iommu->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372
David S. Miller688cb302005-10-13 22:15:24 -0700373 if (unlikely(!base))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 goto bad;
David S. Miller688cb302005-10-13 22:15:24 -0700375
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 bus_addr = (iommu->page_table_map_base +
377 ((base - iommu->page_table) << IO_PAGE_SHIFT));
378 ret = bus_addr | (oaddr & ~IO_PAGE_MASK);
379 base_paddr = __pa(oaddr & IO_PAGE_MASK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 if (strbuf->strbuf_enabled)
381 iopte_protection = IOPTE_STREAMING(ctx);
382 else
383 iopte_protection = IOPTE_CONSISTENT(ctx);
David S. Millerad7ad572007-07-27 22:39:14 -0700384 if (direction != DMA_TO_DEVICE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 iopte_protection |= IOPTE_WRITE;
386
387 for (i = 0; i < npages; i++, base++, base_paddr += IO_PAGE_SIZE)
388 iopte_val(*base) = iopte_protection | base_paddr;
389
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 return ret;
391
392bad:
David S. Miller688cb302005-10-13 22:15:24 -0700393 iommu_free_ctx(iommu, ctx);
394bad_no_ctx:
395 if (printk_ratelimit())
396 WARN_ON(1);
David S. Millerad7ad572007-07-27 22:39:14 -0700397 return DMA_ERROR_CODE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398}
399
David S. Millerad7ad572007-07-27 22:39:14 -0700400static void strbuf_flush(struct strbuf *strbuf, struct iommu *iommu,
401 u32 vaddr, unsigned long ctx, unsigned long npages,
402 enum dma_data_direction direction)
David S. Miller4dbc30f2005-05-11 11:37:00 -0700403{
404 int limit;
405
David S. Miller4dbc30f2005-05-11 11:37:00 -0700406 if (strbuf->strbuf_ctxflush &&
407 iommu->iommu_ctxflush) {
408 unsigned long matchreg, flushreg;
David S. Miller7c963ad2005-05-31 16:57:59 -0700409 u64 val;
David S. Miller4dbc30f2005-05-11 11:37:00 -0700410
411 flushreg = strbuf->strbuf_ctxflush;
David S. Millerad7ad572007-07-27 22:39:14 -0700412 matchreg = STC_CTXMATCH_ADDR(strbuf, ctx);
David S. Miller4dbc30f2005-05-11 11:37:00 -0700413
David S. Millerad7ad572007-07-27 22:39:14 -0700414 iommu_write(flushreg, ctx);
415 val = iommu_read(matchreg);
David S. Miller88314ee2005-05-31 19:13:52 -0700416 val &= 0xffff;
417 if (!val)
David S. Miller7c963ad2005-05-31 16:57:59 -0700418 goto do_flush_sync;
419
David S. Miller7c963ad2005-05-31 16:57:59 -0700420 while (val) {
421 if (val & 0x1)
David S. Millerad7ad572007-07-27 22:39:14 -0700422 iommu_write(flushreg, ctx);
David S. Miller7c963ad2005-05-31 16:57:59 -0700423 val >>= 1;
David S. Millera228dfd2005-05-20 11:40:32 -0700424 }
David S. Millerad7ad572007-07-27 22:39:14 -0700425 val = iommu_read(matchreg);
David S. Miller7c963ad2005-05-31 16:57:59 -0700426 if (unlikely(val)) {
David S. Millerad7ad572007-07-27 22:39:14 -0700427 printk(KERN_WARNING "strbuf_flush: ctx flush "
David S. Miller7c963ad2005-05-31 16:57:59 -0700428 "timeout matchreg[%lx] ctx[%lx]\n",
429 val, ctx);
430 goto do_page_flush;
431 }
David S. Miller4dbc30f2005-05-11 11:37:00 -0700432 } else {
433 unsigned long i;
434
David S. Miller7c963ad2005-05-31 16:57:59 -0700435 do_page_flush:
David S. Miller4dbc30f2005-05-11 11:37:00 -0700436 for (i = 0; i < npages; i++, vaddr += IO_PAGE_SIZE)
David S. Millerad7ad572007-07-27 22:39:14 -0700437 iommu_write(strbuf->strbuf_pflush, vaddr);
David S. Miller4dbc30f2005-05-11 11:37:00 -0700438 }
439
David S. Miller7c963ad2005-05-31 16:57:59 -0700440do_flush_sync:
441 /* If the device could not have possibly put dirty data into
442 * the streaming cache, no flush-flag synchronization needs
443 * to be performed.
444 */
David S. Millerad7ad572007-07-27 22:39:14 -0700445 if (direction == DMA_TO_DEVICE)
David S. Miller7c963ad2005-05-31 16:57:59 -0700446 return;
447
David S. Millerad7ad572007-07-27 22:39:14 -0700448 STC_FLUSHFLAG_INIT(strbuf);
449 iommu_write(strbuf->strbuf_fsync, strbuf->strbuf_flushflag_pa);
450 (void) iommu_read(iommu->write_complete_reg);
David S. Miller4dbc30f2005-05-11 11:37:00 -0700451
David S. Millera228dfd2005-05-20 11:40:32 -0700452 limit = 100000;
David S. Millerad7ad572007-07-27 22:39:14 -0700453 while (!STC_FLUSHFLAG_SET(strbuf)) {
David S. Miller4dbc30f2005-05-11 11:37:00 -0700454 limit--;
455 if (!limit)
456 break;
David S. Millera228dfd2005-05-20 11:40:32 -0700457 udelay(1);
David S. Miller4f071182005-08-29 12:46:22 -0700458 rmb();
David S. Miller4dbc30f2005-05-11 11:37:00 -0700459 }
460 if (!limit)
David S. Millerad7ad572007-07-27 22:39:14 -0700461 printk(KERN_WARNING "strbuf_flush: flushflag timeout "
David S. Miller4dbc30f2005-05-11 11:37:00 -0700462 "vaddr[%08x] ctx[%lx] npages[%ld]\n",
463 vaddr, ctx, npages);
464}
465
David S. Millerad7ad572007-07-27 22:39:14 -0700466static void dma_4u_unmap_single(struct device *dev, dma_addr_t bus_addr,
467 size_t sz, enum dma_data_direction direction)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468{
David S. Miller16ce82d2007-04-26 21:08:21 -0700469 struct iommu *iommu;
470 struct strbuf *strbuf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 iopte_t *base;
David S. Miller688cb302005-10-13 22:15:24 -0700472 unsigned long flags, npages, ctx, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473
David S. Millerad7ad572007-07-27 22:39:14 -0700474 if (unlikely(direction == DMA_NONE)) {
David S. Miller688cb302005-10-13 22:15:24 -0700475 if (printk_ratelimit())
476 WARN_ON(1);
477 return;
478 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479
David S. Millerad7ad572007-07-27 22:39:14 -0700480 iommu = dev->archdata.iommu;
481 strbuf = dev->archdata.stc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482
483 npages = IO_PAGE_ALIGN(bus_addr + sz) - (bus_addr & IO_PAGE_MASK);
484 npages >>= IO_PAGE_SHIFT;
485 base = iommu->page_table +
486 ((bus_addr - iommu->page_table_map_base) >> IO_PAGE_SHIFT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 bus_addr &= IO_PAGE_MASK;
488
489 spin_lock_irqsave(&iommu->lock, flags);
490
491 /* Record the context, if any. */
492 ctx = 0;
493 if (iommu->iommu_ctxflush)
494 ctx = (iopte_val(*base) & IOPTE_CONTEXT) >> 47UL;
495
496 /* Step 1: Kick data out of streaming buffers if necessary. */
David S. Miller4dbc30f2005-05-11 11:37:00 -0700497 if (strbuf->strbuf_enabled)
David S. Millerad7ad572007-07-27 22:39:14 -0700498 strbuf_flush(strbuf, iommu, bus_addr, ctx,
499 npages, direction);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500
David S. Miller688cb302005-10-13 22:15:24 -0700501 /* Step 2: Clear out TSB entries. */
502 for (i = 0; i < npages; i++)
503 iopte_make_dummy(iommu, base + i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504
David S. Millerd2841422008-02-08 18:05:46 -0800505 iommu_range_free(iommu, bus_addr, npages);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506
David S. Miller7c963ad2005-05-31 16:57:59 -0700507 iommu_free_ctx(iommu, ctx);
508
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 spin_unlock_irqrestore(&iommu->lock, flags);
510}
511
David S. Millerad7ad572007-07-27 22:39:14 -0700512static int dma_4u_map_sg(struct device *dev, struct scatterlist *sglist,
513 int nelems, enum dma_data_direction direction)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514{
David S. Miller13fa14e2008-02-09 03:11:01 -0800515 struct scatterlist *s, *outs, *segstart;
516 unsigned long flags, handle, prot, ctx;
517 dma_addr_t dma_next = 0, dma_addr;
518 unsigned int max_seg_size;
FUJITA Tomonorif0880252008-03-28 15:55:41 -0700519 unsigned long seg_boundary_size;
David S. Miller13fa14e2008-02-09 03:11:01 -0800520 int outcount, incount, i;
David S. Miller16ce82d2007-04-26 21:08:21 -0700521 struct strbuf *strbuf;
David S. Miller38192d52008-02-06 03:50:26 -0800522 struct iommu *iommu;
FUJITA Tomonorif0880252008-03-28 15:55:41 -0700523 unsigned long base_shift;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524
David S. Miller13fa14e2008-02-09 03:11:01 -0800525 BUG_ON(direction == DMA_NONE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526
David S. Millerad7ad572007-07-27 22:39:14 -0700527 iommu = dev->archdata.iommu;
528 strbuf = dev->archdata.stc;
David S. Miller13fa14e2008-02-09 03:11:01 -0800529 if (nelems == 0 || !iommu)
530 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531
532 spin_lock_irqsave(&iommu->lock, flags);
533
David S. Miller688cb302005-10-13 22:15:24 -0700534 ctx = 0;
535 if (iommu->iommu_ctxflush)
536 ctx = iommu_alloc_ctx(iommu);
537
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 if (strbuf->strbuf_enabled)
David S. Miller13fa14e2008-02-09 03:11:01 -0800539 prot = IOPTE_STREAMING(ctx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 else
David S. Miller13fa14e2008-02-09 03:11:01 -0800541 prot = IOPTE_CONSISTENT(ctx);
David S. Millerad7ad572007-07-27 22:39:14 -0700542 if (direction != DMA_TO_DEVICE)
David S. Miller13fa14e2008-02-09 03:11:01 -0800543 prot |= IOPTE_WRITE;
David S. Miller688cb302005-10-13 22:15:24 -0700544
David S. Miller13fa14e2008-02-09 03:11:01 -0800545 outs = s = segstart = &sglist[0];
546 outcount = 1;
547 incount = nelems;
548 handle = 0;
David S. Miller688cb302005-10-13 22:15:24 -0700549
David S. Miller13fa14e2008-02-09 03:11:01 -0800550 /* Init first segment length for backout at failure */
551 outs->dma_length = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552
David S. Miller13fa14e2008-02-09 03:11:01 -0800553 max_seg_size = dma_get_max_seg_size(dev);
FUJITA Tomonorif0880252008-03-28 15:55:41 -0700554 seg_boundary_size = ALIGN(dma_get_seg_boundary(dev) + 1,
555 IO_PAGE_SIZE) >> IO_PAGE_SHIFT;
556 base_shift = iommu->page_table_map_base >> IO_PAGE_SHIFT;
David S. Miller13fa14e2008-02-09 03:11:01 -0800557 for_each_sg(sglist, s, nelems, i) {
FUJITA Tomonorif0880252008-03-28 15:55:41 -0700558 unsigned long paddr, npages, entry, out_entry = 0, slen;
David S. Miller13fa14e2008-02-09 03:11:01 -0800559 iopte_t *base;
David S. Miller38192d52008-02-06 03:50:26 -0800560
David S. Miller13fa14e2008-02-09 03:11:01 -0800561 slen = s->length;
562 /* Sanity check */
563 if (slen == 0) {
564 dma_next = 0;
565 continue;
566 }
567 /* Allocate iommu entries for that segment */
568 paddr = (unsigned long) SG_ENT_PHYS_ADDRESS(s);
569 npages = iommu_num_pages(paddr, slen);
570 entry = iommu_range_alloc(dev, iommu, npages, &handle);
571
572 /* Handle failure */
573 if (unlikely(entry == DMA_ERROR_CODE)) {
574 if (printk_ratelimit())
575 printk(KERN_INFO "iommu_alloc failed, iommu %p paddr %lx"
576 " npages %lx\n", iommu, paddr, npages);
577 goto iommu_map_failed;
578 }
579
580 base = iommu->page_table + entry;
581
582 /* Convert entry to a dma_addr_t */
583 dma_addr = iommu->page_table_map_base +
584 (entry << IO_PAGE_SHIFT);
585 dma_addr |= (s->offset & ~IO_PAGE_MASK);
586
587 /* Insert into HW table */
David S. Miller38192d52008-02-06 03:50:26 -0800588 paddr &= IO_PAGE_MASK;
David S. Miller13fa14e2008-02-09 03:11:01 -0800589 while (npages--) {
590 iopte_val(*base) = prot | paddr;
David S. Miller38192d52008-02-06 03:50:26 -0800591 base++;
592 paddr += IO_PAGE_SIZE;
David S. Miller38192d52008-02-06 03:50:26 -0800593 }
David S. Miller13fa14e2008-02-09 03:11:01 -0800594
595 /* If we are in an open segment, try merging */
596 if (segstart != s) {
597 /* We cannot merge if:
598 * - allocated dma_addr isn't contiguous to previous allocation
599 */
600 if ((dma_addr != dma_next) ||
FUJITA Tomonorif0880252008-03-28 15:55:41 -0700601 (outs->dma_length + s->length > max_seg_size) ||
602 (is_span_boundary(out_entry, base_shift,
603 seg_boundary_size, outs, s))) {
David S. Miller13fa14e2008-02-09 03:11:01 -0800604 /* Can't merge: create a new segment */
605 segstart = s;
606 outcount++;
607 outs = sg_next(outs);
608 } else {
609 outs->dma_length += s->length;
610 }
611 }
612
613 if (segstart == s) {
614 /* This is a new segment, fill entries */
615 outs->dma_address = dma_addr;
616 outs->dma_length = slen;
FUJITA Tomonorif0880252008-03-28 15:55:41 -0700617 out_entry = entry;
David S. Miller13fa14e2008-02-09 03:11:01 -0800618 }
619
620 /* Calculate next page pointer for contiguous check */
621 dma_next = dma_addr + slen;
David S. Miller38192d52008-02-06 03:50:26 -0800622 }
623
David S. Miller13fa14e2008-02-09 03:11:01 -0800624 spin_unlock_irqrestore(&iommu->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625
David S. Miller13fa14e2008-02-09 03:11:01 -0800626 if (outcount < incount) {
627 outs = sg_next(outs);
628 outs->dma_address = DMA_ERROR_CODE;
629 outs->dma_length = 0;
630 }
631
632 return outcount;
633
634iommu_map_failed:
635 for_each_sg(sglist, s, nelems, i) {
636 if (s->dma_length != 0) {
David S. Miller6c830fe2008-03-25 22:44:10 -0700637 unsigned long vaddr, npages, entry, j;
David S. Miller13fa14e2008-02-09 03:11:01 -0800638 iopte_t *base;
639
640 vaddr = s->dma_address & IO_PAGE_MASK;
641 npages = iommu_num_pages(s->dma_address, s->dma_length);
642 iommu_range_free(iommu, vaddr, npages);
643
644 entry = (vaddr - iommu->page_table_map_base)
645 >> IO_PAGE_SHIFT;
646 base = iommu->page_table + entry;
647
David S. Miller6c830fe2008-03-25 22:44:10 -0700648 for (j = 0; j < npages; j++)
649 iopte_make_dummy(iommu, base + j);
David S. Miller13fa14e2008-02-09 03:11:01 -0800650
651 s->dma_address = DMA_ERROR_CODE;
652 s->dma_length = 0;
653 }
654 if (s == outs)
655 break;
656 }
657 spin_unlock_irqrestore(&iommu->lock, flags);
658
David S. Miller688cb302005-10-13 22:15:24 -0700659 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660}
661
David S. Miller13fa14e2008-02-09 03:11:01 -0800662/* If contexts are being used, they are the same in all of the mappings
663 * we make for a particular SG.
664 */
665static unsigned long fetch_sg_ctx(struct iommu *iommu, struct scatterlist *sg)
666{
667 unsigned long ctx = 0;
668
669 if (iommu->iommu_ctxflush) {
670 iopte_t *base;
671 u32 bus_addr;
672
673 bus_addr = sg->dma_address & IO_PAGE_MASK;
674 base = iommu->page_table +
675 ((bus_addr - iommu->page_table_map_base) >> IO_PAGE_SHIFT);
676
677 ctx = (iopte_val(*base) & IOPTE_CONTEXT) >> 47UL;
678 }
679 return ctx;
680}
681
David S. Millerad7ad572007-07-27 22:39:14 -0700682static void dma_4u_unmap_sg(struct device *dev, struct scatterlist *sglist,
683 int nelems, enum dma_data_direction direction)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684{
David S. Miller13fa14e2008-02-09 03:11:01 -0800685 unsigned long flags, ctx;
686 struct scatterlist *sg;
David S. Miller38192d52008-02-06 03:50:26 -0800687 struct strbuf *strbuf;
688 struct iommu *iommu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689
David S. Miller13fa14e2008-02-09 03:11:01 -0800690 BUG_ON(direction == DMA_NONE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691
David S. Millerad7ad572007-07-27 22:39:14 -0700692 iommu = dev->archdata.iommu;
693 strbuf = dev->archdata.stc;
694
David S. Miller13fa14e2008-02-09 03:11:01 -0800695 ctx = fetch_sg_ctx(iommu, sglist);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 spin_lock_irqsave(&iommu->lock, flags);
698
David S. Miller13fa14e2008-02-09 03:11:01 -0800699 sg = sglist;
700 while (nelems--) {
701 dma_addr_t dma_handle = sg->dma_address;
702 unsigned int len = sg->dma_length;
703 unsigned long npages, entry;
704 iopte_t *base;
705 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706
David S. Miller13fa14e2008-02-09 03:11:01 -0800707 if (!len)
708 break;
709 npages = iommu_num_pages(dma_handle, len);
710 iommu_range_free(iommu, dma_handle, npages);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711
David S. Miller13fa14e2008-02-09 03:11:01 -0800712 entry = ((dma_handle - iommu->page_table_map_base)
713 >> IO_PAGE_SHIFT);
714 base = iommu->page_table + entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715
David S. Miller13fa14e2008-02-09 03:11:01 -0800716 dma_handle &= IO_PAGE_MASK;
717 if (strbuf->strbuf_enabled)
718 strbuf_flush(strbuf, iommu, dma_handle, ctx,
719 npages, direction);
720
721 for (i = 0; i < npages; i++)
722 iopte_make_dummy(iommu, base + i);
723
724 sg = sg_next(sg);
725 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726
David S. Miller7c963ad2005-05-31 16:57:59 -0700727 iommu_free_ctx(iommu, ctx);
728
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 spin_unlock_irqrestore(&iommu->lock, flags);
730}
731
David S. Millerad7ad572007-07-27 22:39:14 -0700732static void dma_4u_sync_single_for_cpu(struct device *dev,
733 dma_addr_t bus_addr, size_t sz,
734 enum dma_data_direction direction)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735{
David S. Miller16ce82d2007-04-26 21:08:21 -0700736 struct iommu *iommu;
737 struct strbuf *strbuf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 unsigned long flags, ctx, npages;
739
David S. Millerad7ad572007-07-27 22:39:14 -0700740 iommu = dev->archdata.iommu;
741 strbuf = dev->archdata.stc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742
743 if (!strbuf->strbuf_enabled)
744 return;
745
746 spin_lock_irqsave(&iommu->lock, flags);
747
748 npages = IO_PAGE_ALIGN(bus_addr + sz) - (bus_addr & IO_PAGE_MASK);
749 npages >>= IO_PAGE_SHIFT;
750 bus_addr &= IO_PAGE_MASK;
751
752 /* Step 1: Record the context, if any. */
753 ctx = 0;
754 if (iommu->iommu_ctxflush &&
755 strbuf->strbuf_ctxflush) {
756 iopte_t *iopte;
757
758 iopte = iommu->page_table +
759 ((bus_addr - iommu->page_table_map_base)>>IO_PAGE_SHIFT);
760 ctx = (iopte_val(*iopte) & IOPTE_CONTEXT) >> 47UL;
761 }
762
763 /* Step 2: Kick data out of streaming buffers. */
David S. Millerad7ad572007-07-27 22:39:14 -0700764 strbuf_flush(strbuf, iommu, bus_addr, ctx, npages, direction);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765
766 spin_unlock_irqrestore(&iommu->lock, flags);
767}
768
David S. Millerad7ad572007-07-27 22:39:14 -0700769static void dma_4u_sync_sg_for_cpu(struct device *dev,
770 struct scatterlist *sglist, int nelems,
771 enum dma_data_direction direction)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772{
David S. Miller16ce82d2007-04-26 21:08:21 -0700773 struct iommu *iommu;
774 struct strbuf *strbuf;
David S. Miller4dbc30f2005-05-11 11:37:00 -0700775 unsigned long flags, ctx, npages, i;
Jens Axboe2c941a22007-08-07 09:37:10 +0200776 struct scatterlist *sg, *sgprv;
David S. Miller4dbc30f2005-05-11 11:37:00 -0700777 u32 bus_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778
David S. Millerad7ad572007-07-27 22:39:14 -0700779 iommu = dev->archdata.iommu;
780 strbuf = dev->archdata.stc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781
782 if (!strbuf->strbuf_enabled)
783 return;
784
785 spin_lock_irqsave(&iommu->lock, flags);
786
787 /* Step 1: Record the context, if any. */
788 ctx = 0;
789 if (iommu->iommu_ctxflush &&
790 strbuf->strbuf_ctxflush) {
791 iopte_t *iopte;
792
793 iopte = iommu->page_table +
794 ((sglist[0].dma_address - iommu->page_table_map_base) >> IO_PAGE_SHIFT);
795 ctx = (iopte_val(*iopte) & IOPTE_CONTEXT) >> 47UL;
796 }
797
798 /* Step 2: Kick data out of streaming buffers. */
David S. Miller4dbc30f2005-05-11 11:37:00 -0700799 bus_addr = sglist[0].dma_address & IO_PAGE_MASK;
Jens Axboe2c941a22007-08-07 09:37:10 +0200800 sgprv = NULL;
801 for_each_sg(sglist, sg, nelems, i) {
802 if (sg->dma_length == 0)
David S. Miller4dbc30f2005-05-11 11:37:00 -0700803 break;
Jens Axboe2c941a22007-08-07 09:37:10 +0200804 sgprv = sg;
805 }
806
807 npages = (IO_PAGE_ALIGN(sgprv->dma_address + sgprv->dma_length)
David S. Miller4dbc30f2005-05-11 11:37:00 -0700808 - bus_addr) >> IO_PAGE_SHIFT;
David S. Millerad7ad572007-07-27 22:39:14 -0700809 strbuf_flush(strbuf, iommu, bus_addr, ctx, npages, direction);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810
811 spin_unlock_irqrestore(&iommu->lock, flags);
812}
813
David S. Miller6c830fe2008-03-25 22:44:10 -0700814static const struct dma_ops sun4u_dma_ops = {
David S. Millerad7ad572007-07-27 22:39:14 -0700815 .alloc_coherent = dma_4u_alloc_coherent,
816 .free_coherent = dma_4u_free_coherent,
817 .map_single = dma_4u_map_single,
818 .unmap_single = dma_4u_unmap_single,
819 .map_sg = dma_4u_map_sg,
820 .unmap_sg = dma_4u_unmap_sg,
821 .sync_single_for_cpu = dma_4u_sync_single_for_cpu,
822 .sync_sg_for_cpu = dma_4u_sync_sg_for_cpu,
David S. Miller8f6a93a2006-02-09 21:32:07 -0800823};
824
David S. Millerad7ad572007-07-27 22:39:14 -0700825const struct dma_ops *dma_ops = &sun4u_dma_ops;
826EXPORT_SYMBOL(dma_ops);
827
828int dma_supported(struct device *dev, u64 device_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829{
David S. Millerad7ad572007-07-27 22:39:14 -0700830 struct iommu *iommu = dev->archdata.iommu;
831 u64 dma_addr_mask = iommu->dma_addr_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832
833 if (device_mask >= (1UL << 32UL))
834 return 0;
835
David S. Millerad7ad572007-07-27 22:39:14 -0700836 if ((device_mask & dma_addr_mask) == dma_addr_mask)
837 return 1;
838
839#ifdef CONFIG_PCI
840 if (dev->bus == &pci_bus_type)
841 return pci_dma_supported(to_pci_dev(dev), device_mask);
842#endif
843
844 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845}
David S. Millerad7ad572007-07-27 22:39:14 -0700846EXPORT_SYMBOL(dma_supported);
847
848int dma_set_mask(struct device *dev, u64 dma_mask)
849{
850#ifdef CONFIG_PCI
851 if (dev->bus == &pci_bus_type)
852 return pci_set_dma_mask(to_pci_dev(dev), dma_mask);
853#endif
854 return -EINVAL;
855}
856EXPORT_SYMBOL(dma_set_mask);