2 * This file contains the routines setting up the linux page tables.
5 * Derived from arch/ppc/mm/init.c:
6 * Copyright (C) 1995-1996 Gary Thomas (gdt@linuxppc.org)
8 * Modifications by Paul Mackerras (PowerMac) (paulus@cs.anu.edu.au)
9 * and Cort Dougan (PReP) (cort@cs.nmt.edu)
10 * Copyright (C) 1996 Paul Mackerras
12 * Derived from "arch/i386/mm/init.c"
13 * Copyright (C) 1991, 1992, 1993, 1994 Linus Torvalds
15 * This program is free software; you can redistribute it and/or
16 * modify it under the terms of the GNU General Public License
17 * as published by the Free Software Foundation; either version
18 * 2 of the License, or (at your option) any later version.
22 #include <linux/kernel.h>
23 #include <linux/module.h>
24 #include <linux/types.h>
26 #include <linux/vmalloc.h>
27 #include <linux/init.h>
28 #include <linux/highmem.h>
29 #include <linux/memblock.h>
30 #include <linux/slab.h>
32 #include <asm/pgtable.h>
33 #include <asm/pgalloc.h>
34 #include <asm/fixmap.h>
39 unsigned long ioremap_base
;
40 unsigned long ioremap_bot
;
41 EXPORT_SYMBOL(ioremap_bot
); /* aka VMALLOC_END */
43 #if defined(CONFIG_6xx) || defined(CONFIG_POWER3)
47 #if defined(CONFIG_FSL_BOOKE)
51 extern char etext
[], _stext
[];
54 extern phys_addr_t
v_mapped_by_bats(unsigned long va
);
55 extern unsigned long p_mapped_by_bats(phys_addr_t pa
);
56 void setbat(int index
, unsigned long virt
, phys_addr_t phys
,
57 unsigned int size
, int flags
);
59 #else /* !HAVE_BATS */
60 #define v_mapped_by_bats(x) (0UL)
61 #define p_mapped_by_bats(x) (0UL)
62 #endif /* HAVE_BATS */
65 extern unsigned int tlbcam_index
;
66 extern phys_addr_t
v_mapped_by_tlbcam(unsigned long va
);
67 extern unsigned long p_mapped_by_tlbcam(phys_addr_t pa
);
68 #else /* !HAVE_TLBCAM */
69 #define v_mapped_by_tlbcam(x) (0UL)
70 #define p_mapped_by_tlbcam(x) (0UL)
71 #endif /* HAVE_TLBCAM */
73 #define PGDIR_ORDER (32 + PGD_T_LOG2 - PGDIR_SHIFT)
75 pgd_t
*pgd_alloc(struct mm_struct
*mm
)
79 /* pgdir take page or two with 4K pages and a page fraction otherwise */
80 #ifndef CONFIG_PPC_4K_PAGES
81 ret
= kzalloc(1 << PGDIR_ORDER
, GFP_KERNEL
);
83 ret
= (pgd_t
*)__get_free_pages(GFP_KERNEL
|__GFP_ZERO
,
84 PGDIR_ORDER
- PAGE_SHIFT
);
89 void pgd_free(struct mm_struct
*mm
, pgd_t
*pgd
)
91 #ifndef CONFIG_PPC_4K_PAGES
94 free_pages((unsigned long)pgd
, PGDIR_ORDER
- PAGE_SHIFT
);
98 __init_refok pte_t
*pte_alloc_one_kernel(struct mm_struct
*mm
, unsigned long address
)
101 extern int mem_init_done
;
102 extern void *early_get_page(void);
105 pte
= (pte_t
*)__get_free_page(GFP_KERNEL
|__GFP_REPEAT
|__GFP_ZERO
);
107 pte
= (pte_t
*)early_get_page();
114 pgtable_t
pte_alloc_one(struct mm_struct
*mm
, unsigned long address
)
116 struct page
*ptepage
;
118 gfp_t flags
= GFP_KERNEL
| __GFP_REPEAT
| __GFP_ZERO
;
120 ptepage
= alloc_pages(flags
, 0);
123 pgtable_page_ctor(ptepage
);
128 ioremap(phys_addr_t addr
, unsigned long size
)
130 return __ioremap_caller(addr
, size
, _PAGE_NO_CACHE
| _PAGE_GUARDED
,
131 __builtin_return_address(0));
133 EXPORT_SYMBOL(ioremap
);
136 ioremap_wc(phys_addr_t addr
, unsigned long size
)
138 return __ioremap_caller(addr
, size
, _PAGE_NO_CACHE
,
139 __builtin_return_address(0));
141 EXPORT_SYMBOL(ioremap_wc
);
144 ioremap_prot(phys_addr_t addr
, unsigned long size
, unsigned long flags
)
146 /* writeable implies dirty for kernel addresses */
147 if (flags
& _PAGE_RW
)
148 flags
|= _PAGE_DIRTY
| _PAGE_HWWRITE
;
150 /* we don't want to let _PAGE_USER and _PAGE_EXEC leak out */
151 flags
&= ~(_PAGE_USER
| _PAGE_EXEC
);
154 /* _PAGE_USER contains _PAGE_BAP_SR on BookE using the new PTE format
155 * which means that we just cleared supervisor access... oops ;-) This
158 flags
|= _PAGE_BAP_SR
;
161 return __ioremap_caller(addr
, size
, flags
, __builtin_return_address(0));
163 EXPORT_SYMBOL(ioremap_prot
);
166 __ioremap(phys_addr_t addr
, unsigned long size
, unsigned long flags
)
168 return __ioremap_caller(addr
, size
, flags
, __builtin_return_address(0));
172 __ioremap_caller(phys_addr_t addr
, unsigned long size
, unsigned long flags
,
179 /* Make sure we have the base flags */
180 if ((flags
& _PAGE_PRESENT
) == 0)
181 flags
|= PAGE_KERNEL
;
183 /* Non-cacheable page cannot be coherent */
184 if (flags
& _PAGE_NO_CACHE
)
185 flags
&= ~_PAGE_COHERENT
;
188 * Choose an address to map it to.
189 * Once the vmalloc system is running, we use it.
190 * Before then, we use space going down from ioremap_base
191 * (ioremap_bot records where we're up to).
193 p
= addr
& PAGE_MASK
;
194 size
= PAGE_ALIGN(addr
+ size
) - p
;
197 * If the address lies within the first 16 MB, assume it's in ISA
200 if (p
< 16*1024*1024)
203 #ifndef CONFIG_CRASH_DUMP
205 * Don't allow anybody to remap normal RAM that we're using.
206 * mem_init() sets high_memory so only do the check after that.
208 if (mem_init_done
&& (p
< virt_to_phys(high_memory
)) &&
209 !(__allow_ioremap_reserved
&& memblock_is_region_reserved(p
, size
))) {
210 printk("__ioremap(): phys addr 0x%llx is RAM lr %p\n",
211 (unsigned long long)p
, __builtin_return_address(0));
220 * Is it already mapped? Perhaps overlapped by a previous
221 * BAT mapping. If the whole area is mapped then we're done,
222 * otherwise remap it since we want to keep the virt addrs for
223 * each request contiguous.
225 * We make the assumption here that if the bottom and top
226 * of the range we want are mapped then it's mapped to the
227 * same virt address (and this is contiguous).
230 if ((v
= p_mapped_by_bats(p
)) /*&& p_mapped_by_bats(p+size-1)*/ )
233 if ((v
= p_mapped_by_tlbcam(p
)))
237 struct vm_struct
*area
;
238 area
= get_vm_area_caller(size
, VM_IOREMAP
, caller
);
242 v
= (unsigned long) area
->addr
;
244 v
= (ioremap_bot
-= size
);
248 * Should check if it is a candidate for a BAT mapping
252 for (i
= 0; i
< size
&& err
== 0; i
+= PAGE_SIZE
)
253 err
= map_page(v
+i
, p
+i
, flags
);
261 return (void __iomem
*) (v
+ ((unsigned long)addr
& ~PAGE_MASK
));
263 EXPORT_SYMBOL(__ioremap
);
265 void iounmap(volatile void __iomem
*addr
)
268 * If mapped by BATs then there is nothing to do.
269 * Calling vfree() generates a benign warning.
271 if (v_mapped_by_bats((unsigned long)addr
)) return;
273 if (addr
> high_memory
&& (unsigned long) addr
< ioremap_bot
)
274 vunmap((void *) (PAGE_MASK
& (unsigned long)addr
));
276 EXPORT_SYMBOL(iounmap
);
278 int map_page(unsigned long va
, phys_addr_t pa
, int flags
)
284 /* Use upper 10 bits of VA to index the first level map */
285 pd
= pmd_offset(pud_offset(pgd_offset_k(va
), va
), va
);
286 /* Use middle 10 bits of VA to index the second-level map */
287 pg
= pte_alloc_kernel(pd
, va
);
290 /* The PTE should never be already set nor present in the
293 BUG_ON((pte_val(*pg
) & (_PAGE_PRESENT
| _PAGE_HASHPTE
)) &&
295 set_pte_at(&init_mm
, va
, pg
, pfn_pte(pa
>> PAGE_SHIFT
,
302 * Map in a chunk of physical memory starting at start.
304 void __init
__mapin_ram_chunk(unsigned long offset
, unsigned long top
)
306 unsigned long v
, s
, f
;
312 p
= memstart_addr
+ s
;
313 for (; s
< top
; s
+= PAGE_SIZE
) {
314 ktext
= ((char *) v
>= _stext
&& (char *) v
< etext
);
315 f
= ktext
? PAGE_KERNEL_TEXT
: PAGE_KERNEL
;
317 #ifdef CONFIG_PPC_STD_MMU_32
319 hash_preload(&init_mm
, v
, 0, 0x300);
326 void __init
mapin_ram(void)
328 unsigned long s
, top
;
332 s
= mmu_mapin_ram(top
);
333 __mapin_ram_chunk(s
, top
);
335 if (!wii_hole_size
) {
336 s
= mmu_mapin_ram(total_lowmem
);
337 __mapin_ram_chunk(s
, total_lowmem
);
339 top
= wii_hole_start
;
340 s
= mmu_mapin_ram(top
);
341 __mapin_ram_chunk(s
, top
);
343 top
= memblock_end_of_DRAM();
344 s
= wii_mmu_mapin_mem2(top
);
345 __mapin_ram_chunk(s
, top
);
350 /* Scan the real Linux page tables and return a PTE pointer for
351 * a virtual address in a context.
352 * Returns true (1) if PTE was found, zero otherwise. The pointer to
353 * the PTE pointer is unmodified if PTE is not found.
356 get_pteptr(struct mm_struct
*mm
, unsigned long addr
, pte_t
**ptep
, pmd_t
**pmdp
)
364 pgd
= pgd_offset(mm
, addr
& PAGE_MASK
);
366 pud
= pud_offset(pgd
, addr
& PAGE_MASK
);
367 if (pud
&& pud_present(*pud
)) {
368 pmd
= pmd_offset(pud
, addr
& PAGE_MASK
);
369 if (pmd_present(*pmd
)) {
370 pte
= pte_offset_map(pmd
, addr
& PAGE_MASK
);
376 /* XXX caller needs to do pte_unmap, yuck */
384 #ifdef CONFIG_DEBUG_PAGEALLOC
386 static int __change_page_attr(struct page
*page
, pgprot_t prot
)
390 unsigned long address
;
392 BUG_ON(PageHighMem(page
));
393 address
= (unsigned long)page_address(page
);
395 if (v_mapped_by_bats(address
) || v_mapped_by_tlbcam(address
))
397 if (!get_pteptr(&init_mm
, address
, &kpte
, &kpmd
))
399 __set_pte_at(&init_mm
, address
, kpte
, mk_pte(page
, prot
), 0);
401 flush_tlb_page(NULL
, address
);
408 * Change the page attributes of an page in the linear mapping.
410 * THIS CONFLICTS WITH BAT MAPPINGS, DEBUG USE ONLY
412 static int change_page_attr(struct page
*page
, int numpages
, pgprot_t prot
)
417 local_irq_save(flags
);
418 for (i
= 0; i
< numpages
; i
++, page
++) {
419 err
= __change_page_attr(page
, prot
);
423 local_irq_restore(flags
);
428 void kernel_map_pages(struct page
*page
, int numpages
, int enable
)
430 if (PageHighMem(page
))
433 change_page_attr(page
, numpages
, enable
? PAGE_KERNEL
: __pgprot(0));
435 #endif /* CONFIG_DEBUG_PAGEALLOC */
439 void __set_fixmap (enum fixed_addresses idx
, phys_addr_t phys
, pgprot_t flags
)
441 unsigned long address
= __fix_to_virt(idx
);
443 if (idx
>= __end_of_fixed_addresses
) {
448 map_page(address
, phys
, pgprot_val(flags
));
452 void __this_fixmap_does_not_exist(void)