David S. Miller | 19814ea | 2008-02-08 02:09:40 -0800 | [diff] [blame] | 1 | /* iommu_common.h: UltraSparc SBUS/PCI common iommu declarations. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | * |
David S. Miller | 19814ea | 2008-02-08 02:09:40 -0800 | [diff] [blame] | 3 | * Copyright (C) 1999, 2008 David S. Miller (davem@davemloft.net) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4 | */ |
| 5 | |
David S. Miller | 19814ea | 2008-02-08 02:09:40 -0800 | [diff] [blame] | 6 | #ifndef _IOMMU_COMMON_H |
| 7 | #define _IOMMU_COMMON_H |
| 8 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9 | #include <linux/kernel.h> |
| 10 | #include <linux/types.h> |
| 11 | #include <linux/sched.h> |
| 12 | #include <linux/mm.h> |
FUJITA Tomonori | 24c31ee | 2007-10-17 09:22:14 +0200 | [diff] [blame] | 13 | #include <linux/scatterlist.h> |
FUJITA Tomonori | fde6a3c | 2008-02-04 22:28:02 -0800 | [diff] [blame] | 14 | #include <linux/device.h> |
FUJITA Tomonori | f088025 | 2008-03-28 15:55:41 -0700 | [diff] [blame] | 15 | #include <linux/iommu-helper.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 16 | |
| 17 | #include <asm/iommu.h> |
| 18 | #include <asm/scatterlist.h> |
| 19 | |
| 20 | /* |
| 21 | * These give mapping size of each iommu pte/tlb. |
| 22 | */ |
| 23 | #define IO_PAGE_SHIFT 13 |
| 24 | #define IO_PAGE_SIZE (1UL << IO_PAGE_SHIFT) |
| 25 | #define IO_PAGE_MASK (~(IO_PAGE_SIZE-1)) |
Andrea Righi | 27ac792 | 2008-07-23 21:28:13 -0700 | [diff] [blame] | 26 | #define IO_PAGE_ALIGN(addr) ALIGN(addr, IO_PAGE_SIZE) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 27 | |
| 28 | #define IO_TSB_ENTRIES (128*1024) |
| 29 | #define IO_TSB_SIZE (IO_TSB_ENTRIES * 8) |
| 30 | |
| 31 | /* |
| 32 | * This is the hardwired shift in the iotlb tag/data parts. |
| 33 | */ |
| 34 | #define IOMMU_PAGE_SHIFT 13 |
| 35 | |
David S. Miller | 38192d5 | 2008-02-06 03:50:26 -0800 | [diff] [blame] | 36 | #define SG_ENT_PHYS_ADDRESS(SG) (__pa(sg_virt((SG)))) |
| 37 | |
FUJITA Tomonori | f088025 | 2008-03-28 15:55:41 -0700 | [diff] [blame] | 38 | static inline int is_span_boundary(unsigned long entry, |
| 39 | unsigned long shift, |
| 40 | unsigned long boundary_size, |
| 41 | struct scatterlist *outs, |
| 42 | struct scatterlist *sg) |
| 43 | { |
| 44 | unsigned long paddr = SG_ENT_PHYS_ADDRESS(outs); |
Joerg Roedel | 0fcff28 | 2008-10-15 22:02:14 -0700 | [diff] [blame] | 45 | int nr = iommu_num_pages(paddr, outs->dma_length + sg->length, |
| 46 | IO_PAGE_SIZE); |
FUJITA Tomonori | f088025 | 2008-03-28 15:55:41 -0700 | [diff] [blame] | 47 | |
| 48 | return iommu_is_span_boundary(entry, nr, shift, boundary_size); |
| 49 | } |
| 50 | |
David S. Miller | d284142 | 2008-02-08 18:05:46 -0800 | [diff] [blame] | 51 | extern unsigned long iommu_range_alloc(struct device *dev, |
| 52 | struct iommu *iommu, |
| 53 | unsigned long npages, |
| 54 | unsigned long *handle); |
| 55 | extern void iommu_range_free(struct iommu *iommu, |
| 56 | dma_addr_t dma_addr, |
| 57 | unsigned long npages); |
| 58 | |
David S. Miller | 19814ea | 2008-02-08 02:09:40 -0800 | [diff] [blame] | 59 | #endif /* _IOMMU_COMMON_H */ |