⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 pci-gart.c

📁 LINUX 2.6.17.4的源码
💻 C
📖 第 1 页 / 共 2 页
字号:
/* * 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>#include <asm/swiotlb.h>#include <asm/dma.h>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 *//* 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;#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)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 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;	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. */			for (;;) { 				pci_read_config_dword(northbridges[i], 0x9c, &w);				if (!(w & 1))					break;				cpu_relax();			}		} 		if (!flushed) 			printk("nothing to flush?\n");		need_flush = 0;	} 	spin_unlock_irqrestore(&iommu_bitmap_lock, flags);} #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){	/* 	 * 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) {		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(KERN_ERR "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; 	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;	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, dma_addr_t phys_mem,				size_t size, int dir){ 	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);		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);}static dma_addr_t gart_map_simple(struct device *dev, char *buf,				 size_t size, int dir){	dma_addr_t map = dma_map_area(dev, virt_to_bus(buf), size, dir);	flush_gart(dev);	return map;}/* Map a single area into the IOMMU */dma_addr_t gart_map_single(struct device *dev, void *addr, size_t size, int dir){	unsigned long phys_mem, bus;	BUG_ON(dir == DMA_NONE);	if (!dev)		dev = &fallback_dev;	phys_mem = virt_to_phys(addr); 	if (!need_iommu(dev, phys_mem, size))		return phys_mem; 	bus = gart_map_simple(dev, addr, size, dir);	return bus; }/* * Wrapper for pci_unmap_single working with scatterlists. */void gart_unmap_sg(struct device *dev, struct scatterlist *sg, int nents, int dir){	int i;	for (i = 0; i < nents; i++) {		struct scatterlist *s = &sg[i];		if (!s->dma_length || !s->length)			break;		dma_unmap_single(dev, s->dma_address, s->dma_length, dir);	}}/* 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);			if (addr == bad_dma_address) { 				if (i > 0) 					gart_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++;		}	} 	BUG_ON(iommu_page - iommu_start != pages);		return 0;}static inline int dma_map_cont(struct scatterlist *sg, int start, int stopat,		      struct scatterlist *sout,		      unsigned long pages, int need){	if (!need) { 		BUG_ON(stopat - start != 1);		*sout = sg[start]; 		sout->dma_length = sg[start].length; 		return 0;	} 

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -