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
6 * (C) Copyright 1995 1996 Linus Torvalds
7 * (C) Copyright 2001, 2002 Ralf Baechle
9 #include <linux/export.h>
10 #include <asm/addrspace.h>
11 #include <asm/byteorder.h>
12 #include <linux/sched.h>
13 #include <linux/slab.h>
14 #include <linux/vmalloc.h>
15 #include <linux/mm_types.h>
16 #include <asm/cacheflush.h>
18 #include <asm/tlbflush.h>
20 static inline void remap_area_pte(pte_t
* pte
, unsigned long address
,
21 phys_addr_t size
, phys_addr_t phys_addr
, unsigned long flags
)
25 pgprot_t pgprot
= __pgprot(_PAGE_GLOBAL
| _PAGE_PRESENT
| __READABLE
26 | __WRITEABLE
| flags
);
32 BUG_ON(address
>= end
);
33 pfn
= phys_addr
>> PAGE_SHIFT
;
35 if (!pte_none(*pte
)) {
36 printk("remap_area_pte: page already exists\n");
39 set_pte(pte
, pfn_pte(pfn
, pgprot
));
43 } while (address
&& (address
< end
));
46 static inline int remap_area_pmd(pmd_t
* pmd
, unsigned long address
,
47 phys_addr_t size
, phys_addr_t phys_addr
, unsigned long flags
)
51 address
&= ~PGDIR_MASK
;
56 BUG_ON(address
>= end
);
58 pte_t
* pte
= pte_alloc_kernel(pmd
, address
);
61 remap_area_pte(pte
, address
, end
- address
, address
+ phys_addr
, flags
);
62 address
= (address
+ PMD_SIZE
) & PMD_MASK
;
64 } while (address
&& (address
< end
));
68 static int remap_area_pages(unsigned long address
, phys_addr_t phys_addr
,
69 phys_addr_t size
, unsigned long flags
)
73 unsigned long end
= address
+ size
;
76 dir
= pgd_offset(&init_mm
, address
);
78 BUG_ON(address
>= end
);
84 pud
= pud_alloc(&init_mm
, dir
, address
);
87 pmd
= pmd_alloc(&init_mm
, pud
, address
);
90 if (remap_area_pmd(pmd
, address
, end
- address
,
91 phys_addr
+ address
, flags
))
94 address
= (address
+ PGDIR_SIZE
) & PGDIR_MASK
;
96 } while (address
&& (address
< end
));
102 * Generic mapping function (not visible outside):
106 * Remap an arbitrary physical address space into the kernel virtual
107 * address space. Needed when the kernel wants to access high addresses
110 * NOTE! We need to allow non-page-aligned mappings too: we will obviously
111 * have to convert them into an offset in a page-aligned mapping, but the
112 * caller shouldn't need to know that small detail.
115 #define IS_LOW512(addr) (!((phys_addr_t)(addr) & (phys_addr_t) ~0x1fffffffULL))
117 void __iomem
* __ioremap(phys_addr_t phys_addr
, phys_addr_t size
, unsigned long flags
)
119 struct vm_struct
* area
;
120 unsigned long offset
;
121 phys_addr_t last_addr
;
124 phys_addr
= fixup_bigphys_addr(phys_addr
, size
);
126 /* Don't allow wraparound or zero size */
127 last_addr
= phys_addr
+ size
- 1;
128 if (!size
|| last_addr
< phys_addr
)
132 * Map uncached objects in the low 512mb of address space using KSEG1,
133 * otherwise map using page tables.
135 if (IS_LOW512(phys_addr
) && IS_LOW512(last_addr
) &&
136 flags
== _CACHE_UNCACHED
)
137 return (void __iomem
*) CKSEG1ADDR(phys_addr
);
140 * Don't allow anybody to remap normal RAM that we're using..
142 if (phys_addr
< virt_to_phys(high_memory
)) {
143 char *t_addr
, *t_end
;
146 t_addr
= __va(phys_addr
);
147 t_end
= t_addr
+ (size
- 1);
149 for(page
= virt_to_page(t_addr
); page
<= virt_to_page(t_end
); page
++)
150 if(!PageReserved(page
))
155 * Mappings have to be page-aligned
157 offset
= phys_addr
& ~PAGE_MASK
;
158 phys_addr
&= PAGE_MASK
;
159 size
= PAGE_ALIGN(last_addr
+ 1) - phys_addr
;
164 area
= get_vm_area(size
, VM_IOREMAP
);
168 if (remap_area_pages((unsigned long) addr
, phys_addr
, size
, flags
)) {
173 return (void __iomem
*) (offset
+ (char *)addr
);
176 #define IS_KSEG1(addr) (((unsigned long)(addr) & ~0x1fffffffUL) == CKSEG1)
178 void __iounmap(const volatile void __iomem
*addr
)
185 p
= remove_vm_area((void *) (PAGE_MASK
& (unsigned long __force
) addr
));
187 printk(KERN_ERR
"iounmap: bad address %p\n", addr
);
192 EXPORT_SYMBOL(__ioremap
);
193 EXPORT_SYMBOL(__iounmap
);