| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * Re-map IO memory to kernel address space so that we can access it. | 
					
						
							|  |  |  |  * This is needed for high PCI addresses that aren't mapped in the | 
					
						
							|  |  |  |  * 640k-1MB IO memory area on PC's | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * (C) Copyright 1995 1996 Linus Torvalds | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-01-30 13:34:05 +01:00
										 |  |  | #include <linux/bootmem.h>
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | #include <linux/init.h>
 | 
					
						
							| 
									
										
										
										
											2006-09-30 23:29:17 -07:00
										 |  |  | #include <linux/io.h>
 | 
					
						
							| 
									
										
										
										
											2008-01-30 13:34:05 +01:00
										 |  |  | #include <linux/module.h>
 | 
					
						
							|  |  |  | #include <linux/slab.h>
 | 
					
						
							|  |  |  | #include <linux/vmalloc.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | #include <asm/cacheflush.h>
 | 
					
						
							| 
									
										
										
										
											2008-01-30 13:34:05 +01:00
										 |  |  | #include <asm/e820.h>
 | 
					
						
							|  |  |  | #include <asm/fixmap.h>
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | #include <asm/pgtable.h>
 | 
					
						
							| 
									
										
										
										
											2008-01-30 13:34:05 +01:00
										 |  |  | #include <asm/tlbflush.h>
 | 
					
						
							| 
									
										
										
										
											2008-01-30 13:34:11 +01:00
										 |  |  | #include <asm/pgalloc.h>
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-01-30 13:34:06 +01:00
										 |  |  | enum ioremap_mode { | 
					
						
							|  |  |  | 	IOR_MODE_UNCACHED, | 
					
						
							|  |  |  | 	IOR_MODE_CACHED, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-01-30 13:34:05 +01:00
										 |  |  | #ifdef CONFIG_X86_64
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | unsigned long __phys_addr(unsigned long x) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	if (x >= __START_KERNEL_map) | 
					
						
							|  |  |  | 		return x - __START_KERNEL_map + phys_base; | 
					
						
							|  |  |  | 	return x - PAGE_OFFSET; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | EXPORT_SYMBOL(__phys_addr); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-01-30 13:34:06 +01:00
										 |  |  | int page_is_ram(unsigned long pagenr) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	unsigned long addr, end; | 
					
						
							|  |  |  | 	int i; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-02-18 09:54:33 -08:00
										 |  |  | 	/*
 | 
					
						
							|  |  |  | 	 * A special case is the first 4Kb of memory; | 
					
						
							|  |  |  | 	 * This is a BIOS owned area, not kernel ram, but generally | 
					
						
							|  |  |  | 	 * not listed as such in the E820 table. | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	if (pagenr == 0) | 
					
						
							|  |  |  | 		return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-02-18 09:58:45 -08:00
										 |  |  | 	/*
 | 
					
						
							|  |  |  | 	 * Second special case: Some BIOSen report the PC BIOS | 
					
						
							|  |  |  | 	 * area (640->1Mb) as ram even though it is not. | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	if (pagenr >= (BIOS_BEGIN >> PAGE_SHIFT) && | 
					
						
							|  |  |  | 		    pagenr < (BIOS_END >> PAGE_SHIFT)) | 
					
						
							|  |  |  | 		return 0; | 
					
						
							| 
									
										
										
										
											2008-02-18 09:54:33 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-01-30 13:34:06 +01:00
										 |  |  | 	for (i = 0; i < e820.nr_map; i++) { | 
					
						
							|  |  |  | 		/*
 | 
					
						
							|  |  |  | 		 * Not usable memory: | 
					
						
							|  |  |  | 		 */ | 
					
						
							|  |  |  | 		if (e820.map[i].type != E820_RAM) | 
					
						
							|  |  |  | 			continue; | 
					
						
							|  |  |  | 		addr = (e820.map[i].addr + PAGE_SIZE-1) >> PAGE_SHIFT; | 
					
						
							|  |  |  | 		end = (e820.map[i].addr + e820.map[i].size) >> PAGE_SHIFT; | 
					
						
							| 
									
										
										
										
											2008-01-30 13:34:06 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-01-30 13:34:06 +01:00
										 |  |  | 		if ((pagenr >= addr) && (pagenr < end)) | 
					
						
							|  |  |  | 			return 1; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-01-30 13:34:05 +01:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * Fix up the linear direct mapping of the kernel to avoid cache attribute | 
					
						
							|  |  |  |  * conflicts. | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2008-02-04 16:48:05 +01:00
										 |  |  | static int ioremap_change_attr(unsigned long vaddr, unsigned long size, | 
					
						
							| 
									
										
										
										
											2008-01-30 13:34:06 +01:00
										 |  |  | 			       enum ioremap_mode mode) | 
					
						
							| 
									
										
										
										
											2008-01-30 13:34:05 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2008-01-30 13:34:06 +01:00
										 |  |  | 	unsigned long nrpages = size >> PAGE_SHIFT; | 
					
						
							| 
									
										
										
										
											2008-02-01 17:49:43 +01:00
										 |  |  | 	int err; | 
					
						
							| 
									
										
										
										
											2008-01-30 13:34:05 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-01-30 13:34:06 +01:00
										 |  |  | 	switch (mode) { | 
					
						
							|  |  |  | 	case IOR_MODE_UNCACHED: | 
					
						
							|  |  |  | 	default: | 
					
						
							|  |  |  | 		err = set_memory_uc(vaddr, nrpages); | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	case IOR_MODE_CACHED: | 
					
						
							|  |  |  | 		err = set_memory_wb(vaddr, nrpages); | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2008-01-30 13:34:05 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	return err; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * Remap an arbitrary physical address space into the kernel virtual | 
					
						
							|  |  |  |  * address space. Needed when the kernel wants to access high addresses | 
					
						
							|  |  |  |  * directly. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * NOTE! We need to allow non-page-aligned mappings too: we will obviously | 
					
						
							|  |  |  |  * have to convert them into an offset in a page-aligned mapping, but the | 
					
						
							|  |  |  |  * caller shouldn't need to know that small detail. | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2008-03-24 11:22:39 -07:00
										 |  |  | static void __iomem *__ioremap(resource_size_t phys_addr, unsigned long size, | 
					
						
							| 
									
										
										
										
											2008-01-30 13:34:06 +01:00
										 |  |  | 			       enum ioremap_mode mode) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2008-02-04 16:48:05 +01:00
										 |  |  | 	unsigned long pfn, offset, last_addr, vaddr; | 
					
						
							| 
									
										
										
										
											2008-01-30 13:34:05 +01:00
										 |  |  | 	struct vm_struct *area; | 
					
						
							| 
									
										
										
										
											2008-01-30 13:34:06 +01:00
										 |  |  | 	pgprot_t prot; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* Don't allow wraparound or zero size */ | 
					
						
							|  |  |  | 	last_addr = phys_addr + size - 1; | 
					
						
							|  |  |  | 	if (!size || last_addr < phys_addr) | 
					
						
							|  |  |  | 		return NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/*
 | 
					
						
							|  |  |  | 	 * Don't remap the low PCI/ISA area, it's always mapped.. | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	if (phys_addr >= ISA_START_ADDRESS && last_addr < ISA_END_ADDRESS) | 
					
						
							| 
									
										
										
										
											2008-01-30 13:34:05 +01:00
										 |  |  | 		return (__force void __iomem *)phys_to_virt(phys_addr); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/*
 | 
					
						
							|  |  |  | 	 * Don't allow anybody to remap normal RAM that we're using.. | 
					
						
							|  |  |  | 	 */ | 
					
						
							| 
									
										
										
										
											2008-02-04 16:47:54 +01:00
										 |  |  | 	for (pfn = phys_addr >> PAGE_SHIFT; pfn < max_pfn_mapped && | 
					
						
							|  |  |  | 	     (pfn << PAGE_SHIFT) < last_addr; pfn++) { | 
					
						
							|  |  |  | 		if (page_is_ram(pfn) && pfn_valid(pfn) && | 
					
						
							|  |  |  | 		    !PageReserved(pfn_to_page(pfn))) | 
					
						
							| 
									
										
										
										
											2008-01-30 13:34:06 +01:00
										 |  |  | 			return NULL; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-01-30 13:34:06 +01:00
										 |  |  | 	switch (mode) { | 
					
						
							|  |  |  | 	case IOR_MODE_UNCACHED: | 
					
						
							|  |  |  | 	default: | 
					
						
							|  |  |  | 		prot = PAGE_KERNEL_NOCACHE; | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	case IOR_MODE_CACHED: | 
					
						
							|  |  |  | 		prot = PAGE_KERNEL; | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2006-09-30 23:29:17 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	/*
 | 
					
						
							|  |  |  | 	 * Mappings have to be page-aligned | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	offset = phys_addr & ~PAGE_MASK; | 
					
						
							|  |  |  | 	phys_addr &= PAGE_MASK; | 
					
						
							|  |  |  | 	size = PAGE_ALIGN(last_addr+1) - phys_addr; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/*
 | 
					
						
							|  |  |  | 	 * Ok, go for it.. | 
					
						
							|  |  |  | 	 */ | 
					
						
							| 
									
										
										
										
											2008-01-30 13:34:05 +01:00
										 |  |  | 	area = get_vm_area(size, VM_IOREMAP); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	if (!area) | 
					
						
							|  |  |  | 		return NULL; | 
					
						
							|  |  |  | 	area->phys_addr = phys_addr; | 
					
						
							| 
									
										
										
										
											2008-02-04 16:48:05 +01:00
										 |  |  | 	vaddr = (unsigned long) area->addr; | 
					
						
							|  |  |  | 	if (ioremap_page_range(vaddr, vaddr + size, phys_addr, prot)) { | 
					
						
							| 
									
										
										
										
											2008-02-28 14:02:08 +01:00
										 |  |  | 		free_vm_area(area); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		return NULL; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2008-01-30 13:34:05 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-02-04 16:48:05 +01:00
										 |  |  | 	if (ioremap_change_attr(vaddr, size, mode) < 0) { | 
					
						
							| 
									
										
										
										
											2008-02-04 16:48:05 +01:00
										 |  |  | 		vunmap(area->addr); | 
					
						
							| 
									
										
										
										
											2008-01-30 13:34:05 +01:00
										 |  |  | 		return NULL; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-02-04 16:48:05 +01:00
										 |  |  | 	return (void __iomem *) (vaddr + offset); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /**
 | 
					
						
							|  |  |  |  * ioremap_nocache     -   map bus memory into CPU space | 
					
						
							|  |  |  |  * @offset:    bus address of the memory | 
					
						
							|  |  |  |  * @size:      size of the resource to map | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * ioremap_nocache performs a platform specific sequence of operations to | 
					
						
							|  |  |  |  * make bus memory CPU accessible via the readb/readw/readl/writeb/ | 
					
						
							|  |  |  |  * writew/writel functions and the other mmio helpers. The returned | 
					
						
							|  |  |  |  * address is not guaranteed to be usable directly as a virtual | 
					
						
							| 
									
										
										
										
											2008-01-30 13:34:05 +01:00
										 |  |  |  * address. | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  |  * | 
					
						
							|  |  |  |  * This version of ioremap ensures that the memory is marked uncachable | 
					
						
							|  |  |  |  * on the CPU as well as honouring existing caching rules from things like | 
					
						
							| 
									
										
										
										
											2008-01-30 13:34:05 +01:00
										 |  |  |  * the PCI bus. Note that there are other caches and buffers on many | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  |  * busses. In particular driver authors should read up on PCI writes | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * It's useful if some control registers are in such an area and | 
					
						
							|  |  |  |  * write combining or read caching is not desirable: | 
					
						
							| 
									
										
										
										
											2008-01-30 13:34:05 +01:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  |  * Must be freed with iounmap. | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2008-03-24 11:22:39 -07:00
										 |  |  | void __iomem *ioremap_nocache(resource_size_t phys_addr, unsigned long size) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2008-01-30 13:34:06 +01:00
										 |  |  | 	return __ioremap(phys_addr, size, IOR_MODE_UNCACHED); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2005-06-23 00:08:33 -07:00
										 |  |  | EXPORT_SYMBOL(ioremap_nocache); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-03-24 11:22:39 -07:00
										 |  |  | void __iomem *ioremap_cache(resource_size_t phys_addr, unsigned long size) | 
					
						
							| 
									
										
										
										
											2008-01-30 13:34:06 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2008-01-30 13:34:06 +01:00
										 |  |  | 	return __ioremap(phys_addr, size, IOR_MODE_CACHED); | 
					
						
							| 
									
										
										
										
											2008-01-30 13:34:06 +01:00
										 |  |  | } | 
					
						
							|  |  |  | EXPORT_SYMBOL(ioremap_cache); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-12-12 22:17:09 -08:00
										 |  |  | /**
 | 
					
						
							|  |  |  |  * iounmap - Free a IO remapping | 
					
						
							|  |  |  |  * @addr: virtual address from ioremap_* | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Caller must ensure there is only one unmapping for the same pointer. | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | void iounmap(volatile void __iomem *addr) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2005-12-12 22:17:09 -08:00
										 |  |  | 	struct vm_struct *p, *o; | 
					
						
							| 
									
										
										
										
											2005-07-07 17:56:02 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if ((void __force *)addr <= high_memory) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		return; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/*
 | 
					
						
							|  |  |  | 	 * __ioremap special-cases the PCI/ISA range by not instantiating a | 
					
						
							|  |  |  | 	 * vm_area and by simply returning an address into the kernel mapping | 
					
						
							|  |  |  | 	 * of ISA space.   So handle that here. | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	if (addr >= phys_to_virt(ISA_START_ADDRESS) && | 
					
						
							| 
									
										
										
										
											2008-01-30 13:34:05 +01:00
										 |  |  | 	    addr < phys_to_virt(ISA_END_ADDRESS)) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		return; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-01-30 13:34:05 +01:00
										 |  |  | 	addr = (volatile void __iomem *) | 
					
						
							|  |  |  | 		(PAGE_MASK & (unsigned long __force)addr); | 
					
						
							| 
									
										
										
										
											2005-12-12 22:17:09 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* Use the vm area unlocked, assuming the caller
 | 
					
						
							|  |  |  | 	   ensures there isn't another iounmap for the same address | 
					
						
							|  |  |  | 	   in parallel. Reuse of the virtual address is prevented by | 
					
						
							|  |  |  | 	   leaving it in the global lists until we're done with it. | 
					
						
							|  |  |  | 	   cpa takes care of the direct mappings. */ | 
					
						
							|  |  |  | 	read_lock(&vmlist_lock); | 
					
						
							|  |  |  | 	for (p = vmlist; p; p = p->next) { | 
					
						
							|  |  |  | 		if (p->addr == addr) | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	read_unlock(&vmlist_lock); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (!p) { | 
					
						
							| 
									
										
										
										
											2008-01-30 13:34:05 +01:00
										 |  |  | 		printk(KERN_ERR "iounmap: bad address %p\n", addr); | 
					
						
							| 
									
										
										
										
											2005-07-07 17:56:02 -07:00
										 |  |  | 		dump_stack(); | 
					
						
							| 
									
										
										
										
											2005-12-12 22:17:09 -08:00
										 |  |  | 		return; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-12-12 22:17:09 -08:00
										 |  |  | 	/* Finally remove it */ | 
					
						
							|  |  |  | 	o = remove_vm_area((void *)addr); | 
					
						
							|  |  |  | 	BUG_ON(p != o || o == NULL); | 
					
						
							| 
									
										
										
										
											2008-01-30 13:34:05 +01:00
										 |  |  | 	kfree(p); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2005-06-23 00:08:33 -07:00
										 |  |  | EXPORT_SYMBOL(iounmap); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-01-30 13:34:05 +01:00
										 |  |  | #ifdef CONFIG_X86_32
 | 
					
						
							| 
									
										
										
										
											2008-01-30 13:33:45 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | int __initdata early_ioremap_debug; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int __init early_ioremap_debug_setup(char *str) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	early_ioremap_debug = 1; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-01-30 13:33:45 +01:00
										 |  |  | 	return 0; | 
					
						
							| 
									
										
										
										
											2008-01-30 13:33:45 +01:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2008-01-30 13:33:45 +01:00
										 |  |  | early_param("early_ioremap_debug", early_ioremap_debug_setup); | 
					
						
							| 
									
										
										
										
											2008-01-30 13:33:45 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-01-30 13:33:44 +01:00
										 |  |  | static __initdata int after_paging_init; | 
					
						
							| 
									
										
										
										
											2008-02-09 23:24:09 +01:00
										 |  |  | static __initdata pte_t bm_pte[PAGE_SIZE/sizeof(pte_t)] | 
					
						
							| 
									
										
										
										
											2008-01-30 13:33:44 +01:00
										 |  |  | 				__attribute__((aligned(PAGE_SIZE))); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-02-09 23:24:09 +01:00
										 |  |  | static inline pmd_t * __init early_ioremap_pmd(unsigned long addr) | 
					
						
							| 
									
										
										
										
											2008-01-30 13:33:44 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2008-02-13 16:20:35 +01:00
										 |  |  | 	/* Don't assume we're using swapper_pg_dir at this point */ | 
					
						
							|  |  |  | 	pgd_t *base = __va(read_cr3()); | 
					
						
							|  |  |  | 	pgd_t *pgd = &base[pgd_index(addr)]; | 
					
						
							| 
									
										
										
										
											2008-02-09 23:24:09 +01:00
										 |  |  | 	pud_t *pud = pud_offset(pgd, addr); | 
					
						
							|  |  |  | 	pmd_t *pmd = pmd_offset(pud, addr); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return pmd; | 
					
						
							| 
									
										
										
										
											2008-01-30 13:33:44 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-02-09 23:24:09 +01:00
										 |  |  | static inline pte_t * __init early_ioremap_pte(unsigned long addr) | 
					
						
							| 
									
										
										
										
											2008-01-30 13:33:44 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2008-02-09 23:24:09 +01:00
										 |  |  | 	return &bm_pte[pte_index(addr)]; | 
					
						
							| 
									
										
										
										
											2008-01-30 13:33:44 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-01-30 13:33:44 +01:00
										 |  |  | void __init early_ioremap_init(void) | 
					
						
							| 
									
										
										
										
											2008-01-30 13:33:44 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2008-02-09 23:24:09 +01:00
										 |  |  | 	pmd_t *pmd; | 
					
						
							| 
									
										
										
										
											2008-01-30 13:33:44 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-01-30 13:33:45 +01:00
										 |  |  | 	if (early_ioremap_debug) | 
					
						
							| 
									
										
										
										
											2008-01-30 13:34:08 +01:00
										 |  |  | 		printk(KERN_INFO "early_ioremap_init()\n"); | 
					
						
							| 
									
										
										
										
											2008-01-30 13:33:45 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-02-09 23:24:09 +01:00
										 |  |  | 	pmd = early_ioremap_pmd(fix_to_virt(FIX_BTMAP_BEGIN)); | 
					
						
							| 
									
										
										
										
											2008-01-30 13:33:44 +01:00
										 |  |  | 	memset(bm_pte, 0, sizeof(bm_pte)); | 
					
						
							| 
									
										
										
										
											2008-02-09 23:24:09 +01:00
										 |  |  | 	pmd_populate_kernel(&init_mm, pmd, bm_pte); | 
					
						
							| 
									
										
										
										
											2008-02-09 23:24:09 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-01-30 13:33:49 +01:00
										 |  |  | 	/*
 | 
					
						
							| 
									
										
										
										
											2008-02-09 23:24:09 +01:00
										 |  |  | 	 * The boot-ioremap range spans multiple pmds, for which | 
					
						
							| 
									
										
										
										
											2008-01-30 13:33:49 +01:00
										 |  |  | 	 * we are not prepared: | 
					
						
							|  |  |  | 	 */ | 
					
						
							| 
									
										
										
										
											2008-02-09 23:24:09 +01:00
										 |  |  | 	if (pmd != early_ioremap_pmd(fix_to_virt(FIX_BTMAP_END))) { | 
					
						
							| 
									
										
										
										
											2008-01-30 13:33:49 +01:00
										 |  |  | 		WARN_ON(1); | 
					
						
							| 
									
										
										
										
											2008-02-09 23:24:09 +01:00
										 |  |  | 		printk(KERN_WARNING "pmd %p != %p\n", | 
					
						
							|  |  |  | 		       pmd, early_ioremap_pmd(fix_to_virt(FIX_BTMAP_END))); | 
					
						
							| 
									
										
										
										
											2008-01-30 13:34:05 +01:00
										 |  |  | 		printk(KERN_WARNING "fix_to_virt(FIX_BTMAP_BEGIN): %08lx\n", | 
					
						
							| 
									
										
										
										
											2008-02-09 23:24:09 +01:00
										 |  |  | 			fix_to_virt(FIX_BTMAP_BEGIN)); | 
					
						
							| 
									
										
										
										
											2008-01-30 13:34:05 +01:00
										 |  |  | 		printk(KERN_WARNING "fix_to_virt(FIX_BTMAP_END):   %08lx\n", | 
					
						
							| 
									
										
										
										
											2008-02-09 23:24:09 +01:00
										 |  |  | 			fix_to_virt(FIX_BTMAP_END)); | 
					
						
							| 
									
										
										
										
											2008-01-30 13:34:05 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		printk(KERN_WARNING "FIX_BTMAP_END:       %d\n", FIX_BTMAP_END); | 
					
						
							|  |  |  | 		printk(KERN_WARNING "FIX_BTMAP_BEGIN:     %d\n", | 
					
						
							|  |  |  | 		       FIX_BTMAP_BEGIN); | 
					
						
							| 
									
										
										
										
											2008-01-30 13:33:49 +01:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2008-01-30 13:33:44 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-01-30 13:33:44 +01:00
										 |  |  | void __init early_ioremap_clear(void) | 
					
						
							| 
									
										
										
										
											2008-01-30 13:33:44 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2008-02-09 23:24:09 +01:00
										 |  |  | 	pmd_t *pmd; | 
					
						
							| 
									
										
										
										
											2008-01-30 13:33:44 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-01-30 13:33:45 +01:00
										 |  |  | 	if (early_ioremap_debug) | 
					
						
							| 
									
										
										
										
											2008-01-30 13:34:08 +01:00
										 |  |  | 		printk(KERN_INFO "early_ioremap_clear()\n"); | 
					
						
							| 
									
										
										
										
											2008-01-30 13:33:45 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-02-09 23:24:09 +01:00
										 |  |  | 	pmd = early_ioremap_pmd(fix_to_virt(FIX_BTMAP_BEGIN)); | 
					
						
							|  |  |  | 	pmd_clear(pmd); | 
					
						
							| 
									
										
										
										
											2008-02-09 23:24:09 +01:00
										 |  |  | 	paravirt_release_pt(__pa(bm_pte) >> PAGE_SHIFT); | 
					
						
							| 
									
										
										
										
											2008-01-30 13:33:44 +01:00
										 |  |  | 	__flush_tlb_all(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-01-30 13:33:44 +01:00
										 |  |  | void __init early_ioremap_reset(void) | 
					
						
							| 
									
										
										
										
											2008-01-30 13:33:44 +01:00
										 |  |  | { | 
					
						
							|  |  |  | 	enum fixed_addresses idx; | 
					
						
							| 
									
										
										
										
											2008-02-09 23:24:09 +01:00
										 |  |  | 	unsigned long addr, phys; | 
					
						
							|  |  |  | 	pte_t *pte; | 
					
						
							| 
									
										
										
										
											2008-01-30 13:33:44 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	after_paging_init = 1; | 
					
						
							| 
									
										
										
										
											2008-01-30 13:33:44 +01:00
										 |  |  | 	for (idx = FIX_BTMAP_BEGIN; idx >= FIX_BTMAP_END; idx--) { | 
					
						
							| 
									
										
										
										
											2008-01-30 13:33:44 +01:00
										 |  |  | 		addr = fix_to_virt(idx); | 
					
						
							| 
									
										
										
										
											2008-01-30 13:33:44 +01:00
										 |  |  | 		pte = early_ioremap_pte(addr); | 
					
						
							| 
									
										
										
										
											2008-02-09 23:24:09 +01:00
										 |  |  | 		if (pte_present(*pte)) { | 
					
						
							|  |  |  | 			phys = pte_val(*pte) & PAGE_MASK; | 
					
						
							| 
									
										
										
										
											2008-01-30 13:33:44 +01:00
										 |  |  | 			set_fixmap(idx, phys); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-01-30 13:33:44 +01:00
										 |  |  | static void __init __early_set_fixmap(enum fixed_addresses idx, | 
					
						
							| 
									
										
										
										
											2008-01-30 13:33:44 +01:00
										 |  |  | 				   unsigned long phys, pgprot_t flags) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2008-02-09 23:24:09 +01:00
										 |  |  | 	unsigned long addr = __fix_to_virt(idx); | 
					
						
							|  |  |  | 	pte_t *pte; | 
					
						
							| 
									
										
										
										
											2008-01-30 13:33:44 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (idx >= __end_of_fixed_addresses) { | 
					
						
							|  |  |  | 		BUG(); | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2008-01-30 13:33:44 +01:00
										 |  |  | 	pte = early_ioremap_pte(addr); | 
					
						
							| 
									
										
										
										
											2008-01-30 13:33:44 +01:00
										 |  |  | 	if (pgprot_val(flags)) | 
					
						
							| 
									
										
										
										
											2008-02-09 23:24:09 +01:00
										 |  |  | 		set_pte(pte, pfn_pte(phys >> PAGE_SHIFT, flags)); | 
					
						
							| 
									
										
										
										
											2008-01-30 13:33:44 +01:00
										 |  |  | 	else | 
					
						
							| 
									
										
										
										
											2008-02-09 23:24:09 +01:00
										 |  |  | 		pte_clear(NULL, addr, pte); | 
					
						
							| 
									
										
										
										
											2008-01-30 13:33:44 +01:00
										 |  |  | 	__flush_tlb_one(addr); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-01-30 13:33:44 +01:00
										 |  |  | static inline void __init early_set_fixmap(enum fixed_addresses idx, | 
					
						
							| 
									
										
										
										
											2008-01-30 13:33:44 +01:00
										 |  |  | 					unsigned long phys) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	if (after_paging_init) | 
					
						
							|  |  |  | 		set_fixmap(idx, phys); | 
					
						
							|  |  |  | 	else | 
					
						
							| 
									
										
										
										
											2008-01-30 13:33:44 +01:00
										 |  |  | 		__early_set_fixmap(idx, phys, PAGE_KERNEL); | 
					
						
							| 
									
										
										
										
											2008-01-30 13:33:44 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-01-30 13:33:44 +01:00
										 |  |  | static inline void __init early_clear_fixmap(enum fixed_addresses idx) | 
					
						
							| 
									
										
										
										
											2008-01-30 13:33:44 +01:00
										 |  |  | { | 
					
						
							|  |  |  | 	if (after_paging_init) | 
					
						
							|  |  |  | 		clear_fixmap(idx); | 
					
						
							|  |  |  | 	else | 
					
						
							| 
									
										
										
										
											2008-01-30 13:33:44 +01:00
										 |  |  | 		__early_set_fixmap(idx, 0, __pgprot(0)); | 
					
						
							| 
									
										
										
										
											2008-01-30 13:33:44 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-01-30 13:33:45 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | int __initdata early_ioremap_nested; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-01-30 13:33:47 +01:00
										 |  |  | static int __init check_early_ioremap_leak(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	if (!early_ioremap_nested) | 
					
						
							|  |  |  | 		return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	printk(KERN_WARNING | 
					
						
							| 
									
										
										
										
											2008-01-30 13:34:05 +01:00
										 |  |  | 	       "Debug warning: early ioremap leak of %d areas detected.\n", | 
					
						
							|  |  |  | 	       early_ioremap_nested); | 
					
						
							| 
									
										
										
										
											2008-01-30 13:33:47 +01:00
										 |  |  | 	printk(KERN_WARNING | 
					
						
							| 
									
										
										
										
											2008-01-30 13:34:05 +01:00
										 |  |  | 	       "please boot with early_ioremap_debug and report the dmesg.\n"); | 
					
						
							| 
									
										
										
										
											2008-01-30 13:33:47 +01:00
										 |  |  | 	WARN_ON(1); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return 1; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | late_initcall(check_early_ioremap_leak); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-01-30 13:33:44 +01:00
										 |  |  | void __init *early_ioremap(unsigned long phys_addr, unsigned long size) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							|  |  |  | 	unsigned long offset, last_addr; | 
					
						
							| 
									
										
										
										
											2008-01-30 13:33:45 +01:00
										 |  |  | 	unsigned int nrpages, nesting; | 
					
						
							|  |  |  | 	enum fixed_addresses idx0, idx; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	WARN_ON(system_state != SYSTEM_BOOTING); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	nesting = early_ioremap_nested; | 
					
						
							| 
									
										
										
										
											2008-01-30 13:33:45 +01:00
										 |  |  | 	if (early_ioremap_debug) { | 
					
						
							| 
									
										
										
										
											2008-01-30 13:34:08 +01:00
										 |  |  | 		printk(KERN_INFO "early_ioremap(%08lx, %08lx) [%d] => ", | 
					
						
							| 
									
										
										
										
											2008-01-30 13:34:05 +01:00
										 |  |  | 		       phys_addr, size, nesting); | 
					
						
							| 
									
										
										
										
											2008-01-30 13:33:45 +01:00
										 |  |  | 		dump_stack(); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* Don't allow wraparound or zero size */ | 
					
						
							|  |  |  | 	last_addr = phys_addr + size - 1; | 
					
						
							| 
									
										
										
										
											2008-01-30 13:33:45 +01:00
										 |  |  | 	if (!size || last_addr < phys_addr) { | 
					
						
							|  |  |  | 		WARN_ON(1); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		return NULL; | 
					
						
							| 
									
										
										
										
											2008-01-30 13:33:45 +01:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-01-30 13:33:45 +01:00
										 |  |  | 	if (nesting >= FIX_BTMAPS_NESTING) { | 
					
						
							|  |  |  | 		WARN_ON(1); | 
					
						
							| 
									
										
										
										
											2008-01-30 13:33:45 +01:00
										 |  |  | 		return NULL; | 
					
						
							| 
									
										
										
										
											2008-01-30 13:33:45 +01:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2008-01-30 13:33:45 +01:00
										 |  |  | 	early_ioremap_nested++; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	/*
 | 
					
						
							|  |  |  | 	 * Mappings have to be page-aligned | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	offset = phys_addr & ~PAGE_MASK; | 
					
						
							|  |  |  | 	phys_addr &= PAGE_MASK; | 
					
						
							|  |  |  | 	size = PAGE_ALIGN(last_addr) - phys_addr; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/*
 | 
					
						
							|  |  |  | 	 * Mappings have to fit in the FIX_BTMAP area. | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	nrpages = size >> PAGE_SHIFT; | 
					
						
							| 
									
										
										
										
											2008-01-30 13:33:45 +01:00
										 |  |  | 	if (nrpages > NR_FIX_BTMAPS) { | 
					
						
							|  |  |  | 		WARN_ON(1); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		return NULL; | 
					
						
							| 
									
										
										
										
											2008-01-30 13:33:45 +01:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/*
 | 
					
						
							|  |  |  | 	 * Ok, go for it.. | 
					
						
							|  |  |  | 	 */ | 
					
						
							| 
									
										
										
										
											2008-01-30 13:33:45 +01:00
										 |  |  | 	idx0 = FIX_BTMAP_BEGIN - NR_FIX_BTMAPS*nesting; | 
					
						
							|  |  |  | 	idx = idx0; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	while (nrpages > 0) { | 
					
						
							| 
									
										
										
										
											2008-01-30 13:33:44 +01:00
										 |  |  | 		early_set_fixmap(idx, phys_addr); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		phys_addr += PAGE_SIZE; | 
					
						
							|  |  |  | 		--idx; | 
					
						
							|  |  |  | 		--nrpages; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2008-01-30 13:33:45 +01:00
										 |  |  | 	if (early_ioremap_debug) | 
					
						
							|  |  |  | 		printk(KERN_CONT "%08lx + %08lx\n", offset, fix_to_virt(idx0)); | 
					
						
							| 
									
										
										
										
											2008-01-30 13:33:45 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-01-30 13:34:05 +01:00
										 |  |  | 	return (void *) (offset + fix_to_virt(idx0)); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-01-30 13:33:44 +01:00
										 |  |  | void __init early_iounmap(void *addr, unsigned long size) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							|  |  |  | 	unsigned long virt_addr; | 
					
						
							|  |  |  | 	unsigned long offset; | 
					
						
							|  |  |  | 	unsigned int nrpages; | 
					
						
							|  |  |  | 	enum fixed_addresses idx; | 
					
						
							| 
									
										
										
										
											2008-01-30 13:33:45 +01:00
										 |  |  | 	unsigned int nesting; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	nesting = --early_ioremap_nested; | 
					
						
							| 
									
										
										
										
											2008-01-30 13:33:45 +01:00
										 |  |  | 	WARN_ON(nesting < 0); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-01-30 13:33:45 +01:00
										 |  |  | 	if (early_ioremap_debug) { | 
					
						
							| 
									
										
										
										
											2008-01-30 13:34:08 +01:00
										 |  |  | 		printk(KERN_INFO "early_iounmap(%p, %08lx) [%d]\n", addr, | 
					
						
							| 
									
										
										
										
											2008-01-30 13:34:05 +01:00
										 |  |  | 		       size, nesting); | 
					
						
							| 
									
										
										
										
											2008-01-30 13:33:45 +01:00
										 |  |  | 		dump_stack(); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	virt_addr = (unsigned long)addr; | 
					
						
							| 
									
										
										
										
											2008-01-30 13:33:45 +01:00
										 |  |  | 	if (virt_addr < fix_to_virt(FIX_BTMAP_BEGIN)) { | 
					
						
							|  |  |  | 		WARN_ON(1); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		return; | 
					
						
							| 
									
										
										
										
											2008-01-30 13:33:45 +01:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	offset = virt_addr & ~PAGE_MASK; | 
					
						
							|  |  |  | 	nrpages = PAGE_ALIGN(offset + size - 1) >> PAGE_SHIFT; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-01-30 13:33:45 +01:00
										 |  |  | 	idx = FIX_BTMAP_BEGIN - NR_FIX_BTMAPS*nesting; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	while (nrpages > 0) { | 
					
						
							| 
									
										
										
										
											2008-01-30 13:33:44 +01:00
										 |  |  | 		early_clear_fixmap(idx); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		--idx; | 
					
						
							|  |  |  | 		--nrpages; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2008-01-30 13:33:45 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | void __this_fixmap_does_not_exist(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	WARN_ON(1); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2008-01-30 13:34:05 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | #endif /* CONFIG_X86_32 */
 |