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>
30 #include <asm/pgtable.h>
31 #include <asm/pgalloc.h>
32 #include <asm/fixmap.h>
37 unsigned long ioremap_base
;
38 unsigned long ioremap_bot
;
39 EXPORT_SYMBOL(ioremap_bot
); /* aka VMALLOC_END */
41 #if defined(CONFIG_6xx) || defined(CONFIG_POWER3)
45 #if defined(CONFIG_FSL_BOOKE)
49 extern char etext
[], _stext
[];
52 extern void hash_page_sync(void);
56 extern unsigned long v_mapped_by_bats(unsigned long va
);
57 extern unsigned long p_mapped_by_bats(unsigned long pa
);
58 void setbat(int index
, unsigned long virt
, unsigned long phys
,
59 unsigned int size
, int flags
);
61 #else /* !HAVE_BATS */
62 #define v_mapped_by_bats(x) (0UL)
63 #define p_mapped_by_bats(x) (0UL)
64 #endif /* HAVE_BATS */
67 extern unsigned int tlbcam_index
;
68 extern unsigned long v_mapped_by_tlbcam(unsigned long va
);
69 extern unsigned long p_mapped_by_tlbcam(unsigned long pa
);
70 #else /* !HAVE_TLBCAM */
71 #define v_mapped_by_tlbcam(x) (0UL)
72 #define p_mapped_by_tlbcam(x) (0UL)
73 #endif /* HAVE_TLBCAM */
75 #ifdef CONFIG_PTE_64BIT
76 /* 44x uses an 8kB pgdir because it has 8-byte Linux PTEs. */
82 pgd_t
*pgd_alloc(struct mm_struct
*mm
)
86 ret
= (pgd_t
*)__get_free_pages(GFP_KERNEL
|__GFP_ZERO
, PGDIR_ORDER
);
90 void pgd_free(struct mm_struct
*mm
, pgd_t
*pgd
)
92 free_pages((unsigned long)pgd
, PGDIR_ORDER
);
95 __init_refok pte_t
*pte_alloc_one_kernel(struct mm_struct
*mm
, unsigned long address
)
98 extern int mem_init_done
;
99 extern void *early_get_page(void);
102 pte
= (pte_t
*)__get_free_page(GFP_KERNEL
|__GFP_REPEAT
|__GFP_ZERO
);
104 pte
= (pte_t
*)early_get_page();
111 pgtable_t
pte_alloc_one(struct mm_struct
*mm
, unsigned long address
)
113 struct page
*ptepage
;
115 #ifdef CONFIG_HIGHPTE
116 gfp_t flags
= GFP_KERNEL
| __GFP_HIGHMEM
| __GFP_REPEAT
| __GFP_ZERO
;
118 gfp_t flags
= GFP_KERNEL
| __GFP_REPEAT
| __GFP_ZERO
;
121 ptepage
= alloc_pages(flags
, 0);
124 pgtable_page_ctor(ptepage
);
128 void pte_free_kernel(struct mm_struct
*mm
, pte_t
*pte
)
133 free_page((unsigned long)pte
);
136 void pte_free(struct mm_struct
*mm
, pgtable_t ptepage
)
141 pgtable_page_dtor(ptepage
);
142 __free_page(ptepage
);
146 ioremap(phys_addr_t addr
, unsigned long size
)
148 return __ioremap(addr
, size
, _PAGE_NO_CACHE
);
150 EXPORT_SYMBOL(ioremap
);
153 ioremap_flags(phys_addr_t addr
, unsigned long size
, unsigned long flags
)
155 return __ioremap(addr
, size
, flags
);
157 EXPORT_SYMBOL(ioremap_flags
);
160 __ioremap(phys_addr_t addr
, unsigned long size
, unsigned long flags
)
167 * Choose an address to map it to.
168 * Once the vmalloc system is running, we use it.
169 * Before then, we use space going down from ioremap_base
170 * (ioremap_bot records where we're up to).
172 p
= addr
& PAGE_MASK
;
173 size
= PAGE_ALIGN(addr
+ size
) - p
;
176 * If the address lies within the first 16 MB, assume it's in ISA
179 if (p
< 16*1024*1024)
183 * Don't allow anybody to remap normal RAM that we're using.
184 * mem_init() sets high_memory so only do the check after that.
186 if (mem_init_done
&& (p
< virt_to_phys(high_memory
))) {
187 printk("__ioremap(): phys addr 0x%llx is RAM lr %p\n",
188 (unsigned long long)p
, __builtin_return_address(0));
196 * Is it already mapped? Perhaps overlapped by a previous
197 * BAT mapping. If the whole area is mapped then we're done,
198 * otherwise remap it since we want to keep the virt addrs for
199 * each request contiguous.
201 * We make the assumption here that if the bottom and top
202 * of the range we want are mapped then it's mapped to the
203 * same virt address (and this is contiguous).
206 if ((v
= p_mapped_by_bats(p
)) /*&& p_mapped_by_bats(p+size-1)*/ )
209 if ((v
= p_mapped_by_tlbcam(p
)))
213 struct vm_struct
*area
;
214 area
= get_vm_area(size
, VM_IOREMAP
);
217 v
= (unsigned long) area
->addr
;
219 v
= (ioremap_bot
-= size
);
222 if ((flags
& _PAGE_PRESENT
) == 0)
223 flags
|= _PAGE_KERNEL
;
224 if (flags
& _PAGE_NO_CACHE
)
225 flags
|= _PAGE_GUARDED
;
228 * Should check if it is a candidate for a BAT mapping
232 for (i
= 0; i
< size
&& err
== 0; i
+= PAGE_SIZE
)
233 err
= map_page(v
+i
, p
+i
, flags
);
241 return (void __iomem
*) (v
+ ((unsigned long)addr
& ~PAGE_MASK
));
243 EXPORT_SYMBOL(__ioremap
);
245 void iounmap(volatile void __iomem
*addr
)
248 * If mapped by BATs then there is nothing to do.
249 * Calling vfree() generates a benign warning.
251 if (v_mapped_by_bats((unsigned long)addr
)) return;
253 if (addr
> high_memory
&& (unsigned long) addr
< ioremap_bot
)
254 vunmap((void *) (PAGE_MASK
& (unsigned long)addr
));
256 EXPORT_SYMBOL(iounmap
);
258 int map_page(unsigned long va
, phys_addr_t pa
, int flags
)
264 /* Use upper 10 bits of VA to index the first level map */
265 pd
= pmd_offset(pud_offset(pgd_offset_k(va
), va
), va
);
266 /* Use middle 10 bits of VA to index the second-level map */
267 pg
= pte_alloc_kernel(pd
, va
);
270 /* The PTE should never be already set nor present in the
273 BUG_ON(pte_val(*pg
) & (_PAGE_PRESENT
| _PAGE_HASHPTE
));
274 set_pte_at(&init_mm
, va
, pg
, pfn_pte(pa
>> PAGE_SHIFT
,
281 * Map in all of physical memory starting at KERNELBASE.
283 void __init
mapin_ram(void)
285 unsigned long v
, s
, f
;
291 p
= memstart_addr
+ s
;
292 for (; s
< total_lowmem
; s
+= PAGE_SIZE
) {
293 ktext
= ((char *) v
>= _stext
&& (char *) v
< etext
);
294 f
= ktext
?_PAGE_RAM_TEXT
: _PAGE_RAM
;
296 #ifdef CONFIG_PPC_STD_MMU_32
298 hash_preload(&init_mm
, v
, 0, 0x300);
305 /* Scan the real Linux page tables and return a PTE pointer for
306 * a virtual address in a context.
307 * Returns true (1) if PTE was found, zero otherwise. The pointer to
308 * the PTE pointer is unmodified if PTE is not found.
311 get_pteptr(struct mm_struct
*mm
, unsigned long addr
, pte_t
**ptep
, pmd_t
**pmdp
)
319 pgd
= pgd_offset(mm
, addr
& PAGE_MASK
);
321 pud
= pud_offset(pgd
, addr
& PAGE_MASK
);
322 if (pud
&& pud_present(*pud
)) {
323 pmd
= pmd_offset(pud
, addr
& PAGE_MASK
);
324 if (pmd_present(*pmd
)) {
325 pte
= pte_offset_map(pmd
, addr
& PAGE_MASK
);
331 /* XXX caller needs to do pte_unmap, yuck */
339 #ifdef CONFIG_DEBUG_PAGEALLOC
341 static int __change_page_attr(struct page
*page
, pgprot_t prot
)
345 unsigned long address
;
347 BUG_ON(PageHighMem(page
));
348 address
= (unsigned long)page_address(page
);
350 if (v_mapped_by_bats(address
) || v_mapped_by_tlbcam(address
))
352 if (!get_pteptr(&init_mm
, address
, &kpte
, &kpmd
))
354 set_pte_at(&init_mm
, address
, kpte
, mk_pte(page
, prot
));
356 flush_HPTE(0, address
, pmd_val(*kpmd
));
363 * Change the page attributes of an page in the linear mapping.
365 * THIS CONFLICTS WITH BAT MAPPINGS, DEBUG USE ONLY
367 static int change_page_attr(struct page
*page
, int numpages
, pgprot_t prot
)
372 local_irq_save(flags
);
373 for (i
= 0; i
< numpages
; i
++, page
++) {
374 err
= __change_page_attr(page
, prot
);
378 local_irq_restore(flags
);
383 void kernel_map_pages(struct page
*page
, int numpages
, int enable
)
385 if (PageHighMem(page
))
388 change_page_attr(page
, numpages
, enable
? PAGE_KERNEL
: __pgprot(0));
390 #endif /* CONFIG_DEBUG_PAGEALLOC */
393 unsigned long FIXADDR_TOP
= 0xfffff000;
394 EXPORT_SYMBOL(FIXADDR_TOP
);
396 void __set_fixmap (enum fixed_addresses idx
, phys_addr_t phys
, pgprot_t flags
)
398 unsigned long address
= __fix_to_virt(idx
);
400 if (idx
>= __end_of_fixed_addresses
) {
405 map_page(address
, phys
, flags
);
409 void __this_fixmap_does_not_exist(void)