blob: 61c4d1e41a6b00c7623ac6d98a3f5f896cede46d [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 *
Randy Dunlap5872fb92009-01-29 16:28:02 -08008 * See Documentation/PCI/PCI-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>
Alexey Dobriyand43c36d2009-10-07 17:09:06 +040019#include <linux/sched.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <linux/string.h>
21#include <linux/spinlock.h>
22#include <linux/pci.h>
23#include <linux/module.h>
24#include <linux/topology.h>
25#include <linux/interrupt.h>
26#include <linux/bitops.h>
Christoph Hellwig1eeb66a2007-05-08 00:27:03 -070027#include <linux/kdebug.h>
Jens Axboe9ee1bea2007-10-04 09:35:37 +020028#include <linux/scatterlist.h>
FUJITA Tomonorifde9a102008-02-04 22:28:11 -080029#include <linux/iommu-helper.h>
Pavel Machekcd763742008-05-29 00:30:21 -070030#include <linux/sysdev.h>
Joerg Roedel237a6222008-09-25 12:13:53 +020031#include <linux/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include <asm/atomic.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include <asm/mtrr.h>
34#include <asm/pgtable.h>
35#include <asm/proto.h>
FUJITA Tomonori46a7fa22008-07-11 10:23:42 +090036#include <asm/iommu.h>
Joerg Roedel395624f2007-10-24 12:49:47 +020037#include <asm/gart.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#include <asm/cacheflush.h>
Muli Ben-Yehuda17a941d2006-01-11 22:44:42 +010039#include <asm/swiotlb.h>
40#include <asm/dma.h>
Andi Kleena32073b2006-06-26 13:56:40 +020041#include <asm/k8.h>
FUJITA Tomonori338bac52009-10-27 16:34:44 +090042#include <asm/x86_init.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070043
Joerg Roedel79da0872007-10-24 12:49:49 +020044static unsigned long iommu_bus_base; /* GART remapping area (physical) */
Ingo Molnar05fccb02008-01-30 13:30:12 +010045static unsigned long iommu_size; /* size of remapping area bytes */
Linus Torvalds1da177e2005-04-16 15:20:36 -070046static unsigned long iommu_pages; /* .. and in pages */
47
Ingo Molnar05fccb02008-01-30 13:30:12 +010048static u32 *iommu_gatt_base; /* Remapping table */
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
FUJITA Tomonori42109192009-11-15 21:19:52 +090050static dma_addr_t bad_dma_addr;
51
Ingo Molnar05fccb02008-01-30 13:30:12 +010052/*
53 * If this is disabled the IOMMU will use an optimized flushing strategy
54 * of only flushing when an mapping is reused. With it true the GART is
55 * flushed for every mapping. Problem is that doing the lazy flush seems
56 * to trigger bugs with some popular PCI cards, in particular 3ware (but
57 * has been also also seen with Qlogic at least).
58 */
Jaswinder Singh Rajputc854c912008-12-29 20:38:09 +053059static int iommu_fullflush = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070060
Ingo Molnar05fccb02008-01-30 13:30:12 +010061/* Allocation bitmap for the remapping area: */
Linus Torvalds1da177e2005-04-16 15:20:36 -070062static DEFINE_SPINLOCK(iommu_bitmap_lock);
Ingo Molnar05fccb02008-01-30 13:30:12 +010063/* Guarded by iommu_bitmap_lock: */
64static unsigned long *iommu_gart_bitmap;
Linus Torvalds1da177e2005-04-16 15:20:36 -070065
Ingo Molnar05fccb02008-01-30 13:30:12 +010066static u32 gart_unmapped_entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -070067
68#define GPTE_VALID 1
69#define GPTE_COHERENT 2
70#define GPTE_ENCODE(x) \
71 (((x) & 0xfffff000) | (((x) >> 32) << 4) | GPTE_VALID | GPTE_COHERENT)
72#define GPTE_DECODE(x) (((x) & 0xfffff000) | (((u64)(x) & 0xff0) << 28))
73
Ingo Molnar05fccb02008-01-30 13:30:12 +010074#define EMERGENCY_PAGES 32 /* = 128KB */
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
76#ifdef CONFIG_AGP
77#define AGPEXTERN extern
78#else
79#define AGPEXTERN
80#endif
81
82/* backdoor interface to AGP driver */
83AGPEXTERN int agp_memory_reserved;
84AGPEXTERN __u32 *agp_gatt_table;
85
86static unsigned long next_bit; /* protected by iommu_bitmap_lock */
Joerg Roedel3610f212008-09-25 12:13:54 +020087static bool need_flush; /* global flush state. set for each gart wrap */
Linus Torvalds1da177e2005-04-16 15:20:36 -070088
FUJITA Tomonori7b22ff52008-08-18 00:36:18 +090089static unsigned long alloc_iommu(struct device *dev, int size,
90 unsigned long align_mask)
Ingo Molnar05fccb02008-01-30 13:30:12 +010091{
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 unsigned long offset, flags;
FUJITA Tomonorifde9a102008-02-04 22:28:11 -080093 unsigned long boundary_size;
94 unsigned long base_index;
95
96 base_index = ALIGN(iommu_bus_base & dma_get_seg_boundary(dev),
97 PAGE_SIZE) >> PAGE_SHIFT;
Prarit Bhargava05d3ed02008-07-21 10:15:22 -040098 boundary_size = ALIGN((unsigned long long)dma_get_seg_boundary(dev) + 1,
FUJITA Tomonorifde9a102008-02-04 22:28:11 -080099 PAGE_SIZE) >> PAGE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100
Ingo Molnar05fccb02008-01-30 13:30:12 +0100101 spin_lock_irqsave(&iommu_bitmap_lock, flags);
FUJITA Tomonorifde9a102008-02-04 22:28:11 -0800102 offset = iommu_area_alloc(iommu_gart_bitmap, iommu_pages, next_bit,
FUJITA Tomonori7b22ff52008-08-18 00:36:18 +0900103 size, base_index, boundary_size, align_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 if (offset == -1) {
Joerg Roedel3610f212008-09-25 12:13:54 +0200105 need_flush = true;
FUJITA Tomonorifde9a102008-02-04 22:28:11 -0800106 offset = iommu_area_alloc(iommu_gart_bitmap, iommu_pages, 0,
FUJITA Tomonori7b22ff52008-08-18 00:36:18 +0900107 size, base_index, boundary_size,
108 align_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 }
Ingo Molnar05fccb02008-01-30 13:30:12 +0100110 if (offset != -1) {
Ingo Molnar05fccb02008-01-30 13:30:12 +0100111 next_bit = offset+size;
112 if (next_bit >= iommu_pages) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 next_bit = 0;
Joerg Roedel3610f212008-09-25 12:13:54 +0200114 need_flush = true;
Ingo Molnar05fccb02008-01-30 13:30:12 +0100115 }
116 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 if (iommu_fullflush)
Joerg Roedel3610f212008-09-25 12:13:54 +0200118 need_flush = true;
Ingo Molnar05fccb02008-01-30 13:30:12 +0100119 spin_unlock_irqrestore(&iommu_bitmap_lock, flags);
120
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 return offset;
Ingo Molnar05fccb02008-01-30 13:30:12 +0100122}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123
124static void free_iommu(unsigned long offset, int size)
Ingo Molnar05fccb02008-01-30 13:30:12 +0100125{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 unsigned long flags;
Ingo Molnar05fccb02008-01-30 13:30:12 +0100127
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 spin_lock_irqsave(&iommu_bitmap_lock, flags);
FUJITA Tomonorifde9a102008-02-04 22:28:11 -0800129 iommu_area_free(iommu_gart_bitmap, offset, size);
Joerg Roedel70d7d352008-12-02 20:16:03 +0100130 if (offset >= next_bit)
131 next_bit = offset + size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 spin_unlock_irqrestore(&iommu_bitmap_lock, flags);
Ingo Molnar05fccb02008-01-30 13:30:12 +0100133}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134
Ingo Molnar05fccb02008-01-30 13:30:12 +0100135/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 * Use global flush state to avoid races with multiple flushers.
137 */
Andi Kleena32073b2006-06-26 13:56:40 +0200138static void flush_gart(void)
Ingo Molnar05fccb02008-01-30 13:30:12 +0100139{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 unsigned long flags;
Ingo Molnar05fccb02008-01-30 13:30:12 +0100141
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 spin_lock_irqsave(&iommu_bitmap_lock, flags);
Andi Kleena32073b2006-06-26 13:56:40 +0200143 if (need_flush) {
144 k8_flush_garts();
Joerg Roedel3610f212008-09-25 12:13:54 +0200145 need_flush = false;
Ingo Molnar05fccb02008-01-30 13:30:12 +0100146 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 spin_unlock_irqrestore(&iommu_bitmap_lock, flags);
Ingo Molnar05fccb02008-01-30 13:30:12 +0100148}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150#ifdef CONFIG_IOMMU_LEAK
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151/* Debugging aid for drivers that don't free their IOMMU tables */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152static int leak_trace;
Joerg Roedel79da0872007-10-24 12:49:49 +0200153static int iommu_leak_pages = 20;
Ingo Molnar05fccb02008-01-30 13:30:12 +0100154
Joerg Roedel79da0872007-10-24 12:49:49 +0200155static void dump_leak(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156{
Ingo Molnar05fccb02008-01-30 13:30:12 +0100157 static int dump;
158
FUJITA Tomonori19c1a6f2009-04-14 09:43:19 +0900159 if (dump)
Ingo Molnar05fccb02008-01-30 13:30:12 +0100160 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 dump = 1;
Ingo Molnar05fccb02008-01-30 13:30:12 +0100162
FUJITA Tomonori19c1a6f2009-04-14 09:43:19 +0900163 show_stack(NULL, NULL);
164 debug_dma_dump_mappings(NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166#endif
167
Muli Ben-Yehuda17a941d2006-01-11 22:44:42 +0100168static void iommu_full(struct device *dev, size_t size, int dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169{
Ingo Molnar05fccb02008-01-30 13:30:12 +0100170 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 * Ran out of IOMMU space for this operation. This is very bad.
172 * Unfortunately the drivers cannot handle this operation properly.
Ingo Molnar05fccb02008-01-30 13:30:12 +0100173 * Return some non mapped prereserved space in the aperture and
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 * let the Northbridge deal with it. This will result in garbage
175 * in the IO operation. When the size exceeds the prereserved space
Ingo Molnar05fccb02008-01-30 13:30:12 +0100176 * memory corruption will occur or random memory will be DMAed
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 * out. Hopefully no network devices use single mappings that big.
Ingo Molnar05fccb02008-01-30 13:30:12 +0100178 */
179
Greg Kroah-Hartmanfc3a8822008-05-02 06:02:41 +0200180 dev_err(dev, "PCI-DMA: Out of IOMMU space for %lu bytes\n", size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181
Muli Ben-Yehuda17a941d2006-01-11 22:44:42 +0100182 if (size > PAGE_SIZE*EMERGENCY_PAGES) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 if (dir == PCI_DMA_FROMDEVICE || dir == PCI_DMA_BIDIRECTIONAL)
184 panic("PCI-DMA: Memory would be corrupted\n");
Ingo Molnar05fccb02008-01-30 13:30:12 +0100185 if (dir == PCI_DMA_TODEVICE || dir == PCI_DMA_BIDIRECTIONAL)
186 panic(KERN_ERR
187 "PCI-DMA: Random memory would be DMAed\n");
188 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189#ifdef CONFIG_IOMMU_LEAK
Ingo Molnar05fccb02008-01-30 13:30:12 +0100190 dump_leak();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192}
193
Ingo Molnar05fccb02008-01-30 13:30:12 +0100194static inline int
195need_iommu(struct device *dev, unsigned long addr, size_t size)
196{
FUJITA Tomonoria4c2baa2009-07-10 10:04:55 +0900197 return force_iommu || !dma_capable(dev, addr, size);
Ingo Molnar05fccb02008-01-30 13:30:12 +0100198}
199
200static inline int
201nonforced_iommu(struct device *dev, unsigned long addr, size_t size)
202{
FUJITA Tomonoria4c2baa2009-07-10 10:04:55 +0900203 return !dma_capable(dev, addr, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204}
205
206/* Map a single continuous physical area into the IOMMU.
207 * Caller needs to check if the iommu is needed and flush.
208 */
Muli Ben-Yehuda17a941d2006-01-11 22:44:42 +0100209static dma_addr_t dma_map_area(struct device *dev, dma_addr_t phys_mem,
FUJITA Tomonori7b22ff52008-08-18 00:36:18 +0900210 size_t size, int dir, unsigned long align_mask)
Ingo Molnar05fccb02008-01-30 13:30:12 +0100211{
Joerg Roedel1477b8e2008-10-15 22:02:11 -0700212 unsigned long npages = iommu_num_pages(phys_mem, size, PAGE_SIZE);
FUJITA Tomonori7b22ff52008-08-18 00:36:18 +0900213 unsigned long iommu_page = alloc_iommu(dev, npages, align_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 int i;
Ingo Molnar05fccb02008-01-30 13:30:12 +0100215
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 if (iommu_page == -1) {
217 if (!nonforced_iommu(dev, phys_mem, size))
Ingo Molnar05fccb02008-01-30 13:30:12 +0100218 return phys_mem;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 if (panic_on_overflow)
220 panic("dma_map_area overflow %lu bytes\n", size);
Muli Ben-Yehuda17a941d2006-01-11 22:44:42 +0100221 iommu_full(dev, size, dir);
FUJITA Tomonori42109192009-11-15 21:19:52 +0900222 return bad_dma_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 }
224
225 for (i = 0; i < npages; i++) {
226 iommu_gatt_base[iommu_page + i] = GPTE_ENCODE(phys_mem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 phys_mem += PAGE_SIZE;
228 }
229 return iommu_bus_base + iommu_page*PAGE_SIZE + (phys_mem & ~PAGE_MASK);
230}
231
232/* Map a single area into the IOMMU */
FUJITA Tomonori052aedb2009-01-05 23:47:23 +0900233static dma_addr_t gart_map_page(struct device *dev, struct page *page,
234 unsigned long offset, size_t size,
235 enum dma_data_direction dir,
236 struct dma_attrs *attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237{
Ingo Molnar2be62142008-04-19 19:19:56 +0200238 unsigned long bus;
FUJITA Tomonori052aedb2009-01-05 23:47:23 +0900239 phys_addr_t paddr = page_to_phys(page) + offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 if (!dev)
Joerg Roedel6c505ce2008-08-19 16:32:45 +0200242 dev = &x86_dma_fallback_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243
Ingo Molnar2be62142008-04-19 19:19:56 +0200244 if (!need_iommu(dev, paddr, size))
245 return paddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246
FUJITA Tomonori7b22ff52008-08-18 00:36:18 +0900247 bus = dma_map_area(dev, paddr, size, dir, 0);
248 flush_gart();
Ingo Molnar05fccb02008-01-30 13:30:12 +0100249
250 return bus;
Muli Ben-Yehuda17a941d2006-01-11 22:44:42 +0100251}
252
253/*
Jon Mason7c2d9cd2006-06-26 13:56:37 +0200254 * Free a DMA mapping.
255 */
FUJITA Tomonori052aedb2009-01-05 23:47:23 +0900256static void gart_unmap_page(struct device *dev, dma_addr_t dma_addr,
257 size_t size, enum dma_data_direction dir,
258 struct dma_attrs *attrs)
Jon Mason7c2d9cd2006-06-26 13:56:37 +0200259{
260 unsigned long iommu_page;
261 int npages;
262 int i;
263
264 if (dma_addr < iommu_bus_base + EMERGENCY_PAGES*PAGE_SIZE ||
265 dma_addr >= iommu_bus_base + iommu_size)
266 return;
Ingo Molnar05fccb02008-01-30 13:30:12 +0100267
Jon Mason7c2d9cd2006-06-26 13:56:37 +0200268 iommu_page = (dma_addr - iommu_bus_base)>>PAGE_SHIFT;
Joerg Roedel1477b8e2008-10-15 22:02:11 -0700269 npages = iommu_num_pages(dma_addr, size, PAGE_SIZE);
Jon Mason7c2d9cd2006-06-26 13:56:37 +0200270 for (i = 0; i < npages; i++) {
271 iommu_gatt_base[iommu_page + i] = gart_unmapped_entry;
Jon Mason7c2d9cd2006-06-26 13:56:37 +0200272 }
273 free_iommu(iommu_page, npages);
274}
275
276/*
Muli Ben-Yehuda17a941d2006-01-11 22:44:42 +0100277 * Wrapper for pci_unmap_single working with scatterlists.
278 */
FUJITA Tomonori160c1d82009-01-05 23:59:02 +0900279static void gart_unmap_sg(struct device *dev, struct scatterlist *sg, int nents,
280 enum dma_data_direction dir, struct dma_attrs *attrs)
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;
FUJITA Tomonorid7dff842009-01-05 23:47:28 +0900288 gart_unmap_page(dev, s->dma_address, s->dma_length, dir, NULL);
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) {
Jens Axboe58b053e2007-10-22 20:02:46 +0200304 unsigned long addr = sg_phys(s);
Ingo Molnar05fccb02008-01-30 13:30:12 +0100305
306 if (nonforced_iommu(dev, addr, s->length)) {
FUJITA Tomonori7b22ff52008-08-18 00:36:18 +0900307 addr = dma_map_area(dev, addr, s->length, dir, 0);
FUJITA Tomonori42109192009-11-15 21:19:52 +0900308 if (addr == bad_dma_addr) {
Ingo Molnar05fccb02008-01-30 13:30:12 +0100309 if (i > 0)
FUJITA Tomonori160c1d82009-01-05 23:59:02 +0900310 gart_unmap_sg(dev, sg, i, dir, NULL);
Ingo Molnar05fccb02008-01-30 13:30:12 +0100311 nents = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 sg[0].dma_length = 0;
313 break;
314 }
315 }
316 s->dma_address = addr;
317 s->dma_length = s->length;
318 }
Andi Kleena32073b2006-06-26 13:56:40 +0200319 flush_gart();
Ingo Molnar05fccb02008-01-30 13:30:12 +0100320
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 return nents;
322}
323
324/* Map multiple scatterlist entries continuous into the first. */
FUJITA Tomonorifde9a102008-02-04 22:28:11 -0800325static int __dma_map_cont(struct device *dev, struct scatterlist *start,
326 int nelems, struct scatterlist *sout,
327 unsigned long pages)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328{
FUJITA Tomonori7b22ff52008-08-18 00:36:18 +0900329 unsigned long iommu_start = alloc_iommu(dev, pages, 0);
Ingo Molnar05fccb02008-01-30 13:30:12 +0100330 unsigned long iommu_page = iommu_start;
Jens Axboe9ee1bea2007-10-04 09:35:37 +0200331 struct scatterlist *s;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 int i;
333
334 if (iommu_start == -1)
335 return -1;
Jens Axboe9ee1bea2007-10-04 09:35:37 +0200336
337 for_each_sg(start, s, nelems, i) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 unsigned long pages, addr;
339 unsigned long phys_addr = s->dma_address;
Ingo Molnar05fccb02008-01-30 13:30:12 +0100340
Jens Axboe9ee1bea2007-10-04 09:35:37 +0200341 BUG_ON(s != start && s->offset);
342 if (s == start) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 sout->dma_address = iommu_bus_base;
344 sout->dma_address += iommu_page*PAGE_SIZE + s->offset;
345 sout->dma_length = s->length;
Ingo Molnar05fccb02008-01-30 13:30:12 +0100346 } else {
347 sout->dma_length += s->length;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 }
349
350 addr = phys_addr;
Joerg Roedel1477b8e2008-10-15 22:02:11 -0700351 pages = iommu_num_pages(s->offset, s->length, PAGE_SIZE);
Ingo Molnar05fccb02008-01-30 13:30:12 +0100352 while (pages--) {
353 iommu_gatt_base[iommu_page] = GPTE_ENCODE(addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 addr += PAGE_SIZE;
355 iommu_page++;
Andi Kleen0d5410642006-02-12 14:34:59 -0800356 }
Ingo Molnar05fccb02008-01-30 13:30:12 +0100357 }
358 BUG_ON(iommu_page - iommu_start != pages);
359
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 return 0;
361}
362
Ingo Molnar05fccb02008-01-30 13:30:12 +0100363static inline int
FUJITA Tomonorifde9a102008-02-04 22:28:11 -0800364dma_map_cont(struct device *dev, struct scatterlist *start, int nelems,
365 struct scatterlist *sout, unsigned long pages, int need)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366{
Jens Axboe9ee1bea2007-10-04 09:35:37 +0200367 if (!need) {
368 BUG_ON(nelems != 1);
FUJITA Tomonorie88a39d2007-10-25 09:13:32 +0200369 sout->dma_address = start->dma_address;
Jens Axboe9ee1bea2007-10-04 09:35:37 +0200370 sout->dma_length = start->length;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 return 0;
Jens Axboe9ee1bea2007-10-04 09:35:37 +0200372 }
FUJITA Tomonorifde9a102008-02-04 22:28:11 -0800373 return __dma_map_cont(dev, start, nelems, sout, pages);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374}
Ingo Molnar05fccb02008-01-30 13:30:12 +0100375
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376/*
377 * DMA map all entries in a scatterlist.
Ingo Molnar05fccb02008-01-30 13:30:12 +0100378 * Merge chunks that have page aligned sizes into a continuous mapping.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 */
FUJITA Tomonori160c1d82009-01-05 23:59:02 +0900380static int gart_map_sg(struct device *dev, struct scatterlist *sg, int nents,
381 enum dma_data_direction dir, struct dma_attrs *attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382{
Jens Axboe9ee1bea2007-10-04 09:35:37 +0200383 struct scatterlist *s, *ps, *start_sg, *sgmap;
Ingo Molnar05fccb02008-01-30 13:30:12 +0100384 int need = 0, nextneed, i, out, start;
385 unsigned long pages = 0;
FUJITA Tomonori42d00282008-02-04 22:27:56 -0800386 unsigned int seg_size;
387 unsigned int max_seg_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388
Ingo Molnar05fccb02008-01-30 13:30:12 +0100389 if (nents == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 return 0;
391
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 if (!dev)
Joerg Roedel6c505ce2008-08-19 16:32:45 +0200393 dev = &x86_dma_fallback_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394
395 out = 0;
396 start = 0;
Jens Axboe9ee1bea2007-10-04 09:35:37 +0200397 start_sg = sgmap = sg;
FUJITA Tomonori42d00282008-02-04 22:27:56 -0800398 seg_size = 0;
399 max_seg_size = dma_get_max_seg_size(dev);
Jens Axboe9ee1bea2007-10-04 09:35:37 +0200400 ps = NULL; /* shut up gcc */
401 for_each_sg(sg, s, nents, i) {
Jens Axboe58b053e2007-10-22 20:02:46 +0200402 dma_addr_t addr = sg_phys(s);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403
Ingo Molnar05fccb02008-01-30 13:30:12 +0100404 s->dma_address = addr;
405 BUG_ON(s->length == 0);
406
407 nextneed = need_iommu(dev, addr, s->length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408
409 /* Handle the previous not yet processed entries */
410 if (i > start) {
Ingo Molnar05fccb02008-01-30 13:30:12 +0100411 /*
412 * Can only merge when the last chunk ends on a
413 * page boundary and the new one doesn't have an
414 * offset.
415 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 if (!iommu_merge || !nextneed || !need || s->offset ||
FUJITA Tomonori42d00282008-02-04 22:27:56 -0800417 (s->length + seg_size > max_seg_size) ||
Jens Axboe9ee1bea2007-10-04 09:35:37 +0200418 (ps->offset + ps->length) % PAGE_SIZE) {
FUJITA Tomonorifde9a102008-02-04 22:28:11 -0800419 if (dma_map_cont(dev, start_sg, i - start,
420 sgmap, pages, need) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 goto error;
422 out++;
FUJITA Tomonori42d00282008-02-04 22:27:56 -0800423 seg_size = 0;
Jens Axboe9ee1bea2007-10-04 09:35:37 +0200424 sgmap = sg_next(sgmap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 pages = 0;
Jens Axboe9ee1bea2007-10-04 09:35:37 +0200426 start = i;
427 start_sg = s;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 }
429 }
430
FUJITA Tomonori42d00282008-02-04 22:27:56 -0800431 seg_size += s->length;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 need = nextneed;
Joerg Roedel1477b8e2008-10-15 22:02:11 -0700433 pages += iommu_num_pages(s->offset, s->length, PAGE_SIZE);
Jens Axboe9ee1bea2007-10-04 09:35:37 +0200434 ps = s;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 }
FUJITA Tomonorifde9a102008-02-04 22:28:11 -0800436 if (dma_map_cont(dev, start_sg, i - start, sgmap, pages, need) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 goto error;
438 out++;
Andi Kleena32073b2006-06-26 13:56:40 +0200439 flush_gart();
Jens Axboe9ee1bea2007-10-04 09:35:37 +0200440 if (out < nents) {
441 sgmap = sg_next(sgmap);
442 sgmap->dma_length = 0;
443 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 return out;
445
446error:
Andi Kleena32073b2006-06-26 13:56:40 +0200447 flush_gart();
FUJITA Tomonori160c1d82009-01-05 23:59:02 +0900448 gart_unmap_sg(dev, sg, out, dir, NULL);
Ingo Molnar05fccb02008-01-30 13:30:12 +0100449
Kevin VanMarena1002a42006-02-03 21:51:32 +0100450 /* When it was forced or merged try again in a dumb way */
451 if (force_iommu || iommu_merge) {
452 out = dma_map_sg_nonforce(dev, sg, nents, dir);
453 if (out > 0)
454 return out;
455 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 if (panic_on_overflow)
457 panic("dma_map_sg: overflow on %lu pages\n", pages);
Ingo Molnar05fccb02008-01-30 13:30:12 +0100458
Muli Ben-Yehuda17a941d2006-01-11 22:44:42 +0100459 iommu_full(dev, pages << PAGE_SHIFT, dir);
Jens Axboe9ee1bea2007-10-04 09:35:37 +0200460 for_each_sg(sg, s, nents, i)
FUJITA Tomonori42109192009-11-15 21:19:52 +0900461 s->dma_address = bad_dma_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 return 0;
Ingo Molnar05fccb02008-01-30 13:30:12 +0100463}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464
Joerg Roedel94581092008-08-19 16:32:39 +0200465/* allocate and map a coherent mapping */
466static void *
467gart_alloc_coherent(struct device *dev, size_t size, dma_addr_t *dma_addr,
468 gfp_t flag)
469{
FUJITA Tomonorif6a32a32008-09-11 23:08:48 +0900470 dma_addr_t paddr;
FUJITA Tomonori421076e2008-08-22 16:29:10 +0900471 unsigned long align_mask;
FUJITA Tomonori1d990882008-09-24 20:48:37 +0900472 struct page *page;
Joerg Roedel94581092008-08-19 16:32:39 +0200473
FUJITA Tomonori1d990882008-09-24 20:48:37 +0900474 if (force_iommu && !(flag & GFP_DMA)) {
475 flag &= ~(__GFP_DMA | __GFP_HIGHMEM | __GFP_DMA32);
476 page = alloc_pages(flag | __GFP_ZERO, get_order(size));
477 if (!page)
478 return NULL;
Joerg Roedel94581092008-08-19 16:32:39 +0200479
FUJITA Tomonori1d990882008-09-24 20:48:37 +0900480 align_mask = (1UL << get_order(size)) - 1;
481 paddr = dma_map_area(dev, page_to_phys(page), size,
482 DMA_BIDIRECTIONAL, align_mask);
FUJITA Tomonorif6a32a32008-09-11 23:08:48 +0900483
FUJITA Tomonori1d990882008-09-24 20:48:37 +0900484 flush_gart();
FUJITA Tomonori42109192009-11-15 21:19:52 +0900485 if (paddr != bad_dma_addr) {
FUJITA Tomonori1d990882008-09-24 20:48:37 +0900486 *dma_addr = paddr;
487 return page_address(page);
488 }
489 __free_pages(page, get_order(size));
490 } else
491 return dma_generic_alloc_coherent(dev, size, dma_addr, flag);
Joerg Roedel94581092008-08-19 16:32:39 +0200492
493 return NULL;
494}
495
Joerg Roedel43a5a5a2008-08-19 16:32:40 +0200496/* free a coherent mapping */
497static void
498gart_free_coherent(struct device *dev, size_t size, void *vaddr,
499 dma_addr_t dma_addr)
500{
FUJITA Tomonorid7dff842009-01-05 23:47:28 +0900501 gart_unmap_page(dev, dma_addr, size, DMA_BIDIRECTIONAL, NULL);
Joerg Roedel43a5a5a2008-08-19 16:32:40 +0200502 free_pages((unsigned long)vaddr, get_order(size));
503}
504
FUJITA Tomonori42109192009-11-15 21:19:52 +0900505static int gart_mapping_error(struct device *dev, dma_addr_t dma_addr)
506{
507 return (dma_addr == bad_dma_addr);
508}
509
Muli Ben-Yehuda17a941d2006-01-11 22:44:42 +0100510static int no_agp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511
512static __init unsigned long check_iommu_size(unsigned long aper, u64 aper_size)
Ingo Molnar05fccb02008-01-30 13:30:12 +0100513{
514 unsigned long a;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515
Ingo Molnar05fccb02008-01-30 13:30:12 +0100516 if (!iommu_size) {
517 iommu_size = aper_size;
518 if (!no_agp)
519 iommu_size /= 2;
520 }
521
522 a = aper + iommu_size;
Andi Kleen31422c52008-02-04 16:48:08 +0100523 iommu_size -= round_up(a, PMD_PAGE_SIZE) - a;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524
Ingo Molnar05fccb02008-01-30 13:30:12 +0100525 if (iommu_size < 64*1024*1024) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 printk(KERN_WARNING
Ingo Molnar05fccb02008-01-30 13:30:12 +0100527 "PCI-DMA: Warning: Small IOMMU %luMB."
528 " Consider increasing the AGP aperture in BIOS\n",
529 iommu_size >> 20);
530 }
531
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 return iommu_size;
Ingo Molnar05fccb02008-01-30 13:30:12 +0100533}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534
Ingo Molnar05fccb02008-01-30 13:30:12 +0100535static __init unsigned read_aperture(struct pci_dev *dev, u32 *size)
536{
537 unsigned aper_size = 0, aper_base_32, aper_order;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 u64 aper_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539
Pavel Machek3bb6fbf2008-04-15 12:43:57 +0200540 pci_read_config_dword(dev, AMD64_GARTAPERTUREBASE, &aper_base_32);
541 pci_read_config_dword(dev, AMD64_GARTAPERTURECTL, &aper_order);
Ingo Molnar05fccb02008-01-30 13:30:12 +0100542 aper_order = (aper_order >> 1) & 7;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543
Ingo Molnar05fccb02008-01-30 13:30:12 +0100544 aper_base = aper_base_32 & 0x7fff;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 aper_base <<= 25;
546
Ingo Molnar05fccb02008-01-30 13:30:12 +0100547 aper_size = (32 * 1024 * 1024) << aper_order;
548 if (aper_base + aper_size > 0x100000000UL || !aper_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 aper_base = 0;
550
551 *size = aper_size;
552 return aper_base;
Ingo Molnar05fccb02008-01-30 13:30:12 +0100553}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554
Rafael J. Wysocki6703f6d2008-06-10 00:10:48 +0200555static void enable_gart_translations(void)
556{
557 int i;
558
559 for (i = 0; i < num_k8_northbridges; i++) {
560 struct pci_dev *dev = k8_northbridges[i];
561
562 enable_gart_translation(dev, __pa(agp_gatt_table));
563 }
564}
565
566/*
567 * If fix_up_north_bridges is set, the north bridges have to be fixed up on
568 * resume in the same way as they are handled in gart_iommu_hole_init().
569 */
570static bool fix_up_north_bridges;
571static u32 aperture_order;
572static u32 aperture_alloc;
573
574void set_up_gart_resume(u32 aper_order, u32 aper_alloc)
575{
576 fix_up_north_bridges = true;
577 aperture_order = aper_order;
578 aperture_alloc = aper_alloc;
579}
580
Pavel Machekcd763742008-05-29 00:30:21 -0700581static int gart_resume(struct sys_device *dev)
582{
Rafael J. Wysocki6703f6d2008-06-10 00:10:48 +0200583 printk(KERN_INFO "PCI-DMA: Resuming GART IOMMU\n");
584
585 if (fix_up_north_bridges) {
586 int i;
587
588 printk(KERN_INFO "PCI-DMA: Restoring GART aperture settings\n");
589
590 for (i = 0; i < num_k8_northbridges; i++) {
591 struct pci_dev *dev = k8_northbridges[i];
592
593 /*
594 * Don't enable translations just yet. That is the next
595 * step. Restore the pre-suspend aperture settings.
596 */
597 pci_write_config_dword(dev, AMD64_GARTAPERTURECTL,
598 aperture_order << 1);
599 pci_write_config_dword(dev, AMD64_GARTAPERTUREBASE,
600 aperture_alloc >> 25);
601 }
602 }
603
604 enable_gart_translations();
605
Pavel Machekcd763742008-05-29 00:30:21 -0700606 return 0;
607}
608
609static int gart_suspend(struct sys_device *dev, pm_message_t state)
610{
Rafael J. Wysocki6703f6d2008-06-10 00:10:48 +0200611 return 0;
Pavel Machekcd763742008-05-29 00:30:21 -0700612}
613
614static struct sysdev_class gart_sysdev_class = {
615 .name = "gart",
616 .suspend = gart_suspend,
617 .resume = gart_resume,
618
619};
620
621static struct sys_device device_gart = {
622 .id = 0,
623 .cls = &gart_sysdev_class,
624};
625
Ingo Molnar05fccb02008-01-30 13:30:12 +0100626/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 * Private Northbridge GATT initialization in case we cannot use the
Ingo Molnar05fccb02008-01-30 13:30:12 +0100628 * AGP driver for some reason.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 */
630static __init int init_k8_gatt(struct agp_kern_info *info)
Ingo Molnar05fccb02008-01-30 13:30:12 +0100631{
632 unsigned aper_size, gatt_size, new_aper_size;
633 unsigned aper_base, new_aper_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 struct pci_dev *dev;
635 void *gatt;
Pavel Machekcd763742008-05-29 00:30:21 -0700636 int i, error;
Andi Kleena32073b2006-06-26 13:56:40 +0200637
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 printk(KERN_INFO "PCI-DMA: Disabling AGP.\n");
639 aper_size = aper_base = info->aper_size = 0;
Andi Kleena32073b2006-06-26 13:56:40 +0200640 dev = NULL;
641 for (i = 0; i < num_k8_northbridges; i++) {
642 dev = k8_northbridges[i];
Ingo Molnar05fccb02008-01-30 13:30:12 +0100643 new_aper_base = read_aperture(dev, &new_aper_size);
644 if (!new_aper_base)
645 goto nommu;
646
647 if (!aper_base) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 aper_size = new_aper_size;
649 aper_base = new_aper_base;
Ingo Molnar05fccb02008-01-30 13:30:12 +0100650 }
651 if (aper_size != new_aper_size || aper_base != new_aper_base)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 goto nommu;
653 }
654 if (!aper_base)
Ingo Molnar05fccb02008-01-30 13:30:12 +0100655 goto nommu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 info->aper_base = aper_base;
Ingo Molnar05fccb02008-01-30 13:30:12 +0100657 info->aper_size = aper_size >> 20;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658
Ingo Molnar05fccb02008-01-30 13:30:12 +0100659 gatt_size = (aper_size >> PAGE_SHIFT) * sizeof(u32);
Joerg Roedel01142672008-09-25 12:42:12 +0200660 gatt = (void *)__get_free_pages(GFP_KERNEL | __GFP_ZERO,
661 get_order(gatt_size));
Ingo Molnar05fccb02008-01-30 13:30:12 +0100662 if (!gatt)
Joachim Deguaracf6387d2007-04-24 13:05:36 +0200663 panic("Cannot allocate GATT table");
Arjan van de Ven6d238cc2008-01-30 13:34:06 +0100664 if (set_memory_uc((unsigned long)gatt, gatt_size >> PAGE_SHIFT))
Joachim Deguaracf6387d2007-04-24 13:05:36 +0200665 panic("Could not set GART PTEs to uncacheable pages");
Joachim Deguaracf6387d2007-04-24 13:05:36 +0200666
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667 agp_gatt_table = gatt;
Andi Kleena32073b2006-06-26 13:56:40 +0200668
Pavel Machekcd763742008-05-29 00:30:21 -0700669 error = sysdev_class_register(&gart_sysdev_class);
670 if (!error)
671 error = sysdev_register(&device_gart);
672 if (error)
Joerg Roedel237a6222008-09-25 12:13:53 +0200673 panic("Could not register gart_sysdev -- "
674 "would corrupt data on next suspend");
Rafael J. Wysocki6703f6d2008-06-10 00:10:48 +0200675
Andi Kleena32073b2006-06-26 13:56:40 +0200676 flush_gart();
Ingo Molnar05fccb02008-01-30 13:30:12 +0100677
678 printk(KERN_INFO "PCI-DMA: aperture base @ %x size %u KB\n",
679 aper_base, aper_size>>10);
Yinghai Lu7ab073b2008-07-12 14:30:35 -0700680
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 return 0;
682
683 nommu:
Ingo Molnar05fccb02008-01-30 13:30:12 +0100684 /* Should not happen anymore */
Pavel Machek8f596102008-04-01 14:24:03 +0200685 printk(KERN_WARNING "PCI-DMA: More than 4GB of RAM and no IOMMU\n"
Joe Perchesad361c92009-07-06 13:05:40 -0700686 "falling back to iommu=soft.\n");
Ingo Molnar05fccb02008-01-30 13:30:12 +0100687 return -1;
688}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689
FUJITA Tomonori160c1d82009-01-05 23:59:02 +0900690static struct dma_map_ops gart_dma_ops = {
Ingo Molnar05fccb02008-01-30 13:30:12 +0100691 .map_sg = gart_map_sg,
692 .unmap_sg = gart_unmap_sg,
FUJITA Tomonori052aedb2009-01-05 23:47:23 +0900693 .map_page = gart_map_page,
694 .unmap_page = gart_unmap_page,
Joerg Roedel94581092008-08-19 16:32:39 +0200695 .alloc_coherent = gart_alloc_coherent,
Joerg Roedel43a5a5a2008-08-19 16:32:40 +0200696 .free_coherent = gart_free_coherent,
FUJITA Tomonori42109192009-11-15 21:19:52 +0900697 .mapping_error = gart_mapping_error,
Muli Ben-Yehuda17a941d2006-01-11 22:44:42 +0100698};
699
FUJITA Tomonori338bac52009-10-27 16:34:44 +0900700static void gart_iommu_shutdown(void)
Yinghai Lubc2cea62007-07-21 17:11:28 +0200701{
702 struct pci_dev *dev;
703 int i;
704
FUJITA Tomonori338bac52009-10-27 16:34:44 +0900705 if (no_agp)
Yinghai Lubc2cea62007-07-21 17:11:28 +0200706 return;
707
Ingo Molnar05fccb02008-01-30 13:30:12 +0100708 for (i = 0; i < num_k8_northbridges; i++) {
709 u32 ctl;
Yinghai Lubc2cea62007-07-21 17:11:28 +0200710
Ingo Molnar05fccb02008-01-30 13:30:12 +0100711 dev = k8_northbridges[i];
Pavel Machek3bb6fbf2008-04-15 12:43:57 +0200712 pci_read_config_dword(dev, AMD64_GARTAPERTURECTL, &ctl);
Yinghai Lubc2cea62007-07-21 17:11:28 +0200713
Pavel Machek3bb6fbf2008-04-15 12:43:57 +0200714 ctl &= ~GARTEN;
Yinghai Lubc2cea62007-07-21 17:11:28 +0200715
Pavel Machek3bb6fbf2008-04-15 12:43:57 +0200716 pci_write_config_dword(dev, AMD64_GARTAPERTURECTL, ctl);
Ingo Molnar05fccb02008-01-30 13:30:12 +0100717 }
Yinghai Lubc2cea62007-07-21 17:11:28 +0200718}
719
FUJITA Tomonoride957622009-11-10 19:46:14 +0900720int __init gart_iommu_init(void)
Ingo Molnar05fccb02008-01-30 13:30:12 +0100721{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 struct agp_kern_info info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 unsigned long iommu_start;
Yinghai Lud99e9012008-10-04 15:55:12 -0700724 unsigned long aper_base, aper_size;
725 unsigned long start_pfn, end_pfn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 unsigned long scratch;
727 long i;
728
Bjorn Helgaas55aab5f2008-12-17 12:52:34 -0700729 if (cache_k8_northbridges() < 0 || num_k8_northbridges == 0)
FUJITA Tomonoride957622009-11-10 19:46:14 +0900730 return 0;
Andi Kleena32073b2006-06-26 13:56:40 +0200731
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732#ifndef CONFIG_AGP_AMD64
Ingo Molnar05fccb02008-01-30 13:30:12 +0100733 no_agp = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734#else
735 /* Makefile puts PCI initialization via subsys_initcall first. */
736 /* Add other K8 AGP bridge drivers here */
Ingo Molnar05fccb02008-01-30 13:30:12 +0100737 no_agp = no_agp ||
738 (agp_amd64_init() < 0) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 (agp_copy_info(agp_bridge, &info) < 0);
Ingo Molnar05fccb02008-01-30 13:30:12 +0100740#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 if (no_iommu ||
Yinghai Luc987d122008-06-24 22:14:09 -0700743 (!force_iommu && max_pfn <= MAX_DMA32_PFN) ||
Joerg Roedel0440d4c2007-10-24 12:49:50 +0200744 !gart_iommu_aperture ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 (no_agp && init_k8_gatt(&info) < 0)) {
Yinghai Luc987d122008-06-24 22:14:09 -0700746 if (max_pfn > MAX_DMA32_PFN) {
Pavel Machek8f596102008-04-01 14:24:03 +0200747 printk(KERN_WARNING "More than 4GB of memory "
Joerg Roedel237a6222008-09-25 12:13:53 +0200748 "but GART IOMMU not available.\n");
749 printk(KERN_WARNING "falling back to iommu=soft.\n");
Jon Mason5b7b6442006-02-03 21:51:59 +0100750 }
FUJITA Tomonoride957622009-11-10 19:46:14 +0900751 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 }
753
Yinghai Lud99e9012008-10-04 15:55:12 -0700754 /* need to map that range */
755 aper_size = info.aper_size << 20;
756 aper_base = info.aper_base;
757 end_pfn = (aper_base>>PAGE_SHIFT) + (aper_size>>PAGE_SHIFT);
758 if (end_pfn > max_low_pfn_mapped) {
759 start_pfn = (aper_base>>PAGE_SHIFT);
760 init_memory_mapping(start_pfn<<PAGE_SHIFT, end_pfn<<PAGE_SHIFT);
761 }
762
Jon Mason5b7b6442006-02-03 21:51:59 +0100763 printk(KERN_INFO "PCI-DMA: using GART IOMMU.\n");
Ingo Molnar05fccb02008-01-30 13:30:12 +0100764 iommu_size = check_iommu_size(info.aper_base, aper_size);
765 iommu_pages = iommu_size >> PAGE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766
Joerg Roedel01142672008-09-25 12:42:12 +0200767 iommu_gart_bitmap = (void *) __get_free_pages(GFP_KERNEL | __GFP_ZERO,
Ingo Molnar05fccb02008-01-30 13:30:12 +0100768 get_order(iommu_pages/8));
769 if (!iommu_gart_bitmap)
770 panic("Cannot allocate iommu bitmap\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771
772#ifdef CONFIG_IOMMU_LEAK
Ingo Molnar05fccb02008-01-30 13:30:12 +0100773 if (leak_trace) {
FUJITA Tomonori19c1a6f2009-04-14 09:43:19 +0900774 int ret;
775
776 ret = dma_debug_resize_entries(iommu_pages);
777 if (ret)
Ingo Molnar05fccb02008-01-30 13:30:12 +0100778 printk(KERN_DEBUG
FUJITA Tomonori19c1a6f2009-04-14 09:43:19 +0900779 "PCI-DMA: Cannot trace all the entries\n");
Ingo Molnar05fccb02008-01-30 13:30:12 +0100780 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781#endif
782
Ingo Molnar05fccb02008-01-30 13:30:12 +0100783 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 * Out of IOMMU space handling.
Ingo Molnar05fccb02008-01-30 13:30:12 +0100785 * Reserve some invalid pages at the beginning of the GART.
786 */
FUJITA Tomonorid26dbc52008-09-22 22:35:07 +0900787 iommu_area_reserve(iommu_gart_bitmap, 0, EMERGENCY_PAGES);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788
Ingo Molnar05fccb02008-01-30 13:30:12 +0100789 agp_memory_reserved = iommu_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 printk(KERN_INFO
791 "PCI-DMA: Reserving %luMB of IOMMU area in the AGP aperture\n",
Ingo Molnar05fccb02008-01-30 13:30:12 +0100792 iommu_size >> 20);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793
Ingo Molnar05fccb02008-01-30 13:30:12 +0100794 iommu_start = aper_size - iommu_size;
795 iommu_bus_base = info.aper_base + iommu_start;
FUJITA Tomonori42109192009-11-15 21:19:52 +0900796 bad_dma_addr = iommu_bus_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 iommu_gatt_base = agp_gatt_table + (iommu_start>>PAGE_SHIFT);
798
Ingo Molnar05fccb02008-01-30 13:30:12 +0100799 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 * Unmap the IOMMU part of the GART. The alias of the page is
801 * always mapped with cache enabled and there is no full cache
802 * coherency across the GART remapping. The unmapping avoids
803 * automatic prefetches from the CPU allocating cache lines in
804 * there. All CPU accesses are done via the direct mapping to
805 * the backing memory. The GART address is only used by PCI
Ingo Molnar05fccb02008-01-30 13:30:12 +0100806 * devices.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 */
Andi Kleen28d6ee42008-02-04 16:48:08 +0100808 set_memory_np((unsigned long)__va(iommu_bus_base),
809 iommu_size >> PAGE_SHIFT);
Ingo Molnar184652e2008-02-14 23:30:20 +0100810 /*
811 * Tricky. The GART table remaps the physical memory range,
812 * so the CPU wont notice potential aliases and if the memory
813 * is remapped to UC later on, we might surprise the PCI devices
814 * with a stray writeout of a cacheline. So play it sure and
815 * do an explicit, full-scale wbinvd() _after_ having marked all
816 * the pages as Not-Present:
817 */
818 wbinvd();
Mark Langsdorffe2245c2009-07-05 15:50:52 -0500819
820 /*
821 * Now all caches are flushed and we can safely enable
822 * GART hardware. Doing it early leaves the possibility
823 * of stale cache entries that can lead to GART PTE
824 * errors.
825 */
826 enable_gart_translations();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827
Ingo Molnar05fccb02008-01-30 13:30:12 +0100828 /*
Pavel Machekfa3d3192008-06-26 00:25:43 +0200829 * Try to workaround a bug (thanks to BenH):
Ingo Molnar05fccb02008-01-30 13:30:12 +0100830 * Set unmapped entries to a scratch page instead of 0.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 * Any prefetches that hit unmapped entries won't get an bus abort
Pavel Machekfa3d3192008-06-26 00:25:43 +0200832 * then. (P2P bridge may be prefetching on DMA reads).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833 */
Ingo Molnar05fccb02008-01-30 13:30:12 +0100834 scratch = get_zeroed_page(GFP_KERNEL);
835 if (!scratch)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 panic("Cannot allocate iommu scratch page");
837 gart_unmapped_entry = GPTE_ENCODE(__pa(scratch));
Ingo Molnar05fccb02008-01-30 13:30:12 +0100838 for (i = EMERGENCY_PAGES; i < iommu_pages; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 iommu_gatt_base[i] = gart_unmapped_entry;
840
Andi Kleena32073b2006-06-26 13:56:40 +0200841 flush_gart();
Muli Ben-Yehuda17a941d2006-01-11 22:44:42 +0100842 dma_ops = &gart_dma_ops;
FUJITA Tomonori338bac52009-10-27 16:34:44 +0900843 x86_platform.iommu_shutdown = gart_iommu_shutdown;
FUJITA Tomonori75f1cdf2009-11-10 19:46:20 +0900844 swiotlb = 0;
FUJITA Tomonoride957622009-11-10 19:46:14 +0900845
846 return 0;
Ingo Molnar05fccb02008-01-30 13:30:12 +0100847}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848
Sam Ravnborg43999d92007-03-16 21:07:36 +0100849void __init gart_parse_options(char *p)
Muli Ben-Yehuda17a941d2006-01-11 22:44:42 +0100850{
851 int arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853#ifdef CONFIG_IOMMU_LEAK
Ingo Molnar05fccb02008-01-30 13:30:12 +0100854 if (!strncmp(p, "leak", 4)) {
Muli Ben-Yehuda17a941d2006-01-11 22:44:42 +0100855 leak_trace = 1;
856 p += 4;
Joerg Roedel237a6222008-09-25 12:13:53 +0200857 if (*p == '=')
858 ++p;
Muli Ben-Yehuda17a941d2006-01-11 22:44:42 +0100859 if (isdigit(*p) && get_option(&p, &arg))
860 iommu_leak_pages = arg;
861 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862#endif
Muli Ben-Yehuda17a941d2006-01-11 22:44:42 +0100863 if (isdigit(*p) && get_option(&p, &arg))
864 iommu_size = arg;
Joe Perches41855b72009-11-09 17:58:50 -0800865 if (!strncmp(p, "fullflush", 9))
Muli Ben-Yehuda17a941d2006-01-11 22:44:42 +0100866 iommu_fullflush = 1;
Ingo Molnar05fccb02008-01-30 13:30:12 +0100867 if (!strncmp(p, "nofullflush", 11))
Muli Ben-Yehuda17a941d2006-01-11 22:44:42 +0100868 iommu_fullflush = 0;
Ingo Molnar05fccb02008-01-30 13:30:12 +0100869 if (!strncmp(p, "noagp", 5))
Muli Ben-Yehuda17a941d2006-01-11 22:44:42 +0100870 no_agp = 1;
Ingo Molnar05fccb02008-01-30 13:30:12 +0100871 if (!strncmp(p, "noaperture", 10))
Muli Ben-Yehuda17a941d2006-01-11 22:44:42 +0100872 fix_aperture = 0;
873 /* duplicated from pci-dma.c */
Ingo Molnar05fccb02008-01-30 13:30:12 +0100874 if (!strncmp(p, "force", 5))
Joerg Roedel0440d4c2007-10-24 12:49:50 +0200875 gart_iommu_aperture_allowed = 1;
Ingo Molnar05fccb02008-01-30 13:30:12 +0100876 if (!strncmp(p, "allowed", 7))
Joerg Roedel0440d4c2007-10-24 12:49:50 +0200877 gart_iommu_aperture_allowed = 1;
Muli Ben-Yehuda17a941d2006-01-11 22:44:42 +0100878 if (!strncmp(p, "memaper", 7)) {
879 fallback_aper_force = 1;
880 p += 7;
881 if (*p == '=') {
882 ++p;
883 if (get_option(&p, &arg))
884 fallback_aper_order = arg;
885 }
886 }
887}