sh: Flag __ioremap_caller() __init_refok.
[safe/jmp/linux-2.6] / arch / sh / mm / ioremap.c
1 /*
2  * arch/sh/mm/ioremap.c
3  *
4  * (C) Copyright 1995 1996 Linus Torvalds
5  * (C) Copyright 2005 - 2010  Paul Mundt
6  *
7  * Re-map IO memory to kernel address space so that we can access it.
8  * This is needed for high PCI addresses that aren't mapped in the
9  * 640k-1MB IO memory area on PC's
10  *
11  * This file is subject to the terms and conditions of the GNU General
12  * Public License. See the file "COPYING" in the main directory of this
13  * archive for more details.
14  */
15 #include <linux/vmalloc.h>
16 #include <linux/module.h>
17 #include <linux/mm.h>
18 #include <linux/pci.h>
19 #include <linux/io.h>
20 #include <asm/page.h>
21 #include <asm/pgalloc.h>
22 #include <asm/addrspace.h>
23 #include <asm/cacheflush.h>
24 #include <asm/tlbflush.h>
25 #include <asm/mmu.h>
26
27 /*
28  * Remap an arbitrary physical address space into the kernel virtual
29  * address space. Needed when the kernel wants to access high addresses
30  * directly.
31  *
32  * NOTE! We need to allow non-page-aligned mappings too: we will obviously
33  * have to convert them into an offset in a page-aligned mapping, but the
34  * caller shouldn't need to know that small detail.
35  */
36 void __iomem * __init_refok
37 __ioremap_caller(unsigned long phys_addr, unsigned long size,
38                  unsigned long flags, void *caller)
39 {
40         struct vm_struct *area;
41         unsigned long offset, last_addr, addr, orig_addr;
42         pgprot_t pgprot;
43
44         /* Don't allow wraparound or zero size */
45         last_addr = phys_addr + size - 1;
46         if (!size || last_addr < phys_addr)
47                 return NULL;
48
49         /*
50          * If we're in the fixed PCI memory range, mapping through page
51          * tables is not only pointless, but also fundamentally broken.
52          * Just return the physical address instead.
53          *
54          * For boards that map a small PCI memory aperture somewhere in
55          * P1/P2 space, ioremap() will already do the right thing,
56          * and we'll never get this far.
57          */
58         if (is_pci_memory_fixed_range(phys_addr, size))
59                 return (void __iomem *)phys_addr;
60
61         /*
62          * Mappings have to be page-aligned
63          */
64         offset = phys_addr & ~PAGE_MASK;
65         phys_addr &= PAGE_MASK;
66         size = PAGE_ALIGN(last_addr+1) - phys_addr;
67
68         /*
69          * If we can't yet use the regular approach, go the fixmap route.
70          */
71         if (!mem_init_done)
72                 return ioremap_fixed(phys_addr, size, __pgprot(flags));
73
74         /*
75          * Ok, go for it..
76          */
77         area = get_vm_area_caller(size, VM_IOREMAP, caller);
78         if (!area)
79                 return NULL;
80         area->phys_addr = phys_addr;
81         orig_addr = addr = (unsigned long)area->addr;
82
83 #ifdef CONFIG_PMB
84         /*
85          * First try to remap through the PMB once a valid VMA has been
86          * established. Smaller allocations (or the rest of the size
87          * remaining after a PMB mapping due to the size not being
88          * perfectly aligned on a PMB size boundary) are then mapped
89          * through the UTLB using conventional page tables.
90          *
91          * PMB entries are all pre-faulted.
92          */
93         if (unlikely(phys_addr >= P1SEG)) {
94                 unsigned long mapped = pmb_remap(addr, phys_addr, size, flags);
95
96                 if (likely(mapped)) {
97                         addr            += mapped;
98                         phys_addr       += mapped;
99                         size            -= mapped;
100                 }
101         }
102 #endif
103
104         pgprot = __pgprot(pgprot_val(PAGE_KERNEL_NOCACHE) | flags);
105         if (likely(size))
106                 if (ioremap_page_range(addr, addr + size, phys_addr, pgprot)) {
107                         vunmap((void *)orig_addr);
108                         return NULL;
109                 }
110
111         return (void __iomem *)(offset + (char *)orig_addr);
112 }
113 EXPORT_SYMBOL(__ioremap_caller);
114
115 /*
116  * Simple checks for non-translatable mappings.
117  */
118 static inline int iomapping_nontranslatable(unsigned long offset)
119 {
120 #ifdef CONFIG_29BIT
121         /*
122          * In 29-bit mode this includes the fixed P1/P2 areas, as well as
123          * parts of P3.
124          */
125         if (PXSEG(offset) < P3SEG || offset >= P3_ADDR_MAX)
126                 return 1;
127 #endif
128
129         if (is_pci_memory_fixed_range(offset, 0))
130                 return 1;
131
132         return 0;
133 }
134
135 void __iounmap(void __iomem *addr)
136 {
137         unsigned long vaddr = (unsigned long __force)addr;
138         struct vm_struct *p;
139
140         /*
141          * Nothing to do if there is no translatable mapping.
142          */
143         if (iomapping_nontranslatable(vaddr))
144                 return;
145
146         /*
147          * There's no VMA if it's from an early fixed mapping.
148          */
149         if (iounmap_fixed(addr) == 0)
150                 return;
151
152 #ifdef CONFIG_PMB
153         /*
154          * Purge any PMB entries that may have been established for this
155          * mapping, then proceed with conventional VMA teardown.
156          *
157          * XXX: Note that due to the way that remove_vm_area() does
158          * matching of the resultant VMA, we aren't able to fast-forward
159          * the address past the PMB space until the end of the VMA where
160          * the page tables reside. As such, unmap_vm_area() will be
161          * forced to linearly scan over the area until it finds the page
162          * tables where PTEs that need to be unmapped actually reside,
163          * which is far from optimal. Perhaps we need to use a separate
164          * VMA for the PMB mappings?
165          *                                      -- PFM.
166          */
167         pmb_unmap(vaddr);
168 #endif
169
170         p = remove_vm_area((void *)(vaddr & PAGE_MASK));
171         if (!p) {
172                 printk(KERN_ERR "%s: bad address %p\n", __func__, addr);
173                 return;
174         }
175
176         kfree(p);
177 }
178 EXPORT_SYMBOL(__iounmap);