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>
39 #include <asm/delay.h> /* ia64_get_itc() */
41 #include <asm/page.h> /* PAGE_OFFSET */
43 #include <asm/system.h> /* wmb() */
45 #include <asm/acpi-ext.h>
47 extern int swiotlb_late_init_with_default_size (size_t size
);
52 ** Enabling timing search of the pdir resource map. Output in /proc.
53 ** Disabled by default to optimize performance.
55 #undef PDIR_SEARCH_TIMING
58 ** This option allows cards capable of 64bit DMA to bypass the IOMMU. If
59 ** not defined, all DMA will be 32bit and go through the TLB.
60 ** There's potentially a conflict in the bio merge code with us
61 ** advertising an iommu, but then bypassing it. Since I/O MMU bypassing
62 ** appears to give more performance than bio-level virtual merging, we'll
63 ** do the former for now. NOTE: BYPASS_SG also needs to be undef'd to
64 ** completely restrict DMA to the IOMMU.
66 #define ALLOW_IOV_BYPASS
69 ** This option specifically allows/disallows bypassing scatterlists with
70 ** multiple entries. Coalescing these entries can allow better DMA streaming
71 ** and in some cases shows better performance than entirely bypassing the
72 ** IOMMU. Performance increase on the order of 1-2% sequential output/input
73 ** using bonnie++ on a RAID0 MD device (sym2 & mpt).
75 #undef ALLOW_IOV_BYPASS_SG
78 ** If a device prefetches beyond the end of a valid pdir entry, it will cause
79 ** a hard failure, ie. MCA. Version 3.0 and later of the zx1 LBA should
80 ** disconnect on 4k boundaries and prevent such issues. If the device is
81 ** particularly aggressive, this option will keep the entire pdir valid such
82 ** that prefetching will hit a valid address. This could severely impact
83 ** error containment, and is therefore off by default. The page that is
84 ** used for spill-over is poisoned, so that should help debugging somewhat.
86 #undef FULL_VALID_PDIR
88 #define ENABLE_MARK_CLEAN
91 ** The number of debug flags is a clue - this code is fragile. NOTE: since
92 ** tightening the use of res_lock the resource bitmap and actual pdir are no
93 ** longer guaranteed to stay in sync. The sanity checking code isn't going to
98 #undef DEBUG_SBA_RUN_SG
99 #undef DEBUG_SBA_RESOURCE
100 #undef ASSERT_PDIR_SANITY
101 #undef DEBUG_LARGE_SG_ENTRIES
104 #if defined(FULL_VALID_PDIR) && defined(ASSERT_PDIR_SANITY)
105 #error FULL_VALID_PDIR and ASSERT_PDIR_SANITY are mutually exclusive
108 #define SBA_INLINE __inline__
109 /* #define SBA_INLINE */
111 #ifdef DEBUG_SBA_INIT
112 #define DBG_INIT(x...) printk(x)
114 #define DBG_INIT(x...)
118 #define DBG_RUN(x...) printk(x)
120 #define DBG_RUN(x...)
123 #ifdef DEBUG_SBA_RUN_SG
124 #define DBG_RUN_SG(x...) printk(x)
126 #define DBG_RUN_SG(x...)
130 #ifdef DEBUG_SBA_RESOURCE
131 #define DBG_RES(x...) printk(x)
133 #define DBG_RES(x...)
137 #define DBG_BYPASS(x...) printk(x)
139 #define DBG_BYPASS(x...)
142 #ifdef ASSERT_PDIR_SANITY
143 #define ASSERT(expr) \
145 printk( "\n" __FILE__ ":%d: Assertion " #expr " failed!\n",__LINE__); \
153 ** The number of pdir entries to "free" before issuing
154 ** a read to PCOM register to flush out PCOM writes.
155 ** Interacts with allocation granularity (ie 4 or 8 entries
156 ** allocated and free'd/purged at a time might make this
157 ** less interesting).
159 #define DELAYED_RESOURCE_CNT 64
161 #define PCI_DEVICE_ID_HP_SX2000_IOC 0x12ec
163 #define ZX1_IOC_ID ((PCI_DEVICE_ID_HP_ZX1_IOC << 16) | PCI_VENDOR_ID_HP)
164 #define ZX2_IOC_ID ((PCI_DEVICE_ID_HP_ZX2_IOC << 16) | PCI_VENDOR_ID_HP)
165 #define REO_IOC_ID ((PCI_DEVICE_ID_HP_REO_IOC << 16) | PCI_VENDOR_ID_HP)
166 #define SX1000_IOC_ID ((PCI_DEVICE_ID_HP_SX1000_IOC << 16) | PCI_VENDOR_ID_HP)
167 #define SX2000_IOC_ID ((PCI_DEVICE_ID_HP_SX2000_IOC << 16) | PCI_VENDOR_ID_HP)
169 #define ZX1_IOC_OFFSET 0x1000 /* ACPI reports SBA, we want IOC */
171 #define IOC_FUNC_ID 0x000
172 #define IOC_FCLASS 0x008 /* function class, bist, header, rev... */
173 #define IOC_IBASE 0x300 /* IO TLB */
174 #define IOC_IMASK 0x308
175 #define IOC_PCOM 0x310
176 #define IOC_TCNFG 0x318
177 #define IOC_PDIR_BASE 0x320
179 #define IOC_ROPE0_CFG 0x500
180 #define IOC_ROPE_AO 0x10 /* Allow "Relaxed Ordering" */
183 /* AGP GART driver looks for this */
184 #define ZX1_SBA_IOMMU_COOKIE 0x0000badbadc0ffeeUL
187 ** The zx1 IOC supports 4/8/16/64KB page sizes (see TCNFG register)
189 ** Some IOCs (sx1000) can run at the above pages sizes, but are
190 ** really only supported using the IOC at a 4k page size.
192 ** iovp_size could only be greater than PAGE_SIZE if we are
193 ** confident the drivers really only touch the next physical
194 ** page iff that driver instance owns it.
196 static unsigned long iovp_size
;
197 static unsigned long iovp_shift
;
198 static unsigned long iovp_mask
;
201 void __iomem
*ioc_hpa
; /* I/O MMU base address */
202 char *res_map
; /* resource map, bit == pdir entry */
203 u64
*pdir_base
; /* physical base address */
204 unsigned long ibase
; /* pdir IOV Space base */
205 unsigned long imask
; /* pdir IOV Space mask */
207 unsigned long *res_hint
; /* next avail IOVP - circular search */
208 unsigned long dma_mask
;
209 spinlock_t res_lock
; /* protects the resource bitmap, but must be held when */
210 /* clearing pdir to prevent races with allocations. */
211 unsigned int res_bitshift
; /* from the RIGHT! */
212 unsigned int res_size
; /* size of resource map in bytes */
214 unsigned int node
; /* node where this IOC lives */
216 #if DELAYED_RESOURCE_CNT > 0
217 spinlock_t saved_lock
; /* may want to try to get this on a separate cacheline */
218 /* than res_lock for bigger systems. */
220 struct sba_dma_pair
{
223 } saved
[DELAYED_RESOURCE_CNT
];
226 #ifdef PDIR_SEARCH_TIMING
227 #define SBA_SEARCH_SAMPLE 0x100
228 unsigned long avg_search
[SBA_SEARCH_SAMPLE
];
229 unsigned long avg_idx
; /* current index into avg_search */
232 /* Stuff we don't need in performance path */
233 struct ioc
*next
; /* list of IOC's in system */
234 acpi_handle handle
; /* for multiple IOC's */
236 unsigned int func_id
;
237 unsigned int rev
; /* HW revision of chip */
239 unsigned int pdir_size
; /* in bytes, determined by IOV Space size */
240 struct pci_dev
*sac_only_dev
;
243 static struct ioc
*ioc_list
;
244 static int reserve_sba_gart
= 1;
246 static SBA_INLINE
void sba_mark_invalid(struct ioc
*, dma_addr_t
, size_t);
247 static SBA_INLINE
void sba_free_range(struct ioc
*, dma_addr_t
, size_t);
249 #define sba_sg_address(sg) sg_virt((sg))
251 #ifdef FULL_VALID_PDIR
252 static u64 prefetch_spill_page
;
256 # define GET_IOC(dev) (((dev)->bus == &pci_bus_type) \
257 ? ((struct ioc *) PCI_CONTROLLER(to_pci_dev(dev))->iommu) : NULL)
259 # define GET_IOC(dev) NULL
263 ** DMA_CHUNK_SIZE is used by the SCSI mid-layer to break up
264 ** (or rather not merge) DMAs into manageable chunks.
265 ** On parisc, this is more of the software/tuning constraint
266 ** rather than the HW. I/O MMU allocation algorithms can be
267 ** faster with smaller sizes (to some degree).
269 #define DMA_CHUNK_SIZE (BITS_PER_LONG*iovp_size)
271 #define ROUNDUP(x,y) ((x + ((y)-1)) & ~((y)-1))
273 /************************************
274 ** SBA register read and write support
276 ** BE WARNED: register writes are posted.
277 ** (ie follow writes which must reach HW with a read)
280 #define READ_REG(addr) __raw_readq(addr)
281 #define WRITE_REG(val, addr) __raw_writeq(val, addr)
283 #ifdef DEBUG_SBA_INIT
286 * sba_dump_tlb - debugging only - print IOMMU operating parameters
287 * @hpa: base address of the IOMMU
289 * Print the size/location of the IO MMU PDIR.
292 sba_dump_tlb(char *hpa
)
294 DBG_INIT("IO TLB at 0x%p\n", (void *)hpa
);
295 DBG_INIT("IOC_IBASE : %016lx\n", READ_REG(hpa
+IOC_IBASE
));
296 DBG_INIT("IOC_IMASK : %016lx\n", READ_REG(hpa
+IOC_IMASK
));
297 DBG_INIT("IOC_TCNFG : %016lx\n", READ_REG(hpa
+IOC_TCNFG
));
298 DBG_INIT("IOC_PDIR_BASE: %016lx\n", READ_REG(hpa
+IOC_PDIR_BASE
));
304 #ifdef ASSERT_PDIR_SANITY
307 * sba_dump_pdir_entry - debugging only - print one IOMMU PDIR entry
308 * @ioc: IO MMU structure which owns the pdir we are interested in.
309 * @msg: text to print ont the output line.
312 * Print one entry of the IO MMU PDIR in human readable form.
315 sba_dump_pdir_entry(struct ioc
*ioc
, char *msg
, uint pide
)
317 /* start printing from lowest pde in rval */
318 u64
*ptr
= &ioc
->pdir_base
[pide
& ~(BITS_PER_LONG
- 1)];
319 unsigned long *rptr
= (unsigned long *) &ioc
->res_map
[(pide
>>3) & -sizeof(unsigned long)];
322 printk(KERN_DEBUG
"SBA: %s rp %p bit %d rval 0x%lx\n",
323 msg
, rptr
, pide
& (BITS_PER_LONG
- 1), *rptr
);
326 while (rcnt
< BITS_PER_LONG
) {
327 printk(KERN_DEBUG
"%s %2d %p %016Lx\n",
328 (rcnt
== (pide
& (BITS_PER_LONG
- 1)))
330 rcnt
, ptr
, (unsigned long long) *ptr
);
334 printk(KERN_DEBUG
"%s", msg
);
339 * sba_check_pdir - debugging only - consistency checker
340 * @ioc: IO MMU structure which owns the pdir we are interested in.
341 * @msg: text to print ont the output line.
343 * Verify the resource map and pdir state is consistent
346 sba_check_pdir(struct ioc
*ioc
, char *msg
)
348 u64
*rptr_end
= (u64
*) &(ioc
->res_map
[ioc
->res_size
]);
349 u64
*rptr
= (u64
*) ioc
->res_map
; /* resource map ptr */
350 u64
*pptr
= ioc
->pdir_base
; /* pdir ptr */
353 while (rptr
< rptr_end
) {
355 int rcnt
; /* number of bits we might check */
361 /* Get last byte and highest bit from that */
362 u32 pde
= ((u32
)((*pptr
>> (63)) & 0x1));
363 if ((rval
& 0x1) ^ pde
)
366 ** BUMMER! -- res_map != pdir --
367 ** Dump rval and matching pdir entries
369 sba_dump_pdir_entry(ioc
, msg
, pide
);
373 rval
>>= 1; /* try the next bit */
377 rptr
++; /* look at next word of res_map */
379 /* It'd be nice if we always got here :^) */
385 * sba_dump_sg - debugging only - print Scatter-Gather list
386 * @ioc: IO MMU structure which owns the pdir we are interested in.
387 * @startsg: head of the SG list
388 * @nents: number of entries in SG list
390 * print the SG list so we can verify it's correct by hand.
393 sba_dump_sg( struct ioc
*ioc
, struct scatterlist
*startsg
, int nents
)
395 while (nents
-- > 0) {
396 printk(KERN_DEBUG
" %d : DMA %08lx/%05x CPU %p\n", nents
,
397 startsg
->dma_address
, startsg
->dma_length
,
398 sba_sg_address(startsg
));
399 startsg
= sg_next(startsg
);
404 sba_check_sg( struct ioc
*ioc
, struct scatterlist
*startsg
, int nents
)
406 struct scatterlist
*the_sg
= startsg
;
407 int the_nents
= nents
;
409 while (the_nents
-- > 0) {
410 if (sba_sg_address(the_sg
) == 0x0UL
)
411 sba_dump_sg(NULL
, startsg
, nents
);
412 the_sg
= sg_next(the_sg
);
416 #endif /* ASSERT_PDIR_SANITY */
421 /**************************************************************
423 * I/O Pdir Resource Management
425 * Bits set in the resource map are in use.
426 * Each bit can represent a number of pages.
427 * LSbs represent lower addresses (IOVA's).
429 ***************************************************************/
430 #define PAGES_PER_RANGE 1 /* could increase this to 4 or 8 if needed */
432 /* Convert from IOVP to IOVA and vice versa. */
433 #define SBA_IOVA(ioc,iovp,offset) ((ioc->ibase) | (iovp) | (offset))
434 #define SBA_IOVP(ioc,iova) ((iova) & ~(ioc->ibase))
436 #define PDIR_ENTRY_SIZE sizeof(u64)
438 #define PDIR_INDEX(iovp) ((iovp)>>iovp_shift)
440 #define RESMAP_MASK(n) ~(~0UL << (n))
441 #define RESMAP_IDX_MASK (sizeof(unsigned long) - 1)
445 * For most cases the normal get_order is sufficient, however it limits us
446 * to PAGE_SIZE being the minimum mapping alignment and TC flush granularity.
447 * It only incurs about 1 clock cycle to use this one with the static variable
448 * and makes the code more intuitive.
450 static SBA_INLINE
int
451 get_iovp_order (unsigned long size
)
453 long double d
= size
- 1;
456 order
= ia64_getf_exp(d
);
457 order
= order
- iovp_shift
- 0xffff + 1;
464 * sba_search_bitmap - find free space in IO PDIR resource bitmap
465 * @ioc: IO MMU structure which owns the pdir we are interested in.
466 * @bits_wanted: number of entries we need.
467 * @use_hint: use res_hint to indicate where to start looking
469 * Find consecutive free bits in resource bitmap.
470 * Each bit represents one entry in the IO Pdir.
471 * Cool perf optimization: search for log2(size) bits at a time.
473 static SBA_INLINE
unsigned long
474 sba_search_bitmap(struct ioc
*ioc
, unsigned long bits_wanted
, int use_hint
)
476 unsigned long *res_ptr
;
477 unsigned long *res_end
= (unsigned long *) &(ioc
->res_map
[ioc
->res_size
]);
478 unsigned long flags
, pide
= ~0UL;
480 ASSERT(((unsigned long) ioc
->res_hint
& (sizeof(unsigned long) - 1UL)) == 0);
481 ASSERT(res_ptr
< res_end
);
483 spin_lock_irqsave(&ioc
->res_lock
, flags
);
485 /* Allow caller to force a search through the entire resource space */
486 if (likely(use_hint
)) {
487 res_ptr
= ioc
->res_hint
;
489 res_ptr
= (ulong
*)ioc
->res_map
;
490 ioc
->res_bitshift
= 0;
494 * N.B. REO/Grande defect AR2305 can cause TLB fetch timeouts
495 * if a TLB entry is purged while in use. sba_mark_invalid()
496 * purges IOTLB entries in power-of-two sizes, so we also
497 * allocate IOVA space in power-of-two sizes.
499 bits_wanted
= 1UL << get_iovp_order(bits_wanted
<< iovp_shift
);
501 if (likely(bits_wanted
== 1)) {
502 unsigned int bitshiftcnt
;
503 for(; res_ptr
< res_end
; res_ptr
++) {
504 if (likely(*res_ptr
!= ~0UL)) {
505 bitshiftcnt
= ffz(*res_ptr
);
506 *res_ptr
|= (1UL << bitshiftcnt
);
507 pide
= ((unsigned long)res_ptr
- (unsigned long)ioc
->res_map
);
508 pide
<<= 3; /* convert to bit address */
510 ioc
->res_bitshift
= bitshiftcnt
+ bits_wanted
;
518 if (likely(bits_wanted
<= BITS_PER_LONG
/2)) {
520 ** Search the resource bit map on well-aligned values.
521 ** "o" is the alignment.
522 ** We need the alignment to invalidate I/O TLB using
523 ** SBA HW features in the unmap path.
525 unsigned long o
= 1 << get_iovp_order(bits_wanted
<< iovp_shift
);
526 uint bitshiftcnt
= ROUNDUP(ioc
->res_bitshift
, o
);
527 unsigned long mask
, base_mask
;
529 base_mask
= RESMAP_MASK(bits_wanted
);
530 mask
= base_mask
<< bitshiftcnt
;
532 <<<<<<< HEAD
:arch
/ia64
/hp
/common
/sba_iommu
.c
533 DBG_RES("%s() o %ld %p", __FUNCTION__
, o
, res_ptr
);
535 DBG_RES("%s() o %ld %p", __func__
, o
, res_ptr
);
536 >>>>>>> 264e3e889d86e552b4191d69bb60f4f3b383135a
:arch
/ia64
/hp
/common
/sba_iommu
.c
537 for(; res_ptr
< res_end
; res_ptr
++)
539 DBG_RES(" %p %lx %lx\n", res_ptr
, mask
, *res_ptr
);
541 for (; mask
; mask
<<= o
, bitshiftcnt
+= o
) {
542 if(0 == ((*res_ptr
) & mask
)) {
543 *res_ptr
|= mask
; /* mark resources busy! */
544 pide
= ((unsigned long)res_ptr
- (unsigned long)ioc
->res_map
);
545 pide
<<= 3; /* convert to bit address */
547 ioc
->res_bitshift
= bitshiftcnt
+ bits_wanted
;
561 qwords
= bits_wanted
>> 6; /* /64 */
562 bits
= bits_wanted
- (qwords
* BITS_PER_LONG
);
564 end
= res_end
- qwords
;
566 for (; res_ptr
< end
; res_ptr
++) {
567 for (i
= 0 ; i
< qwords
; i
++) {
571 if (bits
&& res_ptr
[i
] && (__ffs(res_ptr
[i
]) < bits
))
574 /* Found it, mark it */
575 for (i
= 0 ; i
< qwords
; i
++)
577 res_ptr
[i
] |= RESMAP_MASK(bits
);
579 pide
= ((unsigned long)res_ptr
- (unsigned long)ioc
->res_map
);
580 pide
<<= 3; /* convert to bit address */
582 ioc
->res_bitshift
= bits
;
590 prefetch(ioc
->res_map
);
591 ioc
->res_hint
= (unsigned long *) ioc
->res_map
;
592 ioc
->res_bitshift
= 0;
593 spin_unlock_irqrestore(&ioc
->res_lock
, flags
);
597 ioc
->res_hint
= res_ptr
;
598 spin_unlock_irqrestore(&ioc
->res_lock
, flags
);
604 * sba_alloc_range - find free bits and mark them in IO PDIR resource bitmap
605 * @ioc: IO MMU structure which owns the pdir we are interested in.
606 * @size: number of bytes to create a mapping for
608 * Given a size, find consecutive unmarked and then mark those bits in the
612 sba_alloc_range(struct ioc
*ioc
, size_t size
)
614 unsigned int pages_needed
= size
>> iovp_shift
;
615 #ifdef PDIR_SEARCH_TIMING
616 unsigned long itc_start
;
620 ASSERT(pages_needed
);
621 ASSERT(0 == (size
& ~iovp_mask
));
623 #ifdef PDIR_SEARCH_TIMING
624 itc_start
= ia64_get_itc();
627 ** "seek and ye shall find"...praying never hurts either...
629 pide
= sba_search_bitmap(ioc
, pages_needed
, 1);
630 if (unlikely(pide
>= (ioc
->res_size
<< 3))) {
631 pide
= sba_search_bitmap(ioc
, pages_needed
, 0);
632 if (unlikely(pide
>= (ioc
->res_size
<< 3))) {
633 #if DELAYED_RESOURCE_CNT > 0
637 ** With delayed resource freeing, we can give this one more shot. We're
638 ** getting close to being in trouble here, so do what we can to make this
641 spin_lock_irqsave(&ioc
->saved_lock
, flags
);
642 if (ioc
->saved_cnt
> 0) {
643 struct sba_dma_pair
*d
;
644 int cnt
= ioc
->saved_cnt
;
646 d
= &(ioc
->saved
[ioc
->saved_cnt
- 1]);
648 spin_lock(&ioc
->res_lock
);
650 sba_mark_invalid(ioc
, d
->iova
, d
->size
);
651 sba_free_range(ioc
, d
->iova
, d
->size
);
655 READ_REG(ioc
->ioc_hpa
+IOC_PCOM
); /* flush purges */
656 spin_unlock(&ioc
->res_lock
);
658 spin_unlock_irqrestore(&ioc
->saved_lock
, flags
);
660 pide
= sba_search_bitmap(ioc
, pages_needed
, 0);
661 if (unlikely(pide
>= (ioc
->res_size
<< 3)))
662 panic(__FILE__
": I/O MMU @ %p is out of mapping resources\n",
665 panic(__FILE__
": I/O MMU @ %p is out of mapping resources\n",
671 #ifdef PDIR_SEARCH_TIMING
672 ioc
->avg_search
[ioc
->avg_idx
++] = (ia64_get_itc() - itc_start
) / pages_needed
;
673 ioc
->avg_idx
&= SBA_SEARCH_SAMPLE
- 1;
676 prefetchw(&(ioc
->pdir_base
[pide
]));
678 #ifdef ASSERT_PDIR_SANITY
679 /* verify the first enable bit is clear */
680 if(0x00 != ((u8
*) ioc
->pdir_base
)[pide
*PDIR_ENTRY_SIZE
+ 7]) {
681 sba_dump_pdir_entry(ioc
, "sba_search_bitmap() botched it?", pide
);
685 DBG_RES("%s(%x) %d -> %lx hint %x/%x\n",
686 <<<<<<< HEAD
:arch
/ia64
/hp
/common
/sba_iommu
.c
687 __FUNCTION__
, size
, pages_needed
, pide
,
689 __func__
, size
, pages_needed
, pide
,
690 >>>>>>> 264e3e889d86e552b4191d69bb60f4f3b383135a
:arch
/ia64
/hp
/common
/sba_iommu
.c
691 (uint
) ((unsigned long) ioc
->res_hint
- (unsigned long) ioc
->res_map
),
699 * sba_free_range - unmark bits in IO PDIR resource bitmap
700 * @ioc: IO MMU structure which owns the pdir we are interested in.
701 * @iova: IO virtual address which was previously allocated.
702 * @size: number of bytes to create a mapping for
704 * clear bits in the ioc's resource map
706 static SBA_INLINE
void
707 sba_free_range(struct ioc
*ioc
, dma_addr_t iova
, size_t size
)
709 unsigned long iovp
= SBA_IOVP(ioc
, iova
);
710 unsigned int pide
= PDIR_INDEX(iovp
);
711 unsigned int ridx
= pide
>> 3; /* convert bit to byte address */
712 unsigned long *res_ptr
= (unsigned long *) &((ioc
)->res_map
[ridx
& ~RESMAP_IDX_MASK
]);
713 int bits_not_wanted
= size
>> iovp_shift
;
716 /* Round up to power-of-two size: see AR2305 note above */
717 bits_not_wanted
= 1UL << get_iovp_order(bits_not_wanted
<< iovp_shift
);
718 for (; bits_not_wanted
> 0 ; res_ptr
++) {
720 if (unlikely(bits_not_wanted
> BITS_PER_LONG
)) {
722 /* these mappings start 64bit aligned */
724 bits_not_wanted
-= BITS_PER_LONG
;
725 pide
+= BITS_PER_LONG
;
729 /* 3-bits "bit" address plus 2 (or 3) bits for "byte" == bit in word */
730 m
= RESMAP_MASK(bits_not_wanted
) << (pide
& (BITS_PER_LONG
- 1));
733 <<<<<<< HEAD
:arch
/ia64
/hp
/common
/sba_iommu
.c
734 DBG_RES("%s( ,%x,%x) %x/%lx %x %p %lx\n", __FUNCTION__
, (uint
) iova
, size
,
735 bits_not_wanted
, m
, pide
, res_ptr
, *res_ptr
);
737 DBG_RES("%s( ,%x,%x) %x/%lx %x %p %lx\n", __func__
, (uint
) iova
, size
,
738 bits_not_wanted
, m
, pide
, res_ptr
, *res_ptr
);
739 >>>>>>> 264e3e889d86e552b4191d69bb60f4f3b383135a
:arch
/ia64
/hp
/common
/sba_iommu
.c
742 ASSERT(bits_not_wanted
);
743 ASSERT((*res_ptr
& m
) == m
); /* verify same bits are set */
750 /**************************************************************
752 * "Dynamic DMA Mapping" support (aka "Coherent I/O")
754 ***************************************************************/
757 * sba_io_pdir_entry - fill in one IO PDIR entry
758 * @pdir_ptr: pointer to IO PDIR entry
759 * @vba: Virtual CPU address of buffer to map
761 * SBA Mapping Routine
763 * Given a virtual address (vba, arg1) sba_io_pdir_entry()
764 * loads the I/O PDIR entry pointed to by pdir_ptr (arg0).
765 * Each IO Pdir entry consists of 8 bytes as shown below
769 * +-+---------------------+----------------------------------+----+--------+
770 * |V| U | PPN[39:12] | U | FF |
771 * +-+---------------------+----------------------------------+----+--------+
775 * PPN == Physical Page Number
777 * The physical address fields are filled with the results of virt_to_phys()
782 #define sba_io_pdir_entry(pdir_ptr, vba) *pdir_ptr = ((vba & ~0xE000000000000FFFULL) \
783 | 0x8000000000000000ULL)
786 sba_io_pdir_entry(u64
*pdir_ptr
, unsigned long vba
)
788 *pdir_ptr
= ((vba
& ~0xE000000000000FFFULL
) | 0x80000000000000FFULL
);
792 #ifdef ENABLE_MARK_CLEAN
794 * Since DMA is i-cache coherent, any (complete) pages that were written via
795 * DMA can be marked as "clean" so that lazy_mmu_prot_update() doesn't have to
796 * flush them when they get mapped into an executable vm-area.
799 mark_clean (void *addr
, size_t size
)
801 unsigned long pg_addr
, end
;
803 pg_addr
= PAGE_ALIGN((unsigned long) addr
);
804 end
= (unsigned long) addr
+ size
;
805 while (pg_addr
+ PAGE_SIZE
<= end
) {
806 struct page
*page
= virt_to_page((void *)pg_addr
);
807 set_bit(PG_arch_1
, &page
->flags
);
808 pg_addr
+= PAGE_SIZE
;
814 * sba_mark_invalid - invalidate one or more IO PDIR entries
815 * @ioc: IO MMU structure which owns the pdir we are interested in.
816 * @iova: IO Virtual Address mapped earlier
817 * @byte_cnt: number of bytes this mapping covers.
819 * Marking the IO PDIR entry(ies) as Invalid and invalidate
820 * corresponding IO TLB entry. The PCOM (Purge Command Register)
821 * is to purge stale entries in the IO TLB when unmapping entries.
823 * The PCOM register supports purging of multiple pages, with a minium
824 * of 1 page and a maximum of 2GB. Hardware requires the address be
825 * aligned to the size of the range being purged. The size of the range
826 * must be a power of 2. The "Cool perf optimization" in the
827 * allocation routine helps keep that true.
829 static SBA_INLINE
void
830 sba_mark_invalid(struct ioc
*ioc
, dma_addr_t iova
, size_t byte_cnt
)
832 u32 iovp
= (u32
) SBA_IOVP(ioc
,iova
);
834 int off
= PDIR_INDEX(iovp
);
836 /* Must be non-zero and rounded up */
837 ASSERT(byte_cnt
> 0);
838 ASSERT(0 == (byte_cnt
& ~iovp_mask
));
840 #ifdef ASSERT_PDIR_SANITY
841 /* Assert first pdir entry is set */
842 if (!(ioc
->pdir_base
[off
] >> 60)) {
843 sba_dump_pdir_entry(ioc
,"sba_mark_invalid()", PDIR_INDEX(iovp
));
847 if (byte_cnt
<= iovp_size
)
849 ASSERT(off
< ioc
->pdir_size
);
851 iovp
|= iovp_shift
; /* set "size" field for PCOM */
853 #ifndef FULL_VALID_PDIR
855 ** clear I/O PDIR entry "valid" bit
856 ** Do NOT clear the rest - save it for debugging.
857 ** We should only clear bits that have previously
860 ioc
->pdir_base
[off
] &= ~(0x80000000000000FFULL
);
863 ** If we want to maintain the PDIR as valid, put in
864 ** the spill page so devices prefetching won't
865 ** cause a hard fail.
867 ioc
->pdir_base
[off
] = (0x80000000000000FFULL
| prefetch_spill_page
);
870 u32 t
= get_iovp_order(byte_cnt
) + iovp_shift
;
873 ASSERT(t
<= 31); /* 2GB! Max value of "size" field */
876 /* verify this pdir entry is enabled */
877 ASSERT(ioc
->pdir_base
[off
] >> 63);
878 #ifndef FULL_VALID_PDIR
879 /* clear I/O Pdir entry "valid" bit first */
880 ioc
->pdir_base
[off
] &= ~(0x80000000000000FFULL
);
882 ioc
->pdir_base
[off
] = (0x80000000000000FFULL
| prefetch_spill_page
);
885 byte_cnt
-= iovp_size
;
886 } while (byte_cnt
> 0);
889 WRITE_REG(iovp
| ioc
->ibase
, ioc
->ioc_hpa
+IOC_PCOM
);
893 * sba_map_single - map one buffer and return IOVA for DMA
894 * @dev: instance of PCI owned by the driver that's asking.
895 * @addr: driver buffer to map.
896 * @size: number of bytes to map in driver buffer.
899 * See Documentation/DMA-mapping.txt
902 sba_map_single(struct device
*dev
, void *addr
, size_t size
, int dir
)
909 #ifdef ASSERT_PDIR_SANITY
912 #ifdef ALLOW_IOV_BYPASS
913 unsigned long pci_addr
= virt_to_phys(addr
);
916 #ifdef ALLOW_IOV_BYPASS
917 ASSERT(to_pci_dev(dev
)->dma_mask
);
919 ** Check if the PCI device can DMA to ptr... if so, just return ptr
921 if (likely((pci_addr
& ~to_pci_dev(dev
)->dma_mask
) == 0)) {
923 ** Device is bit capable of DMA'ing to the buffer...
924 ** just return the PCI address of ptr
926 DBG_BYPASS("sba_map_single() bypass mask/addr: 0x%lx/0x%lx\n",
927 to_pci_dev(dev
)->dma_mask
, pci_addr
);
934 prefetch(ioc
->res_hint
);
937 ASSERT(size
<= DMA_CHUNK_SIZE
);
939 /* save offset bits */
940 offset
= ((dma_addr_t
) (long) addr
) & ~iovp_mask
;
942 /* round up to nearest iovp_size */
943 size
= (size
+ offset
+ ~iovp_mask
) & iovp_mask
;
945 #ifdef ASSERT_PDIR_SANITY
946 spin_lock_irqsave(&ioc
->res_lock
, flags
);
947 if (sba_check_pdir(ioc
,"Check before sba_map_single()"))
948 panic("Sanity check failed");
949 spin_unlock_irqrestore(&ioc
->res_lock
, flags
);
952 pide
= sba_alloc_range(ioc
, size
);
954 iovp
= (dma_addr_t
) pide
<< iovp_shift
;
956 <<<<<<< HEAD
:arch
/ia64
/hp
/common
/sba_iommu
.c
957 DBG_RUN("%s() 0x%p -> 0x%lx\n",
958 __FUNCTION__
, addr
, (long) iovp
| offset
);
960 DBG_RUN("%s() 0x%p -> 0x%lx\n", __func__
, addr
, (long) iovp
| offset
);
961 >>>>>>> 264e3e889d86e552b4191d69bb60f4f3b383135a
:arch
/ia64
/hp
/common
/sba_iommu
.c
963 pdir_start
= &(ioc
->pdir_base
[pide
]);
966 ASSERT(((u8
*)pdir_start
)[7] == 0); /* verify availability */
967 sba_io_pdir_entry(pdir_start
, (unsigned long) addr
);
969 DBG_RUN(" pdir 0x%p %lx\n", pdir_start
, *pdir_start
);
975 /* force pdir update */
978 /* form complete address */
979 #ifdef ASSERT_PDIR_SANITY
980 spin_lock_irqsave(&ioc
->res_lock
, flags
);
981 sba_check_pdir(ioc
,"Check after sba_map_single()");
982 spin_unlock_irqrestore(&ioc
->res_lock
, flags
);
984 return SBA_IOVA(ioc
, iovp
, offset
);
987 #ifdef ENABLE_MARK_CLEAN
988 static SBA_INLINE
void
989 sba_mark_clean(struct ioc
*ioc
, dma_addr_t iova
, size_t size
)
991 u32 iovp
= (u32
) SBA_IOVP(ioc
,iova
);
992 int off
= PDIR_INDEX(iovp
);
995 if (size
<= iovp_size
) {
996 addr
= phys_to_virt(ioc
->pdir_base
[off
] &
997 ~0xE000000000000FFFULL
);
998 mark_clean(addr
, size
);
1001 addr
= phys_to_virt(ioc
->pdir_base
[off
] &
1002 ~0xE000000000000FFFULL
);
1003 mark_clean(addr
, min(size
, iovp_size
));
1012 * sba_unmap_single - unmap one IOVA and free resources
1013 * @dev: instance of PCI owned by the driver that's asking.
1014 * @iova: IOVA of driver buffer previously mapped.
1015 * @size: number of bytes mapped in driver buffer.
1016 * @dir: R/W or both.
1018 * See Documentation/DMA-mapping.txt
1020 void sba_unmap_single(struct device
*dev
, dma_addr_t iova
, size_t size
, int dir
)
1023 #if DELAYED_RESOURCE_CNT > 0
1024 struct sba_dma_pair
*d
;
1026 unsigned long flags
;
1032 #ifdef ALLOW_IOV_BYPASS
1033 if (likely((iova
& ioc
->imask
) != ioc
->ibase
)) {
1035 ** Address does not fall w/in IOVA, must be bypassing
1037 DBG_BYPASS("sba_unmap_single() bypass addr: 0x%lx\n", iova
);
1039 #ifdef ENABLE_MARK_CLEAN
1040 if (dir
== DMA_FROM_DEVICE
) {
1041 mark_clean(phys_to_virt(iova
), size
);
1047 offset
= iova
& ~iovp_mask
;
1049 <<<<<<< HEAD
:arch
/ia64
/hp
/common
/sba_iommu
.c
1050 DBG_RUN("%s() iovp 0x%lx/%x\n",
1051 __FUNCTION__
, (long) iova
, size
);
1053 DBG_RUN("%s() iovp 0x%lx/%x\n", __func__
, (long) iova
, size
);
1054 >>>>>>> 264e3e889d86e552b4191d69bb60f4f3b383135a
:arch
/ia64
/hp
/common
/sba_iommu
.c
1056 iova
^= offset
; /* clear offset bits */
1058 size
= ROUNDUP(size
, iovp_size
);
1060 #ifdef ENABLE_MARK_CLEAN
1061 if (dir
== DMA_FROM_DEVICE
)
1062 sba_mark_clean(ioc
, iova
, size
);
1065 #if DELAYED_RESOURCE_CNT > 0
1066 spin_lock_irqsave(&ioc
->saved_lock
, flags
);
1067 d
= &(ioc
->saved
[ioc
->saved_cnt
]);
1070 if (unlikely(++(ioc
->saved_cnt
) >= DELAYED_RESOURCE_CNT
)) {
1071 int cnt
= ioc
->saved_cnt
;
1072 spin_lock(&ioc
->res_lock
);
1074 sba_mark_invalid(ioc
, d
->iova
, d
->size
);
1075 sba_free_range(ioc
, d
->iova
, d
->size
);
1079 READ_REG(ioc
->ioc_hpa
+IOC_PCOM
); /* flush purges */
1080 spin_unlock(&ioc
->res_lock
);
1082 spin_unlock_irqrestore(&ioc
->saved_lock
, flags
);
1083 #else /* DELAYED_RESOURCE_CNT == 0 */
1084 spin_lock_irqsave(&ioc
->res_lock
, flags
);
1085 sba_mark_invalid(ioc
, iova
, size
);
1086 sba_free_range(ioc
, iova
, size
);
1087 READ_REG(ioc
->ioc_hpa
+IOC_PCOM
); /* flush purges */
1088 spin_unlock_irqrestore(&ioc
->res_lock
, flags
);
1089 #endif /* DELAYED_RESOURCE_CNT == 0 */
1094 * sba_alloc_coherent - allocate/map shared mem for DMA
1095 * @dev: instance of PCI owned by the driver that's asking.
1096 * @size: number of bytes mapped in driver buffer.
1097 * @dma_handle: IOVA of new buffer.
1099 * See Documentation/DMA-mapping.txt
1102 sba_alloc_coherent (struct device
*dev
, size_t size
, dma_addr_t
*dma_handle
, gfp_t flags
)
1113 page
= alloc_pages_node(ioc
->node
== MAX_NUMNODES
?
1114 numa_node_id() : ioc
->node
, flags
,
1117 if (unlikely(!page
))
1120 addr
= page_address(page
);
1123 addr
= (void *) __get_free_pages(flags
, get_order(size
));
1125 if (unlikely(!addr
))
1128 memset(addr
, 0, size
);
1129 *dma_handle
= virt_to_phys(addr
);
1131 #ifdef ALLOW_IOV_BYPASS
1132 ASSERT(dev
->coherent_dma_mask
);
1134 ** Check if the PCI device can DMA to ptr... if so, just return ptr
1136 if (likely((*dma_handle
& ~dev
->coherent_dma_mask
) == 0)) {
1137 DBG_BYPASS("sba_alloc_coherent() bypass mask/addr: 0x%lx/0x%lx\n",
1138 dev
->coherent_dma_mask
, *dma_handle
);
1145 * If device can't bypass or bypass is disabled, pass the 32bit fake
1146 * device to map single to get an iova mapping.
1148 *dma_handle
= sba_map_single(&ioc
->sac_only_dev
->dev
, addr
, size
, 0);
1155 * sba_free_coherent - free/unmap shared mem for DMA
1156 * @dev: instance of PCI owned by the driver that's asking.
1157 * @size: number of bytes mapped in driver buffer.
1158 * @vaddr: virtual address IOVA of "consistent" buffer.
1159 * @dma_handler: IO virtual address of "consistent" buffer.
1161 * See Documentation/DMA-mapping.txt
1163 void sba_free_coherent (struct device
*dev
, size_t size
, void *vaddr
, dma_addr_t dma_handle
)
1165 sba_unmap_single(dev
, dma_handle
, size
, 0);
1166 free_pages((unsigned long) vaddr
, get_order(size
));
1171 ** Since 0 is a valid pdir_base index value, can't use that
1172 ** to determine if a value is valid or not. Use a flag to indicate
1173 ** the SG list entry contains a valid pdir index.
1175 #define PIDE_FLAG 0x1UL
1177 #ifdef DEBUG_LARGE_SG_ENTRIES
1178 int dump_run_sg
= 0;
1183 * sba_fill_pdir - write allocated SG entries into IO PDIR
1184 * @ioc: IO MMU structure which owns the pdir we are interested in.
1185 * @startsg: list of IOVA/size pairs
1186 * @nents: number of entries in startsg list
1188 * Take preprocessed SG list and write corresponding entries
1192 static SBA_INLINE
int
1195 struct scatterlist
*startsg
,
1198 struct scatterlist
*dma_sg
= startsg
; /* pointer to current DMA */
1201 unsigned long dma_offset
= 0;
1203 while (nents
-- > 0) {
1204 int cnt
= startsg
->dma_length
;
1205 startsg
->dma_length
= 0;
1207 #ifdef DEBUG_LARGE_SG_ENTRIES
1209 printk(" %2d : %08lx/%05x %p\n",
1210 nents
, startsg
->dma_address
, cnt
,
1211 sba_sg_address(startsg
));
1213 DBG_RUN_SG(" %d : %08lx/%05x %p\n",
1214 nents
, startsg
->dma_address
, cnt
,
1215 sba_sg_address(startsg
));
1218 ** Look for the start of a new DMA stream
1220 if (startsg
->dma_address
& PIDE_FLAG
) {
1221 u32 pide
= startsg
->dma_address
& ~PIDE_FLAG
;
1222 dma_offset
= (unsigned long) pide
& ~iovp_mask
;
1223 startsg
->dma_address
= 0;
1225 dma_sg
= sg_next(dma_sg
);
1226 dma_sg
->dma_address
= pide
| ioc
->ibase
;
1227 pdirp
= &(ioc
->pdir_base
[pide
>> iovp_shift
]);
1232 ** Look for a VCONTIG chunk
1235 unsigned long vaddr
= (unsigned long) sba_sg_address(startsg
);
1238 /* Since multiple Vcontig blocks could make up
1239 ** one DMA stream, *add* cnt to dma_len.
1241 dma_sg
->dma_length
+= cnt
;
1243 dma_offset
=0; /* only want offset on first chunk */
1244 cnt
= ROUNDUP(cnt
, iovp_size
);
1246 sba_io_pdir_entry(pdirp
, vaddr
);
1252 startsg
= sg_next(startsg
);
1254 /* force pdir update */
1257 #ifdef DEBUG_LARGE_SG_ENTRIES
1265 ** Two address ranges are DMA contiguous *iff* "end of prev" and
1266 ** "start of next" are both on an IOV page boundary.
1268 ** (shift left is a quick trick to mask off upper bits)
1270 #define DMA_CONTIG(__X, __Y) \
1271 (((((unsigned long) __X) | ((unsigned long) __Y)) << (BITS_PER_LONG - iovp_shift)) == 0UL)
1275 * sba_coalesce_chunks - preprocess the SG list
1276 * @ioc: IO MMU structure which owns the pdir we are interested in.
1277 * @startsg: list of IOVA/size pairs
1278 * @nents: number of entries in startsg list
1280 * First pass is to walk the SG list and determine where the breaks are
1281 * in the DMA stream. Allocates PDIR entries but does not fill them.
1282 * Returns the number of DMA chunks.
1284 * Doing the fill separate from the coalescing/allocation keeps the
1285 * code simpler. Future enhancement could make one pass through
1286 * the sglist do both.
1288 static SBA_INLINE
int
1289 sba_coalesce_chunks(struct ioc
*ioc
, struct device
*dev
,
1290 struct scatterlist
*startsg
,
1293 struct scatterlist
*vcontig_sg
; /* VCONTIG chunk head */
1294 unsigned long vcontig_len
; /* len of VCONTIG chunk */
1295 unsigned long vcontig_end
;
1296 struct scatterlist
*dma_sg
; /* next DMA stream head */
1297 unsigned long dma_offset
, dma_len
; /* start/len of DMA stream */
1299 unsigned int max_seg_size
= dma_get_max_seg_size(dev
);
1302 unsigned long vaddr
= (unsigned long) sba_sg_address(startsg
);
1305 ** Prepare for first/next DMA stream
1307 dma_sg
= vcontig_sg
= startsg
;
1308 dma_len
= vcontig_len
= vcontig_end
= startsg
->length
;
1309 vcontig_end
+= vaddr
;
1310 dma_offset
= vaddr
& ~iovp_mask
;
1312 /* PARANOID: clear entries */
1313 startsg
->dma_address
= startsg
->dma_length
= 0;
1316 ** This loop terminates one iteration "early" since
1317 ** it's always looking one "ahead".
1319 while (--nents
> 0) {
1320 unsigned long vaddr
; /* tmp */
1322 startsg
= sg_next(startsg
);
1325 startsg
->dma_address
= startsg
->dma_length
= 0;
1327 /* catch brokenness in SCSI layer */
1328 ASSERT(startsg
->length
<= DMA_CHUNK_SIZE
);
1331 ** First make sure current dma stream won't
1332 ** exceed DMA_CHUNK_SIZE if we coalesce the
1335 if (((dma_len
+ dma_offset
+ startsg
->length
+ ~iovp_mask
) & iovp_mask
)
1339 if (dma_len
+ startsg
->length
> max_seg_size
)
1343 ** Then look for virtually contiguous blocks.
1345 ** append the next transaction?
1347 vaddr
= (unsigned long) sba_sg_address(startsg
);
1348 if (vcontig_end
== vaddr
)
1350 vcontig_len
+= startsg
->length
;
1351 vcontig_end
+= startsg
->length
;
1352 dma_len
+= startsg
->length
;
1356 #ifdef DEBUG_LARGE_SG_ENTRIES
1357 dump_run_sg
= (vcontig_len
> iovp_size
);
1361 ** Not virtually contigous.
1362 ** Terminate prev chunk.
1363 ** Start a new chunk.
1365 ** Once we start a new VCONTIG chunk, dma_offset
1366 ** can't change. And we need the offset from the first
1367 ** chunk - not the last one. Ergo Successive chunks
1368 ** must start on page boundaries and dove tail
1369 ** with it's predecessor.
1371 vcontig_sg
->dma_length
= vcontig_len
;
1373 vcontig_sg
= startsg
;
1374 vcontig_len
= startsg
->length
;
1377 ** 3) do the entries end/start on page boundaries?
1378 ** Don't update vcontig_end until we've checked.
1380 if (DMA_CONTIG(vcontig_end
, vaddr
))
1382 vcontig_end
= vcontig_len
+ vaddr
;
1383 dma_len
+= vcontig_len
;
1391 ** End of DMA Stream
1392 ** Terminate last VCONTIG block.
1393 ** Allocate space for DMA stream.
1395 vcontig_sg
->dma_length
= vcontig_len
;
1396 dma_len
= (dma_len
+ dma_offset
+ ~iovp_mask
) & iovp_mask
;
1397 ASSERT(dma_len
<= DMA_CHUNK_SIZE
);
1398 dma_sg
->dma_address
= (dma_addr_t
) (PIDE_FLAG
1399 | (sba_alloc_range(ioc
, dma_len
) << iovp_shift
)
1409 * sba_map_sg - map Scatter/Gather list
1410 * @dev: instance of PCI owned by the driver that's asking.
1411 * @sglist: array of buffer/length pairs
1412 * @nents: number of entries in list
1413 * @dir: R/W or both.
1415 * See Documentation/DMA-mapping.txt
1417 int sba_map_sg(struct device
*dev
, struct scatterlist
*sglist
, int nents
, int dir
)
1420 int coalesced
, filled
= 0;
1421 #ifdef ASSERT_PDIR_SANITY
1422 unsigned long flags
;
1424 #ifdef ALLOW_IOV_BYPASS_SG
1425 struct scatterlist
*sg
;
1428 <<<<<<< HEAD
:arch
/ia64
/hp
/common
/sba_iommu
.c
1429 DBG_RUN_SG("%s() START %d entries\n", __FUNCTION__
, nents
);
1431 DBG_RUN_SG("%s() START %d entries\n", __func__
, nents
);
1432 >>>>>>> 264e3e889d86e552b4191d69bb60f4f3b383135a
:arch
/ia64
/hp
/common
/sba_iommu
.c
1436 #ifdef ALLOW_IOV_BYPASS_SG
1437 ASSERT(to_pci_dev(dev
)->dma_mask
);
1438 if (likely((ioc
->dma_mask
& ~to_pci_dev(dev
)->dma_mask
) == 0)) {
1439 for_each_sg(sglist
, sg
, nents
, filled
) {
1440 sg
->dma_length
= sg
->length
;
1441 sg
->dma_address
= virt_to_phys(sba_sg_address(sg
));
1446 /* Fast path single entry scatterlists. */
1448 sglist
->dma_length
= sglist
->length
;
1449 sglist
->dma_address
= sba_map_single(dev
, sba_sg_address(sglist
), sglist
->length
, dir
);
1453 #ifdef ASSERT_PDIR_SANITY
1454 spin_lock_irqsave(&ioc
->res_lock
, flags
);
1455 if (sba_check_pdir(ioc
,"Check before sba_map_sg()"))
1457 sba_dump_sg(ioc
, sglist
, nents
);
1458 panic("Check before sba_map_sg()");
1460 spin_unlock_irqrestore(&ioc
->res_lock
, flags
);
1463 prefetch(ioc
->res_hint
);
1466 ** First coalesce the chunks and allocate I/O pdir space
1468 ** If this is one DMA stream, we can properly map using the
1469 ** correct virtual address associated with each DMA page.
1470 ** w/o this association, we wouldn't have coherent DMA!
1471 ** Access to the virtual address is what forces a two pass algorithm.
1473 coalesced
= sba_coalesce_chunks(ioc
, dev
, sglist
, nents
);
1476 ** Program the I/O Pdir
1478 ** map the virtual addresses to the I/O Pdir
1479 ** o dma_address will contain the pdir index
1480 ** o dma_len will contain the number of bytes to map
1481 ** o address contains the virtual address.
1483 filled
= sba_fill_pdir(ioc
, sglist
, nents
);
1485 #ifdef ASSERT_PDIR_SANITY
1486 spin_lock_irqsave(&ioc
->res_lock
, flags
);
1487 if (sba_check_pdir(ioc
,"Check after sba_map_sg()"))
1489 sba_dump_sg(ioc
, sglist
, nents
);
1490 panic("Check after sba_map_sg()\n");
1492 spin_unlock_irqrestore(&ioc
->res_lock
, flags
);
1495 ASSERT(coalesced
== filled
);
1496 <<<<<<< HEAD
:arch
/ia64
/hp
/common
/sba_iommu
.c
1497 DBG_RUN_SG("%s() DONE %d mappings\n", __FUNCTION__
, filled
);
1499 DBG_RUN_SG("%s() DONE %d mappings\n", __func__
, filled
);
1500 >>>>>>> 264e3e889d86e552b4191d69bb60f4f3b383135a
:arch
/ia64
/hp
/common
/sba_iommu
.c
1507 * sba_unmap_sg - unmap Scatter/Gather list
1508 * @dev: instance of PCI owned by the driver that's asking.
1509 * @sglist: array of buffer/length pairs
1510 * @nents: number of entries in list
1511 * @dir: R/W or both.
1513 * See Documentation/DMA-mapping.txt
1515 void sba_unmap_sg (struct device
*dev
, struct scatterlist
*sglist
, int nents
, int dir
)
1517 #ifdef ASSERT_PDIR_SANITY
1519 unsigned long flags
;
1522 DBG_RUN_SG("%s() START %d entries, %p,%x\n",
1523 <<<<<<< HEAD
:arch
/ia64
/hp
/common
/sba_iommu
.c
1524 __FUNCTION__
, nents
, sba_sg_address(sglist
), sglist
->length
);
1526 __func__
, nents
, sba_sg_address(sglist
), sglist
->length
);
1527 >>>>>>> 264e3e889d86e552b4191d69bb60f4f3b383135a
:arch
/ia64
/hp
/common
/sba_iommu
.c
1529 #ifdef ASSERT_PDIR_SANITY
1533 spin_lock_irqsave(&ioc
->res_lock
, flags
);
1534 sba_check_pdir(ioc
,"Check before sba_unmap_sg()");
1535 spin_unlock_irqrestore(&ioc
->res_lock
, flags
);
1538 while (nents
&& sglist
->dma_length
) {
1540 sba_unmap_single(dev
, sglist
->dma_address
, sglist
->dma_length
, dir
);
1541 sglist
= sg_next(sglist
);
1545 <<<<<<< HEAD
:arch
/ia64
/hp
/common
/sba_iommu
.c
1546 DBG_RUN_SG("%s() DONE (nents %d)\n", __FUNCTION__
, nents
);
1548 DBG_RUN_SG("%s() DONE (nents %d)\n", __func__
, nents
);
1549 >>>>>>> 264e3e889d86e552b4191d69bb60f4f3b383135a
:arch
/ia64
/hp
/common
/sba_iommu
.c
1551 #ifdef ASSERT_PDIR_SANITY
1552 spin_lock_irqsave(&ioc
->res_lock
, flags
);
1553 sba_check_pdir(ioc
,"Check after sba_unmap_sg()");
1554 spin_unlock_irqrestore(&ioc
->res_lock
, flags
);
1559 /**************************************************************
1561 * Initialization and claim
1563 ***************************************************************/
1566 ioc_iova_init(struct ioc
*ioc
)
1570 struct pci_dev
*device
= NULL
;
1571 #ifdef FULL_VALID_PDIR
1572 unsigned long index
;
1576 ** Firmware programs the base and size of a "safe IOVA space"
1577 ** (one that doesn't overlap memory or LMMIO space) in the
1578 ** IBASE and IMASK registers.
1580 ioc
->ibase
= READ_REG(ioc
->ioc_hpa
+ IOC_IBASE
) & ~0x1UL
;
1581 ioc
->imask
= READ_REG(ioc
->ioc_hpa
+ IOC_IMASK
) | 0xFFFFFFFF00000000UL
;
1583 ioc
->iov_size
= ~ioc
->imask
+ 1;
1585 DBG_INIT("%s() hpa %p IOV base 0x%lx mask 0x%lx (%dMB)\n",
1586 <<<<<<< HEAD
:arch
/ia64
/hp
/common
/sba_iommu
.c
1587 __FUNCTION__
, ioc
->ioc_hpa
, ioc
->ibase
, ioc
->imask
,
1589 __func__
, ioc
->ioc_hpa
, ioc
->ibase
, ioc
->imask
,
1590 >>>>>>> 264e3e889d86e552b4191d69bb60f4f3b383135a
:arch
/ia64
/hp
/common
/sba_iommu
.c
1591 ioc
->iov_size
>> 20);
1593 switch (iovp_size
) {
1594 case 4*1024: tcnfg
= 0; break;
1595 case 8*1024: tcnfg
= 1; break;
1596 case 16*1024: tcnfg
= 2; break;
1597 case 64*1024: tcnfg
= 3; break;
1599 panic(PFX
"Unsupported IOTLB page size %ldK",
1603 WRITE_REG(tcnfg
, ioc
->ioc_hpa
+ IOC_TCNFG
);
1605 ioc
->pdir_size
= (ioc
->iov_size
/ iovp_size
) * PDIR_ENTRY_SIZE
;
1606 ioc
->pdir_base
= (void *) __get_free_pages(GFP_KERNEL
,
1607 get_order(ioc
->pdir_size
));
1608 if (!ioc
->pdir_base
)
1609 panic(PFX
"Couldn't allocate I/O Page Table\n");
1611 memset(ioc
->pdir_base
, 0, ioc
->pdir_size
);
1613 <<<<<<< HEAD
:arch
/ia64
/hp
/common
/sba_iommu
.c
1614 DBG_INIT("%s() IOV page size %ldK pdir %p size %x\n", __FUNCTION__
,
1616 DBG_INIT("%s() IOV page size %ldK pdir %p size %x\n", __func__
,
1617 >>>>>>> 264e3e889d86e552b4191d69bb60f4f3b383135a
:arch
/ia64
/hp
/common
/sba_iommu
.c
1618 iovp_size
>> 10, ioc
->pdir_base
, ioc
->pdir_size
);
1620 ASSERT(ALIGN((unsigned long) ioc
->pdir_base
, 4*1024) == (unsigned long) ioc
->pdir_base
);
1621 WRITE_REG(virt_to_phys(ioc
->pdir_base
), ioc
->ioc_hpa
+ IOC_PDIR_BASE
);
1624 ** If an AGP device is present, only use half of the IOV space
1625 ** for PCI DMA. Unfortunately we can't know ahead of time
1626 ** whether GART support will actually be used, for now we
1627 ** can just key on an AGP device found in the system.
1628 ** We program the next pdir index after we stop w/ a key for
1629 ** the GART code to handshake on.
1631 for_each_pci_dev(device
)
1632 agp_found
|= pci_find_capability(device
, PCI_CAP_ID_AGP
);
1634 if (agp_found
&& reserve_sba_gart
) {
1635 printk(KERN_INFO PFX
"reserving %dMb of IOVA space at 0x%lx for agpgart\n",
1636 ioc
->iov_size
/2 >> 20, ioc
->ibase
+ ioc
->iov_size
/2);
1637 ioc
->pdir_size
/= 2;
1638 ((u64
*)ioc
->pdir_base
)[PDIR_INDEX(ioc
->iov_size
/2)] = ZX1_SBA_IOMMU_COOKIE
;
1640 #ifdef FULL_VALID_PDIR
1642 ** Check to see if the spill page has been allocated, we don't need more than
1643 ** one across multiple SBAs.
1645 if (!prefetch_spill_page
) {
1646 char *spill_poison
= "SBAIOMMU POISON";
1647 int poison_size
= 16;
1648 void *poison_addr
, *addr
;
1650 addr
= (void *)__get_free_pages(GFP_KERNEL
, get_order(iovp_size
));
1652 panic(PFX
"Couldn't allocate PDIR spill page\n");
1655 for ( ; (u64
) poison_addr
< addr
+ iovp_size
; poison_addr
+= poison_size
)
1656 memcpy(poison_addr
, spill_poison
, poison_size
);
1658 prefetch_spill_page
= virt_to_phys(addr
);
1660 <<<<<<< HEAD
:arch
/ia64
/hp
/common
/sba_iommu
.c
1661 DBG_INIT("%s() prefetch spill addr: 0x%lx\n", __FUNCTION__
, prefetch_spill_page
);
1663 DBG_INIT("%s() prefetch spill addr: 0x%lx\n", __func__
, prefetch_spill_page
);
1664 >>>>>>> 264e3e889d86e552b4191d69bb60f4f3b383135a
:arch
/ia64
/hp
/common
/sba_iommu
.c
1667 ** Set all the PDIR entries valid w/ the spill page as the target
1669 for (index
= 0 ; index
< (ioc
->pdir_size
/ PDIR_ENTRY_SIZE
) ; index
++)
1670 ((u64
*)ioc
->pdir_base
)[index
] = (0x80000000000000FF | prefetch_spill_page
);
1673 /* Clear I/O TLB of any possible entries */
1674 WRITE_REG(ioc
->ibase
| (get_iovp_order(ioc
->iov_size
) + iovp_shift
), ioc
->ioc_hpa
+ IOC_PCOM
);
1675 READ_REG(ioc
->ioc_hpa
+ IOC_PCOM
);
1677 /* Enable IOVA translation */
1678 WRITE_REG(ioc
->ibase
| 1, ioc
->ioc_hpa
+ IOC_IBASE
);
1679 READ_REG(ioc
->ioc_hpa
+ IOC_IBASE
);
1683 ioc_resource_init(struct ioc
*ioc
)
1685 spin_lock_init(&ioc
->res_lock
);
1686 #if DELAYED_RESOURCE_CNT > 0
1687 spin_lock_init(&ioc
->saved_lock
);
1690 /* resource map size dictated by pdir_size */
1691 ioc
->res_size
= ioc
->pdir_size
/ PDIR_ENTRY_SIZE
; /* entries */
1692 ioc
->res_size
>>= 3; /* convert bit count to byte count */
1693 <<<<<<< HEAD
:arch
/ia64
/hp
/common
/sba_iommu
.c
1694 DBG_INIT("%s() res_size 0x%x\n", __FUNCTION__
, ioc
->res_size
);
1696 DBG_INIT("%s() res_size 0x%x\n", __func__
, ioc
->res_size
);
1697 >>>>>>> 264e3e889d86e552b4191d69bb60f4f3b383135a
:arch
/ia64
/hp
/common
/sba_iommu
.c
1699 ioc
->res_map
= (char *) __get_free_pages(GFP_KERNEL
,
1700 get_order(ioc
->res_size
));
1702 panic(PFX
"Couldn't allocate resource map\n");
1704 memset(ioc
->res_map
, 0, ioc
->res_size
);
1705 /* next available IOVP - circular search */
1706 ioc
->res_hint
= (unsigned long *) ioc
->res_map
;
1708 #ifdef ASSERT_PDIR_SANITY
1709 /* Mark first bit busy - ie no IOVA 0 */
1710 ioc
->res_map
[0] = 0x1;
1711 ioc
->pdir_base
[0] = 0x8000000000000000ULL
| ZX1_SBA_IOMMU_COOKIE
;
1713 #ifdef FULL_VALID_PDIR
1714 /* Mark the last resource used so we don't prefetch beyond IOVA space */
1715 ioc
->res_map
[ioc
->res_size
- 1] |= 0x80UL
; /* res_map is chars */
1716 ioc
->pdir_base
[(ioc
->pdir_size
/ PDIR_ENTRY_SIZE
) - 1] = (0x80000000000000FF
1717 | prefetch_spill_page
);
1720 <<<<<<< HEAD
:arch
/ia64
/hp
/common
/sba_iommu
.c
1721 DBG_INIT("%s() res_map %x %p\n", __FUNCTION__
,
1723 DBG_INIT("%s() res_map %x %p\n", __func__
,
1724 >>>>>>> 264e3e889d86e552b4191d69bb60f4f3b383135a
:arch
/ia64
/hp
/common
/sba_iommu
.c
1725 ioc
->res_size
, (void *) ioc
->res_map
);
1729 ioc_sac_init(struct ioc
*ioc
)
1731 struct pci_dev
*sac
= NULL
;
1732 struct pci_controller
*controller
= NULL
;
1735 * pci_alloc_coherent() must return a DMA address which is
1736 * SAC (single address cycle) addressable, so allocate a
1737 * pseudo-device to enforce that.
1739 sac
= kzalloc(sizeof(*sac
), GFP_KERNEL
);
1741 panic(PFX
"Couldn't allocate struct pci_dev");
1743 controller
= kzalloc(sizeof(*controller
), GFP_KERNEL
);
1745 panic(PFX
"Couldn't allocate struct pci_controller");
1747 controller
->iommu
= ioc
;
1748 sac
->sysdata
= controller
;
1749 sac
->dma_mask
= 0xFFFFFFFFUL
;
1751 sac
->dev
.bus
= &pci_bus_type
;
1753 ioc
->sac_only_dev
= sac
;
1757 ioc_zx1_init(struct ioc
*ioc
)
1759 unsigned long rope_config
;
1762 if (ioc
->rev
< 0x20)
1763 panic(PFX
"IOC 2.0 or later required for IOMMU support\n");
1765 /* 38 bit memory controller + extra bit for range displaced by MMIO */
1766 ioc
->dma_mask
= (0x1UL
<< 39) - 1;
1769 ** Clear ROPE(N)_CONFIG AO bit.
1770 ** Disables "NT Ordering" (~= !"Relaxed Ordering")
1771 ** Overrides bit 1 in DMA Hint Sets.
1772 ** Improves netperf UDP_STREAM by ~10% for tg3 on bcm5701.
1774 for (i
=0; i
<(8*8); i
+=8) {
1775 rope_config
= READ_REG(ioc
->ioc_hpa
+ IOC_ROPE0_CFG
+ i
);
1776 rope_config
&= ~IOC_ROPE_AO
;
1777 WRITE_REG(rope_config
, ioc
->ioc_hpa
+ IOC_ROPE0_CFG
+ i
);
1781 typedef void (initfunc
)(struct ioc
*);
1789 static struct ioc_iommu ioc_iommu_info
[] __initdata
= {
1790 { ZX1_IOC_ID
, "zx1", ioc_zx1_init
},
1791 { ZX2_IOC_ID
, "zx2", NULL
},
1792 { SX1000_IOC_ID
, "sx1000", NULL
},
1793 { SX2000_IOC_ID
, "sx2000", NULL
},
1796 static struct ioc
* __init
1797 ioc_init(u64 hpa
, void *handle
)
1800 struct ioc_iommu
*info
;
1802 ioc
= kzalloc(sizeof(*ioc
), GFP_KERNEL
);
1806 ioc
->next
= ioc_list
;
1809 ioc
->handle
= handle
;
1810 ioc
->ioc_hpa
= ioremap(hpa
, 0x1000);
1812 ioc
->func_id
= READ_REG(ioc
->ioc_hpa
+ IOC_FUNC_ID
);
1813 ioc
->rev
= READ_REG(ioc
->ioc_hpa
+ IOC_FCLASS
) & 0xFFUL
;
1814 ioc
->dma_mask
= 0xFFFFFFFFFFFFFFFFUL
; /* conservative */
1816 for (info
= ioc_iommu_info
; info
< ioc_iommu_info
+ ARRAY_SIZE(ioc_iommu_info
); info
++) {
1817 if (ioc
->func_id
== info
->func_id
) {
1818 ioc
->name
= info
->name
;
1824 iovp_size
= (1 << iovp_shift
);
1825 iovp_mask
= ~(iovp_size
- 1);
1827 <<<<<<< HEAD
:arch
/ia64
/hp
/common
/sba_iommu
.c
1828 DBG_INIT("%s: PAGE_SIZE %ldK, iovp_size %ldK\n", __FUNCTION__
,
1830 DBG_INIT("%s: PAGE_SIZE %ldK, iovp_size %ldK\n", __func__
,
1831 >>>>>>> 264e3e889d86e552b4191d69bb60f4f3b383135a
:arch
/ia64
/hp
/common
/sba_iommu
.c
1832 PAGE_SIZE
>> 10, iovp_size
>> 10);
1835 ioc
->name
= kmalloc(24, GFP_KERNEL
);
1837 sprintf((char *) ioc
->name
, "Unknown (%04x:%04x)",
1838 ioc
->func_id
& 0xFFFF, (ioc
->func_id
>> 16) & 0xFFFF);
1840 ioc
->name
= "Unknown";
1844 ioc_resource_init(ioc
);
1847 if ((long) ~iovp_mask
> (long) ia64_max_iommu_merge_mask
)
1848 ia64_max_iommu_merge_mask
= ~iovp_mask
;
1850 printk(KERN_INFO PFX
1851 "%s %d.%d HPA 0x%lx IOVA space %dMb at 0x%lx\n",
1852 ioc
->name
, (ioc
->rev
>> 4) & 0xF, ioc
->rev
& 0xF,
1853 hpa
, ioc
->iov_size
>> 20, ioc
->ibase
);
1860 /**************************************************************************
1862 ** SBA initialization code (HW and SW)
1864 ** o identify SBA chip itself
1865 ** o FIXME: initialize DMA hints for reasonable defaults
1867 **************************************************************************/
1869 #ifdef CONFIG_PROC_FS
1871 ioc_start(struct seq_file
*s
, loff_t
*pos
)
1876 for (ioc
= ioc_list
; ioc
; ioc
= ioc
->next
)
1884 ioc_next(struct seq_file
*s
, void *v
, loff_t
*pos
)
1886 struct ioc
*ioc
= v
;
1893 ioc_stop(struct seq_file
*s
, void *v
)
1898 ioc_show(struct seq_file
*s
, void *v
)
1900 struct ioc
*ioc
= v
;
1901 unsigned long *res_ptr
= (unsigned long *)ioc
->res_map
;
1904 seq_printf(s
, "Hewlett Packard %s IOC rev %d.%d\n",
1905 ioc
->name
, ((ioc
->rev
>> 4) & 0xF), (ioc
->rev
& 0xF));
1907 if (ioc
->node
!= MAX_NUMNODES
)
1908 seq_printf(s
, "NUMA node : %d\n", ioc
->node
);
1910 seq_printf(s
, "IOVA size : %ld MB\n", ((ioc
->pdir_size
>> 3) * iovp_size
)/(1024*1024));
1911 seq_printf(s
, "IOVA page size : %ld kb\n", iovp_size
/1024);
1913 for (i
= 0; i
< (ioc
->res_size
/ sizeof(unsigned long)); ++i
, ++res_ptr
)
1914 used
+= hweight64(*res_ptr
);
1916 seq_printf(s
, "PDIR size : %d entries\n", ioc
->pdir_size
>> 3);
1917 seq_printf(s
, "PDIR used : %d entries\n", used
);
1919 #ifdef PDIR_SEARCH_TIMING
1921 unsigned long i
= 0, avg
= 0, min
, max
;
1922 min
= max
= ioc
->avg_search
[0];
1923 for (i
= 0; i
< SBA_SEARCH_SAMPLE
; i
++) {
1924 avg
+= ioc
->avg_search
[i
];
1925 if (ioc
->avg_search
[i
] > max
) max
= ioc
->avg_search
[i
];
1926 if (ioc
->avg_search
[i
] < min
) min
= ioc
->avg_search
[i
];
1928 avg
/= SBA_SEARCH_SAMPLE
;
1929 seq_printf(s
, "Bitmap search : %ld/%ld/%ld (min/avg/max CPU Cycles/IOVA page)\n",
1933 #ifndef ALLOW_IOV_BYPASS
1934 seq_printf(s
, "IOVA bypass disabled\n");
1939 static const struct seq_operations ioc_seq_ops
= {
1947 ioc_open(struct inode
*inode
, struct file
*file
)
1949 return seq_open(file
, &ioc_seq_ops
);
1952 static const struct file_operations ioc_fops
= {
1955 .llseek
= seq_lseek
,
1956 .release
= seq_release
1962 struct proc_dir_entry
*dir
, *entry
;
1964 dir
= proc_mkdir("bus/mckinley", NULL
);
1968 entry
= create_proc_entry(ioc_list
->name
, 0, dir
);
1970 entry
->proc_fops
= &ioc_fops
;
1975 sba_connect_bus(struct pci_bus
*bus
)
1977 acpi_handle handle
, parent
;
1981 if (!PCI_CONTROLLER(bus
))
1982 panic(PFX
"no sysdata on bus %d!\n", bus
->number
);
1984 if (PCI_CONTROLLER(bus
)->iommu
)
1987 handle
= PCI_CONTROLLER(bus
)->acpi_handle
;
1992 * The IOC scope encloses PCI root bridges in the ACPI
1993 * namespace, so work our way out until we find an IOC we
1994 * claimed previously.
1997 for (ioc
= ioc_list
; ioc
; ioc
= ioc
->next
)
1998 if (ioc
->handle
== handle
) {
1999 PCI_CONTROLLER(bus
)->iommu
= ioc
;
2003 status
= acpi_get_parent(handle
, &parent
);
2005 } while (ACPI_SUCCESS(status
));
2007 printk(KERN_WARNING
"No IOC for PCI Bus %04x:%02x in ACPI\n", pci_domain_nr(bus
), bus
->number
);
2012 sba_map_ioc_to_node(struct ioc
*ioc
, acpi_handle handle
)
2017 ioc
->node
= MAX_NUMNODES
;
2019 pxm
= acpi_get_pxm(handle
);
2024 node
= pxm_to_node(pxm
);
2026 if (node
>= MAX_NUMNODES
|| !node_online(node
))
2033 #define sba_map_ioc_to_node(ioc, handle)
2037 acpi_sba_ioc_add(struct acpi_device
*device
)
2042 struct acpi_buffer buffer
;
2043 struct acpi_device_info
*dev_info
;
2045 status
= hp_acpi_csr_space(device
->handle
, &hpa
, &length
);
2046 if (ACPI_FAILURE(status
))
2049 buffer
.length
= ACPI_ALLOCATE_LOCAL_BUFFER
;
2050 status
= acpi_get_object_info(device
->handle
, &buffer
);
2051 if (ACPI_FAILURE(status
))
2053 dev_info
= buffer
.pointer
;
2056 * For HWP0001, only SBA appears in ACPI namespace. It encloses the PCI
2057 * root bridges, and its CSR space includes the IOC function.
2059 if (strncmp("HWP0001", dev_info
->hardware_id
.value
, 7) == 0) {
2060 hpa
+= ZX1_IOC_OFFSET
;
2061 /* zx1 based systems default to kernel page size iommu pages */
2063 iovp_shift
= min(PAGE_SHIFT
, 16);
2068 * default anything not caught above or specified on cmdline to 4k
2074 ioc
= ioc_init(hpa
, device
->handle
);
2078 /* setup NUMA node association */
2079 sba_map_ioc_to_node(ioc
, device
->handle
);
2083 static const struct acpi_device_id hp_ioc_iommu_device_ids
[] = {
2088 static struct acpi_driver acpi_sba_ioc_driver
= {
2089 .name
= "IOC IOMMU Driver",
2090 .ids
= hp_ioc_iommu_device_ids
,
2092 .add
= acpi_sba_ioc_add
,
2099 if (!ia64_platform_is("hpzx1") && !ia64_platform_is("hpzx1_swiotlb"))
2102 #if defined(CONFIG_IA64_GENERIC) && defined(CONFIG_CRASH_DUMP) && \
2103 defined(CONFIG_PROC_FS)
2104 /* If we are booting a kdump kernel, the sba_iommu will
2105 * cause devices that were not shutdown properly to MCA
2106 * as soon as they are turned back on. Our only option for
2107 * a successful kdump kernel boot is to use the swiotlb.
2109 if (elfcorehdr_addr
< ELFCORE_ADDR_MAX
) {
2110 if (swiotlb_late_init_with_default_size(64 * (1<<20)) != 0)
2111 panic("Unable to initialize software I/O TLB:"
2112 " Try machvec=dig boot option");
2113 machvec_init("dig");
2118 acpi_bus_register_driver(&acpi_sba_ioc_driver
);
2120 #ifdef CONFIG_IA64_GENERIC
2122 * If we didn't find something sba_iommu can claim, we
2123 * need to setup the swiotlb and switch to the dig machvec.
2125 if (swiotlb_late_init_with_default_size(64 * (1<<20)) != 0)
2126 panic("Unable to find SBA IOMMU or initialize "
2127 "software I/O TLB: Try machvec=dig boot option");
2128 machvec_init("dig");
2130 panic("Unable to find SBA IOMMU: Try a generic or DIG kernel");
2135 #if defined(CONFIG_IA64_GENERIC) || defined(CONFIG_IA64_HP_ZX1_SWIOTLB)
2137 * hpzx1_swiotlb needs to have a fairly small swiotlb bounce
2138 * buffer setup to support devices with smaller DMA masks than
2139 * sba_iommu can handle.
2141 if (ia64_platform_is("hpzx1_swiotlb")) {
2142 extern void hwsw_init(void);
2150 struct pci_bus
*b
= NULL
;
2151 while ((b
= pci_find_next_bus(b
)) != NULL
)
2156 #ifdef CONFIG_PROC_FS
2162 subsys_initcall(sba_init
); /* must be initialized after ACPI etc., but before any drivers... */
2165 nosbagart(char *str
)
2167 reserve_sba_gart
= 0;
2172 sba_dma_supported (struct device
*dev
, u64 mask
)
2174 /* make sure it's at least 32bit capable */
2175 return ((mask
& 0xFFFFFFFFUL
) == 0xFFFFFFFFUL
);
2179 sba_dma_mapping_error (dma_addr_t dma_addr
)
2184 __setup("nosbagart", nosbagart
);
2187 sba_page_override(char *str
)
2189 unsigned long page_size
;
2191 page_size
= memparse(str
, &str
);
2192 switch (page_size
) {
2197 iovp_shift
= ffs(page_size
) - 1;
2200 printk("%s: unknown/unsupported iommu page size %ld\n",
2201 <<<<<<< HEAD
:arch
/ia64
/hp
/common
/sba_iommu
.c
2202 __FUNCTION__
, page_size
);
2204 __func__
, page_size
);
2205 >>>>>>> 264e3e889d86e552b4191d69bb60f4f3b383135a
:arch
/ia64
/hp
/common
/sba_iommu
.c
2211 __setup("sbapagesize=",sba_page_override
);
2213 EXPORT_SYMBOL(sba_dma_mapping_error
);
2214 EXPORT_SYMBOL(sba_map_single
);
2215 EXPORT_SYMBOL(sba_unmap_single
);
2216 EXPORT_SYMBOL(sba_map_sg
);
2217 EXPORT_SYMBOL(sba_unmap_sg
);
2218 EXPORT_SYMBOL(sba_dma_supported
);
2219 EXPORT_SYMBOL(sba_alloc_coherent
);
2220 EXPORT_SYMBOL(sba_free_coherent
);