Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Dynamic DMA mapping support for AMD Hammer. |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame^] | 3 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4 | * Use the integrated AGP GART in the Hammer northbridge as an IOMMU for PCI. |
| 5 | * This allows to use PCI devices that only support 32bit addresses on systems |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame^] | 6 | * with more than 4GB. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7 | * |
| 8 | * See Documentation/DMA-mapping.txt for the interface specification. |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame^] | 9 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10 | * Copyright 2002 Andi Kleen, SuSE Labs. |
Andi Kleen | ff7f364 | 2007-10-17 18:04:37 +0200 | [diff] [blame] | 11 | * Subject to the GNU General Public License v2 only. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 12 | */ |
| 13 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 14 | #include <linux/types.h> |
| 15 | #include <linux/ctype.h> |
| 16 | #include <linux/agp_backend.h> |
| 17 | #include <linux/init.h> |
| 18 | #include <linux/mm.h> |
| 19 | #include <linux/string.h> |
| 20 | #include <linux/spinlock.h> |
| 21 | #include <linux/pci.h> |
| 22 | #include <linux/module.h> |
| 23 | #include <linux/topology.h> |
| 24 | #include <linux/interrupt.h> |
| 25 | #include <linux/bitops.h> |
Christoph Hellwig | 1eeb66a | 2007-05-08 00:27:03 -0700 | [diff] [blame] | 26 | #include <linux/kdebug.h> |
Jens Axboe | 9ee1bea | 2007-10-04 09:35:37 +0200 | [diff] [blame] | 27 | #include <linux/scatterlist.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | #include <asm/atomic.h> |
| 29 | #include <asm/io.h> |
| 30 | #include <asm/mtrr.h> |
| 31 | #include <asm/pgtable.h> |
| 32 | #include <asm/proto.h> |
Joerg Roedel | 395624f | 2007-10-24 12:49:47 +0200 | [diff] [blame] | 33 | #include <asm/gart.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | #include <asm/cacheflush.h> |
Muli Ben-Yehuda | 17a941d | 2006-01-11 22:44:42 +0100 | [diff] [blame] | 35 | #include <asm/swiotlb.h> |
| 36 | #include <asm/dma.h> |
Andi Kleen | a32073b | 2006-06-26 13:56:40 +0200 | [diff] [blame] | 37 | #include <asm/k8.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | |
Joerg Roedel | 79da087 | 2007-10-24 12:49:49 +0200 | [diff] [blame] | 39 | static unsigned long iommu_bus_base; /* GART remapping area (physical) */ |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame^] | 40 | static unsigned long iommu_size; /* size of remapping area bytes */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 | static unsigned long iommu_pages; /* .. and in pages */ |
| 42 | |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame^] | 43 | static u32 *iommu_gatt_base; /* Remapping table */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame^] | 45 | /* |
| 46 | * If this is disabled the IOMMU will use an optimized flushing strategy |
| 47 | * of only flushing when an mapping is reused. With it true the GART is |
| 48 | * flushed for every mapping. Problem is that doing the lazy flush seems |
| 49 | * to trigger bugs with some popular PCI cards, in particular 3ware (but |
| 50 | * has been also also seen with Qlogic at least). |
| 51 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 52 | int iommu_fullflush = 1; |
| 53 | |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame^] | 54 | /* Allocation bitmap for the remapping area: */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 55 | static DEFINE_SPINLOCK(iommu_bitmap_lock); |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame^] | 56 | /* Guarded by iommu_bitmap_lock: */ |
| 57 | static unsigned long *iommu_gart_bitmap; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 58 | |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame^] | 59 | static u32 gart_unmapped_entry; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 60 | |
| 61 | #define GPTE_VALID 1 |
| 62 | #define GPTE_COHERENT 2 |
| 63 | #define GPTE_ENCODE(x) \ |
| 64 | (((x) & 0xfffff000) | (((x) >> 32) << 4) | GPTE_VALID | GPTE_COHERENT) |
| 65 | #define GPTE_DECODE(x) (((x) & 0xfffff000) | (((u64)(x) & 0xff0) << 28)) |
| 66 | |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame^] | 67 | #define to_pages(addr, size) \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 68 | (round_up(((addr) & ~PAGE_MASK) + (size), PAGE_SIZE) >> PAGE_SHIFT) |
| 69 | |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame^] | 70 | #define EMERGENCY_PAGES 32 /* = 128KB */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 71 | |
| 72 | #ifdef CONFIG_AGP |
| 73 | #define AGPEXTERN extern |
| 74 | #else |
| 75 | #define AGPEXTERN |
| 76 | #endif |
| 77 | |
| 78 | /* backdoor interface to AGP driver */ |
| 79 | AGPEXTERN int agp_memory_reserved; |
| 80 | AGPEXTERN __u32 *agp_gatt_table; |
| 81 | |
| 82 | static unsigned long next_bit; /* protected by iommu_bitmap_lock */ |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame^] | 83 | static int need_flush; /* global flush state. set for each gart wrap */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 84 | |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame^] | 85 | static unsigned long alloc_iommu(int size) |
| 86 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 87 | unsigned long offset, flags; |
| 88 | |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame^] | 89 | spin_lock_irqsave(&iommu_bitmap_lock, flags); |
| 90 | offset = find_next_zero_string(iommu_gart_bitmap, next_bit, |
| 91 | iommu_pages, size); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 92 | if (offset == -1) { |
| 93 | need_flush = 1; |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame^] | 94 | offset = find_next_zero_string(iommu_gart_bitmap, 0, |
| 95 | iommu_pages, size); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 96 | } |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame^] | 97 | if (offset != -1) { |
| 98 | set_bit_string(iommu_gart_bitmap, offset, size); |
| 99 | next_bit = offset+size; |
| 100 | if (next_bit >= iommu_pages) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 101 | next_bit = 0; |
| 102 | need_flush = 1; |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame^] | 103 | } |
| 104 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 105 | if (iommu_fullflush) |
| 106 | need_flush = 1; |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame^] | 107 | spin_unlock_irqrestore(&iommu_bitmap_lock, flags); |
| 108 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 109 | return offset; |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame^] | 110 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 111 | |
| 112 | static void free_iommu(unsigned long offset, int size) |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame^] | 113 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 114 | unsigned long flags; |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame^] | 115 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 116 | spin_lock_irqsave(&iommu_bitmap_lock, flags); |
| 117 | __clear_bit_string(iommu_gart_bitmap, offset, size); |
| 118 | spin_unlock_irqrestore(&iommu_bitmap_lock, flags); |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame^] | 119 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 120 | |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame^] | 121 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 122 | * Use global flush state to avoid races with multiple flushers. |
| 123 | */ |
Andi Kleen | a32073b | 2006-06-26 13:56:40 +0200 | [diff] [blame] | 124 | static void flush_gart(void) |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame^] | 125 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 126 | unsigned long flags; |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame^] | 127 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 128 | spin_lock_irqsave(&iommu_bitmap_lock, flags); |
Andi Kleen | a32073b | 2006-06-26 13:56:40 +0200 | [diff] [blame] | 129 | if (need_flush) { |
| 130 | k8_flush_garts(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 131 | need_flush = 0; |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame^] | 132 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 133 | spin_unlock_irqrestore(&iommu_bitmap_lock, flags); |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame^] | 134 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 135 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 136 | #ifdef CONFIG_IOMMU_LEAK |
| 137 | |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame^] | 138 | #define SET_LEAK(x) \ |
| 139 | do { \ |
| 140 | if (iommu_leak_tab) \ |
| 141 | iommu_leak_tab[x] = __builtin_return_address(0);\ |
| 142 | } while (0) |
| 143 | |
| 144 | #define CLEAR_LEAK(x) \ |
| 145 | do { \ |
| 146 | if (iommu_leak_tab) \ |
| 147 | iommu_leak_tab[x] = NULL; \ |
| 148 | } while (0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 149 | |
| 150 | /* Debugging aid for drivers that don't free their IOMMU tables */ |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame^] | 151 | static void **iommu_leak_tab; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 152 | static int leak_trace; |
Joerg Roedel | 79da087 | 2007-10-24 12:49:49 +0200 | [diff] [blame] | 153 | static int iommu_leak_pages = 20; |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame^] | 154 | |
Joerg Roedel | 79da087 | 2007-10-24 12:49:49 +0200 | [diff] [blame] | 155 | static void dump_leak(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 156 | { |
| 157 | int i; |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame^] | 158 | static int dump; |
| 159 | |
| 160 | if (dump || !iommu_leak_tab) |
| 161 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 162 | dump = 1; |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame^] | 163 | show_stack(NULL, NULL); |
| 164 | |
| 165 | /* Very crude. dump some from the end of the table too */ |
| 166 | printk(KERN_DEBUG "Dumping %d pages from end of IOMMU:\n", |
| 167 | iommu_leak_pages); |
| 168 | for (i = 0; i < iommu_leak_pages; i += 2) { |
| 169 | printk(KERN_DEBUG "%lu: ", iommu_pages-i); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 170 | printk_address((unsigned long) iommu_leak_tab[iommu_pages-i]); |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame^] | 171 | printk(KERN_CONT "%c", (i+1)%2 == 0 ? '\n' : ' '); |
| 172 | } |
| 173 | printk(KERN_DEBUG "\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 174 | } |
| 175 | #else |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame^] | 176 | # define SET_LEAK(x) |
| 177 | # define CLEAR_LEAK(x) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 178 | #endif |
| 179 | |
Muli Ben-Yehuda | 17a941d | 2006-01-11 22:44:42 +0100 | [diff] [blame] | 180 | static void iommu_full(struct device *dev, size_t size, int dir) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 181 | { |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame^] | 182 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 183 | * Ran out of IOMMU space for this operation. This is very bad. |
| 184 | * Unfortunately the drivers cannot handle this operation properly. |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame^] | 185 | * Return some non mapped prereserved space in the aperture and |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 186 | * let the Northbridge deal with it. This will result in garbage |
| 187 | * in the IO operation. When the size exceeds the prereserved space |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame^] | 188 | * memory corruption will occur or random memory will be DMAed |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 189 | * out. Hopefully no network devices use single mappings that big. |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame^] | 190 | */ |
| 191 | |
| 192 | printk(KERN_ERR |
| 193 | "PCI-DMA: Out of IOMMU space for %lu bytes at device %s\n", |
| 194 | size, dev->bus_id); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 195 | |
Muli Ben-Yehuda | 17a941d | 2006-01-11 22:44:42 +0100 | [diff] [blame] | 196 | if (size > PAGE_SIZE*EMERGENCY_PAGES) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 197 | if (dir == PCI_DMA_FROMDEVICE || dir == PCI_DMA_BIDIRECTIONAL) |
| 198 | panic("PCI-DMA: Memory would be corrupted\n"); |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame^] | 199 | if (dir == PCI_DMA_TODEVICE || dir == PCI_DMA_BIDIRECTIONAL) |
| 200 | panic(KERN_ERR |
| 201 | "PCI-DMA: Random memory would be DMAed\n"); |
| 202 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 203 | #ifdef CONFIG_IOMMU_LEAK |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame^] | 204 | dump_leak(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 205 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 206 | } |
| 207 | |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame^] | 208 | static inline int |
| 209 | need_iommu(struct device *dev, unsigned long addr, size_t size) |
| 210 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 211 | u64 mask = *dev->dma_mask; |
Andi Kleen | 00edefa | 2007-02-13 13:26:24 +0100 | [diff] [blame] | 212 | int high = addr + size > mask; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 213 | int mmu = high; |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame^] | 214 | |
| 215 | if (force_iommu) |
| 216 | mmu = 1; |
| 217 | |
| 218 | return mmu; |
| 219 | } |
| 220 | |
| 221 | static inline int |
| 222 | nonforced_iommu(struct device *dev, unsigned long addr, size_t size) |
| 223 | { |
| 224 | u64 mask = *dev->dma_mask; |
| 225 | int high = addr + size > mask; |
| 226 | int mmu = high; |
| 227 | |
| 228 | return mmu; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 229 | } |
| 230 | |
| 231 | /* Map a single continuous physical area into the IOMMU. |
| 232 | * Caller needs to check if the iommu is needed and flush. |
| 233 | */ |
Muli Ben-Yehuda | 17a941d | 2006-01-11 22:44:42 +0100 | [diff] [blame] | 234 | static dma_addr_t dma_map_area(struct device *dev, dma_addr_t phys_mem, |
| 235 | size_t size, int dir) |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame^] | 236 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 237 | unsigned long npages = to_pages(phys_mem, size); |
| 238 | unsigned long iommu_page = alloc_iommu(npages); |
| 239 | int i; |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame^] | 240 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 241 | if (iommu_page == -1) { |
| 242 | if (!nonforced_iommu(dev, phys_mem, size)) |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame^] | 243 | return phys_mem; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 244 | if (panic_on_overflow) |
| 245 | panic("dma_map_area overflow %lu bytes\n", size); |
Muli Ben-Yehuda | 17a941d | 2006-01-11 22:44:42 +0100 | [diff] [blame] | 246 | iommu_full(dev, size, dir); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 247 | return bad_dma_address; |
| 248 | } |
| 249 | |
| 250 | for (i = 0; i < npages; i++) { |
| 251 | iommu_gatt_base[iommu_page + i] = GPTE_ENCODE(phys_mem); |
| 252 | SET_LEAK(iommu_page + i); |
| 253 | phys_mem += PAGE_SIZE; |
| 254 | } |
| 255 | return iommu_bus_base + iommu_page*PAGE_SIZE + (phys_mem & ~PAGE_MASK); |
| 256 | } |
| 257 | |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame^] | 258 | static dma_addr_t |
| 259 | gart_map_simple(struct device *dev, char *buf, size_t size, int dir) |
Muli Ben-Yehuda | 17a941d | 2006-01-11 22:44:42 +0100 | [diff] [blame] | 260 | { |
| 261 | dma_addr_t map = dma_map_area(dev, virt_to_bus(buf), size, dir); |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame^] | 262 | |
Andi Kleen | a32073b | 2006-06-26 13:56:40 +0200 | [diff] [blame] | 263 | flush_gart(); |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame^] | 264 | |
Muli Ben-Yehuda | 17a941d | 2006-01-11 22:44:42 +0100 | [diff] [blame] | 265 | return map; |
| 266 | } |
| 267 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 268 | /* Map a single area into the IOMMU */ |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame^] | 269 | static dma_addr_t |
| 270 | gart_map_single(struct device *dev, void *addr, size_t size, int dir) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 271 | { |
| 272 | unsigned long phys_mem, bus; |
| 273 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 274 | if (!dev) |
| 275 | dev = &fallback_dev; |
| 276 | |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame^] | 277 | phys_mem = virt_to_phys(addr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 278 | if (!need_iommu(dev, phys_mem, size)) |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame^] | 279 | return phys_mem; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 280 | |
Muli Ben-Yehuda | 17a941d | 2006-01-11 22:44:42 +0100 | [diff] [blame] | 281 | bus = gart_map_simple(dev, addr, size, dir); |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame^] | 282 | |
| 283 | return bus; |
Muli Ben-Yehuda | 17a941d | 2006-01-11 22:44:42 +0100 | [diff] [blame] | 284 | } |
| 285 | |
| 286 | /* |
Jon Mason | 7c2d9cd | 2006-06-26 13:56:37 +0200 | [diff] [blame] | 287 | * Free a DMA mapping. |
| 288 | */ |
Yinghai Lu | 1048fa5 | 2007-07-21 17:11:23 +0200 | [diff] [blame] | 289 | static void gart_unmap_single(struct device *dev, dma_addr_t dma_addr, |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame^] | 290 | size_t size, int direction) |
Jon Mason | 7c2d9cd | 2006-06-26 13:56:37 +0200 | [diff] [blame] | 291 | { |
| 292 | unsigned long iommu_page; |
| 293 | int npages; |
| 294 | int i; |
| 295 | |
| 296 | if (dma_addr < iommu_bus_base + EMERGENCY_PAGES*PAGE_SIZE || |
| 297 | dma_addr >= iommu_bus_base + iommu_size) |
| 298 | return; |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame^] | 299 | |
Jon Mason | 7c2d9cd | 2006-06-26 13:56:37 +0200 | [diff] [blame] | 300 | iommu_page = (dma_addr - iommu_bus_base)>>PAGE_SHIFT; |
| 301 | npages = to_pages(dma_addr, size); |
| 302 | for (i = 0; i < npages; i++) { |
| 303 | iommu_gatt_base[iommu_page + i] = gart_unmapped_entry; |
| 304 | CLEAR_LEAK(iommu_page + i); |
| 305 | } |
| 306 | free_iommu(iommu_page, npages); |
| 307 | } |
| 308 | |
| 309 | /* |
Muli Ben-Yehuda | 17a941d | 2006-01-11 22:44:42 +0100 | [diff] [blame] | 310 | * Wrapper for pci_unmap_single working with scatterlists. |
| 311 | */ |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame^] | 312 | static void |
| 313 | gart_unmap_sg(struct device *dev, struct scatterlist *sg, int nents, int dir) |
Muli Ben-Yehuda | 17a941d | 2006-01-11 22:44:42 +0100 | [diff] [blame] | 314 | { |
Jens Axboe | 9ee1bea | 2007-10-04 09:35:37 +0200 | [diff] [blame] | 315 | struct scatterlist *s; |
Muli Ben-Yehuda | 17a941d | 2006-01-11 22:44:42 +0100 | [diff] [blame] | 316 | int i; |
| 317 | |
Jens Axboe | 9ee1bea | 2007-10-04 09:35:37 +0200 | [diff] [blame] | 318 | for_each_sg(sg, s, nents, i) { |
Jon Mason | 60b08c6 | 2006-02-26 04:18:22 +0100 | [diff] [blame] | 319 | if (!s->dma_length || !s->length) |
Muli Ben-Yehuda | 17a941d | 2006-01-11 22:44:42 +0100 | [diff] [blame] | 320 | break; |
Jon Mason | 7c2d9cd | 2006-06-26 13:56:37 +0200 | [diff] [blame] | 321 | gart_unmap_single(dev, s->dma_address, s->dma_length, dir); |
Muli Ben-Yehuda | 17a941d | 2006-01-11 22:44:42 +0100 | [diff] [blame] | 322 | } |
| 323 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 324 | |
| 325 | /* Fallback for dma_map_sg in case of overflow */ |
| 326 | static int dma_map_sg_nonforce(struct device *dev, struct scatterlist *sg, |
| 327 | int nents, int dir) |
| 328 | { |
Jens Axboe | 9ee1bea | 2007-10-04 09:35:37 +0200 | [diff] [blame] | 329 | struct scatterlist *s; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 330 | int i; |
| 331 | |
| 332 | #ifdef CONFIG_IOMMU_DEBUG |
| 333 | printk(KERN_DEBUG "dma_map_sg overflow\n"); |
| 334 | #endif |
| 335 | |
Jens Axboe | 9ee1bea | 2007-10-04 09:35:37 +0200 | [diff] [blame] | 336 | for_each_sg(sg, s, nents, i) { |
Jens Axboe | 58b053e | 2007-10-22 20:02:46 +0200 | [diff] [blame] | 337 | unsigned long addr = sg_phys(s); |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame^] | 338 | |
| 339 | if (nonforced_iommu(dev, addr, s->length)) { |
Muli Ben-Yehuda | 17a941d | 2006-01-11 22:44:42 +0100 | [diff] [blame] | 340 | addr = dma_map_area(dev, addr, s->length, dir); |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame^] | 341 | if (addr == bad_dma_address) { |
| 342 | if (i > 0) |
Muli Ben-Yehuda | 17a941d | 2006-01-11 22:44:42 +0100 | [diff] [blame] | 343 | gart_unmap_sg(dev, sg, i, dir); |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame^] | 344 | nents = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 345 | sg[0].dma_length = 0; |
| 346 | break; |
| 347 | } |
| 348 | } |
| 349 | s->dma_address = addr; |
| 350 | s->dma_length = s->length; |
| 351 | } |
Andi Kleen | a32073b | 2006-06-26 13:56:40 +0200 | [diff] [blame] | 352 | flush_gart(); |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame^] | 353 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 354 | return nents; |
| 355 | } |
| 356 | |
| 357 | /* Map multiple scatterlist entries continuous into the first. */ |
Jens Axboe | 9ee1bea | 2007-10-04 09:35:37 +0200 | [diff] [blame] | 358 | static int __dma_map_cont(struct scatterlist *start, int nelems, |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame^] | 359 | struct scatterlist *sout, unsigned long pages) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 360 | { |
| 361 | unsigned long iommu_start = alloc_iommu(pages); |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame^] | 362 | unsigned long iommu_page = iommu_start; |
Jens Axboe | 9ee1bea | 2007-10-04 09:35:37 +0200 | [diff] [blame] | 363 | struct scatterlist *s; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 364 | int i; |
| 365 | |
| 366 | if (iommu_start == -1) |
| 367 | return -1; |
Jens Axboe | 9ee1bea | 2007-10-04 09:35:37 +0200 | [diff] [blame] | 368 | |
| 369 | for_each_sg(start, s, nelems, i) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 370 | unsigned long pages, addr; |
| 371 | unsigned long phys_addr = s->dma_address; |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame^] | 372 | |
Jens Axboe | 9ee1bea | 2007-10-04 09:35:37 +0200 | [diff] [blame] | 373 | BUG_ON(s != start && s->offset); |
| 374 | if (s == start) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 375 | sout->dma_address = iommu_bus_base; |
| 376 | sout->dma_address += iommu_page*PAGE_SIZE + s->offset; |
| 377 | sout->dma_length = s->length; |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame^] | 378 | } else { |
| 379 | sout->dma_length += s->length; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 380 | } |
| 381 | |
| 382 | addr = phys_addr; |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame^] | 383 | pages = to_pages(s->offset, s->length); |
| 384 | while (pages--) { |
| 385 | iommu_gatt_base[iommu_page] = GPTE_ENCODE(addr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 386 | SET_LEAK(iommu_page); |
| 387 | addr += PAGE_SIZE; |
| 388 | iommu_page++; |
Andi Kleen | 0d541064 | 2006-02-12 14:34:59 -0800 | [diff] [blame] | 389 | } |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame^] | 390 | } |
| 391 | BUG_ON(iommu_page - iommu_start != pages); |
| 392 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 393 | return 0; |
| 394 | } |
| 395 | |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame^] | 396 | static inline int |
| 397 | dma_map_cont(struct scatterlist *start, int nelems, struct scatterlist *sout, |
| 398 | unsigned long pages, int need) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 399 | { |
Jens Axboe | 9ee1bea | 2007-10-04 09:35:37 +0200 | [diff] [blame] | 400 | if (!need) { |
| 401 | BUG_ON(nelems != 1); |
FUJITA Tomonori | e88a39d | 2007-10-25 09:13:32 +0200 | [diff] [blame] | 402 | sout->dma_address = start->dma_address; |
Jens Axboe | 9ee1bea | 2007-10-04 09:35:37 +0200 | [diff] [blame] | 403 | sout->dma_length = start->length; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 404 | return 0; |
Jens Axboe | 9ee1bea | 2007-10-04 09:35:37 +0200 | [diff] [blame] | 405 | } |
| 406 | return __dma_map_cont(start, nelems, sout, pages); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 407 | } |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame^] | 408 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 409 | /* |
| 410 | * DMA map all entries in a scatterlist. |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame^] | 411 | * Merge chunks that have page aligned sizes into a continuous mapping. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 412 | */ |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame^] | 413 | static int |
| 414 | gart_map_sg(struct device *dev, struct scatterlist *sg, int nents, int dir) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 415 | { |
Jens Axboe | 9ee1bea | 2007-10-04 09:35:37 +0200 | [diff] [blame] | 416 | struct scatterlist *s, *ps, *start_sg, *sgmap; |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame^] | 417 | int need = 0, nextneed, i, out, start; |
| 418 | unsigned long pages = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 419 | |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame^] | 420 | if (nents == 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 421 | return 0; |
| 422 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 423 | if (!dev) |
| 424 | dev = &fallback_dev; |
| 425 | |
| 426 | out = 0; |
| 427 | start = 0; |
Jens Axboe | 9ee1bea | 2007-10-04 09:35:37 +0200 | [diff] [blame] | 428 | start_sg = sgmap = sg; |
| 429 | ps = NULL; /* shut up gcc */ |
| 430 | for_each_sg(sg, s, nents, i) { |
Jens Axboe | 58b053e | 2007-10-22 20:02:46 +0200 | [diff] [blame] | 431 | dma_addr_t addr = sg_phys(s); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 432 | |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame^] | 433 | s->dma_address = addr; |
| 434 | BUG_ON(s->length == 0); |
| 435 | |
| 436 | nextneed = need_iommu(dev, addr, s->length); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 437 | |
| 438 | /* Handle the previous not yet processed entries */ |
| 439 | if (i > start) { |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame^] | 440 | /* |
| 441 | * Can only merge when the last chunk ends on a |
| 442 | * page boundary and the new one doesn't have an |
| 443 | * offset. |
| 444 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 445 | if (!iommu_merge || !nextneed || !need || s->offset || |
Jens Axboe | 9ee1bea | 2007-10-04 09:35:37 +0200 | [diff] [blame] | 446 | (ps->offset + ps->length) % PAGE_SIZE) { |
| 447 | if (dma_map_cont(start_sg, i - start, sgmap, |
| 448 | pages, need) < 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 449 | goto error; |
| 450 | out++; |
Jens Axboe | 9ee1bea | 2007-10-04 09:35:37 +0200 | [diff] [blame] | 451 | sgmap = sg_next(sgmap); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 452 | pages = 0; |
Jens Axboe | 9ee1bea | 2007-10-04 09:35:37 +0200 | [diff] [blame] | 453 | start = i; |
| 454 | start_sg = s; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 455 | } |
| 456 | } |
| 457 | |
| 458 | need = nextneed; |
| 459 | pages += to_pages(s->offset, s->length); |
Jens Axboe | 9ee1bea | 2007-10-04 09:35:37 +0200 | [diff] [blame] | 460 | ps = s; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 461 | } |
Jens Axboe | 9ee1bea | 2007-10-04 09:35:37 +0200 | [diff] [blame] | 462 | if (dma_map_cont(start_sg, i - start, sgmap, pages, need) < 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 463 | goto error; |
| 464 | out++; |
Andi Kleen | a32073b | 2006-06-26 13:56:40 +0200 | [diff] [blame] | 465 | flush_gart(); |
Jens Axboe | 9ee1bea | 2007-10-04 09:35:37 +0200 | [diff] [blame] | 466 | if (out < nents) { |
| 467 | sgmap = sg_next(sgmap); |
| 468 | sgmap->dma_length = 0; |
| 469 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 470 | return out; |
| 471 | |
| 472 | error: |
Andi Kleen | a32073b | 2006-06-26 13:56:40 +0200 | [diff] [blame] | 473 | flush_gart(); |
FUJITA Tomonori | 5336940 | 2007-10-26 13:56:24 +0200 | [diff] [blame] | 474 | gart_unmap_sg(dev, sg, out, dir); |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame^] | 475 | |
Kevin VanMaren | a1002a4 | 2006-02-03 21:51:32 +0100 | [diff] [blame] | 476 | /* When it was forced or merged try again in a dumb way */ |
| 477 | if (force_iommu || iommu_merge) { |
| 478 | out = dma_map_sg_nonforce(dev, sg, nents, dir); |
| 479 | if (out > 0) |
| 480 | return out; |
| 481 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 482 | if (panic_on_overflow) |
| 483 | panic("dma_map_sg: overflow on %lu pages\n", pages); |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame^] | 484 | |
Muli Ben-Yehuda | 17a941d | 2006-01-11 22:44:42 +0100 | [diff] [blame] | 485 | iommu_full(dev, pages << PAGE_SHIFT, dir); |
Jens Axboe | 9ee1bea | 2007-10-04 09:35:37 +0200 | [diff] [blame] | 486 | for_each_sg(sg, s, nents, i) |
| 487 | s->dma_address = bad_dma_address; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 488 | return 0; |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame^] | 489 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 490 | |
Muli Ben-Yehuda | 17a941d | 2006-01-11 22:44:42 +0100 | [diff] [blame] | 491 | static int no_agp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 492 | |
| 493 | static __init unsigned long check_iommu_size(unsigned long aper, u64 aper_size) |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame^] | 494 | { |
| 495 | unsigned long a; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 496 | |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame^] | 497 | if (!iommu_size) { |
| 498 | iommu_size = aper_size; |
| 499 | if (!no_agp) |
| 500 | iommu_size /= 2; |
| 501 | } |
| 502 | |
| 503 | a = aper + iommu_size; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 504 | iommu_size -= round_up(a, LARGE_PAGE_SIZE) - a; |
| 505 | |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame^] | 506 | if (iommu_size < 64*1024*1024) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 507 | printk(KERN_WARNING |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame^] | 508 | "PCI-DMA: Warning: Small IOMMU %luMB." |
| 509 | " Consider increasing the AGP aperture in BIOS\n", |
| 510 | iommu_size >> 20); |
| 511 | } |
| 512 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 513 | return iommu_size; |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame^] | 514 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 515 | |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame^] | 516 | static __init unsigned read_aperture(struct pci_dev *dev, u32 *size) |
| 517 | { |
| 518 | unsigned aper_size = 0, aper_base_32, aper_order; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 519 | u64 aper_base; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 520 | |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame^] | 521 | pci_read_config_dword(dev, 0x94, &aper_base_32); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 522 | pci_read_config_dword(dev, 0x90, &aper_order); |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame^] | 523 | aper_order = (aper_order >> 1) & 7; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 524 | |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame^] | 525 | aper_base = aper_base_32 & 0x7fff; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 526 | aper_base <<= 25; |
| 527 | |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame^] | 528 | aper_size = (32 * 1024 * 1024) << aper_order; |
| 529 | if (aper_base + aper_size > 0x100000000UL || !aper_size) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 530 | aper_base = 0; |
| 531 | |
| 532 | *size = aper_size; |
| 533 | return aper_base; |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame^] | 534 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 535 | |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame^] | 536 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 537 | * Private Northbridge GATT initialization in case we cannot use the |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame^] | 538 | * AGP driver for some reason. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 539 | */ |
| 540 | static __init int init_k8_gatt(struct agp_kern_info *info) |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame^] | 541 | { |
| 542 | unsigned aper_size, gatt_size, new_aper_size; |
| 543 | unsigned aper_base, new_aper_base; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 544 | struct pci_dev *dev; |
| 545 | void *gatt; |
Andi Kleen | a32073b | 2006-06-26 13:56:40 +0200 | [diff] [blame] | 546 | int i; |
| 547 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 548 | printk(KERN_INFO "PCI-DMA: Disabling AGP.\n"); |
| 549 | aper_size = aper_base = info->aper_size = 0; |
Andi Kleen | a32073b | 2006-06-26 13:56:40 +0200 | [diff] [blame] | 550 | dev = NULL; |
| 551 | for (i = 0; i < num_k8_northbridges; i++) { |
| 552 | dev = k8_northbridges[i]; |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame^] | 553 | new_aper_base = read_aperture(dev, &new_aper_size); |
| 554 | if (!new_aper_base) |
| 555 | goto nommu; |
| 556 | |
| 557 | if (!aper_base) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 558 | aper_size = new_aper_size; |
| 559 | aper_base = new_aper_base; |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame^] | 560 | } |
| 561 | if (aper_size != new_aper_size || aper_base != new_aper_base) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 562 | goto nommu; |
| 563 | } |
| 564 | if (!aper_base) |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame^] | 565 | goto nommu; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 566 | info->aper_base = aper_base; |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame^] | 567 | info->aper_size = aper_size >> 20; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 568 | |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame^] | 569 | gatt_size = (aper_size >> PAGE_SHIFT) * sizeof(u32); |
| 570 | gatt = (void *)__get_free_pages(GFP_KERNEL, get_order(gatt_size)); |
| 571 | if (!gatt) |
Joachim Deguara | cf6387d | 2007-04-24 13:05:36 +0200 | [diff] [blame] | 572 | panic("Cannot allocate GATT table"); |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame^] | 573 | if (change_page_attr_addr((unsigned long)gatt, gatt_size >> PAGE_SHIFT, |
| 574 | PAGE_KERNEL_NOCACHE)) |
Joachim Deguara | cf6387d | 2007-04-24 13:05:36 +0200 | [diff] [blame] | 575 | panic("Could not set GART PTEs to uncacheable pages"); |
| 576 | global_flush_tlb(); |
| 577 | |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame^] | 578 | memset(gatt, 0, gatt_size); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 579 | agp_gatt_table = gatt; |
Andi Kleen | a32073b | 2006-06-26 13:56:40 +0200 | [diff] [blame] | 580 | |
| 581 | for (i = 0; i < num_k8_northbridges; i++) { |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame^] | 582 | u32 gatt_reg; |
| 583 | u32 ctl; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 584 | |
Andi Kleen | a32073b | 2006-06-26 13:56:40 +0200 | [diff] [blame] | 585 | dev = k8_northbridges[i]; |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame^] | 586 | gatt_reg = __pa(gatt) >> 12; |
| 587 | gatt_reg <<= 4; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 588 | pci_write_config_dword(dev, 0x98, gatt_reg); |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame^] | 589 | pci_read_config_dword(dev, 0x90, &ctl); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 590 | |
| 591 | ctl |= 1; |
| 592 | ctl &= ~((1<<4) | (1<<5)); |
| 593 | |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame^] | 594 | pci_write_config_dword(dev, 0x90, ctl); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 595 | } |
Andi Kleen | a32073b | 2006-06-26 13:56:40 +0200 | [diff] [blame] | 596 | flush_gart(); |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame^] | 597 | |
| 598 | printk(KERN_INFO "PCI-DMA: aperture base @ %x size %u KB\n", |
| 599 | aper_base, aper_size>>10); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 600 | return 0; |
| 601 | |
| 602 | nommu: |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame^] | 603 | /* Should not happen anymore */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 604 | printk(KERN_ERR "PCI-DMA: More than 4GB of RAM and no IOMMU\n" |
Andi Kleen | f46ace6 | 2006-01-11 22:43:27 +0100 | [diff] [blame] | 605 | KERN_ERR "PCI-DMA: 32bit PCI IO may malfunction.\n"); |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame^] | 606 | return -1; |
| 607 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 608 | |
| 609 | extern int agp_amd64_init(void); |
| 610 | |
Stephen Hemminger | e658450 | 2007-05-02 19:27:06 +0200 | [diff] [blame] | 611 | static const struct dma_mapping_ops gart_dma_ops = { |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame^] | 612 | .mapping_error = NULL, |
| 613 | .map_single = gart_map_single, |
| 614 | .map_simple = gart_map_simple, |
| 615 | .unmap_single = gart_unmap_single, |
| 616 | .sync_single_for_cpu = NULL, |
| 617 | .sync_single_for_device = NULL, |
| 618 | .sync_single_range_for_cpu = NULL, |
| 619 | .sync_single_range_for_device = NULL, |
| 620 | .sync_sg_for_cpu = NULL, |
| 621 | .sync_sg_for_device = NULL, |
| 622 | .map_sg = gart_map_sg, |
| 623 | .unmap_sg = gart_unmap_sg, |
Muli Ben-Yehuda | 17a941d | 2006-01-11 22:44:42 +0100 | [diff] [blame] | 624 | }; |
| 625 | |
Yinghai Lu | bc2cea6 | 2007-07-21 17:11:28 +0200 | [diff] [blame] | 626 | void gart_iommu_shutdown(void) |
| 627 | { |
| 628 | struct pci_dev *dev; |
| 629 | int i; |
| 630 | |
| 631 | if (no_agp && (dma_ops != &gart_dma_ops)) |
| 632 | return; |
| 633 | |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame^] | 634 | for (i = 0; i < num_k8_northbridges; i++) { |
| 635 | u32 ctl; |
Yinghai Lu | bc2cea6 | 2007-07-21 17:11:28 +0200 | [diff] [blame] | 636 | |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame^] | 637 | dev = k8_northbridges[i]; |
| 638 | pci_read_config_dword(dev, 0x90, &ctl); |
Yinghai Lu | bc2cea6 | 2007-07-21 17:11:28 +0200 | [diff] [blame] | 639 | |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame^] | 640 | ctl &= ~1; |
Yinghai Lu | bc2cea6 | 2007-07-21 17:11:28 +0200 | [diff] [blame] | 641 | |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame^] | 642 | pci_write_config_dword(dev, 0x90, ctl); |
| 643 | } |
Yinghai Lu | bc2cea6 | 2007-07-21 17:11:28 +0200 | [diff] [blame] | 644 | } |
| 645 | |
Jon Mason | 0dc243a | 2006-06-26 13:58:11 +0200 | [diff] [blame] | 646 | void __init gart_iommu_init(void) |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame^] | 647 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 648 | struct agp_kern_info info; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 649 | unsigned long iommu_start; |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame^] | 650 | unsigned long aper_size; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 651 | unsigned long scratch; |
| 652 | long i; |
| 653 | |
Andi Kleen | a32073b | 2006-06-26 13:56:40 +0200 | [diff] [blame] | 654 | if (cache_k8_northbridges() < 0 || num_k8_northbridges == 0) { |
| 655 | printk(KERN_INFO "PCI-GART: No AMD northbridge found.\n"); |
Jon Mason | 0dc243a | 2006-06-26 13:58:11 +0200 | [diff] [blame] | 656 | return; |
Andi Kleen | a32073b | 2006-06-26 13:56:40 +0200 | [diff] [blame] | 657 | } |
| 658 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 659 | #ifndef CONFIG_AGP_AMD64 |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame^] | 660 | no_agp = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 661 | #else |
| 662 | /* Makefile puts PCI initialization via subsys_initcall first. */ |
| 663 | /* Add other K8 AGP bridge drivers here */ |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame^] | 664 | no_agp = no_agp || |
| 665 | (agp_amd64_init() < 0) || |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 666 | (agp_copy_info(agp_bridge, &info) < 0); |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame^] | 667 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 668 | |
Jon Mason | 60b08c6 | 2006-02-26 04:18:22 +0100 | [diff] [blame] | 669 | if (swiotlb) |
Jon Mason | 0dc243a | 2006-06-26 13:58:11 +0200 | [diff] [blame] | 670 | return; |
Jon Mason | 60b08c6 | 2006-02-26 04:18:22 +0100 | [diff] [blame] | 671 | |
Jon Mason | 8d4f6b9 | 2006-06-26 13:58:05 +0200 | [diff] [blame] | 672 | /* Did we detect a different HW IOMMU? */ |
Joerg Roedel | 0440d4c | 2007-10-24 12:49:50 +0200 | [diff] [blame] | 673 | if (iommu_detected && !gart_iommu_aperture) |
Jon Mason | 0dc243a | 2006-06-26 13:58:11 +0200 | [diff] [blame] | 674 | return; |
Jon Mason | 8d4f6b9 | 2006-06-26 13:58:05 +0200 | [diff] [blame] | 675 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 676 | if (no_iommu || |
Muli Ben-Yehuda | 17a941d | 2006-01-11 22:44:42 +0100 | [diff] [blame] | 677 | (!force_iommu && end_pfn <= MAX_DMA32_PFN) || |
Joerg Roedel | 0440d4c | 2007-10-24 12:49:50 +0200 | [diff] [blame] | 678 | !gart_iommu_aperture || |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 679 | (no_agp && init_k8_gatt(&info) < 0)) { |
Jon Mason | 5b7b644 | 2006-02-03 21:51:59 +0100 | [diff] [blame] | 680 | if (end_pfn > MAX_DMA32_PFN) { |
| 681 | printk(KERN_ERR "WARNING more than 4GB of memory " |
Andi Kleen | 3807fd4 | 2006-12-07 02:14:13 +0100 | [diff] [blame] | 682 | "but GART IOMMU not available.\n" |
Andi Kleen | dc9a719 | 2006-05-30 22:47:48 +0200 | [diff] [blame] | 683 | KERN_ERR "WARNING 32bit PCI may malfunction.\n"); |
Jon Mason | 5b7b644 | 2006-02-03 21:51:59 +0100 | [diff] [blame] | 684 | } |
Jon Mason | 0dc243a | 2006-06-26 13:58:11 +0200 | [diff] [blame] | 685 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 686 | } |
| 687 | |
Jon Mason | 5b7b644 | 2006-02-03 21:51:59 +0100 | [diff] [blame] | 688 | printk(KERN_INFO "PCI-DMA: using GART IOMMU.\n"); |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame^] | 689 | aper_size = info.aper_size * 1024 * 1024; |
| 690 | iommu_size = check_iommu_size(info.aper_base, aper_size); |
| 691 | iommu_pages = iommu_size >> PAGE_SHIFT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 692 | |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame^] | 693 | iommu_gart_bitmap = (void *) __get_free_pages(GFP_KERNEL, |
| 694 | get_order(iommu_pages/8)); |
| 695 | if (!iommu_gart_bitmap) |
| 696 | panic("Cannot allocate iommu bitmap\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 697 | memset(iommu_gart_bitmap, 0, iommu_pages/8); |
| 698 | |
| 699 | #ifdef CONFIG_IOMMU_LEAK |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame^] | 700 | if (leak_trace) { |
| 701 | iommu_leak_tab = (void *)__get_free_pages(GFP_KERNEL, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 702 | get_order(iommu_pages*sizeof(void *))); |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame^] | 703 | if (iommu_leak_tab) |
| 704 | memset(iommu_leak_tab, 0, iommu_pages * 8); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 705 | else |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame^] | 706 | printk(KERN_DEBUG |
| 707 | "PCI-DMA: Cannot allocate leak trace area\n"); |
| 708 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 709 | #endif |
| 710 | |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame^] | 711 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 712 | * Out of IOMMU space handling. |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame^] | 713 | * Reserve some invalid pages at the beginning of the GART. |
| 714 | */ |
| 715 | set_bit_string(iommu_gart_bitmap, 0, EMERGENCY_PAGES); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 716 | |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame^] | 717 | agp_memory_reserved = iommu_size; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 718 | printk(KERN_INFO |
| 719 | "PCI-DMA: Reserving %luMB of IOMMU area in the AGP aperture\n", |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame^] | 720 | iommu_size >> 20); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 721 | |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame^] | 722 | iommu_start = aper_size - iommu_size; |
| 723 | iommu_bus_base = info.aper_base + iommu_start; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 724 | bad_dma_address = iommu_bus_base; |
| 725 | iommu_gatt_base = agp_gatt_table + (iommu_start>>PAGE_SHIFT); |
| 726 | |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame^] | 727 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 728 | * Unmap the IOMMU part of the GART. The alias of the page is |
| 729 | * always mapped with cache enabled and there is no full cache |
| 730 | * coherency across the GART remapping. The unmapping avoids |
| 731 | * automatic prefetches from the CPU allocating cache lines in |
| 732 | * there. All CPU accesses are done via the direct mapping to |
| 733 | * the backing memory. The GART address is only used by PCI |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame^] | 734 | * devices. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 735 | */ |
| 736 | clear_kernel_mapping((unsigned long)__va(iommu_bus_base), iommu_size); |
| 737 | |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame^] | 738 | /* |
| 739 | * Try to workaround a bug (thanks to BenH) |
| 740 | * Set unmapped entries to a scratch page instead of 0. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 741 | * Any prefetches that hit unmapped entries won't get an bus abort |
| 742 | * then. |
| 743 | */ |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame^] | 744 | scratch = get_zeroed_page(GFP_KERNEL); |
| 745 | if (!scratch) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 746 | panic("Cannot allocate iommu scratch page"); |
| 747 | gart_unmapped_entry = GPTE_ENCODE(__pa(scratch)); |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame^] | 748 | for (i = EMERGENCY_PAGES; i < iommu_pages; i++) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 749 | iommu_gatt_base[i] = gart_unmapped_entry; |
| 750 | |
Andi Kleen | a32073b | 2006-06-26 13:56:40 +0200 | [diff] [blame] | 751 | flush_gart(); |
Muli Ben-Yehuda | 17a941d | 2006-01-11 22:44:42 +0100 | [diff] [blame] | 752 | dma_ops = &gart_dma_ops; |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame^] | 753 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 754 | |
Sam Ravnborg | 43999d9 | 2007-03-16 21:07:36 +0100 | [diff] [blame] | 755 | void __init gart_parse_options(char *p) |
Muli Ben-Yehuda | 17a941d | 2006-01-11 22:44:42 +0100 | [diff] [blame] | 756 | { |
| 757 | int arg; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 758 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 759 | #ifdef CONFIG_IOMMU_LEAK |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame^] | 760 | if (!strncmp(p, "leak", 4)) { |
Muli Ben-Yehuda | 17a941d | 2006-01-11 22:44:42 +0100 | [diff] [blame] | 761 | leak_trace = 1; |
| 762 | p += 4; |
| 763 | if (*p == '=') ++p; |
| 764 | if (isdigit(*p) && get_option(&p, &arg)) |
| 765 | iommu_leak_pages = arg; |
| 766 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 767 | #endif |
Muli Ben-Yehuda | 17a941d | 2006-01-11 22:44:42 +0100 | [diff] [blame] | 768 | if (isdigit(*p) && get_option(&p, &arg)) |
| 769 | iommu_size = arg; |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame^] | 770 | if (!strncmp(p, "fullflush", 8)) |
Muli Ben-Yehuda | 17a941d | 2006-01-11 22:44:42 +0100 | [diff] [blame] | 771 | iommu_fullflush = 1; |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame^] | 772 | if (!strncmp(p, "nofullflush", 11)) |
Muli Ben-Yehuda | 17a941d | 2006-01-11 22:44:42 +0100 | [diff] [blame] | 773 | iommu_fullflush = 0; |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame^] | 774 | if (!strncmp(p, "noagp", 5)) |
Muli Ben-Yehuda | 17a941d | 2006-01-11 22:44:42 +0100 | [diff] [blame] | 775 | no_agp = 1; |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame^] | 776 | if (!strncmp(p, "noaperture", 10)) |
Muli Ben-Yehuda | 17a941d | 2006-01-11 22:44:42 +0100 | [diff] [blame] | 777 | fix_aperture = 0; |
| 778 | /* duplicated from pci-dma.c */ |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame^] | 779 | if (!strncmp(p, "force", 5)) |
Joerg Roedel | 0440d4c | 2007-10-24 12:49:50 +0200 | [diff] [blame] | 780 | gart_iommu_aperture_allowed = 1; |
Ingo Molnar | 05fccb0 | 2008-01-30 13:30:12 +0100 | [diff] [blame^] | 781 | if (!strncmp(p, "allowed", 7)) |
Joerg Roedel | 0440d4c | 2007-10-24 12:49:50 +0200 | [diff] [blame] | 782 | gart_iommu_aperture_allowed = 1; |
Muli Ben-Yehuda | 17a941d | 2006-01-11 22:44:42 +0100 | [diff] [blame] | 783 | if (!strncmp(p, "memaper", 7)) { |
| 784 | fallback_aper_force = 1; |
| 785 | p += 7; |
| 786 | if (*p == '=') { |
| 787 | ++p; |
| 788 | if (get_option(&p, &arg)) |
| 789 | fallback_aper_order = arg; |
| 790 | } |
| 791 | } |
| 792 | } |