Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 1 | /* |
| 2 | * This file contains the routines for initializing the MMU |
| 3 | * on the 4xx series of chips. |
| 4 | * -- paulus |
| 5 | * |
| 6 | * Derived from arch/ppc/mm/init.c: |
| 7 | * Copyright (C) 1995-1996 Gary Thomas (gdt@linuxppc.org) |
| 8 | * |
| 9 | * Modifications by Paul Mackerras (PowerMac) (paulus@cs.anu.edu.au) |
| 10 | * and Cort Dougan (PReP) (cort@cs.nmt.edu) |
| 11 | * Copyright (C) 1996 Paul Mackerras |
| 12 | * Amiga/APUS changes by Jesper Skov (jskov@cygnus.co.uk). |
| 13 | * |
| 14 | * Derived from "arch/i386/mm/init.c" |
| 15 | * Copyright (C) 1991, 1992, 1993, 1994 Linus Torvalds |
| 16 | * |
| 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. |
| 21 | * |
| 22 | */ |
| 23 | |
| 24 | #include <linux/config.h> |
| 25 | #include <linux/signal.h> |
| 26 | #include <linux/sched.h> |
| 27 | #include <linux/kernel.h> |
| 28 | #include <linux/errno.h> |
| 29 | #include <linux/string.h> |
| 30 | #include <linux/types.h> |
| 31 | #include <linux/ptrace.h> |
| 32 | #include <linux/mman.h> |
| 33 | #include <linux/mm.h> |
| 34 | #include <linux/swap.h> |
| 35 | #include <linux/stddef.h> |
| 36 | #include <linux/vmalloc.h> |
| 37 | #include <linux/init.h> |
| 38 | #include <linux/delay.h> |
| 39 | #include <linux/highmem.h> |
| 40 | |
| 41 | #include <asm/pgalloc.h> |
| 42 | #include <asm/prom.h> |
| 43 | #include <asm/io.h> |
| 44 | #include <asm/mmu_context.h> |
| 45 | #include <asm/pgtable.h> |
| 46 | #include <asm/mmu.h> |
| 47 | #include <asm/uaccess.h> |
| 48 | #include <asm/smp.h> |
| 49 | #include <asm/bootx.h> |
| 50 | #include <asm/machdep.h> |
| 51 | #include <asm/setup.h> |
| 52 | #include "mmu_decl.h" |
| 53 | |
| 54 | extern int __map_without_ltlbs; |
| 55 | /* |
| 56 | * MMU_init_hw does the chip-specific initialization of the MMU hardware. |
| 57 | */ |
| 58 | void __init MMU_init_hw(void) |
| 59 | { |
| 60 | /* |
| 61 | * The Zone Protection Register (ZPR) defines how protection will |
| 62 | * be applied to every page which is a member of a given zone. At |
| 63 | * present, we utilize only two of the 4xx's zones. |
| 64 | * The zone index bits (of ZSEL) in the PTE are used for software |
| 65 | * indicators, except the LSB. For user access, zone 1 is used, |
| 66 | * for kernel access, zone 0 is used. We set all but zone 1 |
| 67 | * to zero, allowing only kernel access as indicated in the PTE. |
| 68 | * For zone 1, we set a 01 binary (a value of 10 will not work) |
| 69 | * to allow user access as indicated in the PTE. This also allows |
| 70 | * kernel access as indicated in the PTE. |
| 71 | */ |
| 72 | |
| 73 | mtspr(SPRN_ZPR, 0x10000000); |
| 74 | |
| 75 | flush_instruction_cache(); |
| 76 | |
| 77 | /* |
| 78 | * Set up the real-mode cache parameters for the exception vector |
| 79 | * handlers (which are run in real-mode). |
| 80 | */ |
| 81 | |
| 82 | mtspr(SPRN_DCWR, 0x00000000); /* All caching is write-back */ |
| 83 | |
| 84 | /* |
| 85 | * Cache instruction and data space where the exception |
| 86 | * vectors and the kernel live in real-mode. |
| 87 | */ |
| 88 | |
| 89 | mtspr(SPRN_DCCR, 0xF0000000); /* 512 MB of data space at 0x0. */ |
| 90 | mtspr(SPRN_ICCR, 0xF0000000); /* 512 MB of instr. space at 0x0. */ |
| 91 | } |
| 92 | |
| 93 | #define LARGE_PAGE_SIZE_16M (1<<24) |
| 94 | #define LARGE_PAGE_SIZE_4M (1<<22) |
| 95 | |
| 96 | unsigned long __init mmu_mapin_ram(void) |
| 97 | { |
| 98 | unsigned long v, s; |
| 99 | phys_addr_t p; |
| 100 | |
| 101 | v = KERNELBASE; |
| 102 | p = PPC_MEMSTART; |
| 103 | s = 0; |
| 104 | |
| 105 | if (__map_without_ltlbs) { |
| 106 | return s; |
| 107 | } |
| 108 | |
| 109 | while (s <= (total_lowmem - LARGE_PAGE_SIZE_16M)) { |
| 110 | pmd_t *pmdp; |
| 111 | unsigned long val = p | _PMD_SIZE_16M | _PAGE_HWEXEC | _PAGE_HWWRITE; |
| 112 | |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 113 | pmdp = pmd_offset(pgd_offset_k(v), v); |
| 114 | pmd_val(*pmdp++) = val; |
| 115 | pmd_val(*pmdp++) = val; |
| 116 | pmd_val(*pmdp++) = val; |
| 117 | pmd_val(*pmdp++) = val; |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 118 | |
| 119 | v += LARGE_PAGE_SIZE_16M; |
| 120 | p += LARGE_PAGE_SIZE_16M; |
| 121 | s += LARGE_PAGE_SIZE_16M; |
| 122 | } |
| 123 | |
| 124 | while (s <= (total_lowmem - LARGE_PAGE_SIZE_4M)) { |
| 125 | pmd_t *pmdp; |
| 126 | unsigned long val = p | _PMD_SIZE_4M | _PAGE_HWEXEC | _PAGE_HWWRITE; |
| 127 | |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 128 | pmdp = pmd_offset(pgd_offset_k(v), v); |
| 129 | pmd_val(*pmdp) = val; |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 130 | |
| 131 | v += LARGE_PAGE_SIZE_4M; |
| 132 | p += LARGE_PAGE_SIZE_4M; |
| 133 | s += LARGE_PAGE_SIZE_4M; |
| 134 | } |
| 135 | |
| 136 | return s; |
| 137 | } |