blob: 67e5665ce42ca099f08c1d2fc3e6fcc40f447494 [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>
Akinobu Mitaa66022c2009-12-15 16:48:28 -080026#include <linux/bitmap.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>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090032#include <linux/gfp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include <asm/atomic.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include <asm/mtrr.h>
35#include <asm/pgtable.h>
36#include <asm/proto.h>
FUJITA Tomonori46a7fa22008-07-11 10:23:42 +090037#include <asm/iommu.h>
Joerg Roedel395624f2007-10-24 12:49:47 +020038#include <asm/gart.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#include <asm/cacheflush.h>
Muli Ben-Yehuda17a941d2006-01-11 22:44:42 +010040#include <asm/swiotlb.h>
41#include <asm/dma.h>
Andreas Herrmann23ac4ae2010-09-17 18:03:43 +020042#include <asm/amd_nb.h>
FUJITA Tomonori338bac52009-10-27 16:34:44 +090043#include <asm/x86_init.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070044
Joerg Roedel79da0872007-10-24 12:49:49 +020045static unsigned long iommu_bus_base; /* GART remapping area (physical) */
Ingo Molnar05fccb02008-01-30 13:30:12 +010046static unsigned long iommu_size; /* size of remapping area bytes */
Linus Torvalds1da177e2005-04-16 15:20:36 -070047static unsigned long iommu_pages; /* .. and in pages */
48
Ingo Molnar05fccb02008-01-30 13:30:12 +010049static u32 *iommu_gatt_base; /* Remapping table */
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
FUJITA Tomonori42109192009-11-15 21:19:52 +090051static dma_addr_t bad_dma_addr;
52
Ingo Molnar05fccb02008-01-30 13:30:12 +010053/*
54 * If this is disabled the IOMMU will use an optimized flushing strategy
55 * of only flushing when an mapping is reused. With it true the GART is
56 * flushed for every mapping. Problem is that doing the lazy flush seems
57 * to trigger bugs with some popular PCI cards, in particular 3ware (but
58 * has been also also seen with Qlogic at least).
59 */
Jaswinder Singh Rajputc854c912008-12-29 20:38:09 +053060static int iommu_fullflush = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
Ingo Molnar05fccb02008-01-30 13:30:12 +010062/* Allocation bitmap for the remapping area: */
Linus Torvalds1da177e2005-04-16 15:20:36 -070063static DEFINE_SPINLOCK(iommu_bitmap_lock);
Ingo Molnar05fccb02008-01-30 13:30:12 +010064/* Guarded by iommu_bitmap_lock: */
65static unsigned long *iommu_gart_bitmap;
Linus Torvalds1da177e2005-04-16 15:20:36 -070066
Ingo Molnar05fccb02008-01-30 13:30:12 +010067static u32 gart_unmapped_entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
69#define GPTE_VALID 1
70#define GPTE_COHERENT 2
71#define GPTE_ENCODE(x) \
72 (((x) & 0xfffff000) | (((x) >> 32) << 4) | GPTE_VALID | GPTE_COHERENT)
73#define GPTE_DECODE(x) (((x) & 0xfffff000) | (((u64)(x) & 0xff0) << 28))
74
Ingo Molnar05fccb02008-01-30 13:30:12 +010075#define EMERGENCY_PAGES 32 /* = 128KB */
Linus Torvalds1da177e2005-04-16 15:20:36 -070076
77#ifdef CONFIG_AGP
78#define AGPEXTERN extern
79#else
80#define AGPEXTERN
81#endif
82
83/* backdoor interface to AGP driver */
84AGPEXTERN int agp_memory_reserved;
85AGPEXTERN __u32 *agp_gatt_table;
86
87static unsigned long next_bit; /* protected by iommu_bitmap_lock */
Joerg Roedel3610f212008-09-25 12:13:54 +020088static bool need_flush; /* global flush state. set for each gart wrap */
Linus Torvalds1da177e2005-04-16 15:20:36 -070089
FUJITA Tomonori7b22ff52008-08-18 00:36:18 +090090static unsigned long alloc_iommu(struct device *dev, int size,
91 unsigned long align_mask)
Ingo Molnar05fccb02008-01-30 13:30:12 +010092{
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 unsigned long offset, flags;
FUJITA Tomonorifde9a102008-02-04 22:28:11 -080094 unsigned long boundary_size;
95 unsigned long base_index;
96
97 base_index = ALIGN(iommu_bus_base & dma_get_seg_boundary(dev),
98 PAGE_SIZE) >> PAGE_SHIFT;
Ingo Molnar123bf0e2009-11-15 21:19:52 +090099 boundary_size = ALIGN((u64)dma_get_seg_boundary(dev) + 1,
FUJITA Tomonorifde9a102008-02-04 22:28:11 -0800100 PAGE_SIZE) >> PAGE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101
Ingo Molnar05fccb02008-01-30 13:30:12 +0100102 spin_lock_irqsave(&iommu_bitmap_lock, flags);
FUJITA Tomonorifde9a102008-02-04 22:28:11 -0800103 offset = iommu_area_alloc(iommu_gart_bitmap, iommu_pages, next_bit,
FUJITA Tomonori7b22ff52008-08-18 00:36:18 +0900104 size, base_index, boundary_size, align_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 if (offset == -1) {
Joerg Roedel3610f212008-09-25 12:13:54 +0200106 need_flush = true;
FUJITA Tomonorifde9a102008-02-04 22:28:11 -0800107 offset = iommu_area_alloc(iommu_gart_bitmap, iommu_pages, 0,
FUJITA Tomonori7b22ff52008-08-18 00:36:18 +0900108 size, base_index, boundary_size,
109 align_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 }
Ingo Molnar05fccb02008-01-30 13:30:12 +0100111 if (offset != -1) {
Ingo Molnar05fccb02008-01-30 13:30:12 +0100112 next_bit = offset+size;
113 if (next_bit >= iommu_pages) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 next_bit = 0;
Joerg Roedel3610f212008-09-25 12:13:54 +0200115 need_flush = true;
Ingo Molnar05fccb02008-01-30 13:30:12 +0100116 }
117 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 if (iommu_fullflush)
Joerg Roedel3610f212008-09-25 12:13:54 +0200119 need_flush = true;
Ingo Molnar05fccb02008-01-30 13:30:12 +0100120 spin_unlock_irqrestore(&iommu_bitmap_lock, flags);
121
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 return offset;
Ingo Molnar05fccb02008-01-30 13:30:12 +0100123}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124
125static void free_iommu(unsigned long offset, int size)
Ingo Molnar05fccb02008-01-30 13:30:12 +0100126{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 unsigned long flags;
Ingo Molnar05fccb02008-01-30 13:30:12 +0100128
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 spin_lock_irqsave(&iommu_bitmap_lock, flags);
Akinobu Mitaa66022c2009-12-15 16:48:28 -0800130 bitmap_clear(iommu_gart_bitmap, offset, size);
Joerg Roedel70d7d352008-12-02 20:16:03 +0100131 if (offset >= next_bit)
132 next_bit = offset + size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 spin_unlock_irqrestore(&iommu_bitmap_lock, flags);
Ingo Molnar05fccb02008-01-30 13:30:12 +0100134}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135
Ingo Molnar05fccb02008-01-30 13:30:12 +0100136/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 * Use global flush state to avoid races with multiple flushers.
138 */
Andi Kleena32073b2006-06-26 13:56:40 +0200139static void flush_gart(void)
Ingo Molnar05fccb02008-01-30 13:30:12 +0100140{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 unsigned long flags;
Ingo Molnar05fccb02008-01-30 13:30:12 +0100142
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 spin_lock_irqsave(&iommu_bitmap_lock, flags);
Andi Kleena32073b2006-06-26 13:56:40 +0200144 if (need_flush) {
145 k8_flush_garts();
Joerg Roedel3610f212008-09-25 12:13:54 +0200146 need_flush = false;
Ingo Molnar05fccb02008-01-30 13:30:12 +0100147 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 spin_unlock_irqrestore(&iommu_bitmap_lock, flags);
Ingo Molnar05fccb02008-01-30 13:30:12 +0100149}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151#ifdef CONFIG_IOMMU_LEAK
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152/* Debugging aid for drivers that don't free their IOMMU tables */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153static int leak_trace;
Joerg Roedel79da0872007-10-24 12:49:49 +0200154static int iommu_leak_pages = 20;
Ingo Molnar05fccb02008-01-30 13:30:12 +0100155
Joerg Roedel79da0872007-10-24 12:49:49 +0200156static void dump_leak(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157{
Ingo Molnar05fccb02008-01-30 13:30:12 +0100158 static int dump;
159
FUJITA Tomonori19c1a6f2009-04-14 09:43:19 +0900160 if (dump)
Ingo Molnar05fccb02008-01-30 13:30:12 +0100161 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 dump = 1;
Ingo Molnar05fccb02008-01-30 13:30:12 +0100163
FUJITA Tomonori19c1a6f2009-04-14 09:43:19 +0900164 show_stack(NULL, NULL);
165 debug_dma_dump_mappings(NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167#endif
168
Muli Ben-Yehuda17a941d2006-01-11 22:44:42 +0100169static void iommu_full(struct device *dev, size_t size, int dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170{
Ingo Molnar05fccb02008-01-30 13:30:12 +0100171 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 * Ran out of IOMMU space for this operation. This is very bad.
173 * Unfortunately the drivers cannot handle this operation properly.
Ingo Molnar05fccb02008-01-30 13:30:12 +0100174 * Return some non mapped prereserved space in the aperture and
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 * let the Northbridge deal with it. This will result in garbage
176 * in the IO operation. When the size exceeds the prereserved space
Ingo Molnar05fccb02008-01-30 13:30:12 +0100177 * memory corruption will occur or random memory will be DMAed
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 * out. Hopefully no network devices use single mappings that big.
Ingo Molnar05fccb02008-01-30 13:30:12 +0100179 */
180
Greg Kroah-Hartmanfc3a8822008-05-02 06:02:41 +0200181 dev_err(dev, "PCI-DMA: Out of IOMMU space for %lu bytes\n", size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182
Muli Ben-Yehuda17a941d2006-01-11 22:44:42 +0100183 if (size > PAGE_SIZE*EMERGENCY_PAGES) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 if (dir == PCI_DMA_FROMDEVICE || dir == PCI_DMA_BIDIRECTIONAL)
185 panic("PCI-DMA: Memory would be corrupted\n");
Ingo Molnar05fccb02008-01-30 13:30:12 +0100186 if (dir == PCI_DMA_TODEVICE || dir == PCI_DMA_BIDIRECTIONAL)
187 panic(KERN_ERR
188 "PCI-DMA: Random memory would be DMAed\n");
189 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190#ifdef CONFIG_IOMMU_LEAK
Ingo Molnar05fccb02008-01-30 13:30:12 +0100191 dump_leak();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193}
194
Ingo Molnar05fccb02008-01-30 13:30:12 +0100195static inline int
196need_iommu(struct device *dev, unsigned long addr, size_t size)
197{
FUJITA Tomonoria4c2baa2009-07-10 10:04:55 +0900198 return force_iommu || !dma_capable(dev, addr, size);
Ingo Molnar05fccb02008-01-30 13:30:12 +0100199}
200
201static inline int
202nonforced_iommu(struct device *dev, unsigned long addr, size_t size)
203{
FUJITA Tomonoria4c2baa2009-07-10 10:04:55 +0900204 return !dma_capable(dev, addr, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205}
206
207/* Map a single continuous physical area into the IOMMU.
208 * Caller needs to check if the iommu is needed and flush.
209 */
Muli Ben-Yehuda17a941d2006-01-11 22:44:42 +0100210static dma_addr_t dma_map_area(struct device *dev, dma_addr_t phys_mem,
FUJITA Tomonori7b22ff52008-08-18 00:36:18 +0900211 size_t size, int dir, unsigned long align_mask)
Ingo Molnar05fccb02008-01-30 13:30:12 +0100212{
Joerg Roedel1477b8e2008-10-15 22:02:11 -0700213 unsigned long npages = iommu_num_pages(phys_mem, size, PAGE_SIZE);
FUJITA Tomonori7b22ff52008-08-18 00:36:18 +0900214 unsigned long iommu_page = alloc_iommu(dev, npages, align_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 int i;
Ingo Molnar05fccb02008-01-30 13:30:12 +0100216
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 if (iommu_page == -1) {
218 if (!nonforced_iommu(dev, phys_mem, size))
Ingo Molnar05fccb02008-01-30 13:30:12 +0100219 return phys_mem;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 if (panic_on_overflow)
221 panic("dma_map_area overflow %lu bytes\n", size);
Muli Ben-Yehuda17a941d2006-01-11 22:44:42 +0100222 iommu_full(dev, size, dir);
FUJITA Tomonori42109192009-11-15 21:19:52 +0900223 return bad_dma_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 }
225
226 for (i = 0; i < npages; i++) {
227 iommu_gatt_base[iommu_page + i] = GPTE_ENCODE(phys_mem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 phys_mem += PAGE_SIZE;
229 }
230 return iommu_bus_base + iommu_page*PAGE_SIZE + (phys_mem & ~PAGE_MASK);
231}
232
233/* Map a single area into the IOMMU */
FUJITA Tomonori052aedb2009-01-05 23:47:23 +0900234static dma_addr_t gart_map_page(struct device *dev, struct page *page,
235 unsigned long offset, size_t size,
236 enum dma_data_direction dir,
237 struct dma_attrs *attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238{
Ingo Molnar2be62142008-04-19 19:19:56 +0200239 unsigned long bus;
FUJITA Tomonori052aedb2009-01-05 23:47:23 +0900240 phys_addr_t paddr = page_to_phys(page) + offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 if (!dev)
Joerg Roedel6c505ce2008-08-19 16:32:45 +0200243 dev = &x86_dma_fallback_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244
Ingo Molnar2be62142008-04-19 19:19:56 +0200245 if (!need_iommu(dev, paddr, size))
246 return paddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247
FUJITA Tomonori7b22ff52008-08-18 00:36:18 +0900248 bus = dma_map_area(dev, paddr, size, dir, 0);
249 flush_gart();
Ingo Molnar05fccb02008-01-30 13:30:12 +0100250
251 return bus;
Muli Ben-Yehuda17a941d2006-01-11 22:44:42 +0100252}
253
254/*
Jon Mason7c2d9cd2006-06-26 13:56:37 +0200255 * Free a DMA mapping.
256 */
FUJITA Tomonori052aedb2009-01-05 23:47:23 +0900257static void gart_unmap_page(struct device *dev, dma_addr_t dma_addr,
258 size_t size, enum dma_data_direction dir,
259 struct dma_attrs *attrs)
Jon Mason7c2d9cd2006-06-26 13:56:37 +0200260{
261 unsigned long iommu_page;
262 int npages;
263 int i;
264
265 if (dma_addr < iommu_bus_base + EMERGENCY_PAGES*PAGE_SIZE ||
266 dma_addr >= iommu_bus_base + iommu_size)
267 return;
Ingo Molnar05fccb02008-01-30 13:30:12 +0100268
Jon Mason7c2d9cd2006-06-26 13:56:37 +0200269 iommu_page = (dma_addr - iommu_bus_base)>>PAGE_SHIFT;
Joerg Roedel1477b8e2008-10-15 22:02:11 -0700270 npages = iommu_num_pages(dma_addr, size, PAGE_SIZE);
Jon Mason7c2d9cd2006-06-26 13:56:37 +0200271 for (i = 0; i < npages; i++) {
272 iommu_gatt_base[iommu_page + i] = gart_unmapped_entry;
Jon Mason7c2d9cd2006-06-26 13:56:37 +0200273 }
274 free_iommu(iommu_page, npages);
275}
276
277/*
Muli Ben-Yehuda17a941d2006-01-11 22:44:42 +0100278 * Wrapper for pci_unmap_single working with scatterlists.
279 */
FUJITA Tomonori160c1d82009-01-05 23:59:02 +0900280static void gart_unmap_sg(struct device *dev, struct scatterlist *sg, int nents,
281 enum dma_data_direction dir, struct dma_attrs *attrs)
Muli Ben-Yehuda17a941d2006-01-11 22:44:42 +0100282{
Jens Axboe9ee1bea2007-10-04 09:35:37 +0200283 struct scatterlist *s;
Muli Ben-Yehuda17a941d2006-01-11 22:44:42 +0100284 int i;
285
Jens Axboe9ee1bea2007-10-04 09:35:37 +0200286 for_each_sg(sg, s, nents, i) {
Jon Mason60b08c62006-02-26 04:18:22 +0100287 if (!s->dma_length || !s->length)
Muli Ben-Yehuda17a941d2006-01-11 22:44:42 +0100288 break;
FUJITA Tomonorid7dff842009-01-05 23:47:28 +0900289 gart_unmap_page(dev, s->dma_address, s->dma_length, dir, NULL);
Muli Ben-Yehuda17a941d2006-01-11 22:44:42 +0100290 }
291}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292
293/* Fallback for dma_map_sg in case of overflow */
294static int dma_map_sg_nonforce(struct device *dev, struct scatterlist *sg,
295 int nents, int dir)
296{
Jens Axboe9ee1bea2007-10-04 09:35:37 +0200297 struct scatterlist *s;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 int i;
299
300#ifdef CONFIG_IOMMU_DEBUG
Ingo Molnar123bf0e2009-11-15 21:19:52 +0900301 pr_debug("dma_map_sg overflow\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302#endif
303
Jens Axboe9ee1bea2007-10-04 09:35:37 +0200304 for_each_sg(sg, s, nents, i) {
Jens Axboe58b053e2007-10-22 20:02:46 +0200305 unsigned long addr = sg_phys(s);
Ingo Molnar05fccb02008-01-30 13:30:12 +0100306
307 if (nonforced_iommu(dev, addr, s->length)) {
FUJITA Tomonori7b22ff52008-08-18 00:36:18 +0900308 addr = dma_map_area(dev, addr, s->length, dir, 0);
FUJITA Tomonori42109192009-11-15 21:19:52 +0900309 if (addr == bad_dma_addr) {
Ingo Molnar05fccb02008-01-30 13:30:12 +0100310 if (i > 0)
FUJITA Tomonori160c1d82009-01-05 23:59:02 +0900311 gart_unmap_sg(dev, sg, i, dir, NULL);
Ingo Molnar05fccb02008-01-30 13:30:12 +0100312 nents = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 sg[0].dma_length = 0;
314 break;
315 }
316 }
317 s->dma_address = addr;
318 s->dma_length = s->length;
319 }
Andi Kleena32073b2006-06-26 13:56:40 +0200320 flush_gart();
Ingo Molnar05fccb02008-01-30 13:30:12 +0100321
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 return nents;
323}
324
325/* Map multiple scatterlist entries continuous into the first. */
FUJITA Tomonorifde9a102008-02-04 22:28:11 -0800326static int __dma_map_cont(struct device *dev, struct scatterlist *start,
327 int nelems, struct scatterlist *sout,
328 unsigned long pages)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329{
FUJITA Tomonori7b22ff52008-08-18 00:36:18 +0900330 unsigned long iommu_start = alloc_iommu(dev, pages, 0);
Ingo Molnar05fccb02008-01-30 13:30:12 +0100331 unsigned long iommu_page = iommu_start;
Jens Axboe9ee1bea2007-10-04 09:35:37 +0200332 struct scatterlist *s;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 int i;
334
335 if (iommu_start == -1)
336 return -1;
Jens Axboe9ee1bea2007-10-04 09:35:37 +0200337
338 for_each_sg(start, s, nelems, i) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 unsigned long pages, addr;
340 unsigned long phys_addr = s->dma_address;
Ingo Molnar05fccb02008-01-30 13:30:12 +0100341
Jens Axboe9ee1bea2007-10-04 09:35:37 +0200342 BUG_ON(s != start && s->offset);
343 if (s == start) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 sout->dma_address = iommu_bus_base;
345 sout->dma_address += iommu_page*PAGE_SIZE + s->offset;
346 sout->dma_length = s->length;
Ingo Molnar05fccb02008-01-30 13:30:12 +0100347 } else {
348 sout->dma_length += s->length;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 }
350
351 addr = phys_addr;
Joerg Roedel1477b8e2008-10-15 22:02:11 -0700352 pages = iommu_num_pages(s->offset, s->length, PAGE_SIZE);
Ingo Molnar05fccb02008-01-30 13:30:12 +0100353 while (pages--) {
354 iommu_gatt_base[iommu_page] = GPTE_ENCODE(addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 addr += PAGE_SIZE;
356 iommu_page++;
Andi Kleen0d5410642006-02-12 14:34:59 -0800357 }
Ingo Molnar05fccb02008-01-30 13:30:12 +0100358 }
359 BUG_ON(iommu_page - iommu_start != pages);
360
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 return 0;
362}
363
Ingo Molnar05fccb02008-01-30 13:30:12 +0100364static inline int
FUJITA Tomonorifde9a102008-02-04 22:28:11 -0800365dma_map_cont(struct device *dev, struct scatterlist *start, int nelems,
366 struct scatterlist *sout, unsigned long pages, int need)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367{
Jens Axboe9ee1bea2007-10-04 09:35:37 +0200368 if (!need) {
369 BUG_ON(nelems != 1);
FUJITA Tomonorie88a39d2007-10-25 09:13:32 +0200370 sout->dma_address = start->dma_address;
Jens Axboe9ee1bea2007-10-04 09:35:37 +0200371 sout->dma_length = start->length;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 return 0;
Jens Axboe9ee1bea2007-10-04 09:35:37 +0200373 }
FUJITA Tomonorifde9a102008-02-04 22:28:11 -0800374 return __dma_map_cont(dev, start, nelems, sout, pages);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375}
Ingo Molnar05fccb02008-01-30 13:30:12 +0100376
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377/*
378 * DMA map all entries in a scatterlist.
Ingo Molnar05fccb02008-01-30 13:30:12 +0100379 * Merge chunks that have page aligned sizes into a continuous mapping.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 */
FUJITA Tomonori160c1d82009-01-05 23:59:02 +0900381static int gart_map_sg(struct device *dev, struct scatterlist *sg, int nents,
382 enum dma_data_direction dir, struct dma_attrs *attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383{
Jens Axboe9ee1bea2007-10-04 09:35:37 +0200384 struct scatterlist *s, *ps, *start_sg, *sgmap;
Ingo Molnar05fccb02008-01-30 13:30:12 +0100385 int need = 0, nextneed, i, out, start;
386 unsigned long pages = 0;
FUJITA Tomonori42d00282008-02-04 22:27:56 -0800387 unsigned int seg_size;
388 unsigned int max_seg_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389
Ingo Molnar05fccb02008-01-30 13:30:12 +0100390 if (nents == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 return 0;
392
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 if (!dev)
Joerg Roedel6c505ce2008-08-19 16:32:45 +0200394 dev = &x86_dma_fallback_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395
Ingo Molnar123bf0e2009-11-15 21:19:52 +0900396 out = 0;
397 start = 0;
398 start_sg = sg;
399 sgmap = sg;
400 seg_size = 0;
401 max_seg_size = dma_get_max_seg_size(dev);
402 ps = NULL; /* shut up gcc */
403
Jens Axboe9ee1bea2007-10-04 09:35:37 +0200404 for_each_sg(sg, s, nents, i) {
Jens Axboe58b053e2007-10-22 20:02:46 +0200405 dma_addr_t addr = sg_phys(s);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406
Ingo Molnar05fccb02008-01-30 13:30:12 +0100407 s->dma_address = addr;
408 BUG_ON(s->length == 0);
409
410 nextneed = need_iommu(dev, addr, s->length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411
412 /* Handle the previous not yet processed entries */
413 if (i > start) {
Ingo Molnar05fccb02008-01-30 13:30:12 +0100414 /*
415 * Can only merge when the last chunk ends on a
416 * page boundary and the new one doesn't have an
417 * offset.
418 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 if (!iommu_merge || !nextneed || !need || s->offset ||
FUJITA Tomonori42d00282008-02-04 22:27:56 -0800420 (s->length + seg_size > max_seg_size) ||
Jens Axboe9ee1bea2007-10-04 09:35:37 +0200421 (ps->offset + ps->length) % PAGE_SIZE) {
FUJITA Tomonorifde9a102008-02-04 22:28:11 -0800422 if (dma_map_cont(dev, start_sg, i - start,
423 sgmap, pages, need) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 goto error;
425 out++;
Ingo Molnar123bf0e2009-11-15 21:19:52 +0900426
427 seg_size = 0;
428 sgmap = sg_next(sgmap);
429 pages = 0;
430 start = i;
431 start_sg = s;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 }
433 }
434
FUJITA Tomonori42d00282008-02-04 22:27:56 -0800435 seg_size += s->length;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 need = nextneed;
Joerg Roedel1477b8e2008-10-15 22:02:11 -0700437 pages += iommu_num_pages(s->offset, s->length, PAGE_SIZE);
Jens Axboe9ee1bea2007-10-04 09:35:37 +0200438 ps = s;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 }
FUJITA Tomonorifde9a102008-02-04 22:28:11 -0800440 if (dma_map_cont(dev, start_sg, i - start, sgmap, pages, need) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 goto error;
442 out++;
Andi Kleena32073b2006-06-26 13:56:40 +0200443 flush_gart();
Jens Axboe9ee1bea2007-10-04 09:35:37 +0200444 if (out < nents) {
445 sgmap = sg_next(sgmap);
446 sgmap->dma_length = 0;
447 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 return out;
449
450error:
Andi Kleena32073b2006-06-26 13:56:40 +0200451 flush_gart();
FUJITA Tomonori160c1d82009-01-05 23:59:02 +0900452 gart_unmap_sg(dev, sg, out, dir, NULL);
Ingo Molnar05fccb02008-01-30 13:30:12 +0100453
Kevin VanMarena1002a42006-02-03 21:51:32 +0100454 /* When it was forced or merged try again in a dumb way */
455 if (force_iommu || iommu_merge) {
456 out = dma_map_sg_nonforce(dev, sg, nents, dir);
457 if (out > 0)
458 return out;
459 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 if (panic_on_overflow)
461 panic("dma_map_sg: overflow on %lu pages\n", pages);
Ingo Molnar05fccb02008-01-30 13:30:12 +0100462
Muli Ben-Yehuda17a941d2006-01-11 22:44:42 +0100463 iommu_full(dev, pages << PAGE_SHIFT, dir);
Jens Axboe9ee1bea2007-10-04 09:35:37 +0200464 for_each_sg(sg, s, nents, i)
FUJITA Tomonori42109192009-11-15 21:19:52 +0900465 s->dma_address = bad_dma_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 return 0;
Ingo Molnar05fccb02008-01-30 13:30:12 +0100467}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468
Joerg Roedel94581092008-08-19 16:32:39 +0200469/* allocate and map a coherent mapping */
470static void *
471gart_alloc_coherent(struct device *dev, size_t size, dma_addr_t *dma_addr,
472 gfp_t flag)
473{
FUJITA Tomonorif6a32a32008-09-11 23:08:48 +0900474 dma_addr_t paddr;
FUJITA Tomonori421076e2008-08-22 16:29:10 +0900475 unsigned long align_mask;
FUJITA Tomonori1d990882008-09-24 20:48:37 +0900476 struct page *page;
Joerg Roedel94581092008-08-19 16:32:39 +0200477
FUJITA Tomonori1d990882008-09-24 20:48:37 +0900478 if (force_iommu && !(flag & GFP_DMA)) {
479 flag &= ~(__GFP_DMA | __GFP_HIGHMEM | __GFP_DMA32);
480 page = alloc_pages(flag | __GFP_ZERO, get_order(size));
481 if (!page)
482 return NULL;
Joerg Roedel94581092008-08-19 16:32:39 +0200483
FUJITA Tomonori1d990882008-09-24 20:48:37 +0900484 align_mask = (1UL << get_order(size)) - 1;
485 paddr = dma_map_area(dev, page_to_phys(page), size,
486 DMA_BIDIRECTIONAL, align_mask);
FUJITA Tomonorif6a32a32008-09-11 23:08:48 +0900487
FUJITA Tomonori1d990882008-09-24 20:48:37 +0900488 flush_gart();
FUJITA Tomonori42109192009-11-15 21:19:52 +0900489 if (paddr != bad_dma_addr) {
FUJITA Tomonori1d990882008-09-24 20:48:37 +0900490 *dma_addr = paddr;
491 return page_address(page);
492 }
493 __free_pages(page, get_order(size));
494 } else
495 return dma_generic_alloc_coherent(dev, size, dma_addr, flag);
Joerg Roedel94581092008-08-19 16:32:39 +0200496
497 return NULL;
498}
499
Joerg Roedel43a5a5a2008-08-19 16:32:40 +0200500/* free a coherent mapping */
501static void
502gart_free_coherent(struct device *dev, size_t size, void *vaddr,
503 dma_addr_t dma_addr)
504{
FUJITA Tomonorid7dff842009-01-05 23:47:28 +0900505 gart_unmap_page(dev, dma_addr, size, DMA_BIDIRECTIONAL, NULL);
Joerg Roedel43a5a5a2008-08-19 16:32:40 +0200506 free_pages((unsigned long)vaddr, get_order(size));
507}
508
FUJITA Tomonori42109192009-11-15 21:19:52 +0900509static int gart_mapping_error(struct device *dev, dma_addr_t dma_addr)
510{
511 return (dma_addr == bad_dma_addr);
512}
513
Muli Ben-Yehuda17a941d2006-01-11 22:44:42 +0100514static int no_agp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515
516static __init unsigned long check_iommu_size(unsigned long aper, u64 aper_size)
Ingo Molnar05fccb02008-01-30 13:30:12 +0100517{
518 unsigned long a;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519
Ingo Molnar05fccb02008-01-30 13:30:12 +0100520 if (!iommu_size) {
521 iommu_size = aper_size;
522 if (!no_agp)
523 iommu_size /= 2;
524 }
525
526 a = aper + iommu_size;
Andi Kleen31422c52008-02-04 16:48:08 +0100527 iommu_size -= round_up(a, PMD_PAGE_SIZE) - a;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528
Ingo Molnar05fccb02008-01-30 13:30:12 +0100529 if (iommu_size < 64*1024*1024) {
Ingo Molnar123bf0e2009-11-15 21:19:52 +0900530 pr_warning(
Ingo Molnar05fccb02008-01-30 13:30:12 +0100531 "PCI-DMA: Warning: Small IOMMU %luMB."
532 " Consider increasing the AGP aperture in BIOS\n",
533 iommu_size >> 20);
534 }
535
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 return iommu_size;
Ingo Molnar05fccb02008-01-30 13:30:12 +0100537}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538
Ingo Molnar05fccb02008-01-30 13:30:12 +0100539static __init unsigned read_aperture(struct pci_dev *dev, u32 *size)
540{
541 unsigned aper_size = 0, aper_base_32, aper_order;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 u64 aper_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543
Pavel Machek3bb6fbf2008-04-15 12:43:57 +0200544 pci_read_config_dword(dev, AMD64_GARTAPERTUREBASE, &aper_base_32);
545 pci_read_config_dword(dev, AMD64_GARTAPERTURECTL, &aper_order);
Ingo Molnar05fccb02008-01-30 13:30:12 +0100546 aper_order = (aper_order >> 1) & 7;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547
Ingo Molnar05fccb02008-01-30 13:30:12 +0100548 aper_base = aper_base_32 & 0x7fff;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 aper_base <<= 25;
550
Ingo Molnar05fccb02008-01-30 13:30:12 +0100551 aper_size = (32 * 1024 * 1024) << aper_order;
552 if (aper_base + aper_size > 0x100000000UL || !aper_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 aper_base = 0;
554
555 *size = aper_size;
556 return aper_base;
Ingo Molnar05fccb02008-01-30 13:30:12 +0100557}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558
Rafael J. Wysocki6703f6d2008-06-10 00:10:48 +0200559static void enable_gart_translations(void)
560{
561 int i;
562
Andreas Herrmann900f9ac2010-09-17 18:02:54 +0200563 if (!k8_northbridges.gart_supported)
564 return;
565
566 for (i = 0; i < k8_northbridges.num; i++) {
567 struct pci_dev *dev = k8_northbridges.nb_misc[i];
Rafael J. Wysocki6703f6d2008-06-10 00:10:48 +0200568
569 enable_gart_translation(dev, __pa(agp_gatt_table));
570 }
Joerg Roedel4b838732010-04-07 12:57:35 +0200571
572 /* Flush the GART-TLB to remove stale entries */
573 k8_flush_garts();
Rafael J. Wysocki6703f6d2008-06-10 00:10:48 +0200574}
575
576/*
577 * If fix_up_north_bridges is set, the north bridges have to be fixed up on
578 * resume in the same way as they are handled in gart_iommu_hole_init().
579 */
580static bool fix_up_north_bridges;
581static u32 aperture_order;
582static u32 aperture_alloc;
583
584void set_up_gart_resume(u32 aper_order, u32 aper_alloc)
585{
586 fix_up_north_bridges = true;
587 aperture_order = aper_order;
588 aperture_alloc = aper_alloc;
589}
590
Ingo Molnar123bf0e2009-11-15 21:19:52 +0900591static void gart_fixup_northbridges(struct sys_device *dev)
592{
593 int i;
594
595 if (!fix_up_north_bridges)
596 return;
597
Andreas Herrmann900f9ac2010-09-17 18:02:54 +0200598 if (!k8_northbridges.gart_supported)
599 return;
600
Ingo Molnar123bf0e2009-11-15 21:19:52 +0900601 pr_info("PCI-DMA: Restoring GART aperture settings\n");
602
Andreas Herrmann900f9ac2010-09-17 18:02:54 +0200603 for (i = 0; i < k8_northbridges.num; i++) {
604 struct pci_dev *dev = k8_northbridges.nb_misc[i];
Ingo Molnar123bf0e2009-11-15 21:19:52 +0900605
606 /*
607 * Don't enable translations just yet. That is the next
608 * step. Restore the pre-suspend aperture settings.
609 */
610 pci_write_config_dword(dev, AMD64_GARTAPERTURECTL, aperture_order << 1);
611 pci_write_config_dword(dev, AMD64_GARTAPERTUREBASE, aperture_alloc >> 25);
612 }
613}
614
Pavel Machekcd763742008-05-29 00:30:21 -0700615static int gart_resume(struct sys_device *dev)
616{
Ingo Molnar123bf0e2009-11-15 21:19:52 +0900617 pr_info("PCI-DMA: Resuming GART IOMMU\n");
Rafael J. Wysocki6703f6d2008-06-10 00:10:48 +0200618
Ingo Molnar123bf0e2009-11-15 21:19:52 +0900619 gart_fixup_northbridges(dev);
Rafael J. Wysocki6703f6d2008-06-10 00:10:48 +0200620
621 enable_gart_translations();
622
Pavel Machekcd763742008-05-29 00:30:21 -0700623 return 0;
624}
625
626static int gart_suspend(struct sys_device *dev, pm_message_t state)
627{
Rafael J. Wysocki6703f6d2008-06-10 00:10:48 +0200628 return 0;
Pavel Machekcd763742008-05-29 00:30:21 -0700629}
630
631static struct sysdev_class gart_sysdev_class = {
Ingo Molnar123bf0e2009-11-15 21:19:52 +0900632 .name = "gart",
633 .suspend = gart_suspend,
634 .resume = gart_resume,
Pavel Machekcd763742008-05-29 00:30:21 -0700635
636};
637
638static struct sys_device device_gart = {
Ingo Molnar123bf0e2009-11-15 21:19:52 +0900639 .cls = &gart_sysdev_class,
Pavel Machekcd763742008-05-29 00:30:21 -0700640};
641
Ingo Molnar05fccb02008-01-30 13:30:12 +0100642/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 * Private Northbridge GATT initialization in case we cannot use the
Ingo Molnar05fccb02008-01-30 13:30:12 +0100644 * AGP driver for some reason.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 */
646static __init int init_k8_gatt(struct agp_kern_info *info)
Ingo Molnar05fccb02008-01-30 13:30:12 +0100647{
648 unsigned aper_size, gatt_size, new_aper_size;
649 unsigned aper_base, new_aper_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 struct pci_dev *dev;
651 void *gatt;
Pavel Machekcd763742008-05-29 00:30:21 -0700652 int i, error;
Andi Kleena32073b2006-06-26 13:56:40 +0200653
Ingo Molnar123bf0e2009-11-15 21:19:52 +0900654 pr_info("PCI-DMA: Disabling AGP.\n");
655
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 aper_size = aper_base = info->aper_size = 0;
Andi Kleena32073b2006-06-26 13:56:40 +0200657 dev = NULL;
Andreas Herrmann900f9ac2010-09-17 18:02:54 +0200658 for (i = 0; i < k8_northbridges.num; i++) {
659 dev = k8_northbridges.nb_misc[i];
Ingo Molnar05fccb02008-01-30 13:30:12 +0100660 new_aper_base = read_aperture(dev, &new_aper_size);
661 if (!new_aper_base)
662 goto nommu;
663
664 if (!aper_base) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 aper_size = new_aper_size;
666 aper_base = new_aper_base;
Ingo Molnar05fccb02008-01-30 13:30:12 +0100667 }
668 if (aper_size != new_aper_size || aper_base != new_aper_base)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 goto nommu;
670 }
671 if (!aper_base)
Ingo Molnar05fccb02008-01-30 13:30:12 +0100672 goto nommu;
Ingo Molnar123bf0e2009-11-15 21:19:52 +0900673
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 info->aper_base = aper_base;
Ingo Molnar05fccb02008-01-30 13:30:12 +0100675 info->aper_size = aper_size >> 20;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676
Ingo Molnar05fccb02008-01-30 13:30:12 +0100677 gatt_size = (aper_size >> PAGE_SHIFT) * sizeof(u32);
Joerg Roedel01142672008-09-25 12:42:12 +0200678 gatt = (void *)__get_free_pages(GFP_KERNEL | __GFP_ZERO,
679 get_order(gatt_size));
Ingo Molnar05fccb02008-01-30 13:30:12 +0100680 if (!gatt)
Joachim Deguaracf6387d2007-04-24 13:05:36 +0200681 panic("Cannot allocate GATT table");
Arjan van de Ven6d238cc2008-01-30 13:34:06 +0100682 if (set_memory_uc((unsigned long)gatt, gatt_size >> PAGE_SHIFT))
Joachim Deguaracf6387d2007-04-24 13:05:36 +0200683 panic("Could not set GART PTEs to uncacheable pages");
Joachim Deguaracf6387d2007-04-24 13:05:36 +0200684
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 agp_gatt_table = gatt;
Andi Kleena32073b2006-06-26 13:56:40 +0200686
Pavel Machekcd763742008-05-29 00:30:21 -0700687 error = sysdev_class_register(&gart_sysdev_class);
688 if (!error)
689 error = sysdev_register(&device_gart);
690 if (error)
Joerg Roedel237a6222008-09-25 12:13:53 +0200691 panic("Could not register gart_sysdev -- "
692 "would corrupt data on next suspend");
Rafael J. Wysocki6703f6d2008-06-10 00:10:48 +0200693
Andi Kleena32073b2006-06-26 13:56:40 +0200694 flush_gart();
Ingo Molnar05fccb02008-01-30 13:30:12 +0100695
Ingo Molnar123bf0e2009-11-15 21:19:52 +0900696 pr_info("PCI-DMA: aperture base @ %x size %u KB\n",
Ingo Molnar05fccb02008-01-30 13:30:12 +0100697 aper_base, aper_size>>10);
Yinghai Lu7ab073b2008-07-12 14:30:35 -0700698
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 return 0;
700
701 nommu:
Ingo Molnar05fccb02008-01-30 13:30:12 +0100702 /* Should not happen anymore */
Ingo Molnar123bf0e2009-11-15 21:19:52 +0900703 pr_warning("PCI-DMA: More than 4GB of RAM and no IOMMU\n"
Joe Perchesad361c92009-07-06 13:05:40 -0700704 "falling back to iommu=soft.\n");
Ingo Molnar05fccb02008-01-30 13:30:12 +0100705 return -1;
706}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707
FUJITA Tomonori160c1d82009-01-05 23:59:02 +0900708static struct dma_map_ops gart_dma_ops = {
Ingo Molnar05fccb02008-01-30 13:30:12 +0100709 .map_sg = gart_map_sg,
710 .unmap_sg = gart_unmap_sg,
FUJITA Tomonori052aedb2009-01-05 23:47:23 +0900711 .map_page = gart_map_page,
712 .unmap_page = gart_unmap_page,
Joerg Roedel94581092008-08-19 16:32:39 +0200713 .alloc_coherent = gart_alloc_coherent,
Joerg Roedel43a5a5a2008-08-19 16:32:40 +0200714 .free_coherent = gart_free_coherent,
FUJITA Tomonori42109192009-11-15 21:19:52 +0900715 .mapping_error = gart_mapping_error,
Muli Ben-Yehuda17a941d2006-01-11 22:44:42 +0100716};
717
FUJITA Tomonori338bac52009-10-27 16:34:44 +0900718static void gart_iommu_shutdown(void)
Yinghai Lubc2cea62007-07-21 17:11:28 +0200719{
720 struct pci_dev *dev;
721 int i;
722
Yinghai Luf3eee542009-12-14 11:52:15 +0900723 /* don't shutdown it if there is AGP installed */
724 if (!no_agp)
Yinghai Lubc2cea62007-07-21 17:11:28 +0200725 return;
726
Andreas Herrmann900f9ac2010-09-17 18:02:54 +0200727 if (!k8_northbridges.gart_supported)
728 return;
729
730 for (i = 0; i < k8_northbridges.num; i++) {
Ingo Molnar05fccb02008-01-30 13:30:12 +0100731 u32 ctl;
Yinghai Lubc2cea62007-07-21 17:11:28 +0200732
Andreas Herrmann900f9ac2010-09-17 18:02:54 +0200733 dev = k8_northbridges.nb_misc[i];
Pavel Machek3bb6fbf2008-04-15 12:43:57 +0200734 pci_read_config_dword(dev, AMD64_GARTAPERTURECTL, &ctl);
Yinghai Lubc2cea62007-07-21 17:11:28 +0200735
Pavel Machek3bb6fbf2008-04-15 12:43:57 +0200736 ctl &= ~GARTEN;
Yinghai Lubc2cea62007-07-21 17:11:28 +0200737
Pavel Machek3bb6fbf2008-04-15 12:43:57 +0200738 pci_write_config_dword(dev, AMD64_GARTAPERTURECTL, ctl);
Ingo Molnar05fccb02008-01-30 13:30:12 +0100739 }
Yinghai Lubc2cea62007-07-21 17:11:28 +0200740}
741
FUJITA Tomonoride957622009-11-10 19:46:14 +0900742int __init gart_iommu_init(void)
Ingo Molnar05fccb02008-01-30 13:30:12 +0100743{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744 struct agp_kern_info info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 unsigned long iommu_start;
Yinghai Lud99e9012008-10-04 15:55:12 -0700746 unsigned long aper_base, aper_size;
747 unsigned long start_pfn, end_pfn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 unsigned long scratch;
749 long i;
750
Andreas Herrmann900f9ac2010-09-17 18:02:54 +0200751 if (!k8_northbridges.gart_supported)
FUJITA Tomonoride957622009-11-10 19:46:14 +0900752 return 0;
Andi Kleena32073b2006-06-26 13:56:40 +0200753
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754#ifndef CONFIG_AGP_AMD64
Ingo Molnar05fccb02008-01-30 13:30:12 +0100755 no_agp = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756#else
757 /* Makefile puts PCI initialization via subsys_initcall first. */
758 /* Add other K8 AGP bridge drivers here */
Ingo Molnar05fccb02008-01-30 13:30:12 +0100759 no_agp = no_agp ||
760 (agp_amd64_init() < 0) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761 (agp_copy_info(agp_bridge, &info) < 0);
Ingo Molnar05fccb02008-01-30 13:30:12 +0100762#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 if (no_iommu ||
Yinghai Luc987d122008-06-24 22:14:09 -0700765 (!force_iommu && max_pfn <= MAX_DMA32_PFN) ||
Joerg Roedel0440d4c2007-10-24 12:49:50 +0200766 !gart_iommu_aperture ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 (no_agp && init_k8_gatt(&info) < 0)) {
Yinghai Luc987d122008-06-24 22:14:09 -0700768 if (max_pfn > MAX_DMA32_PFN) {
Ingo Molnar123bf0e2009-11-15 21:19:52 +0900769 pr_warning("More than 4GB of memory but GART IOMMU not available.\n");
770 pr_warning("falling back to iommu=soft.\n");
Jon Mason5b7b6442006-02-03 21:51:59 +0100771 }
FUJITA Tomonoride957622009-11-10 19:46:14 +0900772 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 }
774
Yinghai Lud99e9012008-10-04 15:55:12 -0700775 /* need to map that range */
Ingo Molnar123bf0e2009-11-15 21:19:52 +0900776 aper_size = info.aper_size << 20;
777 aper_base = info.aper_base;
778 end_pfn = (aper_base>>PAGE_SHIFT) + (aper_size>>PAGE_SHIFT);
779
Yinghai Lud99e9012008-10-04 15:55:12 -0700780 if (end_pfn > max_low_pfn_mapped) {
781 start_pfn = (aper_base>>PAGE_SHIFT);
782 init_memory_mapping(start_pfn<<PAGE_SHIFT, end_pfn<<PAGE_SHIFT);
783 }
784
Ingo Molnar123bf0e2009-11-15 21:19:52 +0900785 pr_info("PCI-DMA: using GART IOMMU.\n");
Ingo Molnar05fccb02008-01-30 13:30:12 +0100786 iommu_size = check_iommu_size(info.aper_base, aper_size);
787 iommu_pages = iommu_size >> PAGE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788
Joerg Roedel01142672008-09-25 12:42:12 +0200789 iommu_gart_bitmap = (void *) __get_free_pages(GFP_KERNEL | __GFP_ZERO,
Ingo Molnar05fccb02008-01-30 13:30:12 +0100790 get_order(iommu_pages/8));
791 if (!iommu_gart_bitmap)
792 panic("Cannot allocate iommu bitmap\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793
794#ifdef CONFIG_IOMMU_LEAK
Ingo Molnar05fccb02008-01-30 13:30:12 +0100795 if (leak_trace) {
FUJITA Tomonori19c1a6f2009-04-14 09:43:19 +0900796 int ret;
797
798 ret = dma_debug_resize_entries(iommu_pages);
799 if (ret)
Ingo Molnar123bf0e2009-11-15 21:19:52 +0900800 pr_debug("PCI-DMA: Cannot trace all the entries\n");
Ingo Molnar05fccb02008-01-30 13:30:12 +0100801 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802#endif
803
Ingo Molnar05fccb02008-01-30 13:30:12 +0100804 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 * Out of IOMMU space handling.
Ingo Molnar05fccb02008-01-30 13:30:12 +0100806 * Reserve some invalid pages at the beginning of the GART.
807 */
Akinobu Mitaa66022c2009-12-15 16:48:28 -0800808 bitmap_set(iommu_gart_bitmap, 0, EMERGENCY_PAGES);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809
Ingo Molnar123bf0e2009-11-15 21:19:52 +0900810 pr_info("PCI-DMA: Reserving %luMB of IOMMU area in the AGP aperture\n",
Ingo Molnar05fccb02008-01-30 13:30:12 +0100811 iommu_size >> 20);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812
Ingo Molnar123bf0e2009-11-15 21:19:52 +0900813 agp_memory_reserved = iommu_size;
814 iommu_start = aper_size - iommu_size;
815 iommu_bus_base = info.aper_base + iommu_start;
816 bad_dma_addr = iommu_bus_base;
817 iommu_gatt_base = agp_gatt_table + (iommu_start>>PAGE_SHIFT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818
Ingo Molnar05fccb02008-01-30 13:30:12 +0100819 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 * Unmap the IOMMU part of the GART. The alias of the page is
821 * always mapped with cache enabled and there is no full cache
822 * coherency across the GART remapping. The unmapping avoids
823 * automatic prefetches from the CPU allocating cache lines in
824 * there. All CPU accesses are done via the direct mapping to
825 * the backing memory. The GART address is only used by PCI
Ingo Molnar05fccb02008-01-30 13:30:12 +0100826 * devices.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827 */
Andi Kleen28d6ee42008-02-04 16:48:08 +0100828 set_memory_np((unsigned long)__va(iommu_bus_base),
829 iommu_size >> PAGE_SHIFT);
Ingo Molnar184652e2008-02-14 23:30:20 +0100830 /*
831 * Tricky. The GART table remaps the physical memory range,
832 * so the CPU wont notice potential aliases and if the memory
833 * is remapped to UC later on, we might surprise the PCI devices
834 * with a stray writeout of a cacheline. So play it sure and
835 * do an explicit, full-scale wbinvd() _after_ having marked all
836 * the pages as Not-Present:
837 */
838 wbinvd();
Ingo Molnar123bf0e2009-11-15 21:19:52 +0900839
Mark Langsdorffe2245c2009-07-05 15:50:52 -0500840 /*
841 * Now all caches are flushed and we can safely enable
842 * GART hardware. Doing it early leaves the possibility
843 * of stale cache entries that can lead to GART PTE
844 * errors.
845 */
846 enable_gart_translations();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847
Ingo Molnar05fccb02008-01-30 13:30:12 +0100848 /*
Pavel Machekfa3d3192008-06-26 00:25:43 +0200849 * Try to workaround a bug (thanks to BenH):
Ingo Molnar05fccb02008-01-30 13:30:12 +0100850 * Set unmapped entries to a scratch page instead of 0.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851 * Any prefetches that hit unmapped entries won't get an bus abort
Pavel Machekfa3d3192008-06-26 00:25:43 +0200852 * then. (P2P bridge may be prefetching on DMA reads).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853 */
Ingo Molnar05fccb02008-01-30 13:30:12 +0100854 scratch = get_zeroed_page(GFP_KERNEL);
855 if (!scratch)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856 panic("Cannot allocate iommu scratch page");
857 gart_unmapped_entry = GPTE_ENCODE(__pa(scratch));
Ingo Molnar05fccb02008-01-30 13:30:12 +0100858 for (i = EMERGENCY_PAGES; i < iommu_pages; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 iommu_gatt_base[i] = gart_unmapped_entry;
860
Andi Kleena32073b2006-06-26 13:56:40 +0200861 flush_gart();
Muli Ben-Yehuda17a941d2006-01-11 22:44:42 +0100862 dma_ops = &gart_dma_ops;
FUJITA Tomonori338bac52009-10-27 16:34:44 +0900863 x86_platform.iommu_shutdown = gart_iommu_shutdown;
FUJITA Tomonori75f1cdf2009-11-10 19:46:20 +0900864 swiotlb = 0;
FUJITA Tomonoride957622009-11-10 19:46:14 +0900865
866 return 0;
Ingo Molnar05fccb02008-01-30 13:30:12 +0100867}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868
Sam Ravnborg43999d92007-03-16 21:07:36 +0100869void __init gart_parse_options(char *p)
Muli Ben-Yehuda17a941d2006-01-11 22:44:42 +0100870{
871 int arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873#ifdef CONFIG_IOMMU_LEAK
Ingo Molnar05fccb02008-01-30 13:30:12 +0100874 if (!strncmp(p, "leak", 4)) {
Muli Ben-Yehuda17a941d2006-01-11 22:44:42 +0100875 leak_trace = 1;
876 p += 4;
Joerg Roedel237a6222008-09-25 12:13:53 +0200877 if (*p == '=')
878 ++p;
Muli Ben-Yehuda17a941d2006-01-11 22:44:42 +0100879 if (isdigit(*p) && get_option(&p, &arg))
880 iommu_leak_pages = arg;
881 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882#endif
Muli Ben-Yehuda17a941d2006-01-11 22:44:42 +0100883 if (isdigit(*p) && get_option(&p, &arg))
884 iommu_size = arg;
Joe Perches41855b72009-11-09 17:58:50 -0800885 if (!strncmp(p, "fullflush", 9))
Muli Ben-Yehuda17a941d2006-01-11 22:44:42 +0100886 iommu_fullflush = 1;
Ingo Molnar05fccb02008-01-30 13:30:12 +0100887 if (!strncmp(p, "nofullflush", 11))
Muli Ben-Yehuda17a941d2006-01-11 22:44:42 +0100888 iommu_fullflush = 0;
Ingo Molnar05fccb02008-01-30 13:30:12 +0100889 if (!strncmp(p, "noagp", 5))
Muli Ben-Yehuda17a941d2006-01-11 22:44:42 +0100890 no_agp = 1;
Ingo Molnar05fccb02008-01-30 13:30:12 +0100891 if (!strncmp(p, "noaperture", 10))
Muli Ben-Yehuda17a941d2006-01-11 22:44:42 +0100892 fix_aperture = 0;
893 /* duplicated from pci-dma.c */
Ingo Molnar05fccb02008-01-30 13:30:12 +0100894 if (!strncmp(p, "force", 5))
Joerg Roedel0440d4c2007-10-24 12:49:50 +0200895 gart_iommu_aperture_allowed = 1;
Ingo Molnar05fccb02008-01-30 13:30:12 +0100896 if (!strncmp(p, "allowed", 7))
Joerg Roedel0440d4c2007-10-24 12:49:50 +0200897 gart_iommu_aperture_allowed = 1;
Muli Ben-Yehuda17a941d2006-01-11 22:44:42 +0100898 if (!strncmp(p, "memaper", 7)) {
899 fallback_aper_force = 1;
900 p += 7;
901 if (*p == '=') {
902 ++p;
903 if (get_option(&p, &arg))
904 fallback_aper_order = arg;
905 }
906 }
907}