blob: cfcc84e6c350886f8fe19db070511ce950afa3cb [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Dynamic DMA mapping support for AMD Hammer.
3 *
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
6 * with more than 4GB.
7 *
8 * See Documentation/DMA-mapping.txt for the interface specification.
9 *
10 * Copyright 2002 Andi Kleen, SuSE Labs.
11 */
12
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <linux/types.h>
14#include <linux/ctype.h>
15#include <linux/agp_backend.h>
16#include <linux/init.h>
17#include <linux/mm.h>
18#include <linux/string.h>
19#include <linux/spinlock.h>
20#include <linux/pci.h>
21#include <linux/module.h>
22#include <linux/topology.h>
23#include <linux/interrupt.h>
24#include <linux/bitops.h>
Christoph Hellwig1eeb66a2007-05-08 00:27:03 -070025#include <linux/kdebug.h>
Jens Axboe9ee1bea2007-10-04 09:35:37 +020026#include <linux/scatterlist.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include <asm/atomic.h>
28#include <asm/io.h>
29#include <asm/mtrr.h>
30#include <asm/pgtable.h>
31#include <asm/proto.h>
Yinghai Luf2cf8e02007-07-21 17:11:31 +020032#include <asm/iommu.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include <asm/cacheflush.h>
Muli Ben-Yehuda17a941d2006-01-11 22:44:42 +010034#include <asm/swiotlb.h>
35#include <asm/dma.h>
Andi Kleena32073b2006-06-26 13:56:40 +020036#include <asm/k8.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
38unsigned long iommu_bus_base; /* GART remapping area (physical) */
39static unsigned long iommu_size; /* size of remapping area bytes */
40static unsigned long iommu_pages; /* .. and in pages */
41
42u32 *iommu_gatt_base; /* Remapping table */
43
Linus Torvalds1da177e2005-04-16 15:20:36 -070044/* If this is disabled the IOMMU will use an optimized flushing strategy
45 of only flushing when an mapping is reused. With it true the GART is flushed
46 for every mapping. Problem is that doing the lazy flush seems to trigger
47 bugs with some popular PCI cards, in particular 3ware (but has been also
48 also seen with Qlogic at least). */
49int iommu_fullflush = 1;
50
Linus Torvalds1da177e2005-04-16 15:20:36 -070051/* Allocation bitmap for the remapping area */
52static DEFINE_SPINLOCK(iommu_bitmap_lock);
53static unsigned long *iommu_gart_bitmap; /* guarded by iommu_bitmap_lock */
54
55static u32 gart_unmapped_entry;
56
57#define GPTE_VALID 1
58#define GPTE_COHERENT 2
59#define GPTE_ENCODE(x) \
60 (((x) & 0xfffff000) | (((x) >> 32) << 4) | GPTE_VALID | GPTE_COHERENT)
61#define GPTE_DECODE(x) (((x) & 0xfffff000) | (((u64)(x) & 0xff0) << 28))
62
63#define to_pages(addr,size) \
64 (round_up(((addr) & ~PAGE_MASK) + (size), PAGE_SIZE) >> PAGE_SHIFT)
65
Linus Torvalds1da177e2005-04-16 15:20:36 -070066#define EMERGENCY_PAGES 32 /* = 128KB */
67
68#ifdef CONFIG_AGP
69#define AGPEXTERN extern
70#else
71#define AGPEXTERN
72#endif
73
74/* backdoor interface to AGP driver */
75AGPEXTERN int agp_memory_reserved;
76AGPEXTERN __u32 *agp_gatt_table;
77
78static unsigned long next_bit; /* protected by iommu_bitmap_lock */
79static int need_flush; /* global flush state. set for each gart wrap */
Linus Torvalds1da177e2005-04-16 15:20:36 -070080
81static unsigned long alloc_iommu(int size)
82{
83 unsigned long offset, flags;
84
85 spin_lock_irqsave(&iommu_bitmap_lock, flags);
86 offset = find_next_zero_string(iommu_gart_bitmap,next_bit,iommu_pages,size);
87 if (offset == -1) {
88 need_flush = 1;
Mike Waychisonf5adc9c2006-06-26 13:56:31 +020089 offset = find_next_zero_string(iommu_gart_bitmap,0,iommu_pages,size);
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 }
91 if (offset != -1) {
92 set_bit_string(iommu_gart_bitmap, offset, size);
93 next_bit = offset+size;
94 if (next_bit >= iommu_pages) {
95 next_bit = 0;
96 need_flush = 1;
97 }
98 }
99 if (iommu_fullflush)
100 need_flush = 1;
101 spin_unlock_irqrestore(&iommu_bitmap_lock, flags);
102 return offset;
103}
104
105static void free_iommu(unsigned long offset, int size)
106{
107 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 spin_lock_irqsave(&iommu_bitmap_lock, flags);
109 __clear_bit_string(iommu_gart_bitmap, offset, size);
110 spin_unlock_irqrestore(&iommu_bitmap_lock, flags);
111}
112
113/*
114 * Use global flush state to avoid races with multiple flushers.
115 */
Andi Kleena32073b2006-06-26 13:56:40 +0200116static void flush_gart(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117{
118 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 spin_lock_irqsave(&iommu_bitmap_lock, flags);
Andi Kleena32073b2006-06-26 13:56:40 +0200120 if (need_flush) {
121 k8_flush_garts();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 need_flush = 0;
123 }
124 spin_unlock_irqrestore(&iommu_bitmap_lock, flags);
125}
126
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127#ifdef CONFIG_IOMMU_LEAK
128
129#define SET_LEAK(x) if (iommu_leak_tab) \
130 iommu_leak_tab[x] = __builtin_return_address(0);
131#define CLEAR_LEAK(x) if (iommu_leak_tab) \
132 iommu_leak_tab[x] = NULL;
133
134/* Debugging aid for drivers that don't free their IOMMU tables */
135static void **iommu_leak_tab;
136static int leak_trace;
137int iommu_leak_pages = 20;
138void dump_leak(void)
139{
140 int i;
141 static int dump;
142 if (dump || !iommu_leak_tab) return;
143 dump = 1;
144 show_stack(NULL,NULL);
145 /* Very crude. dump some from the end of the table too */
146 printk("Dumping %d pages from end of IOMMU:\n", iommu_leak_pages);
147 for (i = 0; i < iommu_leak_pages; i+=2) {
148 printk("%lu: ", iommu_pages-i);
149 printk_address((unsigned long) iommu_leak_tab[iommu_pages-i]);
150 printk("%c", (i+1)%2 == 0 ? '\n' : ' ');
151 }
152 printk("\n");
153}
154#else
155#define SET_LEAK(x)
156#define CLEAR_LEAK(x)
157#endif
158
Muli Ben-Yehuda17a941d2006-01-11 22:44:42 +0100159static void iommu_full(struct device *dev, size_t size, int dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160{
161 /*
162 * Ran out of IOMMU space for this operation. This is very bad.
163 * Unfortunately the drivers cannot handle this operation properly.
164 * Return some non mapped prereserved space in the aperture and
165 * let the Northbridge deal with it. This will result in garbage
166 * in the IO operation. When the size exceeds the prereserved space
167 * memory corruption will occur or random memory will be DMAed
168 * out. Hopefully no network devices use single mappings that big.
169 */
170
171 printk(KERN_ERR
172 "PCI-DMA: Out of IOMMU space for %lu bytes at device %s\n",
173 size, dev->bus_id);
174
Muli Ben-Yehuda17a941d2006-01-11 22:44:42 +0100175 if (size > PAGE_SIZE*EMERGENCY_PAGES) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 if (dir == PCI_DMA_FROMDEVICE || dir == PCI_DMA_BIDIRECTIONAL)
177 panic("PCI-DMA: Memory would be corrupted\n");
178 if (dir == PCI_DMA_TODEVICE || dir == PCI_DMA_BIDIRECTIONAL)
Muli Ben-Yehuda17a941d2006-01-11 22:44:42 +0100179 panic(KERN_ERR "PCI-DMA: Random memory would be DMAed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 }
181
182#ifdef CONFIG_IOMMU_LEAK
183 dump_leak();
184#endif
185}
186
187static inline int need_iommu(struct device *dev, unsigned long addr, size_t size)
188{
189 u64 mask = *dev->dma_mask;
Andi Kleen00edefa2007-02-13 13:26:24 +0100190 int high = addr + size > mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 int mmu = high;
192 if (force_iommu)
193 mmu = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 return mmu;
195}
196
197static inline int nonforced_iommu(struct device *dev, unsigned long addr, size_t size)
198{
199 u64 mask = *dev->dma_mask;
Andi Kleen00edefa2007-02-13 13:26:24 +0100200 int high = addr + size > mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 int mmu = high;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 return mmu;
203}
204
205/* Map a single continuous physical area into the IOMMU.
206 * Caller needs to check if the iommu is needed and flush.
207 */
Muli Ben-Yehuda17a941d2006-01-11 22:44:42 +0100208static dma_addr_t dma_map_area(struct device *dev, dma_addr_t phys_mem,
209 size_t size, int dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210{
211 unsigned long npages = to_pages(phys_mem, size);
212 unsigned long iommu_page = alloc_iommu(npages);
213 int i;
214 if (iommu_page == -1) {
215 if (!nonforced_iommu(dev, phys_mem, size))
216 return phys_mem;
217 if (panic_on_overflow)
218 panic("dma_map_area overflow %lu bytes\n", size);
Muli Ben-Yehuda17a941d2006-01-11 22:44:42 +0100219 iommu_full(dev, size, dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 return bad_dma_address;
221 }
222
223 for (i = 0; i < npages; i++) {
224 iommu_gatt_base[iommu_page + i] = GPTE_ENCODE(phys_mem);
225 SET_LEAK(iommu_page + i);
226 phys_mem += PAGE_SIZE;
227 }
228 return iommu_bus_base + iommu_page*PAGE_SIZE + (phys_mem & ~PAGE_MASK);
229}
230
Muli Ben-Yehuda17a941d2006-01-11 22:44:42 +0100231static dma_addr_t gart_map_simple(struct device *dev, char *buf,
232 size_t size, int dir)
233{
234 dma_addr_t map = dma_map_area(dev, virt_to_bus(buf), size, dir);
Andi Kleena32073b2006-06-26 13:56:40 +0200235 flush_gart();
Muli Ben-Yehuda17a941d2006-01-11 22:44:42 +0100236 return map;
237}
238
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239/* Map a single area into the IOMMU */
Yinghai Lu1048fa52007-07-21 17:11:23 +0200240static dma_addr_t gart_map_single(struct device *dev, void *addr, size_t size, int dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241{
242 unsigned long phys_mem, bus;
243
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 if (!dev)
245 dev = &fallback_dev;
246
247 phys_mem = virt_to_phys(addr);
248 if (!need_iommu(dev, phys_mem, size))
249 return phys_mem;
250
Muli Ben-Yehuda17a941d2006-01-11 22:44:42 +0100251 bus = gart_map_simple(dev, addr, size, dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 return bus;
Muli Ben-Yehuda17a941d2006-01-11 22:44:42 +0100253}
254
255/*
Jon Mason7c2d9cd2006-06-26 13:56:37 +0200256 * Free a DMA mapping.
257 */
Yinghai Lu1048fa52007-07-21 17:11:23 +0200258static void gart_unmap_single(struct device *dev, dma_addr_t dma_addr,
Jon Mason7c2d9cd2006-06-26 13:56:37 +0200259 size_t size, int direction)
260{
261 unsigned long iommu_page;
262 int npages;
263 int i;
264
265 if (dma_addr < iommu_bus_base + EMERGENCY_PAGES*PAGE_SIZE ||
266 dma_addr >= iommu_bus_base + iommu_size)
267 return;
268 iommu_page = (dma_addr - iommu_bus_base)>>PAGE_SHIFT;
269 npages = to_pages(dma_addr, size);
270 for (i = 0; i < npages; i++) {
271 iommu_gatt_base[iommu_page + i] = gart_unmapped_entry;
272 CLEAR_LEAK(iommu_page + i);
273 }
274 free_iommu(iommu_page, npages);
275}
276
277/*
Muli Ben-Yehuda17a941d2006-01-11 22:44:42 +0100278 * Wrapper for pci_unmap_single working with scatterlists.
279 */
Yinghai Lu1048fa52007-07-21 17:11:23 +0200280static void gart_unmap_sg(struct device *dev, struct scatterlist *sg, int nents, int dir)
Muli Ben-Yehuda17a941d2006-01-11 22:44:42 +0100281{
Jens Axboe9ee1bea2007-10-04 09:35:37 +0200282 struct scatterlist *s;
Muli Ben-Yehuda17a941d2006-01-11 22:44:42 +0100283 int i;
284
Jens Axboe9ee1bea2007-10-04 09:35:37 +0200285 for_each_sg(sg, s, nents, i) {
Jon Mason60b08c62006-02-26 04:18:22 +0100286 if (!s->dma_length || !s->length)
Muli Ben-Yehuda17a941d2006-01-11 22:44:42 +0100287 break;
Jon Mason7c2d9cd2006-06-26 13:56:37 +0200288 gart_unmap_single(dev, s->dma_address, s->dma_length, dir);
Muli Ben-Yehuda17a941d2006-01-11 22:44:42 +0100289 }
290}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291
292/* Fallback for dma_map_sg in case of overflow */
293static int dma_map_sg_nonforce(struct device *dev, struct scatterlist *sg,
294 int nents, int dir)
295{
Jens Axboe9ee1bea2007-10-04 09:35:37 +0200296 struct scatterlist *s;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 int i;
298
299#ifdef CONFIG_IOMMU_DEBUG
300 printk(KERN_DEBUG "dma_map_sg overflow\n");
301#endif
302
Jens Axboe9ee1bea2007-10-04 09:35:37 +0200303 for_each_sg(sg, s, nents, i) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 unsigned long addr = page_to_phys(s->page) + s->offset;
305 if (nonforced_iommu(dev, addr, s->length)) {
Muli Ben-Yehuda17a941d2006-01-11 22:44:42 +0100306 addr = dma_map_area(dev, addr, s->length, dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 if (addr == bad_dma_address) {
308 if (i > 0)
Muli Ben-Yehuda17a941d2006-01-11 22:44:42 +0100309 gart_unmap_sg(dev, sg, i, dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 nents = 0;
311 sg[0].dma_length = 0;
312 break;
313 }
314 }
315 s->dma_address = addr;
316 s->dma_length = s->length;
317 }
Andi Kleena32073b2006-06-26 13:56:40 +0200318 flush_gart();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 return nents;
320}
321
322/* Map multiple scatterlist entries continuous into the first. */
Jens Axboe9ee1bea2007-10-04 09:35:37 +0200323static int __dma_map_cont(struct scatterlist *start, int nelems,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 struct scatterlist *sout, unsigned long pages)
325{
326 unsigned long iommu_start = alloc_iommu(pages);
327 unsigned long iommu_page = iommu_start;
Jens Axboe9ee1bea2007-10-04 09:35:37 +0200328 struct scatterlist *s;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 int i;
330
331 if (iommu_start == -1)
332 return -1;
Jens Axboe9ee1bea2007-10-04 09:35:37 +0200333
334 for_each_sg(start, s, nelems, i) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 unsigned long pages, addr;
336 unsigned long phys_addr = s->dma_address;
337
Jens Axboe9ee1bea2007-10-04 09:35:37 +0200338 BUG_ON(s != start && s->offset);
339 if (s == start) {
Jon Mason60b08c62006-02-26 04:18:22 +0100340 *sout = *s;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 sout->dma_address = iommu_bus_base;
342 sout->dma_address += iommu_page*PAGE_SIZE + s->offset;
343 sout->dma_length = s->length;
344 } else {
345 sout->dma_length += s->length;
346 }
347
348 addr = phys_addr;
349 pages = to_pages(s->offset, s->length);
350 while (pages--) {
351 iommu_gatt_base[iommu_page] = GPTE_ENCODE(addr);
352 SET_LEAK(iommu_page);
353 addr += PAGE_SIZE;
354 iommu_page++;
Andi Kleen0d5410642006-02-12 14:34:59 -0800355 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 }
357 BUG_ON(iommu_page - iommu_start != pages);
358 return 0;
359}
360
Jens Axboe9ee1bea2007-10-04 09:35:37 +0200361static inline int dma_map_cont(struct scatterlist *start, int nelems,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 struct scatterlist *sout,
363 unsigned long pages, int need)
364{
Jens Axboe9ee1bea2007-10-04 09:35:37 +0200365 if (!need) {
366 BUG_ON(nelems != 1);
367 *sout = *start;
368 sout->dma_length = start->length;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 return 0;
Jens Axboe9ee1bea2007-10-04 09:35:37 +0200370 }
371 return __dma_map_cont(start, nelems, sout, pages);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372}
373
374/*
375 * DMA map all entries in a scatterlist.
376 * Merge chunks that have page aligned sizes into a continuous mapping.
377 */
Muli Ben-Yehuda17a941d2006-01-11 22:44:42 +0100378int gart_map_sg(struct device *dev, struct scatterlist *sg, int nents, int dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379{
380 int i;
381 int out;
382 int start;
383 unsigned long pages = 0;
384 int need = 0, nextneed;
Jens Axboe9ee1bea2007-10-04 09:35:37 +0200385 struct scatterlist *s, *ps, *start_sg, *sgmap;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 if (nents == 0)
388 return 0;
389
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 if (!dev)
391 dev = &fallback_dev;
392
393 out = 0;
394 start = 0;
Jens Axboe9ee1bea2007-10-04 09:35:37 +0200395 start_sg = sgmap = sg;
396 ps = NULL; /* shut up gcc */
397 for_each_sg(sg, s, nents, i) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 dma_addr_t addr = page_to_phys(s->page) + s->offset;
399 s->dma_address = addr;
400 BUG_ON(s->length == 0);
401
402 nextneed = need_iommu(dev, addr, s->length);
403
404 /* Handle the previous not yet processed entries */
405 if (i > start) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 /* Can only merge when the last chunk ends on a page
407 boundary and the new one doesn't have an offset. */
408 if (!iommu_merge || !nextneed || !need || s->offset ||
Jens Axboe9ee1bea2007-10-04 09:35:37 +0200409 (ps->offset + ps->length) % PAGE_SIZE) {
410 if (dma_map_cont(start_sg, i - start, sgmap,
411 pages, need) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 goto error;
413 out++;
Jens Axboe9ee1bea2007-10-04 09:35:37 +0200414 sgmap = sg_next(sgmap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 pages = 0;
Jens Axboe9ee1bea2007-10-04 09:35:37 +0200416 start = i;
417 start_sg = s;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 }
419 }
420
421 need = nextneed;
422 pages += to_pages(s->offset, s->length);
Jens Axboe9ee1bea2007-10-04 09:35:37 +0200423 ps = s;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 }
Jens Axboe9ee1bea2007-10-04 09:35:37 +0200425 if (dma_map_cont(start_sg, i - start, sgmap, pages, need) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 goto error;
427 out++;
Andi Kleena32073b2006-06-26 13:56:40 +0200428 flush_gart();
Jens Axboe9ee1bea2007-10-04 09:35:37 +0200429 if (out < nents) {
430 sgmap = sg_next(sgmap);
431 sgmap->dma_length = 0;
432 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 return out;
434
435error:
Andi Kleena32073b2006-06-26 13:56:40 +0200436 flush_gart();
Muli Ben-Yehuda17a941d2006-01-11 22:44:42 +0100437 gart_unmap_sg(dev, sg, nents, dir);
Kevin VanMarena1002a42006-02-03 21:51:32 +0100438 /* When it was forced or merged try again in a dumb way */
439 if (force_iommu || iommu_merge) {
440 out = dma_map_sg_nonforce(dev, sg, nents, dir);
441 if (out > 0)
442 return out;
443 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 if (panic_on_overflow)
445 panic("dma_map_sg: overflow on %lu pages\n", pages);
Muli Ben-Yehuda17a941d2006-01-11 22:44:42 +0100446 iommu_full(dev, pages << PAGE_SHIFT, dir);
Jens Axboe9ee1bea2007-10-04 09:35:37 +0200447 for_each_sg(sg, s, nents, i)
448 s->dma_address = bad_dma_address;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 return 0;
450}
451
Muli Ben-Yehuda17a941d2006-01-11 22:44:42 +0100452static int no_agp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453
454static __init unsigned long check_iommu_size(unsigned long aper, u64 aper_size)
455{
456 unsigned long a;
457 if (!iommu_size) {
458 iommu_size = aper_size;
459 if (!no_agp)
460 iommu_size /= 2;
461 }
462
463 a = aper + iommu_size;
464 iommu_size -= round_up(a, LARGE_PAGE_SIZE) - a;
465
466 if (iommu_size < 64*1024*1024)
467 printk(KERN_WARNING
468 "PCI-DMA: Warning: Small IOMMU %luMB. Consider increasing the AGP aperture in BIOS\n",iommu_size>>20);
469
470 return iommu_size;
471}
472
473static __init unsigned read_aperture(struct pci_dev *dev, u32 *size)
474{
475 unsigned aper_size = 0, aper_base_32;
476 u64 aper_base;
477 unsigned aper_order;
478
479 pci_read_config_dword(dev, 0x94, &aper_base_32);
480 pci_read_config_dword(dev, 0x90, &aper_order);
481 aper_order = (aper_order >> 1) & 7;
482
483 aper_base = aper_base_32 & 0x7fff;
484 aper_base <<= 25;
485
486 aper_size = (32 * 1024 * 1024) << aper_order;
Andrew Hastings547c5352007-05-11 11:23:19 +0200487 if (aper_base + aper_size > 0x100000000UL || !aper_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 aper_base = 0;
489
490 *size = aper_size;
491 return aper_base;
492}
493
494/*
495 * Private Northbridge GATT initialization in case we cannot use the
496 * AGP driver for some reason.
497 */
498static __init int init_k8_gatt(struct agp_kern_info *info)
499{
500 struct pci_dev *dev;
501 void *gatt;
502 unsigned aper_base, new_aper_base;
503 unsigned aper_size, gatt_size, new_aper_size;
Andi Kleena32073b2006-06-26 13:56:40 +0200504 int i;
505
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 printk(KERN_INFO "PCI-DMA: Disabling AGP.\n");
507 aper_size = aper_base = info->aper_size = 0;
Andi Kleena32073b2006-06-26 13:56:40 +0200508 dev = NULL;
509 for (i = 0; i < num_k8_northbridges; i++) {
510 dev = k8_northbridges[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 new_aper_base = read_aperture(dev, &new_aper_size);
512 if (!new_aper_base)
513 goto nommu;
514
515 if (!aper_base) {
516 aper_size = new_aper_size;
517 aper_base = new_aper_base;
518 }
519 if (aper_size != new_aper_size || aper_base != new_aper_base)
520 goto nommu;
521 }
522 if (!aper_base)
523 goto nommu;
524 info->aper_base = aper_base;
525 info->aper_size = aper_size>>20;
526
527 gatt_size = (aper_size >> PAGE_SHIFT) * sizeof(u32);
528 gatt = (void *)__get_free_pages(GFP_KERNEL, get_order(gatt_size));
529 if (!gatt)
Joachim Deguaracf6387d2007-04-24 13:05:36 +0200530 panic("Cannot allocate GATT table");
531 if (change_page_attr_addr((unsigned long)gatt, gatt_size >> PAGE_SHIFT, PAGE_KERNEL_NOCACHE))
532 panic("Could not set GART PTEs to uncacheable pages");
533 global_flush_tlb();
534
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 memset(gatt, 0, gatt_size);
536 agp_gatt_table = gatt;
Andi Kleena32073b2006-06-26 13:56:40 +0200537
538 for (i = 0; i < num_k8_northbridges; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 u32 ctl;
540 u32 gatt_reg;
541
Andi Kleena32073b2006-06-26 13:56:40 +0200542 dev = k8_northbridges[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 gatt_reg = __pa(gatt) >> 12;
544 gatt_reg <<= 4;
545 pci_write_config_dword(dev, 0x98, gatt_reg);
546 pci_read_config_dword(dev, 0x90, &ctl);
547
548 ctl |= 1;
549 ctl &= ~((1<<4) | (1<<5));
550
551 pci_write_config_dword(dev, 0x90, ctl);
552 }
Andi Kleena32073b2006-06-26 13:56:40 +0200553 flush_gart();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554
555 printk("PCI-DMA: aperture base @ %x size %u KB\n",aper_base, aper_size>>10);
556 return 0;
557
558 nommu:
559 /* Should not happen anymore */
560 printk(KERN_ERR "PCI-DMA: More than 4GB of RAM and no IOMMU\n"
Andi Kleenf46ace62006-01-11 22:43:27 +0100561 KERN_ERR "PCI-DMA: 32bit PCI IO may malfunction.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 return -1;
563}
564
565extern int agp_amd64_init(void);
566
Stephen Hemmingere6584502007-05-02 19:27:06 +0200567static const struct dma_mapping_ops gart_dma_ops = {
Muli Ben-Yehuda17a941d2006-01-11 22:44:42 +0100568 .mapping_error = NULL,
569 .map_single = gart_map_single,
570 .map_simple = gart_map_simple,
571 .unmap_single = gart_unmap_single,
572 .sync_single_for_cpu = NULL,
573 .sync_single_for_device = NULL,
574 .sync_single_range_for_cpu = NULL,
575 .sync_single_range_for_device = NULL,
576 .sync_sg_for_cpu = NULL,
577 .sync_sg_for_device = NULL,
578 .map_sg = gart_map_sg,
579 .unmap_sg = gart_unmap_sg,
580};
581
Yinghai Lubc2cea62007-07-21 17:11:28 +0200582void gart_iommu_shutdown(void)
583{
584 struct pci_dev *dev;
585 int i;
586
587 if (no_agp && (dma_ops != &gart_dma_ops))
588 return;
589
590 for (i = 0; i < num_k8_northbridges; i++) {
591 u32 ctl;
592
593 dev = k8_northbridges[i];
594 pci_read_config_dword(dev, 0x90, &ctl);
595
596 ctl &= ~1;
597
598 pci_write_config_dword(dev, 0x90, ctl);
599 }
600}
601
Jon Mason0dc243a2006-06-26 13:58:11 +0200602void __init gart_iommu_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603{
604 struct agp_kern_info info;
605 unsigned long aper_size;
606 unsigned long iommu_start;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 unsigned long scratch;
608 long i;
609
Andi Kleena32073b2006-06-26 13:56:40 +0200610 if (cache_k8_northbridges() < 0 || num_k8_northbridges == 0) {
611 printk(KERN_INFO "PCI-GART: No AMD northbridge found.\n");
Jon Mason0dc243a2006-06-26 13:58:11 +0200612 return;
Andi Kleena32073b2006-06-26 13:56:40 +0200613 }
614
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615#ifndef CONFIG_AGP_AMD64
616 no_agp = 1;
617#else
618 /* Makefile puts PCI initialization via subsys_initcall first. */
619 /* Add other K8 AGP bridge drivers here */
620 no_agp = no_agp ||
621 (agp_amd64_init() < 0) ||
622 (agp_copy_info(agp_bridge, &info) < 0);
623#endif
624
Jon Mason60b08c62006-02-26 04:18:22 +0100625 if (swiotlb)
Jon Mason0dc243a2006-06-26 13:58:11 +0200626 return;
Jon Mason60b08c62006-02-26 04:18:22 +0100627
Jon Mason8d4f6b92006-06-26 13:58:05 +0200628 /* Did we detect a different HW IOMMU? */
629 if (iommu_detected && !iommu_aperture)
Jon Mason0dc243a2006-06-26 13:58:11 +0200630 return;
Jon Mason8d4f6b92006-06-26 13:58:05 +0200631
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 if (no_iommu ||
Muli Ben-Yehuda17a941d2006-01-11 22:44:42 +0100633 (!force_iommu && end_pfn <= MAX_DMA32_PFN) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 !iommu_aperture ||
635 (no_agp && init_k8_gatt(&info) < 0)) {
Jon Mason5b7b6442006-02-03 21:51:59 +0100636 if (end_pfn > MAX_DMA32_PFN) {
637 printk(KERN_ERR "WARNING more than 4GB of memory "
Andi Kleen3807fd42006-12-07 02:14:13 +0100638 "but GART IOMMU not available.\n"
Andi Kleendc9a7192006-05-30 22:47:48 +0200639 KERN_ERR "WARNING 32bit PCI may malfunction.\n");
Jon Mason5b7b6442006-02-03 21:51:59 +0100640 }
Jon Mason0dc243a2006-06-26 13:58:11 +0200641 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 }
643
Jon Mason5b7b6442006-02-03 21:51:59 +0100644 printk(KERN_INFO "PCI-DMA: using GART IOMMU.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 aper_size = info.aper_size * 1024 * 1024;
646 iommu_size = check_iommu_size(info.aper_base, aper_size);
647 iommu_pages = iommu_size >> PAGE_SHIFT;
648
649 iommu_gart_bitmap = (void*)__get_free_pages(GFP_KERNEL,
650 get_order(iommu_pages/8));
651 if (!iommu_gart_bitmap)
652 panic("Cannot allocate iommu bitmap\n");
653 memset(iommu_gart_bitmap, 0, iommu_pages/8);
654
655#ifdef CONFIG_IOMMU_LEAK
656 if (leak_trace) {
657 iommu_leak_tab = (void *)__get_free_pages(GFP_KERNEL,
658 get_order(iommu_pages*sizeof(void *)));
659 if (iommu_leak_tab)
660 memset(iommu_leak_tab, 0, iommu_pages * 8);
661 else
662 printk("PCI-DMA: Cannot allocate leak trace area\n");
663 }
664#endif
665
666 /*
667 * Out of IOMMU space handling.
668 * Reserve some invalid pages at the beginning of the GART.
669 */
670 set_bit_string(iommu_gart_bitmap, 0, EMERGENCY_PAGES);
671
672 agp_memory_reserved = iommu_size;
673 printk(KERN_INFO
674 "PCI-DMA: Reserving %luMB of IOMMU area in the AGP aperture\n",
675 iommu_size>>20);
676
677 iommu_start = aper_size - iommu_size;
678 iommu_bus_base = info.aper_base + iommu_start;
679 bad_dma_address = iommu_bus_base;
680 iommu_gatt_base = agp_gatt_table + (iommu_start>>PAGE_SHIFT);
681
682 /*
683 * Unmap the IOMMU part of the GART. The alias of the page is
684 * always mapped with cache enabled and there is no full cache
685 * coherency across the GART remapping. The unmapping avoids
686 * automatic prefetches from the CPU allocating cache lines in
687 * there. All CPU accesses are done via the direct mapping to
688 * the backing memory. The GART address is only used by PCI
689 * devices.
690 */
691 clear_kernel_mapping((unsigned long)__va(iommu_bus_base), iommu_size);
692
693 /*
694 * Try to workaround a bug (thanks to BenH)
695 * Set unmapped entries to a scratch page instead of 0.
696 * Any prefetches that hit unmapped entries won't get an bus abort
697 * then.
698 */
699 scratch = get_zeroed_page(GFP_KERNEL);
700 if (!scratch)
701 panic("Cannot allocate iommu scratch page");
702 gart_unmapped_entry = GPTE_ENCODE(__pa(scratch));
703 for (i = EMERGENCY_PAGES; i < iommu_pages; i++)
704 iommu_gatt_base[i] = gart_unmapped_entry;
705
Andi Kleena32073b2006-06-26 13:56:40 +0200706 flush_gart();
Muli Ben-Yehuda17a941d2006-01-11 22:44:42 +0100707 dma_ops = &gart_dma_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708}
709
Sam Ravnborg43999d92007-03-16 21:07:36 +0100710void __init gart_parse_options(char *p)
Muli Ben-Yehuda17a941d2006-01-11 22:44:42 +0100711{
712 int arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714#ifdef CONFIG_IOMMU_LEAK
Muli Ben-Yehuda17a941d2006-01-11 22:44:42 +0100715 if (!strncmp(p,"leak",4)) {
716 leak_trace = 1;
717 p += 4;
718 if (*p == '=') ++p;
719 if (isdigit(*p) && get_option(&p, &arg))
720 iommu_leak_pages = arg;
721 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722#endif
Muli Ben-Yehuda17a941d2006-01-11 22:44:42 +0100723 if (isdigit(*p) && get_option(&p, &arg))
724 iommu_size = arg;
725 if (!strncmp(p, "fullflush",8))
726 iommu_fullflush = 1;
727 if (!strncmp(p, "nofullflush",11))
728 iommu_fullflush = 0;
729 if (!strncmp(p,"noagp",5))
730 no_agp = 1;
731 if (!strncmp(p, "noaperture",10))
732 fix_aperture = 0;
733 /* duplicated from pci-dma.c */
734 if (!strncmp(p,"force",5))
735 iommu_aperture_allowed = 1;
736 if (!strncmp(p,"allowed",7))
737 iommu_aperture_allowed = 1;
738 if (!strncmp(p, "memaper", 7)) {
739 fallback_aper_force = 1;
740 p += 7;
741 if (*p == '=') {
742 ++p;
743 if (get_option(&p, &arg))
744 fallback_aper_order = arg;
745 }
746 }
747}