1dfe2ddfe97fc7546c74bf2ba16d699d98406e94
[linux-flexiantxendom0-3.2.10.git] / arch / mips / mm / ioremap.c
1 /*
2  * This file is subject to the terms and conditions of the GNU General Public
3  * License.  See the file "COPYING" in the main directory of this archive
4  * for more details.
5  *
6  * (C) Copyright 1995 1996 Linus Torvalds
7  * (C) Copyright 2001, 2002 Ralf Baechle
8  */
9 #include <linux/module.h>
10 #include <asm/addrspace.h>
11 #include <asm/byteorder.h>
12
13 #include <linux/vmalloc.h>
14 #include <asm/cacheflush.h>
15 #include <asm/io.h>
16 #include <asm/pgalloc.h>
17 #include <asm/tlbflush.h>
18
19 static inline void remap_area_pte(pte_t * pte, unsigned long address,
20         phys_t size, phys_t phys_addr, unsigned long flags)
21 {
22         phys_t end;
23         unsigned long pfn;
24         pgprot_t pgprot = __pgprot(_PAGE_GLOBAL | _PAGE_PRESENT | __READABLE
25                                    | __WRITEABLE | flags);
26
27         address &= ~PMD_MASK;
28         end = address + size;
29         if (end > PMD_SIZE)
30                 end = PMD_SIZE;
31         if (address >= end)
32                 BUG();
33         pfn = phys_addr >> PAGE_SHIFT;
34         do {
35                 if (!pte_none(*pte)) {
36                         printk("remap_area_pte: page already exists\n");
37                         BUG();
38                 }
39                 set_pte(pte, pfn_pte(pfn, pgprot));
40                 address += PAGE_SIZE;
41                 pfn++;
42                 pte++;
43         } while (address && (address < end));
44 }
45
46 static inline int remap_area_pmd(pmd_t * pmd, unsigned long address,
47         phys_t size, phys_t phys_addr, unsigned long flags)
48 {
49         phys_t end;
50
51         address &= ~PGDIR_MASK;
52         end = address + size;
53         if (end > PGDIR_SIZE)
54                 end = PGDIR_SIZE;
55         phys_addr -= address;
56         if (address >= end)
57                 BUG();
58         do {
59                 pte_t * pte = pte_alloc_kernel(&init_mm, pmd, address);
60                 if (!pte)
61                         return -ENOMEM;
62                 remap_area_pte(pte, address, end - address, address + phys_addr, flags);
63                 address = (address + PMD_SIZE) & PMD_MASK;
64                 pmd++;
65         } while (address && (address < end));
66         return 0;
67 }
68
69 static int remap_area_pages(unsigned long address, phys_t phys_addr,
70         phys_t size, unsigned long flags)
71 {
72         int error;
73         pgd_t * dir;
74         unsigned long end = address + size;
75
76         phys_addr -= address;
77         dir = pgd_offset(&init_mm, address);
78         flush_cache_all();
79         if (address >= end)
80                 BUG();
81         spin_lock(&init_mm.page_table_lock);
82         do {
83                 pmd_t *pmd;
84                 pmd = pmd_alloc(&init_mm, dir, address);
85                 error = -ENOMEM;
86                 if (!pmd)
87                         break;
88                 if (remap_area_pmd(pmd, address, end - address,
89                                          phys_addr + address, flags))
90                         break;
91                 error = 0;
92                 address = (address + PGDIR_SIZE) & PGDIR_MASK;
93                 dir++;
94         } while (address && (address < end));
95         spin_unlock(&init_mm.page_table_lock);
96         flush_tlb_all();
97         return error;
98 }
99
100 /*
101  * Generic mapping function (not visible outside):
102  */
103
104 /*
105  * Remap an arbitrary physical address space into the kernel virtual
106  * address space. Needed when the kernel wants to access high addresses
107  * directly.
108  *
109  * NOTE! We need to allow non-page-aligned mappings too: we will obviously
110  * have to convert them into an offset in a page-aligned mapping, but the
111  * caller shouldn't need to know that small detail.
112  */
113
114 #define IS_LOW512(addr) (!((phys_t)(addr) & ~0x1fffffffUL))
115
116 void * __ioremap(phys_t phys_addr, phys_t size, unsigned long flags)
117 {
118         struct vm_struct * area;
119         unsigned long offset;
120         phys_t last_addr;
121         void * addr;
122
123         /* Don't allow wraparound or zero size */
124         last_addr = phys_addr + size - 1;
125         if (!size || last_addr < phys_addr)
126                 return NULL;
127
128         /*
129          * Map uncached objects in the low 512mb of address space using KSEG1,
130          * otherwise map using page tables.
131          */
132         if (IS_LOW512(phys_addr) && IS_LOW512(last_addr) &&
133             flags == _CACHE_UNCACHED)
134                 return (void *) KSEG1ADDR(phys_addr);
135
136         /*
137          * Don't allow anybody to remap normal RAM that we're using..
138          */
139         if (phys_addr < virt_to_phys(high_memory)) {
140                 char *t_addr, *t_end;
141                 struct page *page;
142
143                 t_addr = __va(phys_addr);
144                 t_end = t_addr + (size - 1);
145
146                 for(page = virt_to_page(t_addr); page <= virt_to_page(t_end); page++)
147                         if(!PageReserved(page))
148                                 return NULL;
149         }
150
151         /*
152          * Mappings have to be page-aligned
153          */
154         offset = phys_addr & ~PAGE_MASK;
155         phys_addr &= PAGE_MASK;
156         size = PAGE_ALIGN(last_addr) - phys_addr;
157
158         /*
159          * Ok, go for it..
160          */
161         area = get_vm_area(size, VM_IOREMAP);
162         if (!area)
163                 return NULL;
164         addr = area->addr;
165         if (remap_area_pages(VMALLOC_VMADDR(addr), phys_addr, size, flags)) {
166                 vunmap(addr);
167                 return NULL;
168         }
169
170         return (void *) (offset + (char *)addr);
171 }
172
173 #define IS_KSEG1(addr) (((unsigned long)(addr) & ~0x1fffffffUL) == KSEG1)
174
175 void iounmap(void *addr)
176 {
177         struct vm_struct *p;
178
179         if (IS_KSEG1(addr))
180                 return;
181
182         vfree((void *) (PAGE_MASK & (unsigned long) addr));
183         p = remove_vm_area((void *) (PAGE_MASK & (unsigned long) addr));
184         if (!p) {
185                 printk(KERN_ERR "iounmap: bad address %p\n", addr);
186                 return;
187         }
188
189         kfree(p);
190 }
191
192 EXPORT_SYMBOL(__ioremap);
193 EXPORT_SYMBOL(iounmap);