2 ** IA64 System Bus Adapter (SBA) I/O MMU manager
4 ** (c) Copyright 2002-2005 Alex Williamson
5 ** (c) Copyright 2002-2003 Grant Grundler
6 ** (c) Copyright 2002-2005 Hewlett-Packard Company
8 ** Portions (c) 2000 Grant Grundler (from parisc I/O MMU code)
9 ** Portions (c) 1999 Dave S. Miller (from sparc64 I/O MMU code)
11 ** This program is free software; you can redistribute it and/or modify
12 ** it under the terms of the GNU General Public License as published by
13 ** the Free Software Foundation; either version 2 of the License, or
14 ** (at your option) any later version.
17 ** This module initializes the IOC (I/O Controller) found on HP
18 ** McKinley machines and their successors.
22 #include <linux/types.h>
23 #include <linux/kernel.h>
24 #include <linux/module.h>
25 #include <linux/spinlock.h>
26 #include <linux/slab.h>
27 #include <linux/init.h>
29 #include <linux/string.h>
30 #include <linux/pci.h>
31 #include <linux/proc_fs.h>
32 #include <linux/seq_file.h>
33 #include <linux/acpi.h>
34 #include <linux/efi.h>
35 #include <linux/nodemask.h>
36 #include <linux/bitops.h> /* hweight64() */
37 #include <linux/crash_dump.h>
38 #include <linux/iommu-helper.h>
39 #include <linux/dma-mapping.h>
40 #include <linux/prefetch.h>
42 #include <asm/delay.h> /* ia64_get_itc() */
44 #include <asm/page.h> /* PAGE_OFFSET */
46 #include <asm/system.h> /* wmb() */
48 #include <asm/acpi-ext.h>
50 extern int swiotlb_late_init_with_default_size (size_t size
);
55 ** Enabling timing search of the pdir resource map. Output in /proc.
56 ** Disabled by default to optimize performance.
58 #undef PDIR_SEARCH_TIMING
61 ** This option allows cards capable of 64bit DMA to bypass the IOMMU. If
62 ** not defined, all DMA will be 32bit and go through the TLB.
63 ** There's potentially a conflict in the bio merge code with us
64 ** advertising an iommu, but then bypassing it. Since I/O MMU bypassing
65 ** appears to give more performance than bio-level virtual merging, we'll
66 ** do the former for now. NOTE: BYPASS_SG also needs to be undef'd to
67 ** completely restrict DMA to the IOMMU.
69 #define ALLOW_IOV_BYPASS
72 ** This option specifically allows/disallows bypassing scatterlists with
73 ** multiple entries. Coalescing these entries can allow better DMA streaming
74 ** and in some cases shows better performance than entirely bypassing the
75 ** IOMMU. Performance increase on the order of 1-2% sequential output/input
76 ** using bonnie++ on a RAID0 MD device (sym2 & mpt).
78 #undef ALLOW_IOV_BYPASS_SG
81 ** If a device prefetches beyond the end of a valid pdir entry, it will cause
82 ** a hard failure, ie. MCA. Version 3.0 and later of the zx1 LBA should
83 ** disconnect on 4k boundaries and prevent such issues. If the device is
84 ** particularly aggressive, this option will keep the entire pdir valid such
85 ** that prefetching will hit a valid address. This could severely impact
86 ** error containment, and is therefore off by default. The page that is
87 ** used for spill-over is poisoned, so that should help debugging somewhat.
89 #undef FULL_VALID_PDIR
91 #define ENABLE_MARK_CLEAN
94 ** The number of debug flags is a clue - this code is fragile. NOTE: since
95 ** tightening the use of res_lock the resource bitmap and actual pdir are no
96 ** longer guaranteed to stay in sync. The sanity checking code isn't going to
101 #undef DEBUG_SBA_RUN_SG
102 #undef DEBUG_SBA_RESOURCE
103 #undef ASSERT_PDIR_SANITY
104 #undef DEBUG_LARGE_SG_ENTRIES
107 #if defined(FULL_VALID_PDIR) && defined(ASSERT_PDIR_SANITY)
108 #error FULL_VALID_PDIR and ASSERT_PDIR_SANITY are mutually exclusive
111 #define SBA_INLINE __inline__
112 /* #define SBA_INLINE */
114 #ifdef DEBUG_SBA_INIT
115 #define DBG_INIT(x...) printk(x)
117 #define DBG_INIT(x...)
121 #define DBG_RUN(x...) printk(x)
123 #define DBG_RUN(x...)
126 #ifdef DEBUG_SBA_RUN_SG
127 #define DBG_RUN_SG(x...) printk(x)
129 #define DBG_RUN_SG(x...)
133 #ifdef DEBUG_SBA_RESOURCE
134 #define DBG_RES(x...) printk(x)
136 #define DBG_RES(x...)
140 #define DBG_BYPASS(x...) printk(x)
142 #define DBG_BYPASS(x...)
145 #ifdef ASSERT_PDIR_SANITY
146 #define ASSERT(expr) \
148 printk( "\n" __FILE__ ":%d: Assertion " #expr " failed!\n",__LINE__); \
156 ** The number of pdir entries to "free" before issuing
157 ** a read to PCOM register to flush out PCOM writes.
158 ** Interacts with allocation granularity (ie 4 or 8 entries
159 ** allocated and free'd/purged at a time might make this
160 ** less interesting).
162 #define DELAYED_RESOURCE_CNT 64
164 #define PCI_DEVICE_ID_HP_SX2000_IOC 0x12ec
166 #define ZX1_IOC_ID ((PCI_DEVICE_ID_HP_ZX1_IOC << 16) | PCI_VENDOR_ID_HP)
167 #define ZX2_IOC_ID ((PCI_DEVICE_ID_HP_ZX2_IOC << 16) | PCI_VENDOR_ID_HP)
168 #define REO_IOC_ID ((PCI_DEVICE_ID_HP_REO_IOC << 16) | PCI_VENDOR_ID_HP)
169 #define SX1000_IOC_ID ((PCI_DEVICE_ID_HP_SX1000_IOC << 16) | PCI_VENDOR_ID_HP)
170 #define SX2000_IOC_ID ((PCI_DEVICE_ID_HP_SX2000_IOC << 16) | PCI_VENDOR_ID_HP)
172 #define ZX1_IOC_OFFSET 0x1000 /* ACPI reports SBA, we want IOC */
174 #define IOC_FUNC_ID 0x000
175 #define IOC_FCLASS 0x008 /* function class, bist, header, rev... */
176 #define IOC_IBASE 0x300 /* IO TLB */
177 #define IOC_IMASK 0x308
178 #define IOC_PCOM 0x310
179 #define IOC_TCNFG 0x318
180 #define IOC_PDIR_BASE 0x320
182 #define IOC_ROPE0_CFG 0x500
183 #define IOC_ROPE_AO 0x10 /* Allow "Relaxed Ordering" */
186 /* AGP GART driver looks for this */
187 #define ZX1_SBA_IOMMU_COOKIE 0x0000badbadc0ffeeUL
190 ** The zx1 IOC supports 4/8/16/64KB page sizes (see TCNFG register)
192 ** Some IOCs (sx1000) can run at the above pages sizes, but are
193 ** really only supported using the IOC at a 4k page size.
195 ** iovp_size could only be greater than PAGE_SIZE if we are
196 ** confident the drivers really only touch the next physical
197 ** page iff that driver instance owns it.
199 static unsigned long iovp_size
;
200 static unsigned long iovp_shift
;
201 static unsigned long iovp_mask
;
204 void __iomem
*ioc_hpa
; /* I/O MMU base address */
205 char *res_map
; /* resource map, bit == pdir entry */
206 u64
*pdir_base
; /* physical base address */
207 unsigned long ibase
; /* pdir IOV Space base */
208 unsigned long imask
; /* pdir IOV Space mask */
210 unsigned long *res_hint
; /* next avail IOVP - circular search */
211 unsigned long dma_mask
;
212 spinlock_t res_lock
; /* protects the resource bitmap, but must be held when */
213 /* clearing pdir to prevent races with allocations. */
214 unsigned int res_bitshift
; /* from the RIGHT! */
215 unsigned int res_size
; /* size of resource map in bytes */
217 unsigned int node
; /* node where this IOC lives */
219 #if DELAYED_RESOURCE_CNT > 0
220 spinlock_t saved_lock
; /* may want to try to get this on a separate cacheline */
221 /* than res_lock for bigger systems. */
223 struct sba_dma_pair
{
226 } saved
[DELAYED_RESOURCE_CNT
];
229 #ifdef PDIR_SEARCH_TIMING
230 #define SBA_SEARCH_SAMPLE 0x100
231 unsigned long avg_search
[SBA_SEARCH_SAMPLE
];
232 unsigned long avg_idx
; /* current index into avg_search */
235 /* Stuff we don't need in performance path */
236 struct ioc
*next
; /* list of IOC's in system */
237 acpi_handle handle
; /* for multiple IOC's */
239 unsigned int func_id
;
240 unsigned int rev
; /* HW revision of chip */
242 unsigned int pdir_size
; /* in bytes, determined by IOV Space size */
243 struct pci_dev
*sac_only_dev
;
246 static struct ioc
*ioc_list
;
247 static int reserve_sba_gart
= 1;
249 static SBA_INLINE
void sba_mark_invalid(struct ioc
*, dma_addr_t
, size_t);
250 static SBA_INLINE
void sba_free_range(struct ioc
*, dma_addr_t
, size_t);
252 #define sba_sg_address(sg) sg_virt((sg))
254 #ifdef FULL_VALID_PDIR
255 static u64 prefetch_spill_page
;
259 # define GET_IOC(dev) (((dev)->bus == &pci_bus_type) \
260 ? ((struct ioc *) PCI_CONTROLLER(to_pci_dev(dev))->iommu) : NULL)
262 # define GET_IOC(dev) NULL
266 ** DMA_CHUNK_SIZE is used by the SCSI mid-layer to break up
267 ** (or rather not merge) DMAs into manageable chunks.
268 ** On parisc, this is more of the software/tuning constraint
269 ** rather than the HW. I/O MMU allocation algorithms can be
270 ** faster with smaller sizes (to some degree).
272 #define DMA_CHUNK_SIZE (BITS_PER_LONG*iovp_size)
274 #define ROUNDUP(x,y) ((x + ((y)-1)) & ~((y)-1))
276 /************************************
277 ** SBA register read and write support
279 ** BE WARNED: register writes are posted.
280 ** (ie follow writes which must reach HW with a read)
283 #define READ_REG(addr) __raw_readq(addr)
284 #define WRITE_REG(val, addr) __raw_writeq(val, addr)
286 #ifdef DEBUG_SBA_INIT
289 * sba_dump_tlb - debugging only - print IOMMU operating parameters
290 * @hpa: base address of the IOMMU
292 * Print the size/location of the IO MMU PDIR.
295 sba_dump_tlb(char *hpa
)
297 DBG_INIT("IO TLB at 0x%p\n", (void *)hpa
);
298 DBG_INIT("IOC_IBASE : %016lx\n", READ_REG(hpa
+IOC_IBASE
));
299 DBG_INIT("IOC_IMASK : %016lx\n", READ_REG(hpa
+IOC_IMASK
));
300 DBG_INIT("IOC_TCNFG : %016lx\n", READ_REG(hpa
+IOC_TCNFG
));
301 DBG_INIT("IOC_PDIR_BASE: %016lx\n", READ_REG(hpa
+IOC_PDIR_BASE
));
307 #ifdef ASSERT_PDIR_SANITY
310 * sba_dump_pdir_entry - debugging only - print one IOMMU PDIR entry
311 * @ioc: IO MMU structure which owns the pdir we are interested in.
312 * @msg: text to print ont the output line.
315 * Print one entry of the IO MMU PDIR in human readable form.
318 sba_dump_pdir_entry(struct ioc
*ioc
, char *msg
, uint pide
)
320 /* start printing from lowest pde in rval */
321 u64
*ptr
= &ioc
->pdir_base
[pide
& ~(BITS_PER_LONG
- 1)];
322 unsigned long *rptr
= (unsigned long *) &ioc
->res_map
[(pide
>>3) & -sizeof(unsigned long)];
325 printk(KERN_DEBUG
"SBA: %s rp %p bit %d rval 0x%lx\n",
326 msg
, rptr
, pide
& (BITS_PER_LONG
- 1), *rptr
);
329 while (rcnt
< BITS_PER_LONG
) {
330 printk(KERN_DEBUG
"%s %2d %p %016Lx\n",
331 (rcnt
== (pide
& (BITS_PER_LONG
- 1)))
333 rcnt
, ptr
, (unsigned long long) *ptr
);
337 printk(KERN_DEBUG
"%s", msg
);
342 * sba_check_pdir - debugging only - consistency checker
343 * @ioc: IO MMU structure which owns the pdir we are interested in.
344 * @msg: text to print ont the output line.
346 * Verify the resource map and pdir state is consistent
349 sba_check_pdir(struct ioc
*ioc
, char *msg
)
351 u64
*rptr_end
= (u64
*) &(ioc
->res_map
[ioc
->res_size
]);
352 u64
*rptr
= (u64
*) ioc
->res_map
; /* resource map ptr */
353 u64
*pptr
= ioc
->pdir_base
; /* pdir ptr */
356 while (rptr
< rptr_end
) {
358 int rcnt
; /* number of bits we might check */
364 /* Get last byte and highest bit from that */
365 u32 pde
= ((u32
)((*pptr
>> (63)) & 0x1));
366 if ((rval
& 0x1) ^ pde
)
369 ** BUMMER! -- res_map != pdir --
370 ** Dump rval and matching pdir entries
372 sba_dump_pdir_entry(ioc
, msg
, pide
);
376 rval
>>= 1; /* try the next bit */
380 rptr
++; /* look at next word of res_map */
382 /* It'd be nice if we always got here :^) */
388 * sba_dump_sg - debugging only - print Scatter-Gather list
389 * @ioc: IO MMU structure which owns the pdir we are interested in.
390 * @startsg: head of the SG list
391 * @nents: number of entries in SG list
393 * print the SG list so we can verify it's correct by hand.
396 sba_dump_sg( struct ioc
*ioc
, struct scatterlist
*startsg
, int nents
)
398 while (nents
-- > 0) {
399 printk(KERN_DEBUG
" %d : DMA %08lx/%05x CPU %p\n", nents
,
400 startsg
->dma_address
, startsg
->dma_length
,
401 sba_sg_address(startsg
));
402 startsg
= sg_next(startsg
);
407 sba_check_sg( struct ioc
*ioc
, struct scatterlist
*startsg
, int nents
)
409 struct scatterlist
*the_sg
= startsg
;
410 int the_nents
= nents
;
412 while (the_nents
-- > 0) {
413 if (sba_sg_address(the_sg
) == 0x0UL
)
414 sba_dump_sg(NULL
, startsg
, nents
);
415 the_sg
= sg_next(the_sg
);
419 #endif /* ASSERT_PDIR_SANITY */
424 /**************************************************************
426 * I/O Pdir Resource Management
428 * Bits set in the resource map are in use.
429 * Each bit can represent a number of pages.
430 * LSbs represent lower addresses (IOVA's).
432 ***************************************************************/
433 #define PAGES_PER_RANGE 1 /* could increase this to 4 or 8 if needed */
435 /* Convert from IOVP to IOVA and vice versa. */
436 #define SBA_IOVA(ioc,iovp,offset) ((ioc->ibase) | (iovp) | (offset))
437 #define SBA_IOVP(ioc,iova) ((iova) & ~(ioc->ibase))
439 #define PDIR_ENTRY_SIZE sizeof(u64)
441 #define PDIR_INDEX(iovp) ((iovp)>>iovp_shift)
443 #define RESMAP_MASK(n) ~(~0UL << (n))
444 #define RESMAP_IDX_MASK (sizeof(unsigned long) - 1)
448 * For most cases the normal get_order is sufficient, however it limits us
449 * to PAGE_SIZE being the minimum mapping alignment and TC flush granularity.
450 * It only incurs about 1 clock cycle to use this one with the static variable
451 * and makes the code more intuitive.
453 static SBA_INLINE
int
454 get_iovp_order (unsigned long size
)
456 long double d
= size
- 1;
459 order
= ia64_getf_exp(d
);
460 order
= order
- iovp_shift
- 0xffff + 1;
466 static unsigned long ptr_to_pide(struct ioc
*ioc
, unsigned long *res_ptr
,
467 unsigned int bitshiftcnt
)
469 return (((unsigned long)res_ptr
- (unsigned long)ioc
->res_map
) << 3)
474 * sba_search_bitmap - find free space in IO PDIR resource bitmap
475 * @ioc: IO MMU structure which owns the pdir we are interested in.
476 * @bits_wanted: number of entries we need.
477 * @use_hint: use res_hint to indicate where to start looking
479 * Find consecutive free bits in resource bitmap.
480 * Each bit represents one entry in the IO Pdir.
481 * Cool perf optimization: search for log2(size) bits at a time.
483 static SBA_INLINE
unsigned long
484 sba_search_bitmap(struct ioc
*ioc
, struct device
*dev
,
485 unsigned long bits_wanted
, int use_hint
)
487 unsigned long *res_ptr
;
488 unsigned long *res_end
= (unsigned long *) &(ioc
->res_map
[ioc
->res_size
]);
489 unsigned long flags
, pide
= ~0UL, tpide
;
490 unsigned long boundary_size
;
494 ASSERT(((unsigned long) ioc
->res_hint
& (sizeof(unsigned long) - 1UL)) == 0);
495 ASSERT(res_ptr
< res_end
);
497 boundary_size
= (unsigned long long)dma_get_seg_boundary(dev
) + 1;
498 boundary_size
= ALIGN(boundary_size
, 1ULL << iovp_shift
) >> iovp_shift
;
500 BUG_ON(ioc
->ibase
& ~iovp_mask
);
501 shift
= ioc
->ibase
>> iovp_shift
;
503 spin_lock_irqsave(&ioc
->res_lock
, flags
);
505 /* Allow caller to force a search through the entire resource space */
506 if (likely(use_hint
)) {
507 res_ptr
= ioc
->res_hint
;
509 res_ptr
= (ulong
*)ioc
->res_map
;
510 ioc
->res_bitshift
= 0;
514 * N.B. REO/Grande defect AR2305 can cause TLB fetch timeouts
515 * if a TLB entry is purged while in use. sba_mark_invalid()
516 * purges IOTLB entries in power-of-two sizes, so we also
517 * allocate IOVA space in power-of-two sizes.
519 bits_wanted
= 1UL << get_iovp_order(bits_wanted
<< iovp_shift
);
521 if (likely(bits_wanted
== 1)) {
522 unsigned int bitshiftcnt
;
523 for(; res_ptr
< res_end
; res_ptr
++) {
524 if (likely(*res_ptr
!= ~0UL)) {
525 bitshiftcnt
= ffz(*res_ptr
);
526 *res_ptr
|= (1UL << bitshiftcnt
);
527 pide
= ptr_to_pide(ioc
, res_ptr
, bitshiftcnt
);
528 ioc
->res_bitshift
= bitshiftcnt
+ bits_wanted
;
536 if (likely(bits_wanted
<= BITS_PER_LONG
/2)) {
538 ** Search the resource bit map on well-aligned values.
539 ** "o" is the alignment.
540 ** We need the alignment to invalidate I/O TLB using
541 ** SBA HW features in the unmap path.
543 unsigned long o
= 1 << get_iovp_order(bits_wanted
<< iovp_shift
);
544 uint bitshiftcnt
= ROUNDUP(ioc
->res_bitshift
, o
);
545 unsigned long mask
, base_mask
;
547 base_mask
= RESMAP_MASK(bits_wanted
);
548 mask
= base_mask
<< bitshiftcnt
;
550 DBG_RES("%s() o %ld %p", __func__
, o
, res_ptr
);
551 for(; res_ptr
< res_end
; res_ptr
++)
553 DBG_RES(" %p %lx %lx\n", res_ptr
, mask
, *res_ptr
);
555 for (; mask
; mask
<<= o
, bitshiftcnt
+= o
) {
556 tpide
= ptr_to_pide(ioc
, res_ptr
, bitshiftcnt
);
557 ret
= iommu_is_span_boundary(tpide
, bits_wanted
,
560 if ((0 == ((*res_ptr
) & mask
)) && !ret
) {
561 *res_ptr
|= mask
; /* mark resources busy! */
563 ioc
->res_bitshift
= bitshiftcnt
+ bits_wanted
;
577 qwords
= bits_wanted
>> 6; /* /64 */
578 bits
= bits_wanted
- (qwords
* BITS_PER_LONG
);
580 end
= res_end
- qwords
;
582 for (; res_ptr
< end
; res_ptr
++) {
583 tpide
= ptr_to_pide(ioc
, res_ptr
, 0);
584 ret
= iommu_is_span_boundary(tpide
, bits_wanted
,
585 shift
, boundary_size
);
588 for (i
= 0 ; i
< qwords
; i
++) {
592 if (bits
&& res_ptr
[i
] && (__ffs(res_ptr
[i
]) < bits
))
595 /* Found it, mark it */
596 for (i
= 0 ; i
< qwords
; i
++)
598 res_ptr
[i
] |= RESMAP_MASK(bits
);
602 ioc
->res_bitshift
= bits
;
610 prefetch(ioc
->res_map
);
611 ioc
->res_hint
= (unsigned long *) ioc
->res_map
;
612 ioc
->res_bitshift
= 0;
613 spin_unlock_irqrestore(&ioc
->res_lock
, flags
);
617 ioc
->res_hint
= res_ptr
;
618 spin_unlock_irqrestore(&ioc
->res_lock
, flags
);
624 * sba_alloc_range - find free bits and mark them in IO PDIR resource bitmap
625 * @ioc: IO MMU structure which owns the pdir we are interested in.
626 * @size: number of bytes to create a mapping for
628 * Given a size, find consecutive unmarked and then mark those bits in the
632 sba_alloc_range(struct ioc
*ioc
, struct device
*dev
, size_t size
)
634 unsigned int pages_needed
= size
>> iovp_shift
;
635 #ifdef PDIR_SEARCH_TIMING
636 unsigned long itc_start
;
640 ASSERT(pages_needed
);
641 ASSERT(0 == (size
& ~iovp_mask
));
643 #ifdef PDIR_SEARCH_TIMING
644 itc_start
= ia64_get_itc();
647 ** "seek and ye shall find"...praying never hurts either...
649 pide
= sba_search_bitmap(ioc
, dev
, pages_needed
, 1);
650 if (unlikely(pide
>= (ioc
->res_size
<< 3))) {
651 pide
= sba_search_bitmap(ioc
, dev
, pages_needed
, 0);
652 if (unlikely(pide
>= (ioc
->res_size
<< 3))) {
653 #if DELAYED_RESOURCE_CNT > 0
657 ** With delayed resource freeing, we can give this one more shot. We're
658 ** getting close to being in trouble here, so do what we can to make this
661 spin_lock_irqsave(&ioc
->saved_lock
, flags
);
662 if (ioc
->saved_cnt
> 0) {
663 struct sba_dma_pair
*d
;
664 int cnt
= ioc
->saved_cnt
;
666 d
= &(ioc
->saved
[ioc
->saved_cnt
- 1]);
668 spin_lock(&ioc
->res_lock
);
670 sba_mark_invalid(ioc
, d
->iova
, d
->size
);
671 sba_free_range(ioc
, d
->iova
, d
->size
);
675 READ_REG(ioc
->ioc_hpa
+IOC_PCOM
); /* flush purges */
676 spin_unlock(&ioc
->res_lock
);
678 spin_unlock_irqrestore(&ioc
->saved_lock
, flags
);
680 pide
= sba_search_bitmap(ioc
, dev
, pages_needed
, 0);
681 if (unlikely(pide
>= (ioc
->res_size
<< 3))) {
682 printk(KERN_WARNING
"%s: I/O MMU @ %p is"
683 "out of mapping resources, %u %u %lx\n",
684 __func__
, ioc
->ioc_hpa
, ioc
->res_size
,
685 pages_needed
, dma_get_seg_boundary(dev
));
689 printk(KERN_WARNING
"%s: I/O MMU @ %p is"
690 "out of mapping resources, %u %u %lx\n",
691 __func__
, ioc
->ioc_hpa
, ioc
->res_size
,
692 pages_needed
, dma_get_seg_boundary(dev
));
698 #ifdef PDIR_SEARCH_TIMING
699 ioc
->avg_search
[ioc
->avg_idx
++] = (ia64_get_itc() - itc_start
) / pages_needed
;
700 ioc
->avg_idx
&= SBA_SEARCH_SAMPLE
- 1;
703 prefetchw(&(ioc
->pdir_base
[pide
]));
705 #ifdef ASSERT_PDIR_SANITY
706 /* verify the first enable bit is clear */
707 if(0x00 != ((u8
*) ioc
->pdir_base
)[pide
*PDIR_ENTRY_SIZE
+ 7]) {
708 sba_dump_pdir_entry(ioc
, "sba_search_bitmap() botched it?", pide
);
712 DBG_RES("%s(%x) %d -> %lx hint %x/%x\n",
713 __func__
, size
, pages_needed
, pide
,
714 (uint
) ((unsigned long) ioc
->res_hint
- (unsigned long) ioc
->res_map
),
722 * sba_free_range - unmark bits in IO PDIR resource bitmap
723 * @ioc: IO MMU structure which owns the pdir we are interested in.
724 * @iova: IO virtual address which was previously allocated.
725 * @size: number of bytes to create a mapping for
727 * clear bits in the ioc's resource map
729 static SBA_INLINE
void
730 sba_free_range(struct ioc
*ioc
, dma_addr_t iova
, size_t size
)
732 unsigned long iovp
= SBA_IOVP(ioc
, iova
);
733 unsigned int pide
= PDIR_INDEX(iovp
);
734 unsigned int ridx
= pide
>> 3; /* convert bit to byte address */
735 unsigned long *res_ptr
= (unsigned long *) &((ioc
)->res_map
[ridx
& ~RESMAP_IDX_MASK
]);
736 int bits_not_wanted
= size
>> iovp_shift
;
739 /* Round up to power-of-two size: see AR2305 note above */
740 bits_not_wanted
= 1UL << get_iovp_order(bits_not_wanted
<< iovp_shift
);
741 for (; bits_not_wanted
> 0 ; res_ptr
++) {
743 if (unlikely(bits_not_wanted
> BITS_PER_LONG
)) {
745 /* these mappings start 64bit aligned */
747 bits_not_wanted
-= BITS_PER_LONG
;
748 pide
+= BITS_PER_LONG
;
752 /* 3-bits "bit" address plus 2 (or 3) bits for "byte" == bit in word */
753 m
= RESMAP_MASK(bits_not_wanted
) << (pide
& (BITS_PER_LONG
- 1));
756 DBG_RES("%s( ,%x,%x) %x/%lx %x %p %lx\n", __func__
, (uint
) iova
, size
,
757 bits_not_wanted
, m
, pide
, res_ptr
, *res_ptr
);
760 ASSERT(bits_not_wanted
);
761 ASSERT((*res_ptr
& m
) == m
); /* verify same bits are set */
768 /**************************************************************
770 * "Dynamic DMA Mapping" support (aka "Coherent I/O")
772 ***************************************************************/
775 * sba_io_pdir_entry - fill in one IO PDIR entry
776 * @pdir_ptr: pointer to IO PDIR entry
777 * @vba: Virtual CPU address of buffer to map
779 * SBA Mapping Routine
781 * Given a virtual address (vba, arg1) sba_io_pdir_entry()
782 * loads the I/O PDIR entry pointed to by pdir_ptr (arg0).
783 * Each IO Pdir entry consists of 8 bytes as shown below
787 * +-+---------------------+----------------------------------+----+--------+
788 * |V| U | PPN[39:12] | U | FF |
789 * +-+---------------------+----------------------------------+----+--------+
793 * PPN == Physical Page Number
795 * The physical address fields are filled with the results of virt_to_phys()
800 #define sba_io_pdir_entry(pdir_ptr, vba) *pdir_ptr = ((vba & ~0xE000000000000FFFULL) \
801 | 0x8000000000000000ULL)
804 sba_io_pdir_entry(u64
*pdir_ptr
, unsigned long vba
)
806 *pdir_ptr
= ((vba
& ~0xE000000000000FFFULL
) | 0x80000000000000FFULL
);
810 #ifdef ENABLE_MARK_CLEAN
812 * Since DMA is i-cache coherent, any (complete) pages that were written via
813 * DMA can be marked as "clean" so that lazy_mmu_prot_update() doesn't have to
814 * flush them when they get mapped into an executable vm-area.
817 mark_clean (void *addr
, size_t size
)
819 unsigned long pg_addr
, end
;
821 pg_addr
= PAGE_ALIGN((unsigned long) addr
);
822 end
= (unsigned long) addr
+ size
;
823 while (pg_addr
+ PAGE_SIZE
<= end
) {
824 struct page
*page
= virt_to_page((void *)pg_addr
);
825 set_bit(PG_arch_1
, &page
->flags
);
826 pg_addr
+= PAGE_SIZE
;
832 * sba_mark_invalid - invalidate one or more IO PDIR entries
833 * @ioc: IO MMU structure which owns the pdir we are interested in.
834 * @iova: IO Virtual Address mapped earlier
835 * @byte_cnt: number of bytes this mapping covers.
837 * Marking the IO PDIR entry(ies) as Invalid and invalidate
838 * corresponding IO TLB entry. The PCOM (Purge Command Register)
839 * is to purge stale entries in the IO TLB when unmapping entries.
841 * The PCOM register supports purging of multiple pages, with a minium
842 * of 1 page and a maximum of 2GB. Hardware requires the address be
843 * aligned to the size of the range being purged. The size of the range
844 * must be a power of 2. The "Cool perf optimization" in the
845 * allocation routine helps keep that true.
847 static SBA_INLINE
void
848 sba_mark_invalid(struct ioc
*ioc
, dma_addr_t iova
, size_t byte_cnt
)
850 u32 iovp
= (u32
) SBA_IOVP(ioc
,iova
);
852 int off
= PDIR_INDEX(iovp
);
854 /* Must be non-zero and rounded up */
855 ASSERT(byte_cnt
> 0);
856 ASSERT(0 == (byte_cnt
& ~iovp_mask
));
858 #ifdef ASSERT_PDIR_SANITY
859 /* Assert first pdir entry is set */
860 if (!(ioc
->pdir_base
[off
] >> 60)) {
861 sba_dump_pdir_entry(ioc
,"sba_mark_invalid()", PDIR_INDEX(iovp
));
865 if (byte_cnt
<= iovp_size
)
867 ASSERT(off
< ioc
->pdir_size
);
869 iovp
|= iovp_shift
; /* set "size" field for PCOM */
871 #ifndef FULL_VALID_PDIR
873 ** clear I/O PDIR entry "valid" bit
874 ** Do NOT clear the rest - save it for debugging.
875 ** We should only clear bits that have previously
878 ioc
->pdir_base
[off
] &= ~(0x80000000000000FFULL
);
881 ** If we want to maintain the PDIR as valid, put in
882 ** the spill page so devices prefetching won't
883 ** cause a hard fail.
885 ioc
->pdir_base
[off
] = (0x80000000000000FFULL
| prefetch_spill_page
);
888 u32 t
= get_iovp_order(byte_cnt
) + iovp_shift
;
891 ASSERT(t
<= 31); /* 2GB! Max value of "size" field */
894 /* verify this pdir entry is enabled */
895 ASSERT(ioc
->pdir_base
[off
] >> 63);
896 #ifndef FULL_VALID_PDIR
897 /* clear I/O Pdir entry "valid" bit first */
898 ioc
->pdir_base
[off
] &= ~(0x80000000000000FFULL
);
900 ioc
->pdir_base
[off
] = (0x80000000000000FFULL
| prefetch_spill_page
);
903 byte_cnt
-= iovp_size
;
904 } while (byte_cnt
> 0);
907 WRITE_REG(iovp
| ioc
->ibase
, ioc
->ioc_hpa
+IOC_PCOM
);
911 * sba_map_single_attrs - map one buffer and return IOVA for DMA
912 * @dev: instance of PCI owned by the driver that's asking.
913 * @addr: driver buffer to map.
914 * @size: number of bytes to map in driver buffer.
916 * @attrs: optional dma attributes
918 * See Documentation/PCI/PCI-DMA-mapping.txt
920 static dma_addr_t
sba_map_page(struct device
*dev
, struct page
*page
,
921 unsigned long poff
, size_t size
,
922 enum dma_data_direction dir
,
923 struct dma_attrs
*attrs
)
926 void *addr
= page_address(page
) + poff
;
931 #ifdef ASSERT_PDIR_SANITY
934 #ifdef ALLOW_IOV_BYPASS
935 unsigned long pci_addr
= virt_to_phys(addr
);
938 #ifdef ALLOW_IOV_BYPASS
939 ASSERT(to_pci_dev(dev
)->dma_mask
);
941 ** Check if the PCI device can DMA to ptr... if so, just return ptr
943 if (likely((pci_addr
& ~to_pci_dev(dev
)->dma_mask
) == 0)) {
945 ** Device is bit capable of DMA'ing to the buffer...
946 ** just return the PCI address of ptr
948 DBG_BYPASS("sba_map_single_attrs() bypass mask/addr: "
950 to_pci_dev(dev
)->dma_mask
, pci_addr
);
957 prefetch(ioc
->res_hint
);
960 ASSERT(size
<= DMA_CHUNK_SIZE
);
962 /* save offset bits */
963 offset
= ((dma_addr_t
) (long) addr
) & ~iovp_mask
;
965 /* round up to nearest iovp_size */
966 size
= (size
+ offset
+ ~iovp_mask
) & iovp_mask
;
968 #ifdef ASSERT_PDIR_SANITY
969 spin_lock_irqsave(&ioc
->res_lock
, flags
);
970 if (sba_check_pdir(ioc
,"Check before sba_map_single_attrs()"))
971 panic("Sanity check failed");
972 spin_unlock_irqrestore(&ioc
->res_lock
, flags
);
975 pide
= sba_alloc_range(ioc
, dev
, size
);
979 iovp
= (dma_addr_t
) pide
<< iovp_shift
;
981 DBG_RUN("%s() 0x%p -> 0x%lx\n", __func__
, addr
, (long) iovp
| offset
);
983 pdir_start
= &(ioc
->pdir_base
[pide
]);
986 ASSERT(((u8
*)pdir_start
)[7] == 0); /* verify availability */
987 sba_io_pdir_entry(pdir_start
, (unsigned long) addr
);
989 DBG_RUN(" pdir 0x%p %lx\n", pdir_start
, *pdir_start
);
995 /* force pdir update */
998 /* form complete address */
999 #ifdef ASSERT_PDIR_SANITY
1000 spin_lock_irqsave(&ioc
->res_lock
, flags
);
1001 sba_check_pdir(ioc
,"Check after sba_map_single_attrs()");
1002 spin_unlock_irqrestore(&ioc
->res_lock
, flags
);
1004 return SBA_IOVA(ioc
, iovp
, offset
);
1007 static dma_addr_t
sba_map_single_attrs(struct device
*dev
, void *addr
,
1008 size_t size
, enum dma_data_direction dir
,
1009 struct dma_attrs
*attrs
)
1011 return sba_map_page(dev
, virt_to_page(addr
),
1012 (unsigned long)addr
& ~PAGE_MASK
, size
, dir
, attrs
);
1015 #ifdef ENABLE_MARK_CLEAN
1016 static SBA_INLINE
void
1017 sba_mark_clean(struct ioc
*ioc
, dma_addr_t iova
, size_t size
)
1019 u32 iovp
= (u32
) SBA_IOVP(ioc
,iova
);
1020 int off
= PDIR_INDEX(iovp
);
1023 if (size
<= iovp_size
) {
1024 addr
= phys_to_virt(ioc
->pdir_base
[off
] &
1025 ~0xE000000000000FFFULL
);
1026 mark_clean(addr
, size
);
1029 addr
= phys_to_virt(ioc
->pdir_base
[off
] &
1030 ~0xE000000000000FFFULL
);
1031 mark_clean(addr
, min(size
, iovp_size
));
1040 * sba_unmap_single_attrs - unmap one IOVA and free resources
1041 * @dev: instance of PCI owned by the driver that's asking.
1042 * @iova: IOVA of driver buffer previously mapped.
1043 * @size: number of bytes mapped in driver buffer.
1044 * @dir: R/W or both.
1045 * @attrs: optional dma attributes
1047 * See Documentation/PCI/PCI-DMA-mapping.txt
1049 static void sba_unmap_page(struct device
*dev
, dma_addr_t iova
, size_t size
,
1050 enum dma_data_direction dir
, struct dma_attrs
*attrs
)
1053 #if DELAYED_RESOURCE_CNT > 0
1054 struct sba_dma_pair
*d
;
1056 unsigned long flags
;
1062 #ifdef ALLOW_IOV_BYPASS
1063 if (likely((iova
& ioc
->imask
) != ioc
->ibase
)) {
1065 ** Address does not fall w/in IOVA, must be bypassing
1067 DBG_BYPASS("sba_unmap_single_attrs() bypass addr: 0x%lx\n",
1070 #ifdef ENABLE_MARK_CLEAN
1071 if (dir
== DMA_FROM_DEVICE
) {
1072 mark_clean(phys_to_virt(iova
), size
);
1078 offset
= iova
& ~iovp_mask
;
1080 DBG_RUN("%s() iovp 0x%lx/%x\n", __func__
, (long) iova
, size
);
1082 iova
^= offset
; /* clear offset bits */
1084 size
= ROUNDUP(size
, iovp_size
);
1086 #ifdef ENABLE_MARK_CLEAN
1087 if (dir
== DMA_FROM_DEVICE
)
1088 sba_mark_clean(ioc
, iova
, size
);
1091 #if DELAYED_RESOURCE_CNT > 0
1092 spin_lock_irqsave(&ioc
->saved_lock
, flags
);
1093 d
= &(ioc
->saved
[ioc
->saved_cnt
]);
1096 if (unlikely(++(ioc
->saved_cnt
) >= DELAYED_RESOURCE_CNT
)) {
1097 int cnt
= ioc
->saved_cnt
;
1098 spin_lock(&ioc
->res_lock
);
1100 sba_mark_invalid(ioc
, d
->iova
, d
->size
);
1101 sba_free_range(ioc
, d
->iova
, d
->size
);
1105 READ_REG(ioc
->ioc_hpa
+IOC_PCOM
); /* flush purges */
1106 spin_unlock(&ioc
->res_lock
);
1108 spin_unlock_irqrestore(&ioc
->saved_lock
, flags
);
1109 #else /* DELAYED_RESOURCE_CNT == 0 */
1110 spin_lock_irqsave(&ioc
->res_lock
, flags
);
1111 sba_mark_invalid(ioc
, iova
, size
);
1112 sba_free_range(ioc
, iova
, size
);
1113 READ_REG(ioc
->ioc_hpa
+IOC_PCOM
); /* flush purges */
1114 spin_unlock_irqrestore(&ioc
->res_lock
, flags
);
1115 #endif /* DELAYED_RESOURCE_CNT == 0 */
1118 void sba_unmap_single_attrs(struct device
*dev
, dma_addr_t iova
, size_t size
,
1119 enum dma_data_direction dir
, struct dma_attrs
*attrs
)
1121 sba_unmap_page(dev
, iova
, size
, dir
, attrs
);
1125 * sba_alloc_coherent - allocate/map shared mem for DMA
1126 * @dev: instance of PCI owned by the driver that's asking.
1127 * @size: number of bytes mapped in driver buffer.
1128 * @dma_handle: IOVA of new buffer.
1130 * See Documentation/PCI/PCI-DMA-mapping.txt
1133 sba_alloc_coherent (struct device
*dev
, size_t size
, dma_addr_t
*dma_handle
, gfp_t flags
)
1144 page
= alloc_pages_exact_node(ioc
->node
== MAX_NUMNODES
?
1145 numa_node_id() : ioc
->node
, flags
,
1148 if (unlikely(!page
))
1151 addr
= page_address(page
);
1154 addr
= (void *) __get_free_pages(flags
, get_order(size
));
1156 if (unlikely(!addr
))
1159 memset(addr
, 0, size
);
1160 *dma_handle
= virt_to_phys(addr
);
1162 #ifdef ALLOW_IOV_BYPASS
1163 ASSERT(dev
->coherent_dma_mask
);
1165 ** Check if the PCI device can DMA to ptr... if so, just return ptr
1167 if (likely((*dma_handle
& ~dev
->coherent_dma_mask
) == 0)) {
1168 DBG_BYPASS("sba_alloc_coherent() bypass mask/addr: 0x%lx/0x%lx\n",
1169 dev
->coherent_dma_mask
, *dma_handle
);
1176 * If device can't bypass or bypass is disabled, pass the 32bit fake
1177 * device to map single to get an iova mapping.
1179 *dma_handle
= sba_map_single_attrs(&ioc
->sac_only_dev
->dev
, addr
,
1187 * sba_free_coherent - free/unmap shared mem for DMA
1188 * @dev: instance of PCI owned by the driver that's asking.
1189 * @size: number of bytes mapped in driver buffer.
1190 * @vaddr: virtual address IOVA of "consistent" buffer.
1191 * @dma_handler: IO virtual address of "consistent" buffer.
1193 * See Documentation/PCI/PCI-DMA-mapping.txt
1195 static void sba_free_coherent (struct device
*dev
, size_t size
, void *vaddr
,
1196 dma_addr_t dma_handle
)
1198 sba_unmap_single_attrs(dev
, dma_handle
, size
, 0, NULL
);
1199 free_pages((unsigned long) vaddr
, get_order(size
));
1204 ** Since 0 is a valid pdir_base index value, can't use that
1205 ** to determine if a value is valid or not. Use a flag to indicate
1206 ** the SG list entry contains a valid pdir index.
1208 #define PIDE_FLAG 0x1UL
1210 #ifdef DEBUG_LARGE_SG_ENTRIES
1211 int dump_run_sg
= 0;
1216 * sba_fill_pdir - write allocated SG entries into IO PDIR
1217 * @ioc: IO MMU structure which owns the pdir we are interested in.
1218 * @startsg: list of IOVA/size pairs
1219 * @nents: number of entries in startsg list
1221 * Take preprocessed SG list and write corresponding entries
1225 static SBA_INLINE
int
1228 struct scatterlist
*startsg
,
1231 struct scatterlist
*dma_sg
= startsg
; /* pointer to current DMA */
1234 unsigned long dma_offset
= 0;
1236 while (nents
-- > 0) {
1237 int cnt
= startsg
->dma_length
;
1238 startsg
->dma_length
= 0;
1240 #ifdef DEBUG_LARGE_SG_ENTRIES
1242 printk(" %2d : %08lx/%05x %p\n",
1243 nents
, startsg
->dma_address
, cnt
,
1244 sba_sg_address(startsg
));
1246 DBG_RUN_SG(" %d : %08lx/%05x %p\n",
1247 nents
, startsg
->dma_address
, cnt
,
1248 sba_sg_address(startsg
));
1251 ** Look for the start of a new DMA stream
1253 if (startsg
->dma_address
& PIDE_FLAG
) {
1254 u32 pide
= startsg
->dma_address
& ~PIDE_FLAG
;
1255 dma_offset
= (unsigned long) pide
& ~iovp_mask
;
1256 startsg
->dma_address
= 0;
1258 dma_sg
= sg_next(dma_sg
);
1259 dma_sg
->dma_address
= pide
| ioc
->ibase
;
1260 pdirp
= &(ioc
->pdir_base
[pide
>> iovp_shift
]);
1265 ** Look for a VCONTIG chunk
1268 unsigned long vaddr
= (unsigned long) sba_sg_address(startsg
);
1271 /* Since multiple Vcontig blocks could make up
1272 ** one DMA stream, *add* cnt to dma_len.
1274 dma_sg
->dma_length
+= cnt
;
1276 dma_offset
=0; /* only want offset on first chunk */
1277 cnt
= ROUNDUP(cnt
, iovp_size
);
1279 sba_io_pdir_entry(pdirp
, vaddr
);
1285 startsg
= sg_next(startsg
);
1287 /* force pdir update */
1290 #ifdef DEBUG_LARGE_SG_ENTRIES
1298 ** Two address ranges are DMA contiguous *iff* "end of prev" and
1299 ** "start of next" are both on an IOV page boundary.
1301 ** (shift left is a quick trick to mask off upper bits)
1303 #define DMA_CONTIG(__X, __Y) \
1304 (((((unsigned long) __X) | ((unsigned long) __Y)) << (BITS_PER_LONG - iovp_shift)) == 0UL)
1308 * sba_coalesce_chunks - preprocess the SG list
1309 * @ioc: IO MMU structure which owns the pdir we are interested in.
1310 * @startsg: list of IOVA/size pairs
1311 * @nents: number of entries in startsg list
1313 * First pass is to walk the SG list and determine where the breaks are
1314 * in the DMA stream. Allocates PDIR entries but does not fill them.
1315 * Returns the number of DMA chunks.
1317 * Doing the fill separate from the coalescing/allocation keeps the
1318 * code simpler. Future enhancement could make one pass through
1319 * the sglist do both.
1321 static SBA_INLINE
int
1322 sba_coalesce_chunks(struct ioc
*ioc
, struct device
*dev
,
1323 struct scatterlist
*startsg
,
1326 struct scatterlist
*vcontig_sg
; /* VCONTIG chunk head */
1327 unsigned long vcontig_len
; /* len of VCONTIG chunk */
1328 unsigned long vcontig_end
;
1329 struct scatterlist
*dma_sg
; /* next DMA stream head */
1330 unsigned long dma_offset
, dma_len
; /* start/len of DMA stream */
1332 unsigned int max_seg_size
= dma_get_max_seg_size(dev
);
1336 unsigned long vaddr
= (unsigned long) sba_sg_address(startsg
);
1339 ** Prepare for first/next DMA stream
1341 dma_sg
= vcontig_sg
= startsg
;
1342 dma_len
= vcontig_len
= vcontig_end
= startsg
->length
;
1343 vcontig_end
+= vaddr
;
1344 dma_offset
= vaddr
& ~iovp_mask
;
1346 /* PARANOID: clear entries */
1347 startsg
->dma_address
= startsg
->dma_length
= 0;
1350 ** This loop terminates one iteration "early" since
1351 ** it's always looking one "ahead".
1353 while (--nents
> 0) {
1354 unsigned long vaddr
; /* tmp */
1356 startsg
= sg_next(startsg
);
1359 startsg
->dma_address
= startsg
->dma_length
= 0;
1361 /* catch brokenness in SCSI layer */
1362 ASSERT(startsg
->length
<= DMA_CHUNK_SIZE
);
1365 ** First make sure current dma stream won't
1366 ** exceed DMA_CHUNK_SIZE if we coalesce the
1369 if (((dma_len
+ dma_offset
+ startsg
->length
+ ~iovp_mask
) & iovp_mask
)
1373 if (dma_len
+ startsg
->length
> max_seg_size
)
1377 ** Then look for virtually contiguous blocks.
1379 ** append the next transaction?
1381 vaddr
= (unsigned long) sba_sg_address(startsg
);
1382 if (vcontig_end
== vaddr
)
1384 vcontig_len
+= startsg
->length
;
1385 vcontig_end
+= startsg
->length
;
1386 dma_len
+= startsg
->length
;
1390 #ifdef DEBUG_LARGE_SG_ENTRIES
1391 dump_run_sg
= (vcontig_len
> iovp_size
);
1395 ** Not virtually contiguous.
1396 ** Terminate prev chunk.
1397 ** Start a new chunk.
1399 ** Once we start a new VCONTIG chunk, dma_offset
1400 ** can't change. And we need the offset from the first
1401 ** chunk - not the last one. Ergo Successive chunks
1402 ** must start on page boundaries and dove tail
1403 ** with it's predecessor.
1405 vcontig_sg
->dma_length
= vcontig_len
;
1407 vcontig_sg
= startsg
;
1408 vcontig_len
= startsg
->length
;
1411 ** 3) do the entries end/start on page boundaries?
1412 ** Don't update vcontig_end until we've checked.
1414 if (DMA_CONTIG(vcontig_end
, vaddr
))
1416 vcontig_end
= vcontig_len
+ vaddr
;
1417 dma_len
+= vcontig_len
;
1425 ** End of DMA Stream
1426 ** Terminate last VCONTIG block.
1427 ** Allocate space for DMA stream.
1429 vcontig_sg
->dma_length
= vcontig_len
;
1430 dma_len
= (dma_len
+ dma_offset
+ ~iovp_mask
) & iovp_mask
;
1431 ASSERT(dma_len
<= DMA_CHUNK_SIZE
);
1432 idx
= sba_alloc_range(ioc
, dev
, dma_len
);
1434 dma_sg
->dma_length
= 0;
1437 dma_sg
->dma_address
= (dma_addr_t
)(PIDE_FLAG
| (idx
<< iovp_shift
)
1445 static void sba_unmap_sg_attrs(struct device
*dev
, struct scatterlist
*sglist
,
1446 int nents
, enum dma_data_direction dir
,
1447 struct dma_attrs
*attrs
);
1449 * sba_map_sg - map Scatter/Gather list
1450 * @dev: instance of PCI owned by the driver that's asking.
1451 * @sglist: array of buffer/length pairs
1452 * @nents: number of entries in list
1453 * @dir: R/W or both.
1454 * @attrs: optional dma attributes
1456 * See Documentation/PCI/PCI-DMA-mapping.txt
1458 static int sba_map_sg_attrs(struct device
*dev
, struct scatterlist
*sglist
,
1459 int nents
, enum dma_data_direction dir
,
1460 struct dma_attrs
*attrs
)
1463 int coalesced
, filled
= 0;
1464 #ifdef ASSERT_PDIR_SANITY
1465 unsigned long flags
;
1467 #ifdef ALLOW_IOV_BYPASS_SG
1468 struct scatterlist
*sg
;
1471 DBG_RUN_SG("%s() START %d entries\n", __func__
, nents
);
1475 #ifdef ALLOW_IOV_BYPASS_SG
1476 ASSERT(to_pci_dev(dev
)->dma_mask
);
1477 if (likely((ioc
->dma_mask
& ~to_pci_dev(dev
)->dma_mask
) == 0)) {
1478 for_each_sg(sglist
, sg
, nents
, filled
) {
1479 sg
->dma_length
= sg
->length
;
1480 sg
->dma_address
= virt_to_phys(sba_sg_address(sg
));
1485 /* Fast path single entry scatterlists. */
1487 sglist
->dma_length
= sglist
->length
;
1488 sglist
->dma_address
= sba_map_single_attrs(dev
, sba_sg_address(sglist
), sglist
->length
, dir
, attrs
);
1492 #ifdef ASSERT_PDIR_SANITY
1493 spin_lock_irqsave(&ioc
->res_lock
, flags
);
1494 if (sba_check_pdir(ioc
,"Check before sba_map_sg_attrs()"))
1496 sba_dump_sg(ioc
, sglist
, nents
);
1497 panic("Check before sba_map_sg_attrs()");
1499 spin_unlock_irqrestore(&ioc
->res_lock
, flags
);
1502 prefetch(ioc
->res_hint
);
1505 ** First coalesce the chunks and allocate I/O pdir space
1507 ** If this is one DMA stream, we can properly map using the
1508 ** correct virtual address associated with each DMA page.
1509 ** w/o this association, we wouldn't have coherent DMA!
1510 ** Access to the virtual address is what forces a two pass algorithm.
1512 coalesced
= sba_coalesce_chunks(ioc
, dev
, sglist
, nents
);
1513 if (coalesced
< 0) {
1514 sba_unmap_sg_attrs(dev
, sglist
, nents
, dir
, attrs
);
1519 ** Program the I/O Pdir
1521 ** map the virtual addresses to the I/O Pdir
1522 ** o dma_address will contain the pdir index
1523 ** o dma_len will contain the number of bytes to map
1524 ** o address contains the virtual address.
1526 filled
= sba_fill_pdir(ioc
, sglist
, nents
);
1528 #ifdef ASSERT_PDIR_SANITY
1529 spin_lock_irqsave(&ioc
->res_lock
, flags
);
1530 if (sba_check_pdir(ioc
,"Check after sba_map_sg_attrs()"))
1532 sba_dump_sg(ioc
, sglist
, nents
);
1533 panic("Check after sba_map_sg_attrs()\n");
1535 spin_unlock_irqrestore(&ioc
->res_lock
, flags
);
1538 ASSERT(coalesced
== filled
);
1539 DBG_RUN_SG("%s() DONE %d mappings\n", __func__
, filled
);
1545 * sba_unmap_sg_attrs - unmap Scatter/Gather list
1546 * @dev: instance of PCI owned by the driver that's asking.
1547 * @sglist: array of buffer/length pairs
1548 * @nents: number of entries in list
1549 * @dir: R/W or both.
1550 * @attrs: optional dma attributes
1552 * See Documentation/PCI/PCI-DMA-mapping.txt
1554 static void sba_unmap_sg_attrs(struct device
*dev
, struct scatterlist
*sglist
,
1555 int nents
, enum dma_data_direction dir
,
1556 struct dma_attrs
*attrs
)
1558 #ifdef ASSERT_PDIR_SANITY
1560 unsigned long flags
;
1563 DBG_RUN_SG("%s() START %d entries, %p,%x\n",
1564 __func__
, nents
, sba_sg_address(sglist
), sglist
->length
);
1566 #ifdef ASSERT_PDIR_SANITY
1570 spin_lock_irqsave(&ioc
->res_lock
, flags
);
1571 sba_check_pdir(ioc
,"Check before sba_unmap_sg_attrs()");
1572 spin_unlock_irqrestore(&ioc
->res_lock
, flags
);
1575 while (nents
&& sglist
->dma_length
) {
1577 sba_unmap_single_attrs(dev
, sglist
->dma_address
,
1578 sglist
->dma_length
, dir
, attrs
);
1579 sglist
= sg_next(sglist
);
1583 DBG_RUN_SG("%s() DONE (nents %d)\n", __func__
, nents
);
1585 #ifdef ASSERT_PDIR_SANITY
1586 spin_lock_irqsave(&ioc
->res_lock
, flags
);
1587 sba_check_pdir(ioc
,"Check after sba_unmap_sg_attrs()");
1588 spin_unlock_irqrestore(&ioc
->res_lock
, flags
);
1593 /**************************************************************
1595 * Initialization and claim
1597 ***************************************************************/
1600 ioc_iova_init(struct ioc
*ioc
)
1604 struct pci_dev
*device
= NULL
;
1605 #ifdef FULL_VALID_PDIR
1606 unsigned long index
;
1610 ** Firmware programs the base and size of a "safe IOVA space"
1611 ** (one that doesn't overlap memory or LMMIO space) in the
1612 ** IBASE and IMASK registers.
1614 ioc
->ibase
= READ_REG(ioc
->ioc_hpa
+ IOC_IBASE
) & ~0x1UL
;
1615 ioc
->imask
= READ_REG(ioc
->ioc_hpa
+ IOC_IMASK
) | 0xFFFFFFFF00000000UL
;
1617 ioc
->iov_size
= ~ioc
->imask
+ 1;
1619 DBG_INIT("%s() hpa %p IOV base 0x%lx mask 0x%lx (%dMB)\n",
1620 __func__
, ioc
->ioc_hpa
, ioc
->ibase
, ioc
->imask
,
1621 ioc
->iov_size
>> 20);
1623 switch (iovp_size
) {
1624 case 4*1024: tcnfg
= 0; break;
1625 case 8*1024: tcnfg
= 1; break;
1626 case 16*1024: tcnfg
= 2; break;
1627 case 64*1024: tcnfg
= 3; break;
1629 panic(PFX
"Unsupported IOTLB page size %ldK",
1633 WRITE_REG(tcnfg
, ioc
->ioc_hpa
+ IOC_TCNFG
);
1635 ioc
->pdir_size
= (ioc
->iov_size
/ iovp_size
) * PDIR_ENTRY_SIZE
;
1636 ioc
->pdir_base
= (void *) __get_free_pages(GFP_KERNEL
,
1637 get_order(ioc
->pdir_size
));
1638 if (!ioc
->pdir_base
)
1639 panic(PFX
"Couldn't allocate I/O Page Table\n");
1641 memset(ioc
->pdir_base
, 0, ioc
->pdir_size
);
1643 DBG_INIT("%s() IOV page size %ldK pdir %p size %x\n", __func__
,
1644 iovp_size
>> 10, ioc
->pdir_base
, ioc
->pdir_size
);
1646 ASSERT(ALIGN((unsigned long) ioc
->pdir_base
, 4*1024) == (unsigned long) ioc
->pdir_base
);
1647 WRITE_REG(virt_to_phys(ioc
->pdir_base
), ioc
->ioc_hpa
+ IOC_PDIR_BASE
);
1650 ** If an AGP device is present, only use half of the IOV space
1651 ** for PCI DMA. Unfortunately we can't know ahead of time
1652 ** whether GART support will actually be used, for now we
1653 ** can just key on an AGP device found in the system.
1654 ** We program the next pdir index after we stop w/ a key for
1655 ** the GART code to handshake on.
1657 for_each_pci_dev(device
)
1658 agp_found
|= pci_find_capability(device
, PCI_CAP_ID_AGP
);
1660 if (agp_found
&& reserve_sba_gart
) {
1661 printk(KERN_INFO PFX
"reserving %dMb of IOVA space at 0x%lx for agpgart\n",
1662 ioc
->iov_size
/2 >> 20, ioc
->ibase
+ ioc
->iov_size
/2);
1663 ioc
->pdir_size
/= 2;
1664 ((u64
*)ioc
->pdir_base
)[PDIR_INDEX(ioc
->iov_size
/2)] = ZX1_SBA_IOMMU_COOKIE
;
1666 #ifdef FULL_VALID_PDIR
1668 ** Check to see if the spill page has been allocated, we don't need more than
1669 ** one across multiple SBAs.
1671 if (!prefetch_spill_page
) {
1672 char *spill_poison
= "SBAIOMMU POISON";
1673 int poison_size
= 16;
1674 void *poison_addr
, *addr
;
1676 addr
= (void *)__get_free_pages(GFP_KERNEL
, get_order(iovp_size
));
1678 panic(PFX
"Couldn't allocate PDIR spill page\n");
1681 for ( ; (u64
) poison_addr
< addr
+ iovp_size
; poison_addr
+= poison_size
)
1682 memcpy(poison_addr
, spill_poison
, poison_size
);
1684 prefetch_spill_page
= virt_to_phys(addr
);
1686 DBG_INIT("%s() prefetch spill addr: 0x%lx\n", __func__
, prefetch_spill_page
);
1689 ** Set all the PDIR entries valid w/ the spill page as the target
1691 for (index
= 0 ; index
< (ioc
->pdir_size
/ PDIR_ENTRY_SIZE
) ; index
++)
1692 ((u64
*)ioc
->pdir_base
)[index
] = (0x80000000000000FF | prefetch_spill_page
);
1695 /* Clear I/O TLB of any possible entries */
1696 WRITE_REG(ioc
->ibase
| (get_iovp_order(ioc
->iov_size
) + iovp_shift
), ioc
->ioc_hpa
+ IOC_PCOM
);
1697 READ_REG(ioc
->ioc_hpa
+ IOC_PCOM
);
1699 /* Enable IOVA translation */
1700 WRITE_REG(ioc
->ibase
| 1, ioc
->ioc_hpa
+ IOC_IBASE
);
1701 READ_REG(ioc
->ioc_hpa
+ IOC_IBASE
);
1705 ioc_resource_init(struct ioc
*ioc
)
1707 spin_lock_init(&ioc
->res_lock
);
1708 #if DELAYED_RESOURCE_CNT > 0
1709 spin_lock_init(&ioc
->saved_lock
);
1712 /* resource map size dictated by pdir_size */
1713 ioc
->res_size
= ioc
->pdir_size
/ PDIR_ENTRY_SIZE
; /* entries */
1714 ioc
->res_size
>>= 3; /* convert bit count to byte count */
1715 DBG_INIT("%s() res_size 0x%x\n", __func__
, ioc
->res_size
);
1717 ioc
->res_map
= (char *) __get_free_pages(GFP_KERNEL
,
1718 get_order(ioc
->res_size
));
1720 panic(PFX
"Couldn't allocate resource map\n");
1722 memset(ioc
->res_map
, 0, ioc
->res_size
);
1723 /* next available IOVP - circular search */
1724 ioc
->res_hint
= (unsigned long *) ioc
->res_map
;
1726 #ifdef ASSERT_PDIR_SANITY
1727 /* Mark first bit busy - ie no IOVA 0 */
1728 ioc
->res_map
[0] = 0x1;
1729 ioc
->pdir_base
[0] = 0x8000000000000000ULL
| ZX1_SBA_IOMMU_COOKIE
;
1731 #ifdef FULL_VALID_PDIR
1732 /* Mark the last resource used so we don't prefetch beyond IOVA space */
1733 ioc
->res_map
[ioc
->res_size
- 1] |= 0x80UL
; /* res_map is chars */
1734 ioc
->pdir_base
[(ioc
->pdir_size
/ PDIR_ENTRY_SIZE
) - 1] = (0x80000000000000FF
1735 | prefetch_spill_page
);
1738 DBG_INIT("%s() res_map %x %p\n", __func__
,
1739 ioc
->res_size
, (void *) ioc
->res_map
);
1743 ioc_sac_init(struct ioc
*ioc
)
1745 struct pci_dev
*sac
= NULL
;
1746 struct pci_controller
*controller
= NULL
;
1749 * pci_alloc_coherent() must return a DMA address which is
1750 * SAC (single address cycle) addressable, so allocate a
1751 * pseudo-device to enforce that.
1753 sac
= kzalloc(sizeof(*sac
), GFP_KERNEL
);
1755 panic(PFX
"Couldn't allocate struct pci_dev");
1757 controller
= kzalloc(sizeof(*controller
), GFP_KERNEL
);
1759 panic(PFX
"Couldn't allocate struct pci_controller");
1761 controller
->iommu
= ioc
;
1762 sac
->sysdata
= controller
;
1763 sac
->dma_mask
= 0xFFFFFFFFUL
;
1765 sac
->dev
.bus
= &pci_bus_type
;
1767 ioc
->sac_only_dev
= sac
;
1771 ioc_zx1_init(struct ioc
*ioc
)
1773 unsigned long rope_config
;
1776 if (ioc
->rev
< 0x20)
1777 panic(PFX
"IOC 2.0 or later required for IOMMU support\n");
1779 /* 38 bit memory controller + extra bit for range displaced by MMIO */
1780 ioc
->dma_mask
= (0x1UL
<< 39) - 1;
1783 ** Clear ROPE(N)_CONFIG AO bit.
1784 ** Disables "NT Ordering" (~= !"Relaxed Ordering")
1785 ** Overrides bit 1 in DMA Hint Sets.
1786 ** Improves netperf UDP_STREAM by ~10% for tg3 on bcm5701.
1788 for (i
=0; i
<(8*8); i
+=8) {
1789 rope_config
= READ_REG(ioc
->ioc_hpa
+ IOC_ROPE0_CFG
+ i
);
1790 rope_config
&= ~IOC_ROPE_AO
;
1791 WRITE_REG(rope_config
, ioc
->ioc_hpa
+ IOC_ROPE0_CFG
+ i
);
1795 typedef void (initfunc
)(struct ioc
*);
1803 static struct ioc_iommu ioc_iommu_info
[] __initdata
= {
1804 { ZX1_IOC_ID
, "zx1", ioc_zx1_init
},
1805 { ZX2_IOC_ID
, "zx2", NULL
},
1806 { SX1000_IOC_ID
, "sx1000", NULL
},
1807 { SX2000_IOC_ID
, "sx2000", NULL
},
1810 static struct ioc
* __init
1811 ioc_init(unsigned long hpa
, void *handle
)
1814 struct ioc_iommu
*info
;
1816 ioc
= kzalloc(sizeof(*ioc
), GFP_KERNEL
);
1820 ioc
->next
= ioc_list
;
1823 ioc
->handle
= handle
;
1824 ioc
->ioc_hpa
= ioremap(hpa
, 0x1000);
1826 ioc
->func_id
= READ_REG(ioc
->ioc_hpa
+ IOC_FUNC_ID
);
1827 ioc
->rev
= READ_REG(ioc
->ioc_hpa
+ IOC_FCLASS
) & 0xFFUL
;
1828 ioc
->dma_mask
= 0xFFFFFFFFFFFFFFFFUL
; /* conservative */
1830 for (info
= ioc_iommu_info
; info
< ioc_iommu_info
+ ARRAY_SIZE(ioc_iommu_info
); info
++) {
1831 if (ioc
->func_id
== info
->func_id
) {
1832 ioc
->name
= info
->name
;
1838 iovp_size
= (1 << iovp_shift
);
1839 iovp_mask
= ~(iovp_size
- 1);
1841 DBG_INIT("%s: PAGE_SIZE %ldK, iovp_size %ldK\n", __func__
,
1842 PAGE_SIZE
>> 10, iovp_size
>> 10);
1845 ioc
->name
= kmalloc(24, GFP_KERNEL
);
1847 sprintf((char *) ioc
->name
, "Unknown (%04x:%04x)",
1848 ioc
->func_id
& 0xFFFF, (ioc
->func_id
>> 16) & 0xFFFF);
1850 ioc
->name
= "Unknown";
1854 ioc_resource_init(ioc
);
1857 if ((long) ~iovp_mask
> (long) ia64_max_iommu_merge_mask
)
1858 ia64_max_iommu_merge_mask
= ~iovp_mask
;
1860 printk(KERN_INFO PFX
1861 "%s %d.%d HPA 0x%lx IOVA space %dMb at 0x%lx\n",
1862 ioc
->name
, (ioc
->rev
>> 4) & 0xF, ioc
->rev
& 0xF,
1863 hpa
, ioc
->iov_size
>> 20, ioc
->ibase
);
1870 /**************************************************************************
1872 ** SBA initialization code (HW and SW)
1874 ** o identify SBA chip itself
1875 ** o FIXME: initialize DMA hints for reasonable defaults
1877 **************************************************************************/
1879 #ifdef CONFIG_PROC_FS
1881 ioc_start(struct seq_file
*s
, loff_t
*pos
)
1886 for (ioc
= ioc_list
; ioc
; ioc
= ioc
->next
)
1894 ioc_next(struct seq_file
*s
, void *v
, loff_t
*pos
)
1896 struct ioc
*ioc
= v
;
1903 ioc_stop(struct seq_file
*s
, void *v
)
1908 ioc_show(struct seq_file
*s
, void *v
)
1910 struct ioc
*ioc
= v
;
1911 unsigned long *res_ptr
= (unsigned long *)ioc
->res_map
;
1914 seq_printf(s
, "Hewlett Packard %s IOC rev %d.%d\n",
1915 ioc
->name
, ((ioc
->rev
>> 4) & 0xF), (ioc
->rev
& 0xF));
1917 if (ioc
->node
!= MAX_NUMNODES
)
1918 seq_printf(s
, "NUMA node : %d\n", ioc
->node
);
1920 seq_printf(s
, "IOVA size : %ld MB\n", ((ioc
->pdir_size
>> 3) * iovp_size
)/(1024*1024));
1921 seq_printf(s
, "IOVA page size : %ld kb\n", iovp_size
/1024);
1923 for (i
= 0; i
< (ioc
->res_size
/ sizeof(unsigned long)); ++i
, ++res_ptr
)
1924 used
+= hweight64(*res_ptr
);
1926 seq_printf(s
, "PDIR size : %d entries\n", ioc
->pdir_size
>> 3);
1927 seq_printf(s
, "PDIR used : %d entries\n", used
);
1929 #ifdef PDIR_SEARCH_TIMING
1931 unsigned long i
= 0, avg
= 0, min
, max
;
1932 min
= max
= ioc
->avg_search
[0];
1933 for (i
= 0; i
< SBA_SEARCH_SAMPLE
; i
++) {
1934 avg
+= ioc
->avg_search
[i
];
1935 if (ioc
->avg_search
[i
] > max
) max
= ioc
->avg_search
[i
];
1936 if (ioc
->avg_search
[i
] < min
) min
= ioc
->avg_search
[i
];
1938 avg
/= SBA_SEARCH_SAMPLE
;
1939 seq_printf(s
, "Bitmap search : %ld/%ld/%ld (min/avg/max CPU Cycles/IOVA page)\n",
1943 #ifndef ALLOW_IOV_BYPASS
1944 seq_printf(s
, "IOVA bypass disabled\n");
1949 static const struct seq_operations ioc_seq_ops
= {
1957 ioc_open(struct inode
*inode
, struct file
*file
)
1959 return seq_open(file
, &ioc_seq_ops
);
1962 static const struct file_operations ioc_fops
= {
1965 .llseek
= seq_lseek
,
1966 .release
= seq_release
1972 struct proc_dir_entry
*dir
;
1974 dir
= proc_mkdir("bus/mckinley", NULL
);
1978 proc_create(ioc_list
->name
, 0, dir
, &ioc_fops
);
1983 sba_connect_bus(struct pci_bus
*bus
)
1985 acpi_handle handle
, parent
;
1989 if (!PCI_CONTROLLER(bus
))
1990 panic(PFX
"no sysdata on bus %d!\n", bus
->number
);
1992 if (PCI_CONTROLLER(bus
)->iommu
)
1995 handle
= PCI_CONTROLLER(bus
)->acpi_handle
;
2000 * The IOC scope encloses PCI root bridges in the ACPI
2001 * namespace, so work our way out until we find an IOC we
2002 * claimed previously.
2005 for (ioc
= ioc_list
; ioc
; ioc
= ioc
->next
)
2006 if (ioc
->handle
== handle
) {
2007 PCI_CONTROLLER(bus
)->iommu
= ioc
;
2011 status
= acpi_get_parent(handle
, &parent
);
2013 } while (ACPI_SUCCESS(status
));
2015 printk(KERN_WARNING
"No IOC for PCI Bus %04x:%02x in ACPI\n", pci_domain_nr(bus
), bus
->number
);
2020 sba_map_ioc_to_node(struct ioc
*ioc
, acpi_handle handle
)
2025 ioc
->node
= MAX_NUMNODES
;
2027 pxm
= acpi_get_pxm(handle
);
2032 node
= pxm_to_node(pxm
);
2034 if (node
>= MAX_NUMNODES
|| !node_online(node
))
2041 #define sba_map_ioc_to_node(ioc, handle)
2045 acpi_sba_ioc_add(struct acpi_device
*device
)
2050 struct acpi_device_info
*adi
;
2052 status
= hp_acpi_csr_space(device
->handle
, &hpa
, &length
);
2053 if (ACPI_FAILURE(status
))
2056 status
= acpi_get_object_info(device
->handle
, &adi
);
2057 if (ACPI_FAILURE(status
))
2061 * For HWP0001, only SBA appears in ACPI namespace. It encloses the PCI
2062 * root bridges, and its CSR space includes the IOC function.
2064 if (strncmp("HWP0001", adi
->hardware_id
.string
, 7) == 0) {
2065 hpa
+= ZX1_IOC_OFFSET
;
2066 /* zx1 based systems default to kernel page size iommu pages */
2068 iovp_shift
= min(PAGE_SHIFT
, 16);
2073 * default anything not caught above or specified on cmdline to 4k
2079 ioc
= ioc_init(hpa
, device
->handle
);
2083 /* setup NUMA node association */
2084 sba_map_ioc_to_node(ioc
, device
->handle
);
2088 static const struct acpi_device_id hp_ioc_iommu_device_ids
[] = {
2093 static struct acpi_driver acpi_sba_ioc_driver
= {
2094 .name
= "IOC IOMMU Driver",
2095 .ids
= hp_ioc_iommu_device_ids
,
2097 .add
= acpi_sba_ioc_add
,
2101 extern struct dma_map_ops swiotlb_dma_ops
;
2106 if (!ia64_platform_is("hpzx1") && !ia64_platform_is("hpzx1_swiotlb"))
2109 #if defined(CONFIG_IA64_GENERIC)
2110 /* If we are booting a kdump kernel, the sba_iommu will
2111 * cause devices that were not shutdown properly to MCA
2112 * as soon as they are turned back on. Our only option for
2113 * a successful kdump kernel boot is to use the swiotlb.
2115 if (is_kdump_kernel()) {
2116 dma_ops
= &swiotlb_dma_ops
;
2117 if (swiotlb_late_init_with_default_size(64 * (1<<20)) != 0)
2118 panic("Unable to initialize software I/O TLB:"
2119 " Try machvec=dig boot option");
2120 machvec_init("dig");
2125 acpi_bus_register_driver(&acpi_sba_ioc_driver
);
2127 #ifdef CONFIG_IA64_GENERIC
2129 * If we didn't find something sba_iommu can claim, we
2130 * need to setup the swiotlb and switch to the dig machvec.
2132 dma_ops
= &swiotlb_dma_ops
;
2133 if (swiotlb_late_init_with_default_size(64 * (1<<20)) != 0)
2134 panic("Unable to find SBA IOMMU or initialize "
2135 "software I/O TLB: Try machvec=dig boot option");
2136 machvec_init("dig");
2138 panic("Unable to find SBA IOMMU: Try a generic or DIG kernel");
2143 #if defined(CONFIG_IA64_GENERIC) || defined(CONFIG_IA64_HP_ZX1_SWIOTLB)
2145 * hpzx1_swiotlb needs to have a fairly small swiotlb bounce
2146 * buffer setup to support devices with smaller DMA masks than
2147 * sba_iommu can handle.
2149 if (ia64_platform_is("hpzx1_swiotlb")) {
2150 extern void hwsw_init(void);
2158 struct pci_bus
*b
= NULL
;
2159 while ((b
= pci_find_next_bus(b
)) != NULL
)
2164 #ifdef CONFIG_PROC_FS
2170 subsys_initcall(sba_init
); /* must be initialized after ACPI etc., but before any drivers... */
2173 nosbagart(char *str
)
2175 reserve_sba_gart
= 0;
2179 static int sba_dma_supported (struct device
*dev
, u64 mask
)
2181 /* make sure it's at least 32bit capable */
2182 return ((mask
& 0xFFFFFFFFUL
) == 0xFFFFFFFFUL
);
2185 static int sba_dma_mapping_error(struct device
*dev
, dma_addr_t dma_addr
)
2190 __setup("nosbagart", nosbagart
);
2193 sba_page_override(char *str
)
2195 unsigned long page_size
;
2197 page_size
= memparse(str
, &str
);
2198 switch (page_size
) {
2203 iovp_shift
= ffs(page_size
) - 1;
2206 printk("%s: unknown/unsupported iommu page size %ld\n",
2207 __func__
, page_size
);
2213 __setup("sbapagesize=",sba_page_override
);
2215 struct dma_map_ops sba_dma_ops
= {
2216 .alloc_coherent
= sba_alloc_coherent
,
2217 .free_coherent
= sba_free_coherent
,
2218 .map_page
= sba_map_page
,
2219 .unmap_page
= sba_unmap_page
,
2220 .map_sg
= sba_map_sg_attrs
,
2221 .unmap_sg
= sba_unmap_sg_attrs
,
2222 .sync_single_for_cpu
= machvec_dma_sync_single
,
2223 .sync_sg_for_cpu
= machvec_dma_sync_sg
,
2224 .sync_single_for_device
= machvec_dma_sync_single
,
2225 .sync_sg_for_device
= machvec_dma_sync_sg
,
2226 .dma_supported
= sba_dma_supported
,
2227 .mapping_error
= sba_dma_mapping_error
,
2230 void sba_dma_init(void)
2232 dma_ops
= &sba_dma_ops
;