PAGE_ALIGN(): correctly handle 64-bit values on 32-bit architectures
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / arch / avr32 / mm / ioremap.c
blobf03b79f0e0ab0a75f631e7886ad41a7a855c518d
1 /*
2 * Copyright (C) 2004-2006 Atmel Corporation
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation.
7 */
8 #include <linux/vmalloc.h>
9 #include <linux/mm.h>
10 #include <linux/module.h>
11 #include <linux/io.h>
13 #include <asm/pgtable.h>
14 #include <asm/addrspace.h>
17 * Re-map an arbitrary physical address space into the kernel virtual
18 * address space. Needed when the kernel wants to access physical
19 * memory directly.
21 void __iomem *__ioremap(unsigned long phys_addr, size_t size,
22 unsigned long flags)
24 unsigned long addr;
25 struct vm_struct *area;
26 unsigned long offset, last_addr;
27 pgprot_t prot;
30 * Check if we can simply use the P4 segment. This area is
31 * uncacheable, so if caching/buffering is requested, we can't
32 * use it.
34 if ((phys_addr >= P4SEG) && (flags == 0))
35 return (void __iomem *)phys_addr;
37 /* Don't allow wraparound or zero size */
38 last_addr = phys_addr + size - 1;
39 if (!size || last_addr < phys_addr)
40 return NULL;
43 * XXX: When mapping regular RAM, we'd better make damn sure
44 * it's never used for anything else. But this is really the
45 * caller's responsibility...
47 if (PHYSADDR(P2SEGADDR(phys_addr)) == phys_addr)
48 return (void __iomem *)P2SEGADDR(phys_addr);
50 /* Mappings have to be page-aligned */
51 offset = phys_addr & ~PAGE_MASK;
52 phys_addr &= PAGE_MASK;
53 size = PAGE_ALIGN(last_addr + 1) - phys_addr;
55 prot = __pgprot(_PAGE_PRESENT | _PAGE_GLOBAL | _PAGE_RW | _PAGE_DIRTY
56 | _PAGE_ACCESSED | _PAGE_TYPE_SMALL | flags);
59 * Ok, go for it..
61 area = get_vm_area(size, VM_IOREMAP);
62 if (!area)
63 return NULL;
64 area->phys_addr = phys_addr;
65 addr = (unsigned long )area->addr;
66 if (ioremap_page_range(addr, addr + size, phys_addr, prot)) {
67 vunmap((void *)addr);
68 return NULL;
71 return (void __iomem *)(offset + (char *)addr);
73 EXPORT_SYMBOL(__ioremap);
75 void __iounmap(void __iomem *addr)
77 struct vm_struct *p;
79 if ((unsigned long)addr >= P4SEG)
80 return;
81 if (PXSEG(addr) == P2SEG)
82 return;
84 p = remove_vm_area((void *)(PAGE_MASK & (unsigned long __force)addr));
85 if (unlikely(!p)) {
86 printk (KERN_ERR "iounmap: bad address %p\n", addr);
87 return;
90 kfree (p);
92 EXPORT_SYMBOL(__iounmap);