blob: e5eb9c4b2198673b25f9b4f5eceabbb368359ca6 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2** IA64 System Bus Adapter (SBA) I/O MMU manager
3**
Alex Williamson5f6602a2005-04-25 13:14:36 -07004** (c) Copyright 2002-2005 Alex Williamson
Linus Torvalds1da177e2005-04-16 15:20:36 -07005** (c) Copyright 2002-2003 Grant Grundler
Alex Williamson5f6602a2005-04-25 13:14:36 -07006** (c) Copyright 2002-2005 Hewlett-Packard Company
Linus Torvalds1da177e2005-04-16 15:20:36 -07007**
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)
10**
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.
15**
16**
17** This module initializes the IOC (I/O Controller) found on HP
18** McKinley machines and their successors.
19**
20*/
21
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#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>
28#include <linux/mm.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() */
Terry Loftin51b58e32007-07-12 17:23:22 -060037#include <linux/crash_dump.h>
FUJITA Tomonorib34eb532008-03-28 14:27:03 -070038#include <linux/iommu-helper.h>
FUJITA Tomonori0e9cbb92009-01-05 23:36:07 +090039#include <linux/dma-mapping.h>
Linus Torvalds268bb0c2011-05-20 12:50:29 -070040#include <linux/prefetch.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
42#include <asm/delay.h> /* ia64_get_itc() */
43#include <asm/io.h>
44#include <asm/page.h> /* PAGE_OFFSET */
45#include <asm/dma.h>
46#include <asm/system.h> /* wmb() */
47
48#include <asm/acpi-ext.h>
49
Terry Loftin51b58e32007-07-12 17:23:22 -060050extern int swiotlb_late_init_with_default_size (size_t size);
51
Linus Torvalds1da177e2005-04-16 15:20:36 -070052#define PFX "IOC: "
53
54/*
55** Enabling timing search of the pdir resource map. Output in /proc.
56** Disabled by default to optimize performance.
57*/
58#undef PDIR_SEARCH_TIMING
59
60/*
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.
68*/
69#define ALLOW_IOV_BYPASS
70
71/*
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).
77*/
78#undef ALLOW_IOV_BYPASS_SG
79
80/*
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
Matt LaPlante0779bf22006-11-30 05:24:39 +010084** particularly aggressive, this option will keep the entire pdir valid such
Linus Torvalds1da177e2005-04-16 15:20:36 -070085** 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.
88*/
89#undef FULL_VALID_PDIR
90
91#define ENABLE_MARK_CLEAN
92
93/*
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
97** like that.
98*/
99#undef DEBUG_SBA_INIT
100#undef DEBUG_SBA_RUN
101#undef DEBUG_SBA_RUN_SG
102#undef DEBUG_SBA_RESOURCE
103#undef ASSERT_PDIR_SANITY
104#undef DEBUG_LARGE_SG_ENTRIES
105#undef DEBUG_BYPASS
106
107#if defined(FULL_VALID_PDIR) && defined(ASSERT_PDIR_SANITY)
108#error FULL_VALID_PDIR and ASSERT_PDIR_SANITY are mutually exclusive
109#endif
110
111#define SBA_INLINE __inline__
112/* #define SBA_INLINE */
113
114#ifdef DEBUG_SBA_INIT
115#define DBG_INIT(x...) printk(x)
116#else
117#define DBG_INIT(x...)
118#endif
119
120#ifdef DEBUG_SBA_RUN
121#define DBG_RUN(x...) printk(x)
122#else
123#define DBG_RUN(x...)
124#endif
125
126#ifdef DEBUG_SBA_RUN_SG
127#define DBG_RUN_SG(x...) printk(x)
128#else
129#define DBG_RUN_SG(x...)
130#endif
131
132
133#ifdef DEBUG_SBA_RESOURCE
134#define DBG_RES(x...) printk(x)
135#else
136#define DBG_RES(x...)
137#endif
138
139#ifdef DEBUG_BYPASS
140#define DBG_BYPASS(x...) printk(x)
141#else
142#define DBG_BYPASS(x...)
143#endif
144
145#ifdef ASSERT_PDIR_SANITY
146#define ASSERT(expr) \
147 if(!(expr)) { \
148 printk( "\n" __FILE__ ":%d: Assertion " #expr " failed!\n",__LINE__); \
149 panic(#expr); \
150 }
151#else
152#define ASSERT(expr)
153#endif
154
155/*
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).
161*/
162#define DELAYED_RESOURCE_CNT 64
163
Bjorn Helgaase15da402005-05-03 12:07:00 -0700164#define PCI_DEVICE_ID_HP_SX2000_IOC 0x12ec
165
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166#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)
Bjorn Helgaase15da402005-05-03 12:07:00 -0700170#define SX2000_IOC_ID ((PCI_DEVICE_ID_HP_SX2000_IOC << 16) | PCI_VENDOR_ID_HP)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171
172#define ZX1_IOC_OFFSET 0x1000 /* ACPI reports SBA, we want IOC */
173
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
181
182#define IOC_ROPE0_CFG 0x500
183#define IOC_ROPE_AO 0x10 /* Allow "Relaxed Ordering" */
184
185
186/* AGP GART driver looks for this */
187#define ZX1_SBA_IOMMU_COOKIE 0x0000badbadc0ffeeUL
188
189/*
190** The zx1 IOC supports 4/8/16/64KB page sizes (see TCNFG register)
191**
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.
194**
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.
198*/
199static unsigned long iovp_size;
200static unsigned long iovp_shift;
201static unsigned long iovp_mask;
202
203struct ioc {
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 */
209
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 */
216#ifdef CONFIG_NUMA
217 unsigned int node; /* node where this IOC lives */
218#endif
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. */
222 int saved_cnt;
223 struct sba_dma_pair {
224 dma_addr_t iova;
225 size_t size;
226 } saved[DELAYED_RESOURCE_CNT];
227#endif
228
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 */
233#endif
234
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 */
238 const char *name;
239 unsigned int func_id;
240 unsigned int rev; /* HW revision of chip */
241 u32 iov_size;
242 unsigned int pdir_size; /* in bytes, determined by IOV Space size */
243 struct pci_dev *sac_only_dev;
244};
245
246static struct ioc *ioc_list;
247static int reserve_sba_gart = 1;
248
249static SBA_INLINE void sba_mark_invalid(struct ioc *, dma_addr_t, size_t);
250static SBA_INLINE void sba_free_range(struct ioc *, dma_addr_t, size_t);
251
Jens Axboe58b053e2007-10-22 20:02:46 +0200252#define sba_sg_address(sg) sg_virt((sg))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253
254#ifdef FULL_VALID_PDIR
255static u64 prefetch_spill_page;
256#endif
257
258#ifdef CONFIG_PCI
259# define GET_IOC(dev) (((dev)->bus == &pci_bus_type) \
260 ? ((struct ioc *) PCI_CONTROLLER(to_pci_dev(dev))->iommu) : NULL)
261#else
262# define GET_IOC(dev) NULL
263#endif
264
265/*
266** DMA_CHUNK_SIZE is used by the SCSI mid-layer to break up
Matt LaPlante0779bf22006-11-30 05:24:39 +0100267** (or rather not merge) DMAs into manageable chunks.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268** On parisc, this is more of the software/tuning constraint
Matt LaPlante0779bf22006-11-30 05:24:39 +0100269** rather than the HW. I/O MMU allocation algorithms can be
270** faster with smaller sizes (to some degree).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271*/
272#define DMA_CHUNK_SIZE (BITS_PER_LONG*iovp_size)
273
274#define ROUNDUP(x,y) ((x + ((y)-1)) & ~((y)-1))
275
276/************************************
277** SBA register read and write support
278**
279** BE WARNED: register writes are posted.
280** (ie follow writes which must reach HW with a read)
281**
282*/
283#define READ_REG(addr) __raw_readq(addr)
284#define WRITE_REG(val, addr) __raw_writeq(val, addr)
285
286#ifdef DEBUG_SBA_INIT
287
288/**
289 * sba_dump_tlb - debugging only - print IOMMU operating parameters
290 * @hpa: base address of the IOMMU
291 *
292 * Print the size/location of the IO MMU PDIR.
293 */
294static void
295sba_dump_tlb(char *hpa)
296{
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));
302 DBG_INIT("\n");
303}
304#endif
305
306
307#ifdef ASSERT_PDIR_SANITY
308
309/**
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.
313 * @pide: pdir index.
314 *
315 * Print one entry of the IO MMU PDIR in human readable form.
316 */
317static void
318sba_dump_pdir_entry(struct ioc *ioc, char *msg, uint pide)
319{
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)];
323 uint rcnt;
324
325 printk(KERN_DEBUG "SBA: %s rp %p bit %d rval 0x%lx\n",
326 msg, rptr, pide & (BITS_PER_LONG - 1), *rptr);
327
328 rcnt = 0;
329 while (rcnt < BITS_PER_LONG) {
330 printk(KERN_DEBUG "%s %2d %p %016Lx\n",
331 (rcnt == (pide & (BITS_PER_LONG - 1)))
332 ? " -->" : " ",
333 rcnt, ptr, (unsigned long long) *ptr );
334 rcnt++;
335 ptr++;
336 }
337 printk(KERN_DEBUG "%s", msg);
338}
339
340
341/**
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.
345 *
346 * Verify the resource map and pdir state is consistent
347 */
348static int
349sba_check_pdir(struct ioc *ioc, char *msg)
350{
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 */
354 uint pide = 0;
355
356 while (rptr < rptr_end) {
357 u64 rval;
358 int rcnt; /* number of bits we might check */
359
360 rval = *rptr;
361 rcnt = 64;
362
363 while (rcnt) {
364 /* Get last byte and highest bit from that */
365 u32 pde = ((u32)((*pptr >> (63)) & 0x1));
366 if ((rval & 0x1) ^ pde)
367 {
368 /*
369 ** BUMMER! -- res_map != pdir --
370 ** Dump rval and matching pdir entries
371 */
372 sba_dump_pdir_entry(ioc, msg, pide);
373 return(1);
374 }
375 rcnt--;
376 rval >>= 1; /* try the next bit */
377 pptr++;
378 pide++;
379 }
380 rptr++; /* look at next word of res_map */
381 }
382 /* It'd be nice if we always got here :^) */
383 return 0;
384}
385
386
387/**
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
392 *
393 * print the SG list so we can verify it's correct by hand.
394 */
395static void
396sba_dump_sg( struct ioc *ioc, struct scatterlist *startsg, int nents)
397{
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));
Jens Axboe9b6eccf2007-10-16 11:27:26 +0200402 startsg = sg_next(startsg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 }
404}
405
406static void
407sba_check_sg( struct ioc *ioc, struct scatterlist *startsg, int nents)
408{
409 struct scatterlist *the_sg = startsg;
410 int the_nents = nents;
411
412 while (the_nents-- > 0) {
413 if (sba_sg_address(the_sg) == 0x0UL)
414 sba_dump_sg(NULL, startsg, nents);
Jens Axboe9b6eccf2007-10-16 11:27:26 +0200415 the_sg = sg_next(the_sg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 }
417}
418
419#endif /* ASSERT_PDIR_SANITY */
420
421
422
423
424/**************************************************************
425*
426* I/O Pdir Resource Management
427*
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).
431*
432***************************************************************/
433#define PAGES_PER_RANGE 1 /* could increase this to 4 or 8 if needed */
434
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))
438
439#define PDIR_ENTRY_SIZE sizeof(u64)
440
441#define PDIR_INDEX(iovp) ((iovp)>>iovp_shift)
442
443#define RESMAP_MASK(n) ~(~0UL << (n))
444#define RESMAP_IDX_MASK (sizeof(unsigned long) - 1)
445
446
447/**
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.
452 */
453static SBA_INLINE int
454get_iovp_order (unsigned long size)
455{
456 long double d = size - 1;
457 long order;
458
459 order = ia64_getf_exp(d);
460 order = order - iovp_shift - 0xffff + 1;
461 if (order < 0)
462 order = 0;
463 return order;
464}
465
FUJITA Tomonorib34eb532008-03-28 14:27:03 -0700466static unsigned long ptr_to_pide(struct ioc *ioc, unsigned long *res_ptr,
467 unsigned int bitshiftcnt)
468{
469 return (((unsigned long)res_ptr - (unsigned long)ioc->res_map) << 3)
470 + bitshiftcnt;
471}
472
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473/**
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.
Alex Williamson5f6602a2005-04-25 13:14:36 -0700477 * @use_hint: use res_hint to indicate where to start looking
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 *
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.
482 */
483static SBA_INLINE unsigned long
FUJITA Tomonorib34eb532008-03-28 14:27:03 -0700484sba_search_bitmap(struct ioc *ioc, struct device *dev,
485 unsigned long bits_wanted, int use_hint)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486{
Alex Williamson5f6602a2005-04-25 13:14:36 -0700487 unsigned long *res_ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 unsigned long *res_end = (unsigned long *) &(ioc->res_map[ioc->res_size]);
FUJITA Tomonorib34eb532008-03-28 14:27:03 -0700489 unsigned long flags, pide = ~0UL, tpide;
490 unsigned long boundary_size;
491 unsigned long shift;
492 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493
494 ASSERT(((unsigned long) ioc->res_hint & (sizeof(unsigned long) - 1UL)) == 0);
495 ASSERT(res_ptr < res_end);
496
FUJITA Tomonorib34eb532008-03-28 14:27:03 -0700497 boundary_size = (unsigned long long)dma_get_seg_boundary(dev) + 1;
498 boundary_size = ALIGN(boundary_size, 1ULL << iovp_shift) >> iovp_shift;
499
500 BUG_ON(ioc->ibase & ~iovp_mask);
501 shift = ioc->ibase >> iovp_shift;
502
Alex Williamson5f6602a2005-04-25 13:14:36 -0700503 spin_lock_irqsave(&ioc->res_lock, flags);
504
505 /* Allow caller to force a search through the entire resource space */
506 if (likely(use_hint)) {
507 res_ptr = ioc->res_hint;
508 } else {
509 res_ptr = (ulong *)ioc->res_map;
510 ioc->res_bitshift = 0;
511 }
512
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 /*
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.
518 */
519 bits_wanted = 1UL << get_iovp_order(bits_wanted << iovp_shift);
520
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);
FUJITA Tomonorib34eb532008-03-28 14:27:03 -0700527 pide = ptr_to_pide(ioc, res_ptr, bitshiftcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 ioc->res_bitshift = bitshiftcnt + bits_wanted;
529 goto found_it;
530 }
531 }
532 goto not_found;
533
534 }
535
536 if (likely(bits_wanted <= BITS_PER_LONG/2)) {
537 /*
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.
542 */
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;
546
547 base_mask = RESMAP_MASK(bits_wanted);
548 mask = base_mask << bitshiftcnt;
549
Harvey Harrisond4ed8082008-03-04 15:15:00 -0800550 DBG_RES("%s() o %ld %p", __func__, o, res_ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 for(; res_ptr < res_end ; res_ptr++)
552 {
553 DBG_RES(" %p %lx %lx\n", res_ptr, mask, *res_ptr);
554 ASSERT(0 != mask);
555 for (; mask ; mask <<= o, bitshiftcnt += o) {
FUJITA Tomonorib34eb532008-03-28 14:27:03 -0700556 tpide = ptr_to_pide(ioc, res_ptr, bitshiftcnt);
557 ret = iommu_is_span_boundary(tpide, bits_wanted,
558 shift,
559 boundary_size);
560 if ((0 == ((*res_ptr) & mask)) && !ret) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 *res_ptr |= mask; /* mark resources busy! */
FUJITA Tomonorib34eb532008-03-28 14:27:03 -0700562 pide = tpide;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 ioc->res_bitshift = bitshiftcnt + bits_wanted;
564 goto found_it;
565 }
566 }
567
568 bitshiftcnt = 0;
569 mask = base_mask;
570
571 }
572
573 } else {
574 int qwords, bits, i;
575 unsigned long *end;
576
577 qwords = bits_wanted >> 6; /* /64 */
578 bits = bits_wanted - (qwords * BITS_PER_LONG);
579
580 end = res_end - qwords;
581
582 for (; res_ptr < end; res_ptr++) {
FUJITA Tomonorib34eb532008-03-28 14:27:03 -0700583 tpide = ptr_to_pide(ioc, res_ptr, 0);
584 ret = iommu_is_span_boundary(tpide, bits_wanted,
585 shift, boundary_size);
586 if (ret)
587 goto next_ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 for (i = 0 ; i < qwords ; i++) {
589 if (res_ptr[i] != 0)
590 goto next_ptr;
591 }
592 if (bits && res_ptr[i] && (__ffs(res_ptr[i]) < bits))
593 continue;
594
595 /* Found it, mark it */
596 for (i = 0 ; i < qwords ; i++)
597 res_ptr[i] = ~0UL;
598 res_ptr[i] |= RESMAP_MASK(bits);
599
FUJITA Tomonorib34eb532008-03-28 14:27:03 -0700600 pide = tpide;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 res_ptr += qwords;
602 ioc->res_bitshift = bits;
603 goto found_it;
604next_ptr:
605 ;
606 }
607 }
608
609not_found:
610 prefetch(ioc->res_map);
611 ioc->res_hint = (unsigned long *) ioc->res_map;
612 ioc->res_bitshift = 0;
Alex Williamson5f6602a2005-04-25 13:14:36 -0700613 spin_unlock_irqrestore(&ioc->res_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 return (pide);
615
616found_it:
617 ioc->res_hint = res_ptr;
Alex Williamson5f6602a2005-04-25 13:14:36 -0700618 spin_unlock_irqrestore(&ioc->res_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 return (pide);
620}
621
622
623/**
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
627 *
628 * Given a size, find consecutive unmarked and then mark those bits in the
629 * resource bit map.
630 */
631static int
FUJITA Tomonorib34eb532008-03-28 14:27:03 -0700632sba_alloc_range(struct ioc *ioc, struct device *dev, size_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633{
634 unsigned int pages_needed = size >> iovp_shift;
635#ifdef PDIR_SEARCH_TIMING
636 unsigned long itc_start;
637#endif
638 unsigned long pide;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639
640 ASSERT(pages_needed);
641 ASSERT(0 == (size & ~iovp_mask));
642
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643#ifdef PDIR_SEARCH_TIMING
644 itc_start = ia64_get_itc();
645#endif
646 /*
647 ** "seek and ye shall find"...praying never hurts either...
648 */
FUJITA Tomonorib34eb532008-03-28 14:27:03 -0700649 pide = sba_search_bitmap(ioc, dev, pages_needed, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 if (unlikely(pide >= (ioc->res_size << 3))) {
FUJITA Tomonorib34eb532008-03-28 14:27:03 -0700651 pide = sba_search_bitmap(ioc, dev, pages_needed, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 if (unlikely(pide >= (ioc->res_size << 3))) {
653#if DELAYED_RESOURCE_CNT > 0
Alex Williamson5f6602a2005-04-25 13:14:36 -0700654 unsigned long flags;
655
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 /*
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
659 ** one count.
660 */
Alex Williamson5f6602a2005-04-25 13:14:36 -0700661 spin_lock_irqsave(&ioc->saved_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 if (ioc->saved_cnt > 0) {
663 struct sba_dma_pair *d;
664 int cnt = ioc->saved_cnt;
665
Alex Williamson5f6602a2005-04-25 13:14:36 -0700666 d = &(ioc->saved[ioc->saved_cnt - 1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667
Alex Williamson5f6602a2005-04-25 13:14:36 -0700668 spin_lock(&ioc->res_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 while (cnt--) {
670 sba_mark_invalid(ioc, d->iova, d->size);
671 sba_free_range(ioc, d->iova, d->size);
672 d--;
673 }
674 ioc->saved_cnt = 0;
675 READ_REG(ioc->ioc_hpa+IOC_PCOM); /* flush purges */
Alex Williamson5f6602a2005-04-25 13:14:36 -0700676 spin_unlock(&ioc->res_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 }
Alex Williamson5f6602a2005-04-25 13:14:36 -0700678 spin_unlock_irqrestore(&ioc->saved_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679
FUJITA Tomonorib34eb532008-03-28 14:27:03 -0700680 pide = sba_search_bitmap(ioc, dev, pages_needed, 0);
FUJITA Tomonorie2a46562009-11-17 14:44:35 -0800681 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));
686 return -1;
687 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688#else
FUJITA Tomonorie2a46562009-11-17 14:44:35 -0800689 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));
693 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694#endif
695 }
696 }
697
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;
701#endif
702
703 prefetchw(&(ioc->pdir_base[pide]));
704
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);
709 }
710#endif
711
712 DBG_RES("%s(%x) %d -> %lx hint %x/%x\n",
Harvey Harrisond4ed8082008-03-04 15:15:00 -0800713 __func__, size, pages_needed, pide,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 (uint) ((unsigned long) ioc->res_hint - (unsigned long) ioc->res_map),
715 ioc->res_bitshift );
716
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717 return (pide);
718}
719
720
721/**
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
726 *
727 * clear bits in the ioc's resource map
728 */
729static SBA_INLINE void
730sba_free_range(struct ioc *ioc, dma_addr_t iova, size_t size)
731{
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;
737 unsigned long m;
738
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++) {
742
743 if (unlikely(bits_not_wanted > BITS_PER_LONG)) {
744
745 /* these mappings start 64bit aligned */
746 *res_ptr = 0UL;
747 bits_not_wanted -= BITS_PER_LONG;
748 pide += BITS_PER_LONG;
749
750 } else {
751
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));
754 bits_not_wanted = 0;
755
Harvey Harrisond4ed8082008-03-04 15:15:00 -0800756 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);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758
759 ASSERT(m != 0);
760 ASSERT(bits_not_wanted);
761 ASSERT((*res_ptr & m) == m); /* verify same bits are set */
762 *res_ptr &= ~m;
763 }
764 }
765}
766
767
768/**************************************************************
769*
770* "Dynamic DMA Mapping" support (aka "Coherent I/O")
771*
772***************************************************************/
773
774/**
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
778 *
779 * SBA Mapping Routine
780 *
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
784 * (LSB == bit 0):
785 *
786 * 63 40 11 7 0
787 * +-+---------------------+----------------------------------+----+--------+
788 * |V| U | PPN[39:12] | U | FF |
789 * +-+---------------------+----------------------------------+----+--------+
790 *
791 * V == Valid Bit
792 * U == Unused
793 * PPN == Physical Page Number
794 *
795 * The physical address fields are filled with the results of virt_to_phys()
796 * on the vba.
797 */
798
799#if 1
800#define sba_io_pdir_entry(pdir_ptr, vba) *pdir_ptr = ((vba & ~0xE000000000000FFFULL) \
801 | 0x8000000000000000ULL)
802#else
803void SBA_INLINE
804sba_io_pdir_entry(u64 *pdir_ptr, unsigned long vba)
805{
806 *pdir_ptr = ((vba & ~0xE000000000000FFFULL) | 0x80000000000000FFULL);
807}
808#endif
809
810#ifdef ENABLE_MARK_CLEAN
811/**
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.
815 */
816static void
817mark_clean (void *addr, size_t size)
818{
819 unsigned long pg_addr, end;
820
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;
827 }
828}
829#endif
830
831/**
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.
836 *
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.
840 *
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.
846 */
847static SBA_INLINE void
848sba_mark_invalid(struct ioc *ioc, dma_addr_t iova, size_t byte_cnt)
849{
850 u32 iovp = (u32) SBA_IOVP(ioc,iova);
851
852 int off = PDIR_INDEX(iovp);
853
854 /* Must be non-zero and rounded up */
855 ASSERT(byte_cnt > 0);
856 ASSERT(0 == (byte_cnt & ~iovp_mask));
857
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));
862 }
863#endif
864
865 if (byte_cnt <= iovp_size)
866 {
867 ASSERT(off < ioc->pdir_size);
868
869 iovp |= iovp_shift; /* set "size" field for PCOM */
870
871#ifndef FULL_VALID_PDIR
872 /*
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
876 ** been enabled.
877 */
878 ioc->pdir_base[off] &= ~(0x80000000000000FFULL);
879#else
880 /*
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.
884 */
885 ioc->pdir_base[off] = (0x80000000000000FFULL | prefetch_spill_page);
886#endif
887 } else {
888 u32 t = get_iovp_order(byte_cnt) + iovp_shift;
889
890 iovp |= t;
891 ASSERT(t <= 31); /* 2GB! Max value of "size" field */
892
893 do {
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);
899#else
900 ioc->pdir_base[off] = (0x80000000000000FFULL | prefetch_spill_page);
901#endif
902 off++;
903 byte_cnt -= iovp_size;
904 } while (byte_cnt > 0);
905 }
906
907 WRITE_REG(iovp | ioc->ibase, ioc->ioc_hpa+IOC_PCOM);
908}
909
910/**
Arthur Kepner309df0c2008-04-29 01:00:32 -0700911 * sba_map_single_attrs - map one buffer and return IOVA for DMA
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912 * @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.
915 * @dir: R/W or both.
Arthur Kepner309df0c2008-04-29 01:00:32 -0700916 * @attrs: optional dma attributes
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917 *
Paul Bolle395cf962011-08-15 02:02:26 +0200918 * See Documentation/DMA-API-HOWTO.txt
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919 */
FUJITA Tomonori160c1d82009-01-05 23:59:02 +0900920static 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)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924{
925 struct ioc *ioc;
FUJITA Tomonori160c1d82009-01-05 23:59:02 +0900926 void *addr = page_address(page) + poff;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927 dma_addr_t iovp;
928 dma_addr_t offset;
929 u64 *pdir_start;
930 int pide;
931#ifdef ASSERT_PDIR_SANITY
932 unsigned long flags;
933#endif
934#ifdef ALLOW_IOV_BYPASS
935 unsigned long pci_addr = virt_to_phys(addr);
936#endif
937
938#ifdef ALLOW_IOV_BYPASS
939 ASSERT(to_pci_dev(dev)->dma_mask);
940 /*
941 ** Check if the PCI device can DMA to ptr... if so, just return ptr
942 */
943 if (likely((pci_addr & ~to_pci_dev(dev)->dma_mask) == 0)) {
944 /*
945 ** Device is bit capable of DMA'ing to the buffer...
946 ** just return the PCI address of ptr
947 */
Arthur Kepner309df0c2008-04-29 01:00:32 -0700948 DBG_BYPASS("sba_map_single_attrs() bypass mask/addr: "
949 "0x%lx/0x%lx\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950 to_pci_dev(dev)->dma_mask, pci_addr);
951 return pci_addr;
952 }
953#endif
954 ioc = GET_IOC(dev);
955 ASSERT(ioc);
956
957 prefetch(ioc->res_hint);
958
959 ASSERT(size > 0);
960 ASSERT(size <= DMA_CHUNK_SIZE);
961
962 /* save offset bits */
963 offset = ((dma_addr_t) (long) addr) & ~iovp_mask;
964
965 /* round up to nearest iovp_size */
966 size = (size + offset + ~iovp_mask) & iovp_mask;
967
968#ifdef ASSERT_PDIR_SANITY
969 spin_lock_irqsave(&ioc->res_lock, flags);
Arthur Kepner309df0c2008-04-29 01:00:32 -0700970 if (sba_check_pdir(ioc,"Check before sba_map_single_attrs()"))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971 panic("Sanity check failed");
972 spin_unlock_irqrestore(&ioc->res_lock, flags);
973#endif
974
FUJITA Tomonorib34eb532008-03-28 14:27:03 -0700975 pide = sba_alloc_range(ioc, dev, size);
FUJITA Tomonorie2a46562009-11-17 14:44:35 -0800976 if (pide < 0)
977 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978
979 iovp = (dma_addr_t) pide << iovp_shift;
980
Harvey Harrisond4ed8082008-03-04 15:15:00 -0800981 DBG_RUN("%s() 0x%p -> 0x%lx\n", __func__, addr, (long) iovp | offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982
983 pdir_start = &(ioc->pdir_base[pide]);
984
985 while (size > 0) {
986 ASSERT(((u8 *)pdir_start)[7] == 0); /* verify availability */
987 sba_io_pdir_entry(pdir_start, (unsigned long) addr);
988
989 DBG_RUN(" pdir 0x%p %lx\n", pdir_start, *pdir_start);
990
991 addr += iovp_size;
992 size -= iovp_size;
993 pdir_start++;
994 }
995 /* force pdir update */
996 wmb();
997
998 /* form complete address */
999#ifdef ASSERT_PDIR_SANITY
1000 spin_lock_irqsave(&ioc->res_lock, flags);
Arthur Kepner309df0c2008-04-29 01:00:32 -07001001 sba_check_pdir(ioc,"Check after sba_map_single_attrs()");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002 spin_unlock_irqrestore(&ioc->res_lock, flags);
1003#endif
1004 return SBA_IOVA(ioc, iovp, offset);
1005}
1006
FUJITA Tomonori160c1d82009-01-05 23:59:02 +09001007static 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)
1010{
1011 return sba_map_page(dev, virt_to_page(addr),
1012 (unsigned long)addr & ~PAGE_MASK, size, dir, attrs);
1013}
1014
Alex Williamson5f6602a2005-04-25 13:14:36 -07001015#ifdef ENABLE_MARK_CLEAN
1016static SBA_INLINE void
1017sba_mark_clean(struct ioc *ioc, dma_addr_t iova, size_t size)
1018{
1019 u32 iovp = (u32) SBA_IOVP(ioc,iova);
1020 int off = PDIR_INDEX(iovp);
1021 void *addr;
1022
1023 if (size <= iovp_size) {
1024 addr = phys_to_virt(ioc->pdir_base[off] &
1025 ~0xE000000000000FFFULL);
1026 mark_clean(addr, size);
1027 } else {
1028 do {
1029 addr = phys_to_virt(ioc->pdir_base[off] &
1030 ~0xE000000000000FFFULL);
1031 mark_clean(addr, min(size, iovp_size));
1032 off++;
1033 size -= iovp_size;
1034 } while (size > 0);
1035 }
1036}
1037#endif
1038
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039/**
Arthur Kepner309df0c2008-04-29 01:00:32 -07001040 * sba_unmap_single_attrs - unmap one IOVA and free resources
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041 * @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.
Arthur Kepner309df0c2008-04-29 01:00:32 -07001045 * @attrs: optional dma attributes
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046 *
Paul Bolle395cf962011-08-15 02:02:26 +02001047 * See Documentation/DMA-API-HOWTO.txt
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048 */
FUJITA Tomonori160c1d82009-01-05 23:59:02 +09001049static void sba_unmap_page(struct device *dev, dma_addr_t iova, size_t size,
1050 enum dma_data_direction dir, struct dma_attrs *attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051{
1052 struct ioc *ioc;
1053#if DELAYED_RESOURCE_CNT > 0
1054 struct sba_dma_pair *d;
1055#endif
1056 unsigned long flags;
1057 dma_addr_t offset;
1058
1059 ioc = GET_IOC(dev);
1060 ASSERT(ioc);
1061
1062#ifdef ALLOW_IOV_BYPASS
1063 if (likely((iova & ioc->imask) != ioc->ibase)) {
1064 /*
1065 ** Address does not fall w/in IOVA, must be bypassing
1066 */
Justin P. Mattock70f23fd2011-05-10 10:16:21 +02001067 DBG_BYPASS("sba_unmap_single_attrs() bypass addr: 0x%lx\n",
Arthur Kepner309df0c2008-04-29 01:00:32 -07001068 iova);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069
1070#ifdef ENABLE_MARK_CLEAN
1071 if (dir == DMA_FROM_DEVICE) {
1072 mark_clean(phys_to_virt(iova), size);
1073 }
1074#endif
1075 return;
1076 }
1077#endif
1078 offset = iova & ~iovp_mask;
1079
Harvey Harrisond4ed8082008-03-04 15:15:00 -08001080 DBG_RUN("%s() iovp 0x%lx/%x\n", __func__, (long) iova, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081
1082 iova ^= offset; /* clear offset bits */
1083 size += offset;
1084 size = ROUNDUP(size, iovp_size);
1085
Alex Williamson5f6602a2005-04-25 13:14:36 -07001086#ifdef ENABLE_MARK_CLEAN
1087 if (dir == DMA_FROM_DEVICE)
1088 sba_mark_clean(ioc, iova, size);
1089#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090
1091#if DELAYED_RESOURCE_CNT > 0
1092 spin_lock_irqsave(&ioc->saved_lock, flags);
1093 d = &(ioc->saved[ioc->saved_cnt]);
1094 d->iova = iova;
1095 d->size = size;
1096 if (unlikely(++(ioc->saved_cnt) >= DELAYED_RESOURCE_CNT)) {
1097 int cnt = ioc->saved_cnt;
1098 spin_lock(&ioc->res_lock);
1099 while (cnt--) {
1100 sba_mark_invalid(ioc, d->iova, d->size);
1101 sba_free_range(ioc, d->iova, d->size);
1102 d--;
1103 }
1104 ioc->saved_cnt = 0;
1105 READ_REG(ioc->ioc_hpa+IOC_PCOM); /* flush purges */
1106 spin_unlock(&ioc->res_lock);
1107 }
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 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117
FUJITA Tomonori160c1d82009-01-05 23:59:02 +09001118void sba_unmap_single_attrs(struct device *dev, dma_addr_t iova, size_t size,
1119 enum dma_data_direction dir, struct dma_attrs *attrs)
1120{
1121 sba_unmap_page(dev, iova, size, dir, attrs);
1122}
1123
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124/**
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.
1129 *
Paul Bolle395cf962011-08-15 02:02:26 +02001130 * See Documentation/DMA-API-HOWTO.txt
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131 */
FUJITA Tomonori055bcf92009-01-05 23:36:18 +09001132static void *
Andrzej Pietrasiewiczbaa676f2012-03-27 14:28:18 +02001133sba_alloc_coherent(struct device *dev, size_t size, dma_addr_t *dma_handle,
1134 gfp_t flags, struct dma_attrs *attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135{
1136 struct ioc *ioc;
1137 void *addr;
1138
1139 ioc = GET_IOC(dev);
1140 ASSERT(ioc);
1141
1142#ifdef CONFIG_NUMA
1143 {
1144 struct page *page;
Mel Gorman6484eb32009-06-16 15:31:54 -07001145 page = alloc_pages_exact_node(ioc->node == MAX_NUMNODES ?
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146 numa_node_id() : ioc->node, flags,
1147 get_order(size));
1148
1149 if (unlikely(!page))
1150 return NULL;
1151
1152 addr = page_address(page);
1153 }
1154#else
1155 addr = (void *) __get_free_pages(flags, get_order(size));
1156#endif
1157 if (unlikely(!addr))
1158 return NULL;
1159
1160 memset(addr, 0, size);
1161 *dma_handle = virt_to_phys(addr);
1162
1163#ifdef ALLOW_IOV_BYPASS
1164 ASSERT(dev->coherent_dma_mask);
1165 /*
1166 ** Check if the PCI device can DMA to ptr... if so, just return ptr
1167 */
1168 if (likely((*dma_handle & ~dev->coherent_dma_mask) == 0)) {
1169 DBG_BYPASS("sba_alloc_coherent() bypass mask/addr: 0x%lx/0x%lx\n",
1170 dev->coherent_dma_mask, *dma_handle);
1171
1172 return addr;
1173 }
1174#endif
1175
1176 /*
1177 * If device can't bypass or bypass is disabled, pass the 32bit fake
1178 * device to map single to get an iova mapping.
1179 */
Arthur Kepner309df0c2008-04-29 01:00:32 -07001180 *dma_handle = sba_map_single_attrs(&ioc->sac_only_dev->dev, addr,
1181 size, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182
1183 return addr;
1184}
1185
1186
1187/**
1188 * sba_free_coherent - free/unmap shared mem for DMA
1189 * @dev: instance of PCI owned by the driver that's asking.
1190 * @size: number of bytes mapped in driver buffer.
1191 * @vaddr: virtual address IOVA of "consistent" buffer.
1192 * @dma_handler: IO virtual address of "consistent" buffer.
1193 *
Paul Bolle395cf962011-08-15 02:02:26 +02001194 * See Documentation/DMA-API-HOWTO.txt
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195 */
Andrzej Pietrasiewiczbaa676f2012-03-27 14:28:18 +02001196static void sba_free_coherent(struct device *dev, size_t size, void *vaddr,
1197 dma_addr_t dma_handle, struct dma_attrs *attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198{
Arthur Kepner309df0c2008-04-29 01:00:32 -07001199 sba_unmap_single_attrs(dev, dma_handle, size, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200 free_pages((unsigned long) vaddr, get_order(size));
1201}
1202
1203
1204/*
1205** Since 0 is a valid pdir_base index value, can't use that
1206** to determine if a value is valid or not. Use a flag to indicate
1207** the SG list entry contains a valid pdir index.
1208*/
1209#define PIDE_FLAG 0x1UL
1210
1211#ifdef DEBUG_LARGE_SG_ENTRIES
1212int dump_run_sg = 0;
1213#endif
1214
1215
1216/**
1217 * sba_fill_pdir - write allocated SG entries into IO PDIR
1218 * @ioc: IO MMU structure which owns the pdir we are interested in.
1219 * @startsg: list of IOVA/size pairs
1220 * @nents: number of entries in startsg list
1221 *
1222 * Take preprocessed SG list and write corresponding entries
1223 * in the IO PDIR.
1224 */
1225
1226static SBA_INLINE int
1227sba_fill_pdir(
1228 struct ioc *ioc,
1229 struct scatterlist *startsg,
1230 int nents)
1231{
1232 struct scatterlist *dma_sg = startsg; /* pointer to current DMA */
1233 int n_mappings = 0;
1234 u64 *pdirp = NULL;
1235 unsigned long dma_offset = 0;
1236
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237 while (nents-- > 0) {
1238 int cnt = startsg->dma_length;
1239 startsg->dma_length = 0;
1240
1241#ifdef DEBUG_LARGE_SG_ENTRIES
1242 if (dump_run_sg)
1243 printk(" %2d : %08lx/%05x %p\n",
1244 nents, startsg->dma_address, cnt,
1245 sba_sg_address(startsg));
1246#else
1247 DBG_RUN_SG(" %d : %08lx/%05x %p\n",
1248 nents, startsg->dma_address, cnt,
1249 sba_sg_address(startsg));
1250#endif
1251 /*
1252 ** Look for the start of a new DMA stream
1253 */
1254 if (startsg->dma_address & PIDE_FLAG) {
1255 u32 pide = startsg->dma_address & ~PIDE_FLAG;
1256 dma_offset = (unsigned long) pide & ~iovp_mask;
1257 startsg->dma_address = 0;
FUJITA Tomonoribdb02502007-10-17 10:51:20 +02001258 if (n_mappings)
1259 dma_sg = sg_next(dma_sg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260 dma_sg->dma_address = pide | ioc->ibase;
1261 pdirp = &(ioc->pdir_base[pide >> iovp_shift]);
1262 n_mappings++;
1263 }
1264
1265 /*
1266 ** Look for a VCONTIG chunk
1267 */
1268 if (cnt) {
1269 unsigned long vaddr = (unsigned long) sba_sg_address(startsg);
1270 ASSERT(pdirp);
1271
1272 /* Since multiple Vcontig blocks could make up
1273 ** one DMA stream, *add* cnt to dma_len.
1274 */
1275 dma_sg->dma_length += cnt;
1276 cnt += dma_offset;
1277 dma_offset=0; /* only want offset on first chunk */
1278 cnt = ROUNDUP(cnt, iovp_size);
1279 do {
1280 sba_io_pdir_entry(pdirp, vaddr);
1281 vaddr += iovp_size;
1282 cnt -= iovp_size;
1283 pdirp++;
1284 } while (cnt > 0);
1285 }
Jens Axboe9b6eccf2007-10-16 11:27:26 +02001286 startsg = sg_next(startsg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287 }
1288 /* force pdir update */
1289 wmb();
1290
1291#ifdef DEBUG_LARGE_SG_ENTRIES
1292 dump_run_sg = 0;
1293#endif
1294 return(n_mappings);
1295}
1296
1297
1298/*
1299** Two address ranges are DMA contiguous *iff* "end of prev" and
1300** "start of next" are both on an IOV page boundary.
1301**
1302** (shift left is a quick trick to mask off upper bits)
1303*/
1304#define DMA_CONTIG(__X, __Y) \
1305 (((((unsigned long) __X) | ((unsigned long) __Y)) << (BITS_PER_LONG - iovp_shift)) == 0UL)
1306
1307
1308/**
1309 * sba_coalesce_chunks - preprocess the SG list
1310 * @ioc: IO MMU structure which owns the pdir we are interested in.
1311 * @startsg: list of IOVA/size pairs
1312 * @nents: number of entries in startsg list
1313 *
1314 * First pass is to walk the SG list and determine where the breaks are
1315 * in the DMA stream. Allocates PDIR entries but does not fill them.
1316 * Returns the number of DMA chunks.
1317 *
1318 * Doing the fill separate from the coalescing/allocation keeps the
1319 * code simpler. Future enhancement could make one pass through
1320 * the sglist do both.
1321 */
1322static SBA_INLINE int
FUJITA Tomonoria031bbc2008-02-04 22:27:58 -08001323sba_coalesce_chunks(struct ioc *ioc, struct device *dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324 struct scatterlist *startsg,
1325 int nents)
1326{
1327 struct scatterlist *vcontig_sg; /* VCONTIG chunk head */
1328 unsigned long vcontig_len; /* len of VCONTIG chunk */
1329 unsigned long vcontig_end;
1330 struct scatterlist *dma_sg; /* next DMA stream head */
1331 unsigned long dma_offset, dma_len; /* start/len of DMA stream */
1332 int n_mappings = 0;
FUJITA Tomonoria031bbc2008-02-04 22:27:58 -08001333 unsigned int max_seg_size = dma_get_max_seg_size(dev);
FUJITA Tomonorie2a46562009-11-17 14:44:35 -08001334 int idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335
1336 while (nents > 0) {
1337 unsigned long vaddr = (unsigned long) sba_sg_address(startsg);
1338
1339 /*
1340 ** Prepare for first/next DMA stream
1341 */
1342 dma_sg = vcontig_sg = startsg;
1343 dma_len = vcontig_len = vcontig_end = startsg->length;
1344 vcontig_end += vaddr;
1345 dma_offset = vaddr & ~iovp_mask;
1346
1347 /* PARANOID: clear entries */
1348 startsg->dma_address = startsg->dma_length = 0;
1349
1350 /*
1351 ** This loop terminates one iteration "early" since
1352 ** it's always looking one "ahead".
1353 */
1354 while (--nents > 0) {
1355 unsigned long vaddr; /* tmp */
1356
Jens Axboe9b6eccf2007-10-16 11:27:26 +02001357 startsg = sg_next(startsg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358
1359 /* PARANOID */
1360 startsg->dma_address = startsg->dma_length = 0;
1361
1362 /* catch brokenness in SCSI layer */
1363 ASSERT(startsg->length <= DMA_CHUNK_SIZE);
1364
1365 /*
1366 ** First make sure current dma stream won't
1367 ** exceed DMA_CHUNK_SIZE if we coalesce the
1368 ** next entry.
1369 */
1370 if (((dma_len + dma_offset + startsg->length + ~iovp_mask) & iovp_mask)
1371 > DMA_CHUNK_SIZE)
1372 break;
1373
FUJITA Tomonoria031bbc2008-02-04 22:27:58 -08001374 if (dma_len + startsg->length > max_seg_size)
1375 break;
1376
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377 /*
1378 ** Then look for virtually contiguous blocks.
1379 **
1380 ** append the next transaction?
1381 */
1382 vaddr = (unsigned long) sba_sg_address(startsg);
1383 if (vcontig_end == vaddr)
1384 {
1385 vcontig_len += startsg->length;
1386 vcontig_end += startsg->length;
1387 dma_len += startsg->length;
1388 continue;
1389 }
1390
1391#ifdef DEBUG_LARGE_SG_ENTRIES
1392 dump_run_sg = (vcontig_len > iovp_size);
1393#endif
1394
1395 /*
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02001396 ** Not virtually contiguous.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397 ** Terminate prev chunk.
1398 ** Start a new chunk.
1399 **
1400 ** Once we start a new VCONTIG chunk, dma_offset
1401 ** can't change. And we need the offset from the first
1402 ** chunk - not the last one. Ergo Successive chunks
1403 ** must start on page boundaries and dove tail
1404 ** with it's predecessor.
1405 */
1406 vcontig_sg->dma_length = vcontig_len;
1407
1408 vcontig_sg = startsg;
1409 vcontig_len = startsg->length;
1410
1411 /*
1412 ** 3) do the entries end/start on page boundaries?
1413 ** Don't update vcontig_end until we've checked.
1414 */
1415 if (DMA_CONTIG(vcontig_end, vaddr))
1416 {
1417 vcontig_end = vcontig_len + vaddr;
1418 dma_len += vcontig_len;
1419 continue;
1420 } else {
1421 break;
1422 }
1423 }
1424
1425 /*
1426 ** End of DMA Stream
1427 ** Terminate last VCONTIG block.
1428 ** Allocate space for DMA stream.
1429 */
1430 vcontig_sg->dma_length = vcontig_len;
1431 dma_len = (dma_len + dma_offset + ~iovp_mask) & iovp_mask;
1432 ASSERT(dma_len <= DMA_CHUNK_SIZE);
FUJITA Tomonorie2a46562009-11-17 14:44:35 -08001433 idx = sba_alloc_range(ioc, dev, dma_len);
1434 if (idx < 0) {
1435 dma_sg->dma_length = 0;
1436 return -1;
1437 }
1438 dma_sg->dma_address = (dma_addr_t)(PIDE_FLAG | (idx << iovp_shift)
1439 | dma_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440 n_mappings++;
1441 }
1442
1443 return n_mappings;
1444}
1445
FUJITA Tomonorie2a46562009-11-17 14:44:35 -08001446static void sba_unmap_sg_attrs(struct device *dev, struct scatterlist *sglist,
1447 int nents, enum dma_data_direction dir,
1448 struct dma_attrs *attrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449/**
1450 * sba_map_sg - map Scatter/Gather list
1451 * @dev: instance of PCI owned by the driver that's asking.
1452 * @sglist: array of buffer/length pairs
1453 * @nents: number of entries in list
1454 * @dir: R/W or both.
Arthur Kepner309df0c2008-04-29 01:00:32 -07001455 * @attrs: optional dma attributes
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456 *
Paul Bolle395cf962011-08-15 02:02:26 +02001457 * See Documentation/DMA-API-HOWTO.txt
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458 */
FUJITA Tomonori055bcf92009-01-05 23:36:18 +09001459static int sba_map_sg_attrs(struct device *dev, struct scatterlist *sglist,
FUJITA Tomonori160c1d82009-01-05 23:59:02 +09001460 int nents, enum dma_data_direction dir,
1461 struct dma_attrs *attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462{
1463 struct ioc *ioc;
1464 int coalesced, filled = 0;
1465#ifdef ASSERT_PDIR_SANITY
1466 unsigned long flags;
1467#endif
1468#ifdef ALLOW_IOV_BYPASS_SG
1469 struct scatterlist *sg;
1470#endif
1471
Harvey Harrisond4ed8082008-03-04 15:15:00 -08001472 DBG_RUN_SG("%s() START %d entries\n", __func__, nents);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473 ioc = GET_IOC(dev);
1474 ASSERT(ioc);
1475
1476#ifdef ALLOW_IOV_BYPASS_SG
1477 ASSERT(to_pci_dev(dev)->dma_mask);
1478 if (likely((ioc->dma_mask & ~to_pci_dev(dev)->dma_mask) == 0)) {
Jens Axboe9b6eccf2007-10-16 11:27:26 +02001479 for_each_sg(sglist, sg, nents, filled) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480 sg->dma_length = sg->length;
1481 sg->dma_address = virt_to_phys(sba_sg_address(sg));
1482 }
1483 return filled;
1484 }
1485#endif
1486 /* Fast path single entry scatterlists. */
1487 if (nents == 1) {
1488 sglist->dma_length = sglist->length;
Arthur Kepner309df0c2008-04-29 01:00:32 -07001489 sglist->dma_address = sba_map_single_attrs(dev, sba_sg_address(sglist), sglist->length, dir, attrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490 return 1;
1491 }
1492
1493#ifdef ASSERT_PDIR_SANITY
1494 spin_lock_irqsave(&ioc->res_lock, flags);
Arthur Kepner309df0c2008-04-29 01:00:32 -07001495 if (sba_check_pdir(ioc,"Check before sba_map_sg_attrs()"))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496 {
1497 sba_dump_sg(ioc, sglist, nents);
Arthur Kepner309df0c2008-04-29 01:00:32 -07001498 panic("Check before sba_map_sg_attrs()");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499 }
1500 spin_unlock_irqrestore(&ioc->res_lock, flags);
1501#endif
1502
1503 prefetch(ioc->res_hint);
1504
1505 /*
1506 ** First coalesce the chunks and allocate I/O pdir space
1507 **
1508 ** If this is one DMA stream, we can properly map using the
1509 ** correct virtual address associated with each DMA page.
1510 ** w/o this association, we wouldn't have coherent DMA!
1511 ** Access to the virtual address is what forces a two pass algorithm.
1512 */
FUJITA Tomonoria031bbc2008-02-04 22:27:58 -08001513 coalesced = sba_coalesce_chunks(ioc, dev, sglist, nents);
FUJITA Tomonorie2a46562009-11-17 14:44:35 -08001514 if (coalesced < 0) {
1515 sba_unmap_sg_attrs(dev, sglist, nents, dir, attrs);
1516 return 0;
1517 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518
1519 /*
1520 ** Program the I/O Pdir
1521 **
1522 ** map the virtual addresses to the I/O Pdir
1523 ** o dma_address will contain the pdir index
1524 ** o dma_len will contain the number of bytes to map
1525 ** o address contains the virtual address.
1526 */
1527 filled = sba_fill_pdir(ioc, sglist, nents);
1528
1529#ifdef ASSERT_PDIR_SANITY
1530 spin_lock_irqsave(&ioc->res_lock, flags);
Arthur Kepner309df0c2008-04-29 01:00:32 -07001531 if (sba_check_pdir(ioc,"Check after sba_map_sg_attrs()"))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532 {
1533 sba_dump_sg(ioc, sglist, nents);
Arthur Kepner309df0c2008-04-29 01:00:32 -07001534 panic("Check after sba_map_sg_attrs()\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535 }
1536 spin_unlock_irqrestore(&ioc->res_lock, flags);
1537#endif
1538
1539 ASSERT(coalesced == filled);
Harvey Harrisond4ed8082008-03-04 15:15:00 -08001540 DBG_RUN_SG("%s() DONE %d mappings\n", __func__, filled);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541
1542 return filled;
1543}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544
1545/**
Arthur Kepner309df0c2008-04-29 01:00:32 -07001546 * sba_unmap_sg_attrs - unmap Scatter/Gather list
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547 * @dev: instance of PCI owned by the driver that's asking.
1548 * @sglist: array of buffer/length pairs
1549 * @nents: number of entries in list
1550 * @dir: R/W or both.
Arthur Kepner309df0c2008-04-29 01:00:32 -07001551 * @attrs: optional dma attributes
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552 *
Paul Bolle395cf962011-08-15 02:02:26 +02001553 * See Documentation/DMA-API-HOWTO.txt
Linus Torvalds1da177e2005-04-16 15:20:36 -07001554 */
FUJITA Tomonori055bcf92009-01-05 23:36:18 +09001555static void sba_unmap_sg_attrs(struct device *dev, struct scatterlist *sglist,
FUJITA Tomonori160c1d82009-01-05 23:59:02 +09001556 int nents, enum dma_data_direction dir,
1557 struct dma_attrs *attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558{
1559#ifdef ASSERT_PDIR_SANITY
1560 struct ioc *ioc;
1561 unsigned long flags;
1562#endif
1563
1564 DBG_RUN_SG("%s() START %d entries, %p,%x\n",
Harvey Harrisond4ed8082008-03-04 15:15:00 -08001565 __func__, nents, sba_sg_address(sglist), sglist->length);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566
1567#ifdef ASSERT_PDIR_SANITY
1568 ioc = GET_IOC(dev);
1569 ASSERT(ioc);
1570
1571 spin_lock_irqsave(&ioc->res_lock, flags);
Arthur Kepner309df0c2008-04-29 01:00:32 -07001572 sba_check_pdir(ioc,"Check before sba_unmap_sg_attrs()");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573 spin_unlock_irqrestore(&ioc->res_lock, flags);
1574#endif
1575
1576 while (nents && sglist->dma_length) {
1577
Arthur Kepner309df0c2008-04-29 01:00:32 -07001578 sba_unmap_single_attrs(dev, sglist->dma_address,
1579 sglist->dma_length, dir, attrs);
Jens Axboe9b6eccf2007-10-16 11:27:26 +02001580 sglist = sg_next(sglist);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581 nents--;
1582 }
1583
Harvey Harrisond4ed8082008-03-04 15:15:00 -08001584 DBG_RUN_SG("%s() DONE (nents %d)\n", __func__, nents);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585
1586#ifdef ASSERT_PDIR_SANITY
1587 spin_lock_irqsave(&ioc->res_lock, flags);
Arthur Kepner309df0c2008-04-29 01:00:32 -07001588 sba_check_pdir(ioc,"Check after sba_unmap_sg_attrs()");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589 spin_unlock_irqrestore(&ioc->res_lock, flags);
1590#endif
1591
1592}
1593
1594/**************************************************************
1595*
1596* Initialization and claim
1597*
1598***************************************************************/
1599
1600static void __init
1601ioc_iova_init(struct ioc *ioc)
1602{
1603 int tcnfg;
1604 int agp_found = 0;
1605 struct pci_dev *device = NULL;
1606#ifdef FULL_VALID_PDIR
1607 unsigned long index;
1608#endif
1609
1610 /*
1611 ** Firmware programs the base and size of a "safe IOVA space"
1612 ** (one that doesn't overlap memory or LMMIO space) in the
1613 ** IBASE and IMASK registers.
1614 */
1615 ioc->ibase = READ_REG(ioc->ioc_hpa + IOC_IBASE) & ~0x1UL;
1616 ioc->imask = READ_REG(ioc->ioc_hpa + IOC_IMASK) | 0xFFFFFFFF00000000UL;
1617
1618 ioc->iov_size = ~ioc->imask + 1;
1619
1620 DBG_INIT("%s() hpa %p IOV base 0x%lx mask 0x%lx (%dMB)\n",
Harvey Harrisond4ed8082008-03-04 15:15:00 -08001621 __func__, ioc->ioc_hpa, ioc->ibase, ioc->imask,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622 ioc->iov_size >> 20);
1623
1624 switch (iovp_size) {
1625 case 4*1024: tcnfg = 0; break;
1626 case 8*1024: tcnfg = 1; break;
1627 case 16*1024: tcnfg = 2; break;
1628 case 64*1024: tcnfg = 3; break;
1629 default:
1630 panic(PFX "Unsupported IOTLB page size %ldK",
1631 iovp_size >> 10);
1632 break;
1633 }
1634 WRITE_REG(tcnfg, ioc->ioc_hpa + IOC_TCNFG);
1635
1636 ioc->pdir_size = (ioc->iov_size / iovp_size) * PDIR_ENTRY_SIZE;
1637 ioc->pdir_base = (void *) __get_free_pages(GFP_KERNEL,
1638 get_order(ioc->pdir_size));
1639 if (!ioc->pdir_base)
1640 panic(PFX "Couldn't allocate I/O Page Table\n");
1641
1642 memset(ioc->pdir_base, 0, ioc->pdir_size);
1643
Harvey Harrisond4ed8082008-03-04 15:15:00 -08001644 DBG_INIT("%s() IOV page size %ldK pdir %p size %x\n", __func__,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645 iovp_size >> 10, ioc->pdir_base, ioc->pdir_size);
1646
1647 ASSERT(ALIGN((unsigned long) ioc->pdir_base, 4*1024) == (unsigned long) ioc->pdir_base);
1648 WRITE_REG(virt_to_phys(ioc->pdir_base), ioc->ioc_hpa + IOC_PDIR_BASE);
1649
1650 /*
1651 ** If an AGP device is present, only use half of the IOV space
1652 ** for PCI DMA. Unfortunately we can't know ahead of time
1653 ** whether GART support will actually be used, for now we
1654 ** can just key on an AGP device found in the system.
1655 ** We program the next pdir index after we stop w/ a key for
1656 ** the GART code to handshake on.
1657 */
1658 for_each_pci_dev(device)
1659 agp_found |= pci_find_capability(device, PCI_CAP_ID_AGP);
1660
1661 if (agp_found && reserve_sba_gart) {
1662 printk(KERN_INFO PFX "reserving %dMb of IOVA space at 0x%lx for agpgart\n",
1663 ioc->iov_size/2 >> 20, ioc->ibase + ioc->iov_size/2);
1664 ioc->pdir_size /= 2;
1665 ((u64 *)ioc->pdir_base)[PDIR_INDEX(ioc->iov_size/2)] = ZX1_SBA_IOMMU_COOKIE;
1666 }
1667#ifdef FULL_VALID_PDIR
1668 /*
1669 ** Check to see if the spill page has been allocated, we don't need more than
1670 ** one across multiple SBAs.
1671 */
1672 if (!prefetch_spill_page) {
1673 char *spill_poison = "SBAIOMMU POISON";
1674 int poison_size = 16;
1675 void *poison_addr, *addr;
1676
1677 addr = (void *)__get_free_pages(GFP_KERNEL, get_order(iovp_size));
1678 if (!addr)
1679 panic(PFX "Couldn't allocate PDIR spill page\n");
1680
1681 poison_addr = addr;
1682 for ( ; (u64) poison_addr < addr + iovp_size; poison_addr += poison_size)
1683 memcpy(poison_addr, spill_poison, poison_size);
1684
1685 prefetch_spill_page = virt_to_phys(addr);
1686
Harvey Harrisond4ed8082008-03-04 15:15:00 -08001687 DBG_INIT("%s() prefetch spill addr: 0x%lx\n", __func__, prefetch_spill_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688 }
1689 /*
1690 ** Set all the PDIR entries valid w/ the spill page as the target
1691 */
1692 for (index = 0 ; index < (ioc->pdir_size / PDIR_ENTRY_SIZE) ; index++)
1693 ((u64 *)ioc->pdir_base)[index] = (0x80000000000000FF | prefetch_spill_page);
1694#endif
1695
1696 /* Clear I/O TLB of any possible entries */
1697 WRITE_REG(ioc->ibase | (get_iovp_order(ioc->iov_size) + iovp_shift), ioc->ioc_hpa + IOC_PCOM);
1698 READ_REG(ioc->ioc_hpa + IOC_PCOM);
1699
1700 /* Enable IOVA translation */
1701 WRITE_REG(ioc->ibase | 1, ioc->ioc_hpa + IOC_IBASE);
1702 READ_REG(ioc->ioc_hpa + IOC_IBASE);
1703}
1704
1705static void __init
1706ioc_resource_init(struct ioc *ioc)
1707{
1708 spin_lock_init(&ioc->res_lock);
1709#if DELAYED_RESOURCE_CNT > 0
1710 spin_lock_init(&ioc->saved_lock);
1711#endif
1712
1713 /* resource map size dictated by pdir_size */
1714 ioc->res_size = ioc->pdir_size / PDIR_ENTRY_SIZE; /* entries */
1715 ioc->res_size >>= 3; /* convert bit count to byte count */
Harvey Harrisond4ed8082008-03-04 15:15:00 -08001716 DBG_INIT("%s() res_size 0x%x\n", __func__, ioc->res_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717
1718 ioc->res_map = (char *) __get_free_pages(GFP_KERNEL,
1719 get_order(ioc->res_size));
1720 if (!ioc->res_map)
1721 panic(PFX "Couldn't allocate resource map\n");
1722
1723 memset(ioc->res_map, 0, ioc->res_size);
1724 /* next available IOVP - circular search */
1725 ioc->res_hint = (unsigned long *) ioc->res_map;
1726
1727#ifdef ASSERT_PDIR_SANITY
1728 /* Mark first bit busy - ie no IOVA 0 */
1729 ioc->res_map[0] = 0x1;
1730 ioc->pdir_base[0] = 0x8000000000000000ULL | ZX1_SBA_IOMMU_COOKIE;
1731#endif
1732#ifdef FULL_VALID_PDIR
1733 /* Mark the last resource used so we don't prefetch beyond IOVA space */
1734 ioc->res_map[ioc->res_size - 1] |= 0x80UL; /* res_map is chars */
1735 ioc->pdir_base[(ioc->pdir_size / PDIR_ENTRY_SIZE) - 1] = (0x80000000000000FF
1736 | prefetch_spill_page);
1737#endif
1738
Harvey Harrisond4ed8082008-03-04 15:15:00 -08001739 DBG_INIT("%s() res_map %x %p\n", __func__,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740 ioc->res_size, (void *) ioc->res_map);
1741}
1742
1743static void __init
1744ioc_sac_init(struct ioc *ioc)
1745{
1746 struct pci_dev *sac = NULL;
1747 struct pci_controller *controller = NULL;
1748
1749 /*
1750 * pci_alloc_coherent() must return a DMA address which is
1751 * SAC (single address cycle) addressable, so allocate a
1752 * pseudo-device to enforce that.
1753 */
Yan Burman52fd9102006-12-04 14:58:35 -08001754 sac = kzalloc(sizeof(*sac), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755 if (!sac)
1756 panic(PFX "Couldn't allocate struct pci_dev");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757
Yan Burman52fd9102006-12-04 14:58:35 -08001758 controller = kzalloc(sizeof(*controller), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759 if (!controller)
1760 panic(PFX "Couldn't allocate struct pci_controller");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761
1762 controller->iommu = ioc;
1763 sac->sysdata = controller;
1764 sac->dma_mask = 0xFFFFFFFFUL;
1765#ifdef CONFIG_PCI
1766 sac->dev.bus = &pci_bus_type;
1767#endif
1768 ioc->sac_only_dev = sac;
1769}
1770
1771static void __init
1772ioc_zx1_init(struct ioc *ioc)
1773{
1774 unsigned long rope_config;
1775 unsigned int i;
1776
1777 if (ioc->rev < 0x20)
1778 panic(PFX "IOC 2.0 or later required for IOMMU support\n");
1779
1780 /* 38 bit memory controller + extra bit for range displaced by MMIO */
1781 ioc->dma_mask = (0x1UL << 39) - 1;
1782
1783 /*
1784 ** Clear ROPE(N)_CONFIG AO bit.
1785 ** Disables "NT Ordering" (~= !"Relaxed Ordering")
1786 ** Overrides bit 1 in DMA Hint Sets.
1787 ** Improves netperf UDP_STREAM by ~10% for tg3 on bcm5701.
1788 */
1789 for (i=0; i<(8*8); i+=8) {
1790 rope_config = READ_REG(ioc->ioc_hpa + IOC_ROPE0_CFG + i);
1791 rope_config &= ~IOC_ROPE_AO;
1792 WRITE_REG(rope_config, ioc->ioc_hpa + IOC_ROPE0_CFG + i);
1793 }
1794}
1795
1796typedef void (initfunc)(struct ioc *);
1797
1798struct ioc_iommu {
1799 u32 func_id;
1800 char *name;
1801 initfunc *init;
1802};
1803
1804static struct ioc_iommu ioc_iommu_info[] __initdata = {
1805 { ZX1_IOC_ID, "zx1", ioc_zx1_init },
1806 { ZX2_IOC_ID, "zx2", NULL },
1807 { SX1000_IOC_ID, "sx1000", NULL },
Bjorn Helgaase15da402005-05-03 12:07:00 -07001808 { SX2000_IOC_ID, "sx2000", NULL },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001809};
1810
1811static struct ioc * __init
Matthew Wilcoxe088a4a2009-05-22 13:49:49 -07001812ioc_init(unsigned long hpa, void *handle)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813{
1814 struct ioc *ioc;
1815 struct ioc_iommu *info;
1816
Yan Burman52fd9102006-12-04 14:58:35 -08001817 ioc = kzalloc(sizeof(*ioc), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001818 if (!ioc)
1819 return NULL;
1820
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821 ioc->next = ioc_list;
1822 ioc_list = ioc;
1823
1824 ioc->handle = handle;
1825 ioc->ioc_hpa = ioremap(hpa, 0x1000);
1826
1827 ioc->func_id = READ_REG(ioc->ioc_hpa + IOC_FUNC_ID);
1828 ioc->rev = READ_REG(ioc->ioc_hpa + IOC_FCLASS) & 0xFFUL;
1829 ioc->dma_mask = 0xFFFFFFFFFFFFFFFFUL; /* conservative */
1830
1831 for (info = ioc_iommu_info; info < ioc_iommu_info + ARRAY_SIZE(ioc_iommu_info); info++) {
1832 if (ioc->func_id == info->func_id) {
1833 ioc->name = info->name;
1834 if (info->init)
1835 (info->init)(ioc);
1836 }
1837 }
1838
1839 iovp_size = (1 << iovp_shift);
1840 iovp_mask = ~(iovp_size - 1);
1841
Harvey Harrisond4ed8082008-03-04 15:15:00 -08001842 DBG_INIT("%s: PAGE_SIZE %ldK, iovp_size %ldK\n", __func__,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843 PAGE_SIZE >> 10, iovp_size >> 10);
1844
1845 if (!ioc->name) {
1846 ioc->name = kmalloc(24, GFP_KERNEL);
1847 if (ioc->name)
1848 sprintf((char *) ioc->name, "Unknown (%04x:%04x)",
1849 ioc->func_id & 0xFFFF, (ioc->func_id >> 16) & 0xFFFF);
1850 else
1851 ioc->name = "Unknown";
1852 }
1853
1854 ioc_iova_init(ioc);
1855 ioc_resource_init(ioc);
1856 ioc_sac_init(ioc);
1857
1858 if ((long) ~iovp_mask > (long) ia64_max_iommu_merge_mask)
1859 ia64_max_iommu_merge_mask = ~iovp_mask;
1860
1861 printk(KERN_INFO PFX
1862 "%s %d.%d HPA 0x%lx IOVA space %dMb at 0x%lx\n",
1863 ioc->name, (ioc->rev >> 4) & 0xF, ioc->rev & 0xF,
1864 hpa, ioc->iov_size >> 20, ioc->ibase);
1865
1866 return ioc;
1867}
1868
1869
1870
1871/**************************************************************************
1872**
1873** SBA initialization code (HW and SW)
1874**
1875** o identify SBA chip itself
1876** o FIXME: initialize DMA hints for reasonable defaults
1877**
1878**************************************************************************/
1879
1880#ifdef CONFIG_PROC_FS
1881static void *
1882ioc_start(struct seq_file *s, loff_t *pos)
1883{
1884 struct ioc *ioc;
1885 loff_t n = *pos;
1886
1887 for (ioc = ioc_list; ioc; ioc = ioc->next)
1888 if (!n--)
1889 return ioc;
1890
1891 return NULL;
1892}
1893
1894static void *
1895ioc_next(struct seq_file *s, void *v, loff_t *pos)
1896{
1897 struct ioc *ioc = v;
1898
1899 ++*pos;
1900 return ioc->next;
1901}
1902
1903static void
1904ioc_stop(struct seq_file *s, void *v)
1905{
1906}
1907
1908static int
1909ioc_show(struct seq_file *s, void *v)
1910{
1911 struct ioc *ioc = v;
1912 unsigned long *res_ptr = (unsigned long *)ioc->res_map;
1913 int i, used = 0;
1914
1915 seq_printf(s, "Hewlett Packard %s IOC rev %d.%d\n",
1916 ioc->name, ((ioc->rev >> 4) & 0xF), (ioc->rev & 0xF));
1917#ifdef CONFIG_NUMA
1918 if (ioc->node != MAX_NUMNODES)
1919 seq_printf(s, "NUMA node : %d\n", ioc->node);
1920#endif
1921 seq_printf(s, "IOVA size : %ld MB\n", ((ioc->pdir_size >> 3) * iovp_size)/(1024*1024));
1922 seq_printf(s, "IOVA page size : %ld kb\n", iovp_size/1024);
1923
1924 for (i = 0; i < (ioc->res_size / sizeof(unsigned long)); ++i, ++res_ptr)
1925 used += hweight64(*res_ptr);
1926
1927 seq_printf(s, "PDIR size : %d entries\n", ioc->pdir_size >> 3);
1928 seq_printf(s, "PDIR used : %d entries\n", used);
1929
1930#ifdef PDIR_SEARCH_TIMING
1931 {
1932 unsigned long i = 0, avg = 0, min, max;
1933 min = max = ioc->avg_search[0];
1934 for (i = 0; i < SBA_SEARCH_SAMPLE; i++) {
1935 avg += ioc->avg_search[i];
1936 if (ioc->avg_search[i] > max) max = ioc->avg_search[i];
1937 if (ioc->avg_search[i] < min) min = ioc->avg_search[i];
1938 }
1939 avg /= SBA_SEARCH_SAMPLE;
1940 seq_printf(s, "Bitmap search : %ld/%ld/%ld (min/avg/max CPU Cycles/IOVA page)\n",
1941 min, avg, max);
1942 }
1943#endif
1944#ifndef ALLOW_IOV_BYPASS
1945 seq_printf(s, "IOVA bypass disabled\n");
1946#endif
1947 return 0;
1948}
1949
Jan Engelhardta23fe552008-01-22 20:42:07 +01001950static const struct seq_operations ioc_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951 .start = ioc_start,
1952 .next = ioc_next,
1953 .stop = ioc_stop,
1954 .show = ioc_show
1955};
1956
1957static int
1958ioc_open(struct inode *inode, struct file *file)
1959{
1960 return seq_open(file, &ioc_seq_ops);
1961}
1962
Arjan van de Ven5dfe4c92007-02-12 00:55:31 -08001963static const struct file_operations ioc_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001964 .open = ioc_open,
1965 .read = seq_read,
1966 .llseek = seq_lseek,
1967 .release = seq_release
1968};
1969
1970static void __init
1971ioc_proc_init(void)
1972{
Denis V. Luneve2363762008-04-29 01:02:25 -07001973 struct proc_dir_entry *dir;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001974
1975 dir = proc_mkdir("bus/mckinley", NULL);
1976 if (!dir)
1977 return;
1978
Denis V. Luneve2363762008-04-29 01:02:25 -07001979 proc_create(ioc_list->name, 0, dir, &ioc_fops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001980}
1981#endif
1982
1983static void
1984sba_connect_bus(struct pci_bus *bus)
1985{
1986 acpi_handle handle, parent;
1987 acpi_status status;
1988 struct ioc *ioc;
1989
1990 if (!PCI_CONTROLLER(bus))
1991 panic(PFX "no sysdata on bus %d!\n", bus->number);
1992
1993 if (PCI_CONTROLLER(bus)->iommu)
1994 return;
1995
1996 handle = PCI_CONTROLLER(bus)->acpi_handle;
1997 if (!handle)
1998 return;
1999
2000 /*
2001 * The IOC scope encloses PCI root bridges in the ACPI
2002 * namespace, so work our way out until we find an IOC we
2003 * claimed previously.
2004 */
2005 do {
2006 for (ioc = ioc_list; ioc; ioc = ioc->next)
2007 if (ioc->handle == handle) {
2008 PCI_CONTROLLER(bus)->iommu = ioc;
2009 return;
2010 }
2011
2012 status = acpi_get_parent(handle, &parent);
2013 handle = parent;
2014 } while (ACPI_SUCCESS(status));
2015
2016 printk(KERN_WARNING "No IOC for PCI Bus %04x:%02x in ACPI\n", pci_domain_nr(bus), bus->number);
2017}
2018
2019#ifdef CONFIG_NUMA
2020static void __init
2021sba_map_ioc_to_node(struct ioc *ioc, acpi_handle handle)
2022{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002023 unsigned int node;
Alex Williamsonbb0fc082005-03-24 22:58:00 -07002024 int pxm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002025
2026 ioc->node = MAX_NUMNODES;
2027
Alex Williamsonbb0fc082005-03-24 22:58:00 -07002028 pxm = acpi_get_pxm(handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002029
Alex Williamsonbb0fc082005-03-24 22:58:00 -07002030 if (pxm < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002031 return;
2032
Yasunori Goto762834e2006-06-23 02:03:19 -07002033 node = pxm_to_node(pxm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002034
2035 if (node >= MAX_NUMNODES || !node_online(node))
2036 return;
2037
2038 ioc->node = node;
2039 return;
2040}
2041#else
2042#define sba_map_ioc_to_node(ioc, handle)
2043#endif
2044
2045static int __init
2046acpi_sba_ioc_add(struct acpi_device *device)
2047{
2048 struct ioc *ioc;
2049 acpi_status status;
2050 u64 hpa, length;
Joe Perches80aa9bf2010-04-05 12:05:31 -07002051 struct acpi_device_info *adi;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052
2053 status = hp_acpi_csr_space(device->handle, &hpa, &length);
2054 if (ACPI_FAILURE(status))
2055 return 1;
2056
Joe Perches80aa9bf2010-04-05 12:05:31 -07002057 status = acpi_get_object_info(device->handle, &adi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058 if (ACPI_FAILURE(status))
2059 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002060
2061 /*
2062 * For HWP0001, only SBA appears in ACPI namespace. It encloses the PCI
2063 * root bridges, and its CSR space includes the IOC function.
2064 */
Joe Perches80aa9bf2010-04-05 12:05:31 -07002065 if (strncmp("HWP0001", adi->hardware_id.string, 7) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002066 hpa += ZX1_IOC_OFFSET;
2067 /* zx1 based systems default to kernel page size iommu pages */
2068 if (!iovp_shift)
2069 iovp_shift = min(PAGE_SHIFT, 16);
2070 }
Joe Perches80aa9bf2010-04-05 12:05:31 -07002071 kfree(adi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002072
2073 /*
2074 * default anything not caught above or specified on cmdline to 4k
2075 * iommu page size
2076 */
2077 if (!iovp_shift)
2078 iovp_shift = 12;
2079
2080 ioc = ioc_init(hpa, device->handle);
2081 if (!ioc)
2082 return 1;
2083
2084 /* setup NUMA node association */
2085 sba_map_ioc_to_node(ioc, device->handle);
2086 return 0;
2087}
2088
Thomas Renninger70911382007-07-27 15:38:31 -07002089static const struct acpi_device_id hp_ioc_iommu_device_ids[] = {
2090 {"HWP0001", 0},
2091 {"HWP0004", 0},
2092 {"", 0},
2093};
Linus Torvalds1da177e2005-04-16 15:20:36 -07002094static struct acpi_driver acpi_sba_ioc_driver = {
2095 .name = "IOC IOMMU Driver",
Thomas Renninger70911382007-07-27 15:38:31 -07002096 .ids = hp_ioc_iommu_device_ids,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002097 .ops = {
2098 .add = acpi_sba_ioc_add,
2099 },
2100};
2101
FUJITA Tomonori160c1d82009-01-05 23:59:02 +09002102extern struct dma_map_ops swiotlb_dma_ops;
FUJITA Tomonori4d9b9772009-01-05 23:36:12 +09002103
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104static int __init
2105sba_init(void)
2106{
Alex Williamson0b9afed2005-09-06 11:20:49 -06002107 if (!ia64_platform_is("hpzx1") && !ia64_platform_is("hpzx1_swiotlb"))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002108 return 0;
2109
Simon Horman630bf202008-10-18 20:28:28 -07002110#if defined(CONFIG_IA64_GENERIC)
Terry Loftin51b58e32007-07-12 17:23:22 -06002111 /* If we are booting a kdump kernel, the sba_iommu will
2112 * cause devices that were not shutdown properly to MCA
2113 * as soon as they are turned back on. Our only option for
2114 * a successful kdump kernel boot is to use the swiotlb.
2115 */
Simon Horman630bf202008-10-18 20:28:28 -07002116 if (is_kdump_kernel()) {
FUJITA Tomonori4d9b9772009-01-05 23:36:12 +09002117 dma_ops = &swiotlb_dma_ops;
Terry Loftin51b58e32007-07-12 17:23:22 -06002118 if (swiotlb_late_init_with_default_size(64 * (1<<20)) != 0)
2119 panic("Unable to initialize software I/O TLB:"
2120 " Try machvec=dig boot option");
2121 machvec_init("dig");
2122 return 0;
2123 }
2124#endif
2125
Alex Williamson0b9afed2005-09-06 11:20:49 -06002126 acpi_bus_register_driver(&acpi_sba_ioc_driver);
2127 if (!ioc_list) {
2128#ifdef CONFIG_IA64_GENERIC
Alex Williamson0b9afed2005-09-06 11:20:49 -06002129 /*
2130 * If we didn't find something sba_iommu can claim, we
2131 * need to setup the swiotlb and switch to the dig machvec.
2132 */
FUJITA Tomonori4d9b9772009-01-05 23:36:12 +09002133 dma_ops = &swiotlb_dma_ops;
Alex Williamson0b9afed2005-09-06 11:20:49 -06002134 if (swiotlb_late_init_with_default_size(64 * (1<<20)) != 0)
2135 panic("Unable to find SBA IOMMU or initialize "
2136 "software I/O TLB: Try machvec=dig boot option");
2137 machvec_init("dig");
2138#else
2139 panic("Unable to find SBA IOMMU: Try a generic or DIG kernel");
2140#endif
2141 return 0;
2142 }
2143
2144#if defined(CONFIG_IA64_GENERIC) || defined(CONFIG_IA64_HP_ZX1_SWIOTLB)
2145 /*
2146 * hpzx1_swiotlb needs to have a fairly small swiotlb bounce
2147 * buffer setup to support devices with smaller DMA masks than
2148 * sba_iommu can handle.
2149 */
2150 if (ia64_platform_is("hpzx1_swiotlb")) {
2151 extern void hwsw_init(void);
2152
2153 hwsw_init();
2154 }
2155#endif
2156
Linus Torvalds1da177e2005-04-16 15:20:36 -07002157#ifdef CONFIG_PCI
2158 {
2159 struct pci_bus *b = NULL;
2160 while ((b = pci_find_next_bus(b)) != NULL)
2161 sba_connect_bus(b);
2162 }
2163#endif
2164
2165#ifdef CONFIG_PROC_FS
2166 ioc_proc_init();
2167#endif
2168 return 0;
2169}
2170
2171subsys_initcall(sba_init); /* must be initialized after ACPI etc., but before any drivers... */
2172
Linus Torvalds1da177e2005-04-16 15:20:36 -07002173static int __init
2174nosbagart(char *str)
2175{
2176 reserve_sba_gart = 0;
2177 return 1;
2178}
2179
FUJITA Tomonori055bcf92009-01-05 23:36:18 +09002180static int sba_dma_supported (struct device *dev, u64 mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002181{
2182 /* make sure it's at least 32bit capable */
2183 return ((mask & 0xFFFFFFFFUL) == 0xFFFFFFFFUL);
2184}
2185
FUJITA Tomonori055bcf92009-01-05 23:36:18 +09002186static int sba_dma_mapping_error(struct device *dev, dma_addr_t dma_addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002187{
2188 return 0;
2189}
2190
2191__setup("nosbagart", nosbagart);
2192
2193static int __init
2194sba_page_override(char *str)
2195{
2196 unsigned long page_size;
2197
2198 page_size = memparse(str, &str);
2199 switch (page_size) {
2200 case 4096:
2201 case 8192:
2202 case 16384:
2203 case 65536:
2204 iovp_shift = ffs(page_size) - 1;
2205 break;
2206 default:
2207 printk("%s: unknown/unsupported iommu page size %ld\n",
Harvey Harrisond4ed8082008-03-04 15:15:00 -08002208 __func__, page_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002209 }
2210
2211 return 1;
2212}
2213
2214__setup("sbapagesize=",sba_page_override);
2215
FUJITA Tomonori160c1d82009-01-05 23:59:02 +09002216struct dma_map_ops sba_dma_ops = {
Andrzej Pietrasiewiczbaa676f2012-03-27 14:28:18 +02002217 .alloc = sba_alloc_coherent,
2218 .free = sba_free_coherent,
FUJITA Tomonori160c1d82009-01-05 23:59:02 +09002219 .map_page = sba_map_page,
2220 .unmap_page = sba_unmap_page,
2221 .map_sg = sba_map_sg_attrs,
2222 .unmap_sg = sba_unmap_sg_attrs,
FUJITA Tomonori0e9cbb92009-01-05 23:36:07 +09002223 .sync_single_for_cpu = machvec_dma_sync_single,
2224 .sync_sg_for_cpu = machvec_dma_sync_sg,
2225 .sync_single_for_device = machvec_dma_sync_single,
2226 .sync_sg_for_device = machvec_dma_sync_sg,
FUJITA Tomonori160c1d82009-01-05 23:59:02 +09002227 .dma_supported = sba_dma_supported,
FUJITA Tomonori0e9cbb92009-01-05 23:36:07 +09002228 .mapping_error = sba_dma_mapping_error,
2229};
FUJITA Tomonori4d9b9772009-01-05 23:36:12 +09002230
2231void sba_dma_init(void)
2232{
2233 dma_ops = &sba_dma_ops;
2234}