blob: 3dcb1ad86e389faf8a0bbd7af1918c921b8c4c96 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Dynamic DMA mapping support for AMD Hammer.
Ingo Molnar05fccb02008-01-30 13:30:12 +01003 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 * 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 Molnar05fccb02008-01-30 13:30:12 +01006 * with more than 4GB.
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 *
8 * See Documentation/DMA-mapping.txt for the interface specification.
Ingo Molnar05fccb02008-01-30 13:30:12 +01009 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070010 * Copyright 2002 Andi Kleen, SuSE Labs.
Andi Kleenff7f3642007-10-17 18:04:37 +020011 * Subject to the GNU General Public License v2 only.
Linus Torvalds1da177e2005-04-16 15:20:36 -070012 */
13
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#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 Hellwig1eeb66a2007-05-08 00:27:03 -070026#include <linux/kdebug.h>
Jens Axboe9ee1bea2007-10-04 09:35:37 +020027#include <linux/scatterlist.h>
FUJITA Tomonorifde9a102008-02-04 22:28:11 -080028#include <linux/iommu-helper.h>
Pavel Machekcd763742008-05-29 00:30:21 -070029#include <linux/sysdev.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <asm/atomic.h>
31#include <asm/io.h>
32#include <asm/mtrr.h>
33#include <asm/pgtable.h>
34#include <asm/proto.h>
FUJITA Tomonori46a7fa22008-07-11 10:23:42 +090035#include <asm/iommu.h>
Joerg Roedel395624f2007-10-24 12:49:47 +020036#include <asm/gart.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#include <asm/cacheflush.h>
Muli Ben-Yehuda17a941d2006-01-11 22:44:42 +010038#include <asm/swiotlb.h>
39#include <asm/dma.h>
Andi Kleena32073b2006-06-26 13:56:40 +020040#include <asm/k8.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
Joerg Roedel79da0872007-10-24 12:49:49 +020042static unsigned long iommu_bus_base; /* GART remapping area (physical) */
Ingo Molnar05fccb02008-01-30 13:30:12 +010043static unsigned long iommu_size; /* size of remapping area bytes */
Linus Torvalds1da177e2005-04-16 15:20:36 -070044static unsigned long iommu_pages; /* .. and in pages */
45
Ingo Molnar05fccb02008-01-30 13:30:12 +010046static u32 *iommu_gatt_base; /* Remapping table */
Linus Torvalds1da177e2005-04-16 15:20:36 -070047
Ingo Molnar05fccb02008-01-30 13:30:12 +010048/* Allocation bitmap for the remapping area: */
Linus Torvalds1da177e2005-04-16 15:20:36 -070049static DEFINE_SPINLOCK(iommu_bitmap_lock);
Ingo Molnar05fccb02008-01-30 13:30:12 +010050/* Guarded by iommu_bitmap_lock: */
51static unsigned long *iommu_gart_bitmap;
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
Ingo Molnar05fccb02008-01-30 13:30:12 +010053static u32 gart_unmapped_entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
55#define GPTE_VALID 1
56#define GPTE_COHERENT 2
57#define GPTE_ENCODE(x) \
58 (((x) & 0xfffff000) | (((x) >> 32) << 4) | GPTE_VALID | GPTE_COHERENT)
59#define GPTE_DECODE(x) (((x) & 0xfffff000) | (((u64)(x) & 0xff0) << 28))
60
Ingo Molnar05fccb02008-01-30 13:30:12 +010061#define EMERGENCY_PAGES 32 /* = 128KB */
Linus Torvalds1da177e2005-04-16 15:20:36 -070062
63#ifdef CONFIG_AGP
64#define AGPEXTERN extern
65#else
66#define AGPEXTERN
67#endif
68
69/* backdoor interface to AGP driver */
70AGPEXTERN int agp_memory_reserved;
71AGPEXTERN __u32 *agp_gatt_table;
72
73static unsigned long next_bit; /* protected by iommu_bitmap_lock */
Ingo Molnar05fccb02008-01-30 13:30:12 +010074static int need_flush; /* global flush state. set for each gart wrap */
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
FUJITA Tomonori7b22ff52008-08-18 00:36:18 +090076static unsigned long alloc_iommu(struct device *dev, int size,
FUJITA Tomonoribee44f22008-09-12 19:42:35 +090077 unsigned long align_mask, u64 dma_mask)
Ingo Molnar05fccb02008-01-30 13:30:12 +010078{
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 unsigned long offset, flags;
FUJITA Tomonorifde9a102008-02-04 22:28:11 -080080 unsigned long boundary_size;
81 unsigned long base_index;
FUJITA Tomonoribee44f22008-09-12 19:42:35 +090082 unsigned long limit;
FUJITA Tomonorifde9a102008-02-04 22:28:11 -080083
84 base_index = ALIGN(iommu_bus_base & dma_get_seg_boundary(dev),
85 PAGE_SIZE) >> PAGE_SHIFT;
Prarit Bhargava05d3ed02008-07-21 10:15:22 -040086 boundary_size = ALIGN((unsigned long long)dma_get_seg_boundary(dev) + 1,
FUJITA Tomonorifde9a102008-02-04 22:28:11 -080087 PAGE_SIZE) >> PAGE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -070088
FUJITA Tomonoribee44f22008-09-12 19:42:35 +090089 limit = iommu_device_max_index(iommu_pages,
90 DIV_ROUND_UP(iommu_bus_base, PAGE_SIZE),
91 dma_mask >> PAGE_SHIFT);
92
Ingo Molnar05fccb02008-01-30 13:30:12 +010093 spin_lock_irqsave(&iommu_bitmap_lock, flags);
FUJITA Tomonoribee44f22008-09-12 19:42:35 +090094
95 if (limit <= next_bit) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 need_flush = 1;
FUJITA Tomonoribee44f22008-09-12 19:42:35 +090097 next_bit = 0;
98 }
99
100 offset = iommu_area_alloc(iommu_gart_bitmap, limit, next_bit,
101 size, base_index, boundary_size, align_mask);
102 if (offset == -1 && next_bit) {
103 need_flush = 1;
104 offset = iommu_area_alloc(iommu_gart_bitmap, limit, 0,
FUJITA Tomonori7b22ff52008-08-18 00:36:18 +0900105 size, base_index, boundary_size,
106 align_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 }
Ingo Molnar05fccb02008-01-30 13:30:12 +0100108 if (offset != -1) {
Ingo Molnar05fccb02008-01-30 13:30:12 +0100109 next_bit = offset+size;
110 if (next_bit >= iommu_pages) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 next_bit = 0;
112 need_flush = 1;
Ingo Molnar05fccb02008-01-30 13:30:12 +0100113 }
114 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 if (iommu_fullflush)
116 need_flush = 1;
Ingo Molnar05fccb02008-01-30 13:30:12 +0100117 spin_unlock_irqrestore(&iommu_bitmap_lock, flags);
118
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 return offset;
Ingo Molnar05fccb02008-01-30 13:30:12 +0100120}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121
122static void free_iommu(unsigned long offset, int size)
Ingo Molnar05fccb02008-01-30 13:30:12 +0100123{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 unsigned long flags;
Ingo Molnar05fccb02008-01-30 13:30:12 +0100125
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 spin_lock_irqsave(&iommu_bitmap_lock, flags);
FUJITA Tomonorifde9a102008-02-04 22:28:11 -0800127 iommu_area_free(iommu_gart_bitmap, offset, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 spin_unlock_irqrestore(&iommu_bitmap_lock, flags);
Ingo Molnar05fccb02008-01-30 13:30:12 +0100129}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130
Ingo Molnar05fccb02008-01-30 13:30:12 +0100131/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 * Use global flush state to avoid races with multiple flushers.
133 */
Andi Kleena32073b2006-06-26 13:56:40 +0200134static void flush_gart(void)
Ingo Molnar05fccb02008-01-30 13:30:12 +0100135{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 unsigned long flags;
Ingo Molnar05fccb02008-01-30 13:30:12 +0100137
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 spin_lock_irqsave(&iommu_bitmap_lock, flags);
Andi Kleena32073b2006-06-26 13:56:40 +0200139 if (need_flush) {
140 k8_flush_garts();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 need_flush = 0;
Ingo Molnar05fccb02008-01-30 13:30:12 +0100142 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 spin_unlock_irqrestore(&iommu_bitmap_lock, flags);
Ingo Molnar05fccb02008-01-30 13:30:12 +0100144}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146#ifdef CONFIG_IOMMU_LEAK
147
Ingo Molnar05fccb02008-01-30 13:30:12 +0100148#define SET_LEAK(x) \
149 do { \
150 if (iommu_leak_tab) \
151 iommu_leak_tab[x] = __builtin_return_address(0);\
152 } while (0)
153
154#define CLEAR_LEAK(x) \
155 do { \
156 if (iommu_leak_tab) \
157 iommu_leak_tab[x] = NULL; \
158 } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159
160/* Debugging aid for drivers that don't free their IOMMU tables */
Ingo Molnar05fccb02008-01-30 13:30:12 +0100161static void **iommu_leak_tab;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162static int leak_trace;
Joerg Roedel79da0872007-10-24 12:49:49 +0200163static int iommu_leak_pages = 20;
Ingo Molnar05fccb02008-01-30 13:30:12 +0100164
Joerg Roedel79da0872007-10-24 12:49:49 +0200165static void dump_leak(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166{
167 int i;
Ingo Molnar05fccb02008-01-30 13:30:12 +0100168 static int dump;
169
170 if (dump || !iommu_leak_tab)
171 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 dump = 1;
Ingo Molnar05fccb02008-01-30 13:30:12 +0100173 show_stack(NULL, NULL);
174
175 /* Very crude. dump some from the end of the table too */
176 printk(KERN_DEBUG "Dumping %d pages from end of IOMMU:\n",
177 iommu_leak_pages);
178 for (i = 0; i < iommu_leak_pages; i += 2) {
179 printk(KERN_DEBUG "%lu: ", iommu_pages-i);
Arjan van de Venbc850d62008-01-30 13:33:07 +0100180 printk_address((unsigned long) iommu_leak_tab[iommu_pages-i], 0);
Ingo Molnar05fccb02008-01-30 13:30:12 +0100181 printk(KERN_CONT "%c", (i+1)%2 == 0 ? '\n' : ' ');
182 }
183 printk(KERN_DEBUG "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184}
185#else
Ingo Molnar05fccb02008-01-30 13:30:12 +0100186# define SET_LEAK(x)
187# define CLEAR_LEAK(x)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188#endif
189
Muli Ben-Yehuda17a941d2006-01-11 22:44:42 +0100190static void iommu_full(struct device *dev, size_t size, int dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191{
Ingo Molnar05fccb02008-01-30 13:30:12 +0100192 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 * Ran out of IOMMU space for this operation. This is very bad.
194 * Unfortunately the drivers cannot handle this operation properly.
Ingo Molnar05fccb02008-01-30 13:30:12 +0100195 * Return some non mapped prereserved space in the aperture and
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 * let the Northbridge deal with it. This will result in garbage
197 * in the IO operation. When the size exceeds the prereserved space
Ingo Molnar05fccb02008-01-30 13:30:12 +0100198 * memory corruption will occur or random memory will be DMAed
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 * out. Hopefully no network devices use single mappings that big.
Ingo Molnar05fccb02008-01-30 13:30:12 +0100200 */
201
Greg Kroah-Hartmanfc3a8822008-05-02 06:02:41 +0200202 dev_err(dev, "PCI-DMA: Out of IOMMU space for %lu bytes\n", size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203
Muli Ben-Yehuda17a941d2006-01-11 22:44:42 +0100204 if (size > PAGE_SIZE*EMERGENCY_PAGES) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 if (dir == PCI_DMA_FROMDEVICE || dir == PCI_DMA_BIDIRECTIONAL)
206 panic("PCI-DMA: Memory would be corrupted\n");
Ingo Molnar05fccb02008-01-30 13:30:12 +0100207 if (dir == PCI_DMA_TODEVICE || dir == PCI_DMA_BIDIRECTIONAL)
208 panic(KERN_ERR
209 "PCI-DMA: Random memory would be DMAed\n");
210 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211#ifdef CONFIG_IOMMU_LEAK
Ingo Molnar05fccb02008-01-30 13:30:12 +0100212 dump_leak();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214}
215
Ingo Molnar05fccb02008-01-30 13:30:12 +0100216static inline int
217need_iommu(struct device *dev, unsigned long addr, size_t size)
218{
FUJITA Tomonoriac4ff652008-09-10 01:06:47 +0900219 return force_iommu ||
220 !is_buffer_dma_capable(*dev->dma_mask, addr, size);
Ingo Molnar05fccb02008-01-30 13:30:12 +0100221}
222
223static inline int
224nonforced_iommu(struct device *dev, unsigned long addr, size_t size)
225{
FUJITA Tomonoriac4ff652008-09-10 01:06:47 +0900226 return !is_buffer_dma_capable(*dev->dma_mask, addr, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227}
228
229/* Map a single continuous physical area into the IOMMU.
230 * Caller needs to check if the iommu is needed and flush.
231 */
Muli Ben-Yehuda17a941d2006-01-11 22:44:42 +0100232static dma_addr_t dma_map_area(struct device *dev, dma_addr_t phys_mem,
FUJITA Tomonoribee44f22008-09-12 19:42:35 +0900233 size_t size, int dir, unsigned long align_mask,
234 u64 dma_mask)
Ingo Molnar05fccb02008-01-30 13:30:12 +0100235{
Joerg Roedel87e39ea2008-07-25 14:58:00 +0200236 unsigned long npages = iommu_num_pages(phys_mem, size);
FUJITA Tomonoribee44f22008-09-12 19:42:35 +0900237 unsigned long iommu_page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 int i;
Ingo Molnar05fccb02008-01-30 13:30:12 +0100239
FUJITA Tomonoribee44f22008-09-12 19:42:35 +0900240 iommu_page = alloc_iommu(dev, npages, align_mask, dma_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 if (iommu_page == -1) {
242 if (!nonforced_iommu(dev, phys_mem, size))
Ingo Molnar05fccb02008-01-30 13:30:12 +0100243 return phys_mem;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 if (panic_on_overflow)
245 panic("dma_map_area overflow %lu bytes\n", size);
Muli Ben-Yehuda17a941d2006-01-11 22:44:42 +0100246 iommu_full(dev, size, dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 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
258/* Map a single area into the IOMMU */
Ingo Molnar05fccb02008-01-30 13:30:12 +0100259static dma_addr_t
Ingo Molnar2be62142008-04-19 19:19:56 +0200260gart_map_single(struct device *dev, phys_addr_t paddr, size_t size, int dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261{
Ingo Molnar2be62142008-04-19 19:19:56 +0200262 unsigned long bus;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 if (!dev)
Joerg Roedel6c505ce2008-08-19 16:32:45 +0200265 dev = &x86_dma_fallback_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266
Ingo Molnar2be62142008-04-19 19:19:56 +0200267 if (!need_iommu(dev, paddr, size))
268 return paddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269
FUJITA Tomonoribee44f22008-09-12 19:42:35 +0900270 bus = dma_map_area(dev, paddr, size, dir, 0, dma_get_mask(dev));
FUJITA Tomonori7b22ff52008-08-18 00:36:18 +0900271 flush_gart();
Ingo Molnar05fccb02008-01-30 13:30:12 +0100272
273 return bus;
Muli Ben-Yehuda17a941d2006-01-11 22:44:42 +0100274}
275
276/*
Jon Mason7c2d9cd2006-06-26 13:56:37 +0200277 * Free a DMA mapping.
278 */
Yinghai Lu1048fa52007-07-21 17:11:23 +0200279static void gart_unmap_single(struct device *dev, dma_addr_t dma_addr,
Ingo Molnar05fccb02008-01-30 13:30:12 +0100280 size_t size, int direction)
Jon Mason7c2d9cd2006-06-26 13:56:37 +0200281{
282 unsigned long iommu_page;
283 int npages;
284 int i;
285
286 if (dma_addr < iommu_bus_base + EMERGENCY_PAGES*PAGE_SIZE ||
287 dma_addr >= iommu_bus_base + iommu_size)
288 return;
Ingo Molnar05fccb02008-01-30 13:30:12 +0100289
Jon Mason7c2d9cd2006-06-26 13:56:37 +0200290 iommu_page = (dma_addr - iommu_bus_base)>>PAGE_SHIFT;
Joerg Roedel87e39ea2008-07-25 14:58:00 +0200291 npages = iommu_num_pages(dma_addr, size);
Jon Mason7c2d9cd2006-06-26 13:56:37 +0200292 for (i = 0; i < npages; i++) {
293 iommu_gatt_base[iommu_page + i] = gart_unmapped_entry;
294 CLEAR_LEAK(iommu_page + i);
295 }
296 free_iommu(iommu_page, npages);
297}
298
299/*
Muli Ben-Yehuda17a941d2006-01-11 22:44:42 +0100300 * Wrapper for pci_unmap_single working with scatterlists.
301 */
Ingo Molnar05fccb02008-01-30 13:30:12 +0100302static void
303gart_unmap_sg(struct device *dev, struct scatterlist *sg, int nents, int dir)
Muli Ben-Yehuda17a941d2006-01-11 22:44:42 +0100304{
Jens Axboe9ee1bea2007-10-04 09:35:37 +0200305 struct scatterlist *s;
Muli Ben-Yehuda17a941d2006-01-11 22:44:42 +0100306 int i;
307
Jens Axboe9ee1bea2007-10-04 09:35:37 +0200308 for_each_sg(sg, s, nents, i) {
Jon Mason60b08c62006-02-26 04:18:22 +0100309 if (!s->dma_length || !s->length)
Muli Ben-Yehuda17a941d2006-01-11 22:44:42 +0100310 break;
Jon Mason7c2d9cd2006-06-26 13:56:37 +0200311 gart_unmap_single(dev, s->dma_address, s->dma_length, dir);
Muli Ben-Yehuda17a941d2006-01-11 22:44:42 +0100312 }
313}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314
315/* Fallback for dma_map_sg in case of overflow */
316static int dma_map_sg_nonforce(struct device *dev, struct scatterlist *sg,
317 int nents, int dir)
318{
Jens Axboe9ee1bea2007-10-04 09:35:37 +0200319 struct scatterlist *s;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 int i;
FUJITA Tomonoribee44f22008-09-12 19:42:35 +0900321 u64 dma_mask = dma_get_mask(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322
323#ifdef CONFIG_IOMMU_DEBUG
324 printk(KERN_DEBUG "dma_map_sg overflow\n");
325#endif
326
Jens Axboe9ee1bea2007-10-04 09:35:37 +0200327 for_each_sg(sg, s, nents, i) {
Jens Axboe58b053e2007-10-22 20:02:46 +0200328 unsigned long addr = sg_phys(s);
Ingo Molnar05fccb02008-01-30 13:30:12 +0100329
330 if (nonforced_iommu(dev, addr, s->length)) {
FUJITA Tomonoribee44f22008-09-12 19:42:35 +0900331 addr = dma_map_area(dev, addr, s->length, dir, 0,
332 dma_mask);
Ingo Molnar05fccb02008-01-30 13:30:12 +0100333 if (addr == bad_dma_address) {
334 if (i > 0)
Muli Ben-Yehuda17a941d2006-01-11 22:44:42 +0100335 gart_unmap_sg(dev, sg, i, dir);
Ingo Molnar05fccb02008-01-30 13:30:12 +0100336 nents = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 sg[0].dma_length = 0;
338 break;
339 }
340 }
341 s->dma_address = addr;
342 s->dma_length = s->length;
343 }
Andi Kleena32073b2006-06-26 13:56:40 +0200344 flush_gart();
Ingo Molnar05fccb02008-01-30 13:30:12 +0100345
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 return nents;
347}
348
349/* Map multiple scatterlist entries continuous into the first. */
FUJITA Tomonorifde9a102008-02-04 22:28:11 -0800350static int __dma_map_cont(struct device *dev, struct scatterlist *start,
351 int nelems, struct scatterlist *sout,
352 unsigned long pages)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353{
FUJITA Tomonoribee44f22008-09-12 19:42:35 +0900354 unsigned long iommu_start;
355 unsigned long iommu_page;
Jens Axboe9ee1bea2007-10-04 09:35:37 +0200356 struct scatterlist *s;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 int i;
358
FUJITA Tomonoribee44f22008-09-12 19:42:35 +0900359 iommu_start = alloc_iommu(dev, pages, 0, dma_get_mask(dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 if (iommu_start == -1)
361 return -1;
Jens Axboe9ee1bea2007-10-04 09:35:37 +0200362
FUJITA Tomonoribee44f22008-09-12 19:42:35 +0900363 iommu_page = iommu_start;
Jens Axboe9ee1bea2007-10-04 09:35:37 +0200364 for_each_sg(start, s, nelems, i) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 unsigned long pages, addr;
366 unsigned long phys_addr = s->dma_address;
Ingo Molnar05fccb02008-01-30 13:30:12 +0100367
Jens Axboe9ee1bea2007-10-04 09:35:37 +0200368 BUG_ON(s != start && s->offset);
369 if (s == start) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 sout->dma_address = iommu_bus_base;
371 sout->dma_address += iommu_page*PAGE_SIZE + s->offset;
372 sout->dma_length = s->length;
Ingo Molnar05fccb02008-01-30 13:30:12 +0100373 } else {
374 sout->dma_length += s->length;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 }
376
377 addr = phys_addr;
Joerg Roedel87e39ea2008-07-25 14:58:00 +0200378 pages = iommu_num_pages(s->offset, s->length);
Ingo Molnar05fccb02008-01-30 13:30:12 +0100379 while (pages--) {
380 iommu_gatt_base[iommu_page] = GPTE_ENCODE(addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 SET_LEAK(iommu_page);
382 addr += PAGE_SIZE;
383 iommu_page++;
Andi Kleen0d5410642006-02-12 14:34:59 -0800384 }
Ingo Molnar05fccb02008-01-30 13:30:12 +0100385 }
386 BUG_ON(iommu_page - iommu_start != pages);
387
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 return 0;
389}
390
Ingo Molnar05fccb02008-01-30 13:30:12 +0100391static inline int
FUJITA Tomonorifde9a102008-02-04 22:28:11 -0800392dma_map_cont(struct device *dev, struct scatterlist *start, int nelems,
393 struct scatterlist *sout, unsigned long pages, int need)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394{
Jens Axboe9ee1bea2007-10-04 09:35:37 +0200395 if (!need) {
396 BUG_ON(nelems != 1);
FUJITA Tomonorie88a39d2007-10-25 09:13:32 +0200397 sout->dma_address = start->dma_address;
Jens Axboe9ee1bea2007-10-04 09:35:37 +0200398 sout->dma_length = start->length;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 return 0;
Jens Axboe9ee1bea2007-10-04 09:35:37 +0200400 }
FUJITA Tomonorifde9a102008-02-04 22:28:11 -0800401 return __dma_map_cont(dev, start, nelems, sout, pages);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402}
Ingo Molnar05fccb02008-01-30 13:30:12 +0100403
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404/*
405 * DMA map all entries in a scatterlist.
Ingo Molnar05fccb02008-01-30 13:30:12 +0100406 * Merge chunks that have page aligned sizes into a continuous mapping.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 */
Ingo Molnar05fccb02008-01-30 13:30:12 +0100408static int
409gart_map_sg(struct device *dev, struct scatterlist *sg, int nents, int dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410{
Jens Axboe9ee1bea2007-10-04 09:35:37 +0200411 struct scatterlist *s, *ps, *start_sg, *sgmap;
Ingo Molnar05fccb02008-01-30 13:30:12 +0100412 int need = 0, nextneed, i, out, start;
413 unsigned long pages = 0;
FUJITA Tomonori42d00282008-02-04 22:27:56 -0800414 unsigned int seg_size;
415 unsigned int max_seg_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416
Ingo Molnar05fccb02008-01-30 13:30:12 +0100417 if (nents == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 return 0;
419
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 if (!dev)
Joerg Roedel6c505ce2008-08-19 16:32:45 +0200421 dev = &x86_dma_fallback_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422
423 out = 0;
424 start = 0;
Jens Axboe9ee1bea2007-10-04 09:35:37 +0200425 start_sg = sgmap = sg;
FUJITA Tomonori42d00282008-02-04 22:27:56 -0800426 seg_size = 0;
427 max_seg_size = dma_get_max_seg_size(dev);
Jens Axboe9ee1bea2007-10-04 09:35:37 +0200428 ps = NULL; /* shut up gcc */
429 for_each_sg(sg, s, nents, i) {
Jens Axboe58b053e2007-10-22 20:02:46 +0200430 dma_addr_t addr = sg_phys(s);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431
Ingo Molnar05fccb02008-01-30 13:30:12 +0100432 s->dma_address = addr;
433 BUG_ON(s->length == 0);
434
435 nextneed = need_iommu(dev, addr, s->length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436
437 /* Handle the previous not yet processed entries */
438 if (i > start) {
Ingo Molnar05fccb02008-01-30 13:30:12 +0100439 /*
440 * Can only merge when the last chunk ends on a
441 * page boundary and the new one doesn't have an
442 * offset.
443 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 if (!iommu_merge || !nextneed || !need || s->offset ||
FUJITA Tomonori42d00282008-02-04 22:27:56 -0800445 (s->length + seg_size > max_seg_size) ||
Jens Axboe9ee1bea2007-10-04 09:35:37 +0200446 (ps->offset + ps->length) % PAGE_SIZE) {
FUJITA Tomonorifde9a102008-02-04 22:28:11 -0800447 if (dma_map_cont(dev, start_sg, i - start,
448 sgmap, pages, need) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 goto error;
450 out++;
FUJITA Tomonori42d00282008-02-04 22:27:56 -0800451 seg_size = 0;
Jens Axboe9ee1bea2007-10-04 09:35:37 +0200452 sgmap = sg_next(sgmap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 pages = 0;
Jens Axboe9ee1bea2007-10-04 09:35:37 +0200454 start = i;
455 start_sg = s;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 }
457 }
458
FUJITA Tomonori42d00282008-02-04 22:27:56 -0800459 seg_size += s->length;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 need = nextneed;
Joerg Roedel87e39ea2008-07-25 14:58:00 +0200461 pages += iommu_num_pages(s->offset, s->length);
Jens Axboe9ee1bea2007-10-04 09:35:37 +0200462 ps = s;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 }
FUJITA Tomonorifde9a102008-02-04 22:28:11 -0800464 if (dma_map_cont(dev, start_sg, i - start, sgmap, pages, need) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 goto error;
466 out++;
Andi Kleena32073b2006-06-26 13:56:40 +0200467 flush_gart();
Jens Axboe9ee1bea2007-10-04 09:35:37 +0200468 if (out < nents) {
469 sgmap = sg_next(sgmap);
470 sgmap->dma_length = 0;
471 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 return out;
473
474error:
Andi Kleena32073b2006-06-26 13:56:40 +0200475 flush_gart();
FUJITA Tomonori53369402007-10-26 13:56:24 +0200476 gart_unmap_sg(dev, sg, out, dir);
Ingo Molnar05fccb02008-01-30 13:30:12 +0100477
Kevin VanMarena1002a42006-02-03 21:51:32 +0100478 /* When it was forced or merged try again in a dumb way */
479 if (force_iommu || iommu_merge) {
480 out = dma_map_sg_nonforce(dev, sg, nents, dir);
481 if (out > 0)
482 return out;
483 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 if (panic_on_overflow)
485 panic("dma_map_sg: overflow on %lu pages\n", pages);
Ingo Molnar05fccb02008-01-30 13:30:12 +0100486
Muli Ben-Yehuda17a941d2006-01-11 22:44:42 +0100487 iommu_full(dev, pages << PAGE_SHIFT, dir);
Jens Axboe9ee1bea2007-10-04 09:35:37 +0200488 for_each_sg(sg, s, nents, i)
489 s->dma_address = bad_dma_address;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 return 0;
Ingo Molnar05fccb02008-01-30 13:30:12 +0100491}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492
Joerg Roedel94581092008-08-19 16:32:39 +0200493/* allocate and map a coherent mapping */
494static void *
495gart_alloc_coherent(struct device *dev, size_t size, dma_addr_t *dma_addr,
496 gfp_t flag)
497{
498 void *vaddr;
FUJITA Tomonorif6a32a32008-09-11 23:08:48 +0900499 dma_addr_t paddr;
FUJITA Tomonori421076e2008-08-22 16:29:10 +0900500 unsigned long align_mask;
FUJITA Tomonorif6a32a32008-09-11 23:08:48 +0900501 u64 dma_mask = dma_alloc_coherent_mask(dev, flag);
Joerg Roedel94581092008-08-19 16:32:39 +0200502
503 vaddr = (void *)__get_free_pages(flag | __GFP_ZERO, get_order(size));
504 if (!vaddr)
505 return NULL;
506
FUJITA Tomonorif6a32a32008-09-11 23:08:48 +0900507 paddr = virt_to_phys(vaddr);
508 if (is_buffer_dma_capable(dma_mask, paddr, size)) {
509 *dma_addr = paddr;
510 return vaddr;
511 }
512
FUJITA Tomonori421076e2008-08-22 16:29:10 +0900513 align_mask = (1UL << get_order(size)) - 1;
514
FUJITA Tomonorif6a32a32008-09-11 23:08:48 +0900515 *dma_addr = dma_map_area(dev, paddr, size, DMA_BIDIRECTIONAL,
FUJITA Tomonoribee44f22008-09-12 19:42:35 +0900516 align_mask, dma_mask);
FUJITA Tomonori421076e2008-08-22 16:29:10 +0900517 flush_gart();
518
Joerg Roedel94581092008-08-19 16:32:39 +0200519 if (*dma_addr != bad_dma_address)
520 return vaddr;
521
522 free_pages((unsigned long)vaddr, get_order(size));
523
524 return NULL;
525}
526
Joerg Roedel43a5a5a2008-08-19 16:32:40 +0200527/* free a coherent mapping */
528static void
529gart_free_coherent(struct device *dev, size_t size, void *vaddr,
530 dma_addr_t dma_addr)
531{
532 gart_unmap_single(dev, dma_addr, size, DMA_BIDIRECTIONAL);
533 free_pages((unsigned long)vaddr, get_order(size));
534}
535
Muli Ben-Yehuda17a941d2006-01-11 22:44:42 +0100536static int no_agp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537
538static __init unsigned long check_iommu_size(unsigned long aper, u64 aper_size)
Ingo Molnar05fccb02008-01-30 13:30:12 +0100539{
540 unsigned long a;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541
Ingo Molnar05fccb02008-01-30 13:30:12 +0100542 if (!iommu_size) {
543 iommu_size = aper_size;
544 if (!no_agp)
545 iommu_size /= 2;
546 }
547
548 a = aper + iommu_size;
Andi Kleen31422c52008-02-04 16:48:08 +0100549 iommu_size -= round_up(a, PMD_PAGE_SIZE) - a;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550
Ingo Molnar05fccb02008-01-30 13:30:12 +0100551 if (iommu_size < 64*1024*1024) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 printk(KERN_WARNING
Ingo Molnar05fccb02008-01-30 13:30:12 +0100553 "PCI-DMA: Warning: Small IOMMU %luMB."
554 " Consider increasing the AGP aperture in BIOS\n",
555 iommu_size >> 20);
556 }
557
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 return iommu_size;
Ingo Molnar05fccb02008-01-30 13:30:12 +0100559}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560
Ingo Molnar05fccb02008-01-30 13:30:12 +0100561static __init unsigned read_aperture(struct pci_dev *dev, u32 *size)
562{
563 unsigned aper_size = 0, aper_base_32, aper_order;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 u64 aper_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565
Pavel Machek3bb6fbf2008-04-15 12:43:57 +0200566 pci_read_config_dword(dev, AMD64_GARTAPERTUREBASE, &aper_base_32);
567 pci_read_config_dword(dev, AMD64_GARTAPERTURECTL, &aper_order);
Ingo Molnar05fccb02008-01-30 13:30:12 +0100568 aper_order = (aper_order >> 1) & 7;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569
Ingo Molnar05fccb02008-01-30 13:30:12 +0100570 aper_base = aper_base_32 & 0x7fff;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 aper_base <<= 25;
572
Ingo Molnar05fccb02008-01-30 13:30:12 +0100573 aper_size = (32 * 1024 * 1024) << aper_order;
574 if (aper_base + aper_size > 0x100000000UL || !aper_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 aper_base = 0;
576
577 *size = aper_size;
578 return aper_base;
Ingo Molnar05fccb02008-01-30 13:30:12 +0100579}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580
Rafael J. Wysocki6703f6d2008-06-10 00:10:48 +0200581static void enable_gart_translations(void)
582{
583 int i;
584
585 for (i = 0; i < num_k8_northbridges; i++) {
586 struct pci_dev *dev = k8_northbridges[i];
587
588 enable_gart_translation(dev, __pa(agp_gatt_table));
589 }
590}
591
592/*
593 * If fix_up_north_bridges is set, the north bridges have to be fixed up on
594 * resume in the same way as they are handled in gart_iommu_hole_init().
595 */
596static bool fix_up_north_bridges;
597static u32 aperture_order;
598static u32 aperture_alloc;
599
600void set_up_gart_resume(u32 aper_order, u32 aper_alloc)
601{
602 fix_up_north_bridges = true;
603 aperture_order = aper_order;
604 aperture_alloc = aper_alloc;
605}
606
Pavel Machekcd763742008-05-29 00:30:21 -0700607static int gart_resume(struct sys_device *dev)
608{
Rafael J. Wysocki6703f6d2008-06-10 00:10:48 +0200609 printk(KERN_INFO "PCI-DMA: Resuming GART IOMMU\n");
610
611 if (fix_up_north_bridges) {
612 int i;
613
614 printk(KERN_INFO "PCI-DMA: Restoring GART aperture settings\n");
615
616 for (i = 0; i < num_k8_northbridges; i++) {
617 struct pci_dev *dev = k8_northbridges[i];
618
619 /*
620 * Don't enable translations just yet. That is the next
621 * step. Restore the pre-suspend aperture settings.
622 */
623 pci_write_config_dword(dev, AMD64_GARTAPERTURECTL,
624 aperture_order << 1);
625 pci_write_config_dword(dev, AMD64_GARTAPERTUREBASE,
626 aperture_alloc >> 25);
627 }
628 }
629
630 enable_gart_translations();
631
Pavel Machekcd763742008-05-29 00:30:21 -0700632 return 0;
633}
634
635static int gart_suspend(struct sys_device *dev, pm_message_t state)
636{
Rafael J. Wysocki6703f6d2008-06-10 00:10:48 +0200637 return 0;
Pavel Machekcd763742008-05-29 00:30:21 -0700638}
639
640static struct sysdev_class gart_sysdev_class = {
641 .name = "gart",
642 .suspend = gart_suspend,
643 .resume = gart_resume,
644
645};
646
647static struct sys_device device_gart = {
648 .id = 0,
649 .cls = &gart_sysdev_class,
650};
651
Ingo Molnar05fccb02008-01-30 13:30:12 +0100652/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 * Private Northbridge GATT initialization in case we cannot use the
Ingo Molnar05fccb02008-01-30 13:30:12 +0100654 * AGP driver for some reason.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 */
656static __init int init_k8_gatt(struct agp_kern_info *info)
Ingo Molnar05fccb02008-01-30 13:30:12 +0100657{
658 unsigned aper_size, gatt_size, new_aper_size;
659 unsigned aper_base, new_aper_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 struct pci_dev *dev;
661 void *gatt;
Pavel Machekcd763742008-05-29 00:30:21 -0700662 int i, error;
Yinghai Lu7ab073b2008-07-12 14:30:35 -0700663 unsigned long start_pfn, end_pfn;
Andi Kleena32073b2006-06-26 13:56:40 +0200664
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 printk(KERN_INFO "PCI-DMA: Disabling AGP.\n");
666 aper_size = aper_base = info->aper_size = 0;
Andi Kleena32073b2006-06-26 13:56:40 +0200667 dev = NULL;
668 for (i = 0; i < num_k8_northbridges; i++) {
669 dev = k8_northbridges[i];
Ingo Molnar05fccb02008-01-30 13:30:12 +0100670 new_aper_base = read_aperture(dev, &new_aper_size);
671 if (!new_aper_base)
672 goto nommu;
673
674 if (!aper_base) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 aper_size = new_aper_size;
676 aper_base = new_aper_base;
Ingo Molnar05fccb02008-01-30 13:30:12 +0100677 }
678 if (aper_size != new_aper_size || aper_base != new_aper_base)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 goto nommu;
680 }
681 if (!aper_base)
Ingo Molnar05fccb02008-01-30 13:30:12 +0100682 goto nommu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 info->aper_base = aper_base;
Ingo Molnar05fccb02008-01-30 13:30:12 +0100684 info->aper_size = aper_size >> 20;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685
Ingo Molnar05fccb02008-01-30 13:30:12 +0100686 gatt_size = (aper_size >> PAGE_SHIFT) * sizeof(u32);
687 gatt = (void *)__get_free_pages(GFP_KERNEL, get_order(gatt_size));
688 if (!gatt)
Joachim Deguaracf6387d2007-04-24 13:05:36 +0200689 panic("Cannot allocate GATT table");
Arjan van de Ven6d238cc2008-01-30 13:34:06 +0100690 if (set_memory_uc((unsigned long)gatt, gatt_size >> PAGE_SHIFT))
Joachim Deguaracf6387d2007-04-24 13:05:36 +0200691 panic("Could not set GART PTEs to uncacheable pages");
Joachim Deguaracf6387d2007-04-24 13:05:36 +0200692
Ingo Molnar05fccb02008-01-30 13:30:12 +0100693 memset(gatt, 0, gatt_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 agp_gatt_table = gatt;
Andi Kleena32073b2006-06-26 13:56:40 +0200695
Rafael J. Wysocki6703f6d2008-06-10 00:10:48 +0200696 enable_gart_translations();
Pavel Machekcd763742008-05-29 00:30:21 -0700697
698 error = sysdev_class_register(&gart_sysdev_class);
699 if (!error)
700 error = sysdev_register(&device_gart);
701 if (error)
702 panic("Could not register gart_sysdev -- would corrupt data on next suspend");
Rafael J. Wysocki6703f6d2008-06-10 00:10:48 +0200703
Andi Kleena32073b2006-06-26 13:56:40 +0200704 flush_gart();
Ingo Molnar05fccb02008-01-30 13:30:12 +0100705
706 printk(KERN_INFO "PCI-DMA: aperture base @ %x size %u KB\n",
707 aper_base, aper_size>>10);
Yinghai Lu7ab073b2008-07-12 14:30:35 -0700708
709 /* need to map that range */
710 end_pfn = (aper_base>>PAGE_SHIFT) + (aper_size>>PAGE_SHIFT);
711 if (end_pfn > max_low_pfn_mapped) {
Yinghai Lu32b23e92008-07-13 14:29:41 -0700712 start_pfn = (aper_base>>PAGE_SHIFT);
713 init_memory_mapping(start_pfn<<PAGE_SHIFT, end_pfn<<PAGE_SHIFT);
Yinghai Lu7ab073b2008-07-12 14:30:35 -0700714 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 return 0;
716
717 nommu:
Ingo Molnar05fccb02008-01-30 13:30:12 +0100718 /* Should not happen anymore */
Pavel Machek8f596102008-04-01 14:24:03 +0200719 printk(KERN_WARNING "PCI-DMA: More than 4GB of RAM and no IOMMU\n"
720 KERN_WARNING "falling back to iommu=soft.\n");
Ingo Molnar05fccb02008-01-30 13:30:12 +0100721 return -1;
722}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723
724extern int agp_amd64_init(void);
725
FUJITA Tomonori8d8bb392008-07-25 19:44:49 -0700726static struct dma_mapping_ops gart_dma_ops = {
Ingo Molnar05fccb02008-01-30 13:30:12 +0100727 .map_single = gart_map_single,
Ingo Molnar05fccb02008-01-30 13:30:12 +0100728 .unmap_single = gart_unmap_single,
729 .sync_single_for_cpu = NULL,
730 .sync_single_for_device = NULL,
731 .sync_single_range_for_cpu = NULL,
732 .sync_single_range_for_device = NULL,
733 .sync_sg_for_cpu = NULL,
734 .sync_sg_for_device = NULL,
735 .map_sg = gart_map_sg,
736 .unmap_sg = gart_unmap_sg,
Joerg Roedel94581092008-08-19 16:32:39 +0200737 .alloc_coherent = gart_alloc_coherent,
Joerg Roedel43a5a5a2008-08-19 16:32:40 +0200738 .free_coherent = gart_free_coherent,
Muli Ben-Yehuda17a941d2006-01-11 22:44:42 +0100739};
740
Yinghai Lubc2cea62007-07-21 17:11:28 +0200741void gart_iommu_shutdown(void)
742{
743 struct pci_dev *dev;
744 int i;
745
746 if (no_agp && (dma_ops != &gart_dma_ops))
747 return;
748
Ingo Molnar05fccb02008-01-30 13:30:12 +0100749 for (i = 0; i < num_k8_northbridges; i++) {
750 u32 ctl;
Yinghai Lubc2cea62007-07-21 17:11:28 +0200751
Ingo Molnar05fccb02008-01-30 13:30:12 +0100752 dev = k8_northbridges[i];
Pavel Machek3bb6fbf2008-04-15 12:43:57 +0200753 pci_read_config_dword(dev, AMD64_GARTAPERTURECTL, &ctl);
Yinghai Lubc2cea62007-07-21 17:11:28 +0200754
Pavel Machek3bb6fbf2008-04-15 12:43:57 +0200755 ctl &= ~GARTEN;
Yinghai Lubc2cea62007-07-21 17:11:28 +0200756
Pavel Machek3bb6fbf2008-04-15 12:43:57 +0200757 pci_write_config_dword(dev, AMD64_GARTAPERTURECTL, ctl);
Ingo Molnar05fccb02008-01-30 13:30:12 +0100758 }
Yinghai Lubc2cea62007-07-21 17:11:28 +0200759}
760
Jon Mason0dc243a2006-06-26 13:58:11 +0200761void __init gart_iommu_init(void)
Ingo Molnar05fccb02008-01-30 13:30:12 +0100762{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 struct agp_kern_info info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 unsigned long iommu_start;
Ingo Molnar05fccb02008-01-30 13:30:12 +0100765 unsigned long aper_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 unsigned long scratch;
767 long i;
768
Andi Kleena32073b2006-06-26 13:56:40 +0200769 if (cache_k8_northbridges() < 0 || num_k8_northbridges == 0) {
770 printk(KERN_INFO "PCI-GART: No AMD northbridge found.\n");
Jon Mason0dc243a2006-06-26 13:58:11 +0200771 return;
Andi Kleena32073b2006-06-26 13:56:40 +0200772 }
773
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774#ifndef CONFIG_AGP_AMD64
Ingo Molnar05fccb02008-01-30 13:30:12 +0100775 no_agp = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776#else
777 /* Makefile puts PCI initialization via subsys_initcall first. */
778 /* Add other K8 AGP bridge drivers here */
Ingo Molnar05fccb02008-01-30 13:30:12 +0100779 no_agp = no_agp ||
780 (agp_amd64_init() < 0) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 (agp_copy_info(agp_bridge, &info) < 0);
Ingo Molnar05fccb02008-01-30 13:30:12 +0100782#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783
Jon Mason60b08c62006-02-26 04:18:22 +0100784 if (swiotlb)
Jon Mason0dc243a2006-06-26 13:58:11 +0200785 return;
Jon Mason60b08c62006-02-26 04:18:22 +0100786
Jon Mason8d4f6b92006-06-26 13:58:05 +0200787 /* Did we detect a different HW IOMMU? */
Joerg Roedel0440d4c2007-10-24 12:49:50 +0200788 if (iommu_detected && !gart_iommu_aperture)
Jon Mason0dc243a2006-06-26 13:58:11 +0200789 return;
Jon Mason8d4f6b92006-06-26 13:58:05 +0200790
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 if (no_iommu ||
Yinghai Luc987d122008-06-24 22:14:09 -0700792 (!force_iommu && max_pfn <= MAX_DMA32_PFN) ||
Joerg Roedel0440d4c2007-10-24 12:49:50 +0200793 !gart_iommu_aperture ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 (no_agp && init_k8_gatt(&info) < 0)) {
Yinghai Luc987d122008-06-24 22:14:09 -0700795 if (max_pfn > MAX_DMA32_PFN) {
Pavel Machek8f596102008-04-01 14:24:03 +0200796 printk(KERN_WARNING "More than 4GB of memory "
797 "but GART IOMMU not available.\n"
798 KERN_WARNING "falling back to iommu=soft.\n");
Jon Mason5b7b6442006-02-03 21:51:59 +0100799 }
Jon Mason0dc243a2006-06-26 13:58:11 +0200800 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 }
802
Jon Mason5b7b6442006-02-03 21:51:59 +0100803 printk(KERN_INFO "PCI-DMA: using GART IOMMU.\n");
Ingo Molnar05fccb02008-01-30 13:30:12 +0100804 aper_size = info.aper_size * 1024 * 1024;
805 iommu_size = check_iommu_size(info.aper_base, aper_size);
806 iommu_pages = iommu_size >> PAGE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807
Ingo Molnar05fccb02008-01-30 13:30:12 +0100808 iommu_gart_bitmap = (void *) __get_free_pages(GFP_KERNEL,
809 get_order(iommu_pages/8));
810 if (!iommu_gart_bitmap)
811 panic("Cannot allocate iommu bitmap\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 memset(iommu_gart_bitmap, 0, iommu_pages/8);
813
814#ifdef CONFIG_IOMMU_LEAK
Ingo Molnar05fccb02008-01-30 13:30:12 +0100815 if (leak_trace) {
816 iommu_leak_tab = (void *)__get_free_pages(GFP_KERNEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 get_order(iommu_pages*sizeof(void *)));
Ingo Molnar05fccb02008-01-30 13:30:12 +0100818 if (iommu_leak_tab)
819 memset(iommu_leak_tab, 0, iommu_pages * 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 else
Ingo Molnar05fccb02008-01-30 13:30:12 +0100821 printk(KERN_DEBUG
822 "PCI-DMA: Cannot allocate leak trace area\n");
823 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824#endif
825
Ingo Molnar05fccb02008-01-30 13:30:12 +0100826 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827 * Out of IOMMU space handling.
Ingo Molnar05fccb02008-01-30 13:30:12 +0100828 * Reserve some invalid pages at the beginning of the GART.
829 */
FUJITA Tomonorid26dbc52008-09-22 22:35:07 +0900830 iommu_area_reserve(iommu_gart_bitmap, 0, EMERGENCY_PAGES);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831
Ingo Molnar05fccb02008-01-30 13:30:12 +0100832 agp_memory_reserved = iommu_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833 printk(KERN_INFO
834 "PCI-DMA: Reserving %luMB of IOMMU area in the AGP aperture\n",
Ingo Molnar05fccb02008-01-30 13:30:12 +0100835 iommu_size >> 20);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836
Ingo Molnar05fccb02008-01-30 13:30:12 +0100837 iommu_start = aper_size - iommu_size;
838 iommu_bus_base = info.aper_base + iommu_start;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 bad_dma_address = iommu_bus_base;
840 iommu_gatt_base = agp_gatt_table + (iommu_start>>PAGE_SHIFT);
841
Ingo Molnar05fccb02008-01-30 13:30:12 +0100842 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 * Unmap the IOMMU part of the GART. The alias of the page is
844 * always mapped with cache enabled and there is no full cache
845 * coherency across the GART remapping. The unmapping avoids
846 * automatic prefetches from the CPU allocating cache lines in
847 * there. All CPU accesses are done via the direct mapping to
848 * the backing memory. The GART address is only used by PCI
Ingo Molnar05fccb02008-01-30 13:30:12 +0100849 * devices.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850 */
Andi Kleen28d6ee42008-02-04 16:48:08 +0100851 set_memory_np((unsigned long)__va(iommu_bus_base),
852 iommu_size >> PAGE_SHIFT);
Ingo Molnar184652e2008-02-14 23:30:20 +0100853 /*
854 * Tricky. The GART table remaps the physical memory range,
855 * so the CPU wont notice potential aliases and if the memory
856 * is remapped to UC later on, we might surprise the PCI devices
857 * with a stray writeout of a cacheline. So play it sure and
858 * do an explicit, full-scale wbinvd() _after_ having marked all
859 * the pages as Not-Present:
860 */
861 wbinvd();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862
Ingo Molnar05fccb02008-01-30 13:30:12 +0100863 /*
Pavel Machekfa3d3192008-06-26 00:25:43 +0200864 * Try to workaround a bug (thanks to BenH):
Ingo Molnar05fccb02008-01-30 13:30:12 +0100865 * Set unmapped entries to a scratch page instead of 0.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 * Any prefetches that hit unmapped entries won't get an bus abort
Pavel Machekfa3d3192008-06-26 00:25:43 +0200867 * then. (P2P bridge may be prefetching on DMA reads).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 */
Ingo Molnar05fccb02008-01-30 13:30:12 +0100869 scratch = get_zeroed_page(GFP_KERNEL);
870 if (!scratch)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 panic("Cannot allocate iommu scratch page");
872 gart_unmapped_entry = GPTE_ENCODE(__pa(scratch));
Ingo Molnar05fccb02008-01-30 13:30:12 +0100873 for (i = EMERGENCY_PAGES; i < iommu_pages; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 iommu_gatt_base[i] = gart_unmapped_entry;
875
Andi Kleena32073b2006-06-26 13:56:40 +0200876 flush_gart();
Muli Ben-Yehuda17a941d2006-01-11 22:44:42 +0100877 dma_ops = &gart_dma_ops;
Ingo Molnar05fccb02008-01-30 13:30:12 +0100878}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879
Sam Ravnborg43999d92007-03-16 21:07:36 +0100880void __init gart_parse_options(char *p)
Muli Ben-Yehuda17a941d2006-01-11 22:44:42 +0100881{
882 int arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884#ifdef CONFIG_IOMMU_LEAK
Ingo Molnar05fccb02008-01-30 13:30:12 +0100885 if (!strncmp(p, "leak", 4)) {
Muli Ben-Yehuda17a941d2006-01-11 22:44:42 +0100886 leak_trace = 1;
887 p += 4;
888 if (*p == '=') ++p;
889 if (isdigit(*p) && get_option(&p, &arg))
890 iommu_leak_pages = arg;
891 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892#endif
Muli Ben-Yehuda17a941d2006-01-11 22:44:42 +0100893 if (isdigit(*p) && get_option(&p, &arg))
894 iommu_size = arg;
Ingo Molnar05fccb02008-01-30 13:30:12 +0100895 if (!strncmp(p, "noagp", 5))
Muli Ben-Yehuda17a941d2006-01-11 22:44:42 +0100896 no_agp = 1;
Ingo Molnar05fccb02008-01-30 13:30:12 +0100897 if (!strncmp(p, "noaperture", 10))
Muli Ben-Yehuda17a941d2006-01-11 22:44:42 +0100898 fix_aperture = 0;
899 /* duplicated from pci-dma.c */
Ingo Molnar05fccb02008-01-30 13:30:12 +0100900 if (!strncmp(p, "force", 5))
Joerg Roedel0440d4c2007-10-24 12:49:50 +0200901 gart_iommu_aperture_allowed = 1;
Ingo Molnar05fccb02008-01-30 13:30:12 +0100902 if (!strncmp(p, "allowed", 7))
Joerg Roedel0440d4c2007-10-24 12:49:50 +0200903 gart_iommu_aperture_allowed = 1;
Muli Ben-Yehuda17a941d2006-01-11 22:44:42 +0100904 if (!strncmp(p, "memaper", 7)) {
905 fallback_aper_force = 1;
906 p += 7;
907 if (*p == '=') {
908 ++p;
909 if (get_option(&p, &arg))
910 fallback_aper_order = arg;
911 }
912 }
913}