📄 pci-gart.c
字号:
/* * Dynamic DMA mapping support for AMD Hammer. * * Use the integrated AGP GART in the Hammer northbridge as an IOMMU for PCI. * This allows to use PCI devices that only support 32bit addresses on systems * with more than 4GB. * * See Documentation/DMA-mapping.txt for the interface specification. * * Copyright 2002 Andi Kleen, SuSE Labs. */#include <linux/config.h>#include <linux/types.h>#include <linux/ctype.h>#include <linux/agp_backend.h>#include <linux/init.h>#include <linux/mm.h>#include <linux/string.h>#include <linux/spinlock.h>#include <linux/pci.h>#include <linux/module.h>#include <linux/topology.h>#include <linux/interrupt.h>#include <linux/bitops.h>#include <asm/atomic.h>#include <asm/io.h>#include <asm/mtrr.h>#include <asm/pgtable.h>#include <asm/proto.h>#include <asm/cacheflush.h>#include <asm/kdebug.h>dma_addr_t bad_dma_address;unsigned long iommu_bus_base; /* GART remapping area (physical) */static unsigned long iommu_size; /* size of remapping area bytes */static unsigned long iommu_pages; /* .. and in pages */u32 *iommu_gatt_base; /* Remapping table */int no_iommu; static int no_agp; #ifdef CONFIG_IOMMU_DEBUGint panic_on_overflow = 1; int force_iommu = 1;#elseint panic_on_overflow = 0;int force_iommu = 0;#endifint iommu_merge = 1;int iommu_sac_force = 0; /* If this is disabled the IOMMU will use an optimized flushing strategy of only flushing when an mapping is reused. With it true the GART is flushed for every mapping. Problem is that doing the lazy flush seems to trigger bugs with some popular PCI cards, in particular 3ware (but has been also also seen with Qlogic at least). */int iommu_fullflush = 1;/* This tells the BIO block layer to assume merging. Default to off because we cannot guarantee merging later. */int iommu_bio_merge = 0;#define MAX_NB 8/* Allocation bitmap for the remapping area */ static DEFINE_SPINLOCK(iommu_bitmap_lock);static unsigned long *iommu_gart_bitmap; /* guarded by iommu_bitmap_lock */static u32 gart_unmapped_entry; #define GPTE_VALID 1#define GPTE_COHERENT 2#define GPTE_ENCODE(x) \ (((x) & 0xfffff000) | (((x) >> 32) << 4) | GPTE_VALID | GPTE_COHERENT)#define GPTE_DECODE(x) (((x) & 0xfffff000) | (((u64)(x) & 0xff0) << 28))#define to_pages(addr,size) \ (round_up(((addr) & ~PAGE_MASK) + (size), PAGE_SIZE) >> PAGE_SHIFT)#define for_all_nb(dev) \ dev = NULL; \ while ((dev = pci_get_device(PCI_VENDOR_ID_AMD, 0x1103, dev))!=NULL)\ if (dev->bus->number == 0 && \ (PCI_SLOT(dev->devfn) >= 24) && (PCI_SLOT(dev->devfn) <= 31))static struct pci_dev *northbridges[MAX_NB];static u32 northbridge_flush_word[MAX_NB];#define EMERGENCY_PAGES 32 /* = 128KB */ #ifdef CONFIG_AGP#define AGPEXTERN extern#else#define AGPEXTERN#endif/* backdoor interface to AGP driver */AGPEXTERN int agp_memory_reserved;AGPEXTERN __u32 *agp_gatt_table;static unsigned long next_bit; /* protected by iommu_bitmap_lock */static int need_flush; /* global flush state. set for each gart wrap */static dma_addr_t dma_map_area(struct device *dev, unsigned long phys_mem, size_t size, int dir, int do_panic);/* Dummy device used for NULL arguments (normally ISA). Better would be probably a smaller DMA mask, but this is bug-to-bug compatible to i386. */static struct device fallback_dev = { .bus_id = "fallback device", .coherent_dma_mask = 0xffffffff, .dma_mask = &fallback_dev.coherent_dma_mask,};static unsigned long alloc_iommu(int size) { unsigned long offset, flags; spin_lock_irqsave(&iommu_bitmap_lock, flags); offset = find_next_zero_string(iommu_gart_bitmap,next_bit,iommu_pages,size); if (offset == -1) { need_flush = 1; offset = find_next_zero_string(iommu_gart_bitmap,0,next_bit,size); } if (offset != -1) { set_bit_string(iommu_gart_bitmap, offset, size); next_bit = offset+size; if (next_bit >= iommu_pages) { next_bit = 0; need_flush = 1; } } if (iommu_fullflush) need_flush = 1; spin_unlock_irqrestore(&iommu_bitmap_lock, flags); return offset;} static void free_iommu(unsigned long offset, int size){ unsigned long flags; if (size == 1) { clear_bit(offset, iommu_gart_bitmap); return; } spin_lock_irqsave(&iommu_bitmap_lock, flags); __clear_bit_string(iommu_gart_bitmap, offset, size); spin_unlock_irqrestore(&iommu_bitmap_lock, flags);} /* * Use global flush state to avoid races with multiple flushers. */static void flush_gart(struct device *dev){ unsigned long flags; int flushed = 0; int i, max; spin_lock_irqsave(&iommu_bitmap_lock, flags); if (need_flush) { max = 0; for (i = 0; i < MAX_NB; i++) { if (!northbridges[i]) continue; pci_write_config_dword(northbridges[i], 0x9c, northbridge_flush_word[i] | 1); flushed++; max = i; } for (i = 0; i <= max; i++) { u32 w; if (!northbridges[i]) continue; /* Make sure the hardware actually executed the flush. */ do { pci_read_config_dword(northbridges[i], 0x9c, &w); } while (w & 1); } if (!flushed) printk("nothing to flush?\n"); need_flush = 0; } spin_unlock_irqrestore(&iommu_bitmap_lock, flags);} /* Allocate DMA memory on node near device */noinlinestatic void *dma_alloc_pages(struct device *dev, unsigned gfp, unsigned order){ struct page *page; int node; if (dev->bus == &pci_bus_type) node = pcibus_to_node(to_pci_dev(dev)->bus); else node = numa_node_id(); page = alloc_pages_node(node, gfp, order); return page ? page_address(page) : NULL;}/* * Allocate memory for a coherent mapping. */void *dma_alloc_coherent(struct device *dev, size_t size, dma_addr_t *dma_handle, unsigned gfp){ void *memory; unsigned long dma_mask = 0; u64 bus; if (!dev) dev = &fallback_dev; dma_mask = dev->coherent_dma_mask; if (dma_mask == 0) dma_mask = 0xffffffff; /* Kludge to make it bug-to-bug compatible with i386. i386 uses the normal dma_mask for alloc_coherent. */ dma_mask &= *dev->dma_mask; again: memory = dma_alloc_pages(dev, gfp, get_order(size)); if (memory == NULL) return NULL; { int high, mmu; bus = virt_to_bus(memory); high = (bus + size) >= dma_mask; mmu = high; if (force_iommu && !(gfp & GFP_DMA)) mmu = 1; if (no_iommu || dma_mask < 0xffffffffUL) { if (high) { free_pages((unsigned long)memory, get_order(size)); if (swiotlb) { return swiotlb_alloc_coherent(dev, size, dma_handle, gfp); } if (!(gfp & GFP_DMA)) { gfp |= GFP_DMA; goto again; } return NULL; } mmu = 0; } memset(memory, 0, size); if (!mmu) { *dma_handle = virt_to_bus(memory); return memory; } } *dma_handle = dma_map_area(dev, bus, size, PCI_DMA_BIDIRECTIONAL, 0); if (*dma_handle == bad_dma_address) goto error; flush_gart(dev); return memory; error: if (panic_on_overflow) panic("dma_alloc_coherent: IOMMU overflow by %lu bytes\n", size); free_pages((unsigned long)memory, get_order(size)); return NULL; }/* * Unmap coherent memory. * The caller must ensure that the device has finished accessing the mapping. */void dma_free_coherent(struct device *dev, size_t size, void *vaddr, dma_addr_t bus){ if (swiotlb) { swiotlb_free_coherent(dev, size, vaddr, bus); return; } dma_unmap_single(dev, bus, size, 0); free_pages((unsigned long)vaddr, get_order(size)); }#ifdef CONFIG_IOMMU_LEAK#define SET_LEAK(x) if (iommu_leak_tab) \ iommu_leak_tab[x] = __builtin_return_address(0);#define CLEAR_LEAK(x) if (iommu_leak_tab) \ iommu_leak_tab[x] = NULL;/* Debugging aid for drivers that don't free their IOMMU tables */static void **iommu_leak_tab; static int leak_trace;int iommu_leak_pages = 20; void dump_leak(void){ int i; static int dump; if (dump || !iommu_leak_tab) return; dump = 1; show_stack(NULL,NULL); /* Very crude. dump some from the end of the table too */ printk("Dumping %d pages from end of IOMMU:\n", iommu_leak_pages); for (i = 0; i < iommu_leak_pages; i+=2) { printk("%lu: ", iommu_pages-i); printk_address((unsigned long) iommu_leak_tab[iommu_pages-i]); printk("%c", (i+1)%2 == 0 ? '\n' : ' '); } printk("\n");}#else#define SET_LEAK(x)#define CLEAR_LEAK(x)#endifstatic void iommu_full(struct device *dev, size_t size, int dir, int do_panic){ /* * Ran out of IOMMU space for this operation. This is very bad. * Unfortunately the drivers cannot handle this operation properly. * Return some non mapped prereserved space in the aperture and * let the Northbridge deal with it. This will result in garbage * in the IO operation. When the size exceeds the prereserved space * memory corruption will occur or random memory will be DMAed * out. Hopefully no network devices use single mappings that big. */ printk(KERN_ERR "PCI-DMA: Out of IOMMU space for %lu bytes at device %s\n", size, dev->bus_id); if (size > PAGE_SIZE*EMERGENCY_PAGES && do_panic) { if (dir == PCI_DMA_FROMDEVICE || dir == PCI_DMA_BIDIRECTIONAL) panic("PCI-DMA: Memory would be corrupted\n"); if (dir == PCI_DMA_TODEVICE || dir == PCI_DMA_BIDIRECTIONAL) panic("PCI-DMA: Random memory would be DMAed\n"); } #ifdef CONFIG_IOMMU_LEAK dump_leak(); #endif} static inline int need_iommu(struct device *dev, unsigned long addr, size_t size){ u64 mask = *dev->dma_mask; int high = addr + size >= mask; int mmu = high; if (force_iommu) mmu = 1; if (no_iommu) { if (high) panic("PCI-DMA: high address but no IOMMU.\n"); mmu = 0; } return mmu; }static inline int nonforced_iommu(struct device *dev, unsigned long addr, size_t size){ u64 mask = *dev->dma_mask; int high = addr + size >= mask; int mmu = high; if (no_iommu) { if (high) panic("PCI-DMA: high address but no IOMMU.\n"); mmu = 0; } return mmu; }/* Map a single continuous physical area into the IOMMU. * Caller needs to check if the iommu is needed and flush. */static dma_addr_t dma_map_area(struct device *dev, unsigned long phys_mem, size_t size, int dir, int do_panic){ unsigned long npages = to_pages(phys_mem, size); unsigned long iommu_page = alloc_iommu(npages); int i; if (iommu_page == -1) { if (!nonforced_iommu(dev, phys_mem, size)) return phys_mem; if (panic_on_overflow) panic("dma_map_area overflow %lu bytes\n", size); iommu_full(dev, size, dir, do_panic); return bad_dma_address; } for (i = 0; i < npages; i++) { iommu_gatt_base[iommu_page + i] = GPTE_ENCODE(phys_mem); SET_LEAK(iommu_page + i); phys_mem += PAGE_SIZE; } return iommu_bus_base + iommu_page*PAGE_SIZE + (phys_mem & ~PAGE_MASK);}/* Map a single area into the IOMMU */dma_addr_t dma_map_single(struct device *dev, void *addr, size_t size, int dir){ unsigned long phys_mem, bus; BUG_ON(dir == DMA_NONE); if (swiotlb) return swiotlb_map_single(dev,addr,size,dir); if (!dev) dev = &fallback_dev; phys_mem = virt_to_phys(addr); if (!need_iommu(dev, phys_mem, size)) return phys_mem; bus = dma_map_area(dev, phys_mem, size, dir, 1); flush_gart(dev); return bus; } /* Fallback for dma_map_sg in case of overflow */static int dma_map_sg_nonforce(struct device *dev, struct scatterlist *sg, int nents, int dir){ int i;#ifdef CONFIG_IOMMU_DEBUG printk(KERN_DEBUG "dma_map_sg overflow\n");#endif for (i = 0; i < nents; i++ ) { struct scatterlist *s = &sg[i]; unsigned long addr = page_to_phys(s->page) + s->offset; if (nonforced_iommu(dev, addr, s->length)) { addr = dma_map_area(dev, addr, s->length, dir, 0); if (addr == bad_dma_address) { if (i > 0) dma_unmap_sg(dev, sg, i, dir); nents = 0; sg[0].dma_length = 0; break; } } s->dma_address = addr; s->dma_length = s->length; } flush_gart(dev); return nents;}/* Map multiple scatterlist entries continuous into the first. */static int __dma_map_cont(struct scatterlist *sg, int start, int stopat, struct scatterlist *sout, unsigned long pages){ unsigned long iommu_start = alloc_iommu(pages); unsigned long iommu_page = iommu_start; int i; if (iommu_start == -1) return -1; for (i = start; i < stopat; i++) { struct scatterlist *s = &sg[i]; unsigned long pages, addr; unsigned long phys_addr = s->dma_address; BUG_ON(i > start && s->offset); if (i == start) { *sout = *s; sout->dma_address = iommu_bus_base; sout->dma_address += iommu_page*PAGE_SIZE + s->offset; sout->dma_length = s->length; } else { sout->dma_length += s->length; } addr = phys_addr; pages = to_pages(s->offset, s->length); while (pages--) { iommu_gatt_base[iommu_page] = GPTE_ENCODE(addr); SET_LEAK(iommu_page); addr += PAGE_SIZE; iommu_page++; } }
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -