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
11 * Amiga/APUS changes by Jesper Skov (jskov@cygnus.co.uk).
13 * Derived from "arch/i386/mm/init.c"
14 * Copyright (C) 1991, 1992, 1993, 1994 Linus Torvalds
16 * This program is free software; you can redistribute it and/or
17 * modify it under the terms of the GNU General Public License
18 * as published by the Free Software Foundation; either version
19 * 2 of the License, or (at your option) any later version.
23 #include <linux/kernel.h>
24 #include <linux/module.h>
25 #include <linux/types.h>
27 #include <linux/vmalloc.h>
28 #include <linux/init.h>
29 #include <linux/highmem.h>
31 #include <asm/pgtable.h>
32 #include <asm/pgalloc.h>
37 unsigned long ioremap_base
;
38 unsigned long ioremap_bot
;
41 #if defined(CONFIG_6xx)
45 extern char etext
[], _stext
[];
48 extern void hash_page_sync(void);
52 extern unsigned long v_mapped_by_bats(unsigned long va
);
53 extern unsigned long p_mapped_by_bats(unsigned long pa
);
54 void setbat(int index
, unsigned long virt
, unsigned long phys
,
55 unsigned int size
, int flags
);
57 #else /* !HAVE_BATS */
58 #define v_mapped_by_bats(x) (0UL)
59 #define p_mapped_by_bats(x) (0UL)
60 #endif /* HAVE_BATS */
62 #ifdef CONFIG_PTE_64BIT
63 /* 44x uses an 8kB pgdir because it has 8-byte Linux PTEs. */
69 pgd_t
*pgd_alloc(struct mm_struct
*mm
)
73 ret
= (pgd_t
*)__get_free_pages(GFP_KERNEL
|__GFP_ZERO
, PGDIR_ORDER
);
77 void pgd_free(struct mm_struct
*mm
, pgd_t
*pgd
)
79 free_pages((unsigned long)pgd
, PGDIR_ORDER
);
82 __init_refok pte_t
*pte_alloc_one_kernel(struct mm_struct
*mm
, unsigned long address
)
85 extern int mem_init_done
;
86 extern void *early_get_page(void);
89 pte
= (pte_t
*)__get_free_page(GFP_KERNEL
|__GFP_REPEAT
|__GFP_ZERO
);
91 pte
= (pte_t
*)early_get_page();
98 pgtable_t
pte_alloc_one(struct mm_struct
*mm
, unsigned long address
)
100 struct page
*ptepage
;
102 #ifdef CONFIG_HIGHPTE
103 gfp_t flags
= GFP_KERNEL
| __GFP_HIGHMEM
| __GFP_REPEAT
;
105 gfp_t flags
= GFP_KERNEL
| __GFP_REPEAT
;
108 ptepage
= alloc_pages(flags
, 0);
110 clear_highpage(ptepage
);
111 pgtable_page_ctor(ptepage
);
116 void pte_free_kernel(struct mm_struct
*mm
, pte_t
*pte
)
121 free_page((unsigned long)pte
);
124 void pte_free(struct mm_struct
*mm
, pgtable_t ptepage
)
129 pgtable_page_dtor(ptepage
);
130 __free_page(ptepage
);
133 #ifndef CONFIG_PHYS_64BIT
135 ioremap(phys_addr_t addr
, unsigned long size
)
137 return __ioremap(addr
, size
, _PAGE_NO_CACHE
);
139 #else /* CONFIG_PHYS_64BIT */
141 ioremap64(unsigned long long addr
, unsigned long size
)
143 return __ioremap(addr
, size
, _PAGE_NO_CACHE
);
147 ioremap(phys_addr_t addr
, unsigned long size
)
149 phys_addr_t addr64
= fixup_bigphys_addr(addr
, size
);
151 return ioremap64(addr64
, size
);
153 #endif /* CONFIG_PHYS_64BIT */
156 __ioremap(phys_addr_t addr
, unsigned long size
, unsigned long flags
)
163 * Choose an address to map it to.
164 * Once the vmalloc system is running, we use it.
165 * Before then, we use space going down from ioremap_base
166 * (ioremap_bot records where we're up to).
168 p
= addr
& PAGE_MASK
;
169 size
= PAGE_ALIGN(addr
+ size
) - p
;
172 * If the address lies within the first 16 MB, assume it's in ISA
175 if (p
< 16*1024*1024)
179 * Don't allow anybody to remap normal RAM that we're using.
180 * mem_init() sets high_memory so only do the check after that.
182 if ( mem_init_done
&& (p
< virt_to_phys(high_memory
)) )
184 printk("__ioremap(): phys addr "PHYS_FMT
" is RAM lr %p\n", p
,
185 __builtin_return_address(0));
193 * Is it already mapped? Perhaps overlapped by a previous
194 * BAT mapping. If the whole area is mapped then we're done,
195 * otherwise remap it since we want to keep the virt addrs for
196 * each request contiguous.
198 * We make the assumption here that if the bottom and top
199 * of the range we want are mapped then it's mapped to the
200 * same virt address (and this is contiguous).
203 if ((v
= p_mapped_by_bats(p
)) /*&& p_mapped_by_bats(p+size-1)*/ )
207 struct vm_struct
*area
;
208 area
= get_vm_area(size
, VM_IOREMAP
);
211 v
= (unsigned long) area
->addr
;
213 v
= (ioremap_bot
-= size
);
216 if ((flags
& _PAGE_PRESENT
) == 0)
217 flags
|= _PAGE_KERNEL
;
218 if (flags
& _PAGE_NO_CACHE
)
219 flags
|= _PAGE_GUARDED
;
222 * Should check if it is a candidate for a BAT mapping
226 for (i
= 0; i
< size
&& err
== 0; i
+= PAGE_SIZE
)
227 err
= map_page(v
+i
, p
+i
, flags
);
235 return (void __iomem
*) (v
+ ((unsigned long)addr
& ~PAGE_MASK
));
238 void iounmap(volatile void __iomem
*addr
)
241 * If mapped by BATs then there is nothing to do.
242 * Calling vfree() generates a benign warning.
244 if (v_mapped_by_bats((unsigned long)addr
)) return;
246 if (addr
> high_memory
&& (unsigned long) addr
< ioremap_bot
)
247 vunmap((void *) (PAGE_MASK
& (unsigned long)addr
));
250 void __iomem
*ioport_map(unsigned long port
, unsigned int len
)
252 return (void __iomem
*) (port
+ _IO_BASE
);
255 void ioport_unmap(void __iomem
*addr
)
259 EXPORT_SYMBOL(ioport_map
);
260 EXPORT_SYMBOL(ioport_unmap
);
263 map_page(unsigned long va
, phys_addr_t pa
, int flags
)
269 /* Use upper 10 bits of VA to index the first level map */
270 pd
= pmd_offset(pgd_offset_k(va
), va
);
271 /* Use middle 10 bits of VA to index the second-level map */
272 pg
= pte_alloc_kernel(pd
, va
);
275 set_pte_at(&init_mm
, va
, pg
, pfn_pte(pa
>> PAGE_SHIFT
, __pgprot(flags
)));
277 flush_HPTE(0, va
, pmd_val(*pd
));
283 * Map in all of physical memory starting at KERNELBASE.
285 void __init
mapin_ram(void)
287 unsigned long v
, p
, s
, f
;
291 p
= PPC_MEMSTART
+ s
;
292 for (; s
< total_lowmem
; s
+= PAGE_SIZE
) {
293 if ((char *) v
>= _stext
&& (char *) v
< etext
)
303 /* is x a power of 4? */
304 #define is_power_of_4(x) is_power_of_2(x) && (ffs(x) & 1)
307 * Set up a mapping for a block of I/O.
308 * virt, phys, size must all be page-aligned.
309 * This should only be called before ioremap is called.
311 void __init
io_block_mapping(unsigned long virt
, phys_addr_t phys
,
312 unsigned int size
, int flags
)
316 if (virt
> KERNELBASE
&& virt
< ioremap_bot
)
317 ioremap_bot
= ioremap_base
= virt
;
321 * Use a BAT for this if possible...
323 if (io_bat_index
< 2 && is_power_of_2(size
)
324 && (virt
& (size
- 1)) == 0 && (phys
& (size
- 1)) == 0) {
325 setbat(io_bat_index
, virt
, phys
, size
, flags
);
329 #endif /* HAVE_BATS */
331 /* No BATs available, put it in the page tables. */
332 for (i
= 0; i
< size
; i
+= PAGE_SIZE
)
333 map_page(virt
+ i
, phys
+ i
, flags
);
336 /* Scan the real Linux page tables and return a PTE pointer for
337 * a virtual address in a context.
338 * Returns true (1) if PTE was found, zero otherwise. The pointer to
339 * the PTE pointer is unmodified if PTE is not found.
342 get_pteptr(struct mm_struct
*mm
, unsigned long addr
, pte_t
**ptep
, pmd_t
**pmdp
)
349 pgd
= pgd_offset(mm
, addr
& PAGE_MASK
);
351 pmd
= pmd_offset(pgd
, addr
& PAGE_MASK
);
352 if (pmd_present(*pmd
)) {
353 pte
= pte_offset_map(pmd
, addr
& PAGE_MASK
);
359 /* XXX caller needs to do pte_unmap, yuck */
366 /* Find physical address for this virtual address. Normally used by
367 * I/O functions, but anyone can call it.
369 unsigned long iopa(unsigned long addr
)
373 /* I don't know why this won't work on PMacs or CHRP. It
374 * appears there is some bug, or there is some implicit
375 * mapping done not properly represented by BATs or in page
376 * tables.......I am actively working on resolving this, but
377 * can't hold up other stuff. -- Dan
380 struct mm_struct
*mm
;
383 pa
= v_mapped_by_bats(addr
);
387 /* Allow mapping of user addresses (within the thread)
388 * for DMA if necessary.
390 if (addr
< TASK_SIZE
)
396 if (get_pteptr(mm
, addr
, &pte
, NULL
)) {
397 pa
= (pte_val(*pte
) & PAGE_MASK
) | (addr
& ~PAGE_MASK
);