2005-04-16 22:20:36 +00:00
|
|
|
/*
|
|
|
|
* arch/sh/mm/ioremap.c
|
|
|
|
*
|
2010-01-18 12:08:32 +00:00
|
|
|
* (C) Copyright 1995 1996 Linus Torvalds
|
|
|
|
* (C) Copyright 2005 - 2010 Paul Mundt
|
|
|
|
*
|
2005-04-16 22:20:36 +00: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
|
|
|
|
*
|
2006-01-17 06:14:15 +00:00
|
|
|
* This file is subject to the terms and conditions of the GNU General
|
|
|
|
* Public License. See the file "COPYING" in the main directory of this
|
|
|
|
* archive for more details.
|
2005-04-16 22:20:36 +00:00
|
|
|
*/
|
|
|
|
#include <linux/vmalloc.h>
|
2006-01-17 06:14:15 +00:00
|
|
|
#include <linux/module.h>
|
2005-04-16 22:20:36 +00:00
|
|
|
#include <linux/mm.h>
|
2006-09-27 07:45:22 +00:00
|
|
|
#include <linux/pci.h>
|
2006-12-08 10:38:07 +00:00
|
|
|
#include <linux/io.h>
|
2005-04-16 22:20:36 +00:00
|
|
|
#include <asm/page.h>
|
|
|
|
#include <asm/pgalloc.h>
|
2006-01-17 06:14:15 +00:00
|
|
|
#include <asm/addrspace.h>
|
2005-04-16 22:20:36 +00:00
|
|
|
#include <asm/cacheflush.h>
|
|
|
|
#include <asm/tlbflush.h>
|
2007-06-04 01:58:23 +00:00
|
|
|
#include <asm/mmu.h>
|
2005-04-16 22:20:36 +00: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.
|
|
|
|
*/
|
2010-01-18 12:45:00 +00:00
|
|
|
void __iomem * __init_refok
|
|
|
|
__ioremap_caller(unsigned long phys_addr, unsigned long size,
|
2010-01-19 04:34:38 +00:00
|
|
|
pgprot_t pgprot, void *caller)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2009-12-14 05:23:41 +00:00
|
|
|
struct vm_struct *area;
|
2006-01-17 06:14:15 +00:00
|
|
|
unsigned long offset, last_addr, addr, orig_addr;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
/* Don't allow wraparound or zero size */
|
|
|
|
last_addr = phys_addr + size - 1;
|
|
|
|
if (!size || last_addr < phys_addr)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Mappings have to be page-aligned
|
|
|
|
*/
|
|
|
|
offset = phys_addr & ~PAGE_MASK;
|
|
|
|
phys_addr &= PAGE_MASK;
|
|
|
|
size = PAGE_ALIGN(last_addr+1) - phys_addr;
|
|
|
|
|
2010-01-18 12:08:32 +00:00
|
|
|
/*
|
|
|
|
* If we can't yet use the regular approach, go the fixmap route.
|
|
|
|
*/
|
|
|
|
if (!mem_init_done)
|
2010-01-19 04:49:19 +00:00
|
|
|
return ioremap_fixed(phys_addr, offset, size, pgprot);
|
2010-01-18 12:08:32 +00:00
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
/*
|
|
|
|
* Ok, go for it..
|
|
|
|
*/
|
2009-12-14 05:23:41 +00:00
|
|
|
area = get_vm_area_caller(size, VM_IOREMAP, caller);
|
2005-04-16 22:20:36 +00:00
|
|
|
if (!area)
|
|
|
|
return NULL;
|
|
|
|
area->phys_addr = phys_addr;
|
2006-01-17 06:14:15 +00:00
|
|
|
orig_addr = addr = (unsigned long)area->addr;
|
|
|
|
|
2009-03-10 06:49:54 +00:00
|
|
|
#ifdef CONFIG_PMB
|
2006-01-17 06:14:15 +00:00
|
|
|
/*
|
|
|
|
* First try to remap through the PMB once a valid VMA has been
|
|
|
|
* established. Smaller allocations (or the rest of the size
|
|
|
|
* remaining after a PMB mapping due to the size not being
|
|
|
|
* perfectly aligned on a PMB size boundary) are then mapped
|
|
|
|
* through the UTLB using conventional page tables.
|
|
|
|
*
|
|
|
|
* PMB entries are all pre-faulted.
|
|
|
|
*/
|
2009-10-06 21:22:27 +00:00
|
|
|
if (unlikely(phys_addr >= P1SEG)) {
|
2010-01-19 04:34:38 +00:00
|
|
|
unsigned long mapped;
|
2006-01-17 06:14:15 +00:00
|
|
|
|
2010-02-17 04:23:00 +00:00
|
|
|
mapped = pmb_remap(addr, phys_addr, size, pgprot);
|
2006-01-17 06:14:15 +00:00
|
|
|
if (likely(mapped)) {
|
|
|
|
addr += mapped;
|
|
|
|
phys_addr += mapped;
|
|
|
|
size -= mapped;
|
|
|
|
}
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
2006-01-17 06:14:15 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
if (likely(size))
|
2006-12-08 10:38:07 +00:00
|
|
|
if (ioremap_page_range(addr, addr + size, phys_addr, pgprot)) {
|
2006-01-17 06:14:15 +00:00
|
|
|
vunmap((void *)orig_addr);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return (void __iomem *)(offset + (char *)orig_addr);
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
2009-12-14 05:23:41 +00:00
|
|
|
EXPORT_SYMBOL(__ioremap_caller);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2010-01-16 16:45:26 +00:00
|
|
|
/*
|
|
|
|
* Simple checks for non-translatable mappings.
|
|
|
|
*/
|
|
|
|
static inline int iomapping_nontranslatable(unsigned long offset)
|
|
|
|
{
|
|
|
|
#ifdef CONFIG_29BIT
|
|
|
|
/*
|
|
|
|
* In 29-bit mode this includes the fixed P1/P2 areas, as well as
|
|
|
|
* parts of P3.
|
|
|
|
*/
|
|
|
|
if (PXSEG(offset) < P3SEG || offset >= P3_ADDR_MAX)
|
|
|
|
return 1;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2006-01-17 06:14:15 +00:00
|
|
|
void __iounmap(void __iomem *addr)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2006-01-17 06:14:15 +00:00
|
|
|
unsigned long vaddr = (unsigned long __force)addr;
|
|
|
|
struct vm_struct *p;
|
|
|
|
|
2010-01-16 16:45:26 +00:00
|
|
|
/*
|
|
|
|
* Nothing to do if there is no translatable mapping.
|
|
|
|
*/
|
|
|
|
if (iomapping_nontranslatable(vaddr))
|
2006-01-17 06:14:15 +00:00
|
|
|
return;
|
|
|
|
|
2010-01-18 12:33:08 +00:00
|
|
|
/*
|
|
|
|
* There's no VMA if it's from an early fixed mapping.
|
|
|
|
*/
|
|
|
|
if (iounmap_fixed(addr) == 0)
|
|
|
|
return;
|
|
|
|
|
2009-03-10 06:49:54 +00:00
|
|
|
#ifdef CONFIG_PMB
|
2006-01-17 06:14:15 +00:00
|
|
|
/*
|
|
|
|
* Purge any PMB entries that may have been established for this
|
|
|
|
* mapping, then proceed with conventional VMA teardown.
|
|
|
|
*
|
|
|
|
* XXX: Note that due to the way that remove_vm_area() does
|
|
|
|
* matching of the resultant VMA, we aren't able to fast-forward
|
|
|
|
* the address past the PMB space until the end of the VMA where
|
|
|
|
* the page tables reside. As such, unmap_vm_area() will be
|
|
|
|
* forced to linearly scan over the area until it finds the page
|
|
|
|
* tables where PTEs that need to be unmapped actually reside,
|
|
|
|
* which is far from optimal. Perhaps we need to use a separate
|
|
|
|
* VMA for the PMB mappings?
|
|
|
|
* -- PFM.
|
|
|
|
*/
|
|
|
|
pmb_unmap(vaddr);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
p = remove_vm_area((void *)(vaddr & PAGE_MASK));
|
|
|
|
if (!p) {
|
2008-03-04 23:23:47 +00:00
|
|
|
printk(KERN_ERR "%s: bad address %p\n", __func__, addr);
|
2006-01-17 06:14:15 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
kfree(p);
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
2006-01-17 06:14:15 +00:00
|
|
|
EXPORT_SYMBOL(__iounmap);
|