2 * This file contains ioremap and related functions for 64-bit machines.
4 * Derived from arch/ppc64/mm/init.c
5 * Copyright (C) 1995-1996 Gary Thomas (gdt@linuxppc.org)
7 * Modifications by Paul Mackerras (PowerMac) (paulus@samba.org)
8 * and Cort Dougan (PReP) (cort@cs.nmt.edu)
9 * Copyright (C) 1996 Paul Mackerras
11 * Derived from "arch/i386/mm/init.c"
12 * Copyright (C) 1991, 1992, 1993, 1994 Linus Torvalds
14 * Dave Engebretsen <engebret@us.ibm.com>
15 * Rework for PPC64 port.
17 * This program is free software; you can redistribute it and/or
18 * modify it under the terms of the GNU General Public License
19 * as published by the Free Software Foundation; either version
20 * 2 of the License, or (at your option) any later version.
24 #include <linux/signal.h>
25 #include <linux/sched.h>
26 #include <linux/kernel.h>
27 #include <linux/errno.h>
28 #include <linux/string.h>
29 #include <linux/types.h>
30 #include <linux/mman.h>
32 #include <linux/swap.h>
33 #include <linux/stddef.h>
34 #include <linux/vmalloc.h>
35 #include <linux/init.h>
37 #include <asm/pgalloc.h>
41 #include <asm/mmu_context.h>
42 #include <asm/pgtable.h>
45 #include <asm/machdep.h>
47 #include <asm/processor.h>
48 #include <asm/cputable.h>
49 #include <asm/sections.h>
50 #include <asm/system.h>
51 #include <asm/abs_addr.h>
52 #include <asm/firmware.h>
56 unsigned long ioremap_bot
= IOREMAP_BASE
;
59 * map_io_page currently only called by __ioremap
60 * map_io_page adds an entry to the ioremap page table
61 * and adds an entry to the HPT, possibly bolting it
63 static int map_io_page(unsigned long ea
, unsigned long pa
, int flags
)
71 pgdp
= pgd_offset_k(ea
);
72 pudp
= pud_alloc(&init_mm
, pgdp
, ea
);
75 pmdp
= pmd_alloc(&init_mm
, pudp
, ea
);
78 ptep
= pte_alloc_kernel(pmdp
, ea
);
81 set_pte_at(&init_mm
, ea
, ptep
, pfn_pte(pa
>> PAGE_SHIFT
,
85 * If the mm subsystem is not fully up, we cannot create a
86 * linux page table entry for this mapping. Simply bolt an
87 * entry in the hardware page table.
90 if (htab_bolt_mapping(ea
, ea
+ PAGE_SIZE
, pa
, flags
,
91 mmu_io_psize
, mmu_kernel_ssize
)) {
92 printk(KERN_ERR
"Failed to do bolted mapping IO "
93 "memory at %016lx !\n", pa
);
102 * __ioremap_at - Low level function to establish the page tables
105 void __iomem
* __ioremap_at(phys_addr_t pa
, void *ea
, unsigned long size
,
110 /* Make sure we have the base flags */
111 if ((flags
& _PAGE_PRESENT
) == 0)
112 flags
|= pgprot_val(PAGE_KERNEL
);
114 /* Non-cacheable page cannot be coherent */
115 if (flags
& _PAGE_NO_CACHE
)
116 flags
&= ~_PAGE_COHERENT
;
118 /* We don't support the 4K PFN hack with ioremap */
119 if (flags
& _PAGE_4K_PFN
)
122 WARN_ON(pa
& ~PAGE_MASK
);
123 WARN_ON(((unsigned long)ea
) & ~PAGE_MASK
);
124 WARN_ON(size
& ~PAGE_MASK
);
126 for (i
= 0; i
< size
; i
+= PAGE_SIZE
)
127 if (map_io_page((unsigned long)ea
+i
, pa
+i
, flags
))
130 return (void __iomem
*)ea
;
134 * __iounmap_from - Low level function to tear down the page tables
135 * for an IO mapping. This is used for mappings that
136 * are manipulated manually, like partial unmapping of
137 * PCI IOs or ISA space.
139 void __iounmap_at(void *ea
, unsigned long size
)
141 WARN_ON(((unsigned long)ea
) & ~PAGE_MASK
);
142 WARN_ON(size
& ~PAGE_MASK
);
144 unmap_kernel_range((unsigned long)ea
, size
);
147 void __iomem
* __ioremap_caller(phys_addr_t addr
, unsigned long size
,
148 unsigned long flags
, void *caller
)
150 phys_addr_t paligned
;
154 * Choose an address to map it to.
155 * Once the imalloc system is running, we use it.
156 * Before that, we map using addresses going
157 * up from ioremap_bot. imalloc will use
158 * the addresses from ioremap_bot through
162 paligned
= addr
& PAGE_MASK
;
163 size
= PAGE_ALIGN(addr
+ size
) - paligned
;
165 if ((size
== 0) || (paligned
== 0))
169 struct vm_struct
*area
;
171 area
= __get_vm_area_caller(size
, VM_IOREMAP
,
172 ioremap_bot
, IOREMAP_END
,
176 ret
= __ioremap_at(paligned
, area
->addr
, size
, flags
);
180 ret
= __ioremap_at(paligned
, (void *)ioremap_bot
, size
, flags
);
186 ret
+= addr
& ~PAGE_MASK
;
190 void __iomem
* __ioremap(phys_addr_t addr
, unsigned long size
,
193 return __ioremap_caller(addr
, size
, flags
, __builtin_return_address(0));
196 void __iomem
* ioremap(phys_addr_t addr
, unsigned long size
)
198 unsigned long flags
= _PAGE_NO_CACHE
| _PAGE_GUARDED
;
199 void *caller
= __builtin_return_address(0);
202 return ppc_md
.ioremap(addr
, size
, flags
, caller
);
203 return __ioremap_caller(addr
, size
, flags
, caller
);
206 void __iomem
* ioremap_flags(phys_addr_t addr
, unsigned long size
,
209 void *caller
= __builtin_return_address(0);
211 /* writeable implies dirty for kernel addresses */
212 if (flags
& _PAGE_RW
)
213 flags
|= _PAGE_DIRTY
;
215 /* we don't want to let _PAGE_USER and _PAGE_EXEC leak out */
216 flags
&= ~(_PAGE_USER
| _PAGE_EXEC
);
219 return ppc_md
.ioremap(addr
, size
, flags
, caller
);
220 return __ioremap_caller(addr
, size
, flags
, caller
);
225 * Unmap an IO region and remove it from imalloc'd list.
226 * Access to IO memory should be serialized by driver.
228 void __iounmap(volatile void __iomem
*token
)
235 addr
= (void *) ((unsigned long __force
)
236 PCI_FIX_ADDR(token
) & PAGE_MASK
);
237 if ((unsigned long)addr
< ioremap_bot
) {
238 printk(KERN_WARNING
"Attempt to iounmap early bolted mapping"
245 void iounmap(volatile void __iomem
*token
)
248 ppc_md
.iounmap(token
);
253 EXPORT_SYMBOL(ioremap
);
254 EXPORT_SYMBOL(ioremap_flags
);
255 EXPORT_SYMBOL(__ioremap
);
256 EXPORT_SYMBOL(__ioremap_at
);
257 EXPORT_SYMBOL(iounmap
);
258 EXPORT_SYMBOL(__iounmap
);
259 EXPORT_SYMBOL(__iounmap_at
);