Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 1 | /* |
| 2 | * PowerPC version |
| 3 | * Copyright (C) 1995-1996 Gary Thomas (gdt@linuxppc.org) |
| 4 | * |
| 5 | * Rewritten by Cort Dougan (cort@cs.nmt.edu) for PReP |
| 6 | * Copyright (C) 1996 Cort Dougan <cort@cs.nmt.edu> |
| 7 | * Adapted for Power Macintosh by Paul Mackerras. |
| 8 | * Low-level exception handlers and MMU support |
| 9 | * rewritten by Paul Mackerras. |
| 10 | * Copyright (C) 1996 Paul Mackerras. |
| 11 | * MPC8xx modifications Copyright (C) 1997 Dan Malek (dmalek@jlc.net). |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 12 | * |
| 13 | * This file contains the low-level support and setup for the |
| 14 | * PowerPC platform, including trap and interrupt dispatch. |
| 15 | * (The PPC 8xx embedded CPUs use head_8xx.S instead.) |
| 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 | |
Tim Abbott | e703984 | 2009-04-25 22:11:05 -0400 | [diff] [blame] | 24 | #include <linux/init.h> |
Paul Mackerras | b3b8dc6 | 2005-10-10 22:20:10 +1000 | [diff] [blame] | 25 | #include <asm/reg.h> |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 26 | #include <asm/page.h> |
| 27 | #include <asm/mmu.h> |
| 28 | #include <asm/pgtable.h> |
| 29 | #include <asm/cputable.h> |
| 30 | #include <asm/cache.h> |
| 31 | #include <asm/thread_info.h> |
| 32 | #include <asm/ppc_asm.h> |
| 33 | #include <asm/asm-offsets.h> |
Benjamin Herrenschmidt | ec2b36b | 2008-04-17 14:34:59 +1000 | [diff] [blame] | 34 | #include <asm/ptrace.h> |
Benjamin Herrenschmidt | 5e69661 | 2008-12-18 19:13:24 +0000 | [diff] [blame] | 35 | #include <asm/bug.h> |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 36 | |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 37 | /* 601 only have IBAT; cr0.eq is set on 601 when using this macro */ |
| 38 | #define LOAD_BAT(n, reg, RA, RB) \ |
| 39 | /* see the comment for clear_bats() -- Cort */ \ |
| 40 | li RA,0; \ |
| 41 | mtspr SPRN_IBAT##n##U,RA; \ |
| 42 | mtspr SPRN_DBAT##n##U,RA; \ |
| 43 | lwz RA,(n*16)+0(reg); \ |
| 44 | lwz RB,(n*16)+4(reg); \ |
| 45 | mtspr SPRN_IBAT##n##U,RA; \ |
| 46 | mtspr SPRN_IBAT##n##L,RB; \ |
| 47 | beq 1f; \ |
| 48 | lwz RA,(n*16)+8(reg); \ |
| 49 | lwz RB,(n*16)+12(reg); \ |
| 50 | mtspr SPRN_DBAT##n##U,RA; \ |
| 51 | mtspr SPRN_DBAT##n##L,RB; \ |
| 52 | 1: |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 53 | |
Tim Abbott | e703984 | 2009-04-25 22:11:05 -0400 | [diff] [blame] | 54 | __HEAD |
Paul Mackerras | b3b8dc6 | 2005-10-10 22:20:10 +1000 | [diff] [blame] | 55 | .stabs "arch/powerpc/kernel/",N_SO,0,0,0f |
| 56 | .stabs "head_32.S",N_SO,0,0,0f |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 57 | 0: |
Kumar Gala | 748a768 | 2007-09-13 15:42:35 -0500 | [diff] [blame] | 58 | _ENTRY(_stext); |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 59 | |
| 60 | /* |
| 61 | * _start is defined this way because the XCOFF loader in the OpenFirmware |
| 62 | * on the powermac expects the entry point to be a procedure descriptor. |
| 63 | */ |
Kumar Gala | 748a768 | 2007-09-13 15:42:35 -0500 | [diff] [blame] | 64 | _ENTRY(_start); |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 65 | /* |
| 66 | * These are here for legacy reasons, the kernel used to |
| 67 | * need to look like a coff function entry for the pmac |
| 68 | * but we're always started by some kind of bootloader now. |
| 69 | * -- Cort |
| 70 | */ |
| 71 | nop /* used by __secondary_hold on prep (mtx) and chrp smp */ |
| 72 | nop /* used by __secondary_hold on prep (mtx) and chrp smp */ |
| 73 | nop |
| 74 | |
| 75 | /* PMAC |
| 76 | * Enter here with the kernel text, data and bss loaded starting at |
| 77 | * 0, running with virtual == physical mapping. |
| 78 | * r5 points to the prom entry point (the client interface handler |
| 79 | * address). Address translation is turned on, with the prom |
| 80 | * managing the hash table. Interrupts are disabled. The stack |
| 81 | * pointer (r1) points to just below the end of the half-meg region |
| 82 | * from 0x380000 - 0x400000, which is mapped in already. |
| 83 | * |
| 84 | * If we are booted from MacOS via BootX, we enter with the kernel |
| 85 | * image loaded somewhere, and the following values in registers: |
| 86 | * r3: 'BooX' (0x426f6f58) |
| 87 | * r4: virtual address of boot_infos_t |
| 88 | * r5: 0 |
| 89 | * |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 90 | * PREP |
| 91 | * This is jumped to on prep systems right after the kernel is relocated |
| 92 | * to its proper place in memory by the boot loader. The expected layout |
| 93 | * of the regs is: |
| 94 | * r3: ptr to residual data |
| 95 | * r4: initrd_start or if no initrd then 0 |
| 96 | * r5: initrd_end - unused if r4 is 0 |
| 97 | * r6: Start of command line string |
| 98 | * r7: End of command line string |
| 99 | * |
| 100 | * This just gets a minimal mmu environment setup so we can call |
| 101 | * start_here() to do the real work. |
| 102 | * -- Cort |
| 103 | */ |
| 104 | |
| 105 | .globl __start |
| 106 | __start: |
| 107 | /* |
| 108 | * We have to do any OF calls before we map ourselves to KERNELBASE, |
| 109 | * because OF may have I/O devices mapped into that area |
| 110 | * (particularly on CHRP). |
| 111 | */ |
Paul Mackerras | 9b6b563 | 2005-10-06 12:06:20 +1000 | [diff] [blame] | 112 | cmpwi 0,r5,0 |
| 113 | beq 1f |
Benjamin Herrenschmidt | 2bda347 | 2008-10-13 18:38:48 +0000 | [diff] [blame] | 114 | |
Benjamin Herrenschmidt | 28794d3 | 2009-03-10 17:53:27 +0000 | [diff] [blame] | 115 | #ifdef CONFIG_PPC_OF_BOOT_TRAMPOLINE |
Benjamin Herrenschmidt | 2bda347 | 2008-10-13 18:38:48 +0000 | [diff] [blame] | 116 | /* find out where we are now */ |
| 117 | bcl 20,31,$+4 |
| 118 | 0: mflr r8 /* r8 = runtime addr here */ |
| 119 | addis r8,r8,(_stext - 0b)@ha |
| 120 | addi r8,r8,(_stext - 0b)@l /* current runtime base addr */ |
Paul Mackerras | 9b6b563 | 2005-10-06 12:06:20 +1000 | [diff] [blame] | 121 | bl prom_init |
Benjamin Herrenschmidt | 28794d3 | 2009-03-10 17:53:27 +0000 | [diff] [blame] | 122 | #endif /* CONFIG_PPC_OF_BOOT_TRAMPOLINE */ |
| 123 | |
| 124 | /* We never return. We also hit that trap if trying to boot |
| 125 | * from OF while CONFIG_PPC_OF_BOOT_TRAMPOLINE isn't selected */ |
Paul Mackerras | 9b6b563 | 2005-10-06 12:06:20 +1000 | [diff] [blame] | 126 | trap |
| 127 | |
Benjamin Herrenschmidt | d7f3945 | 2005-11-23 17:58:13 +1100 | [diff] [blame] | 128 | /* |
| 129 | * Check for BootX signature when supporting PowerMac and branch to |
| 130 | * appropriate trampoline if it's present |
| 131 | */ |
| 132 | #ifdef CONFIG_PPC_PMAC |
| 133 | 1: lis r31,0x426f |
| 134 | ori r31,r31,0x6f58 |
| 135 | cmpw 0,r3,r31 |
| 136 | bne 1f |
| 137 | bl bootx_init |
| 138 | trap |
| 139 | #endif /* CONFIG_PPC_PMAC */ |
| 140 | |
Paul Mackerras | 9b6b563 | 2005-10-06 12:06:20 +1000 | [diff] [blame] | 141 | 1: mr r31,r3 /* save parameters */ |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 142 | mr r30,r4 |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 143 | li r24,0 /* cpu # */ |
| 144 | |
| 145 | /* |
| 146 | * early_init() does the early machine identification and does |
| 147 | * the necessary low-level setup and clears the BSS |
| 148 | * -- Cort <cort@fsmlabs.com> |
| 149 | */ |
| 150 | bl early_init |
| 151 | |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 152 | /* Switch MMU off, clear BATs and flush TLB. At this point, r3 contains |
| 153 | * the physical address we are running at, returned by early_init() |
| 154 | */ |
| 155 | bl mmu_off |
| 156 | __after_mmu_off: |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 157 | bl clear_bats |
| 158 | bl flush_tlbs |
| 159 | |
| 160 | bl initial_bats |
David Gibson | f21f49e | 2007-06-13 14:52:54 +1000 | [diff] [blame] | 161 | #if defined(CONFIG_BOOTX_TEXT) |
Benjamin Herrenschmidt | 51d3082 | 2005-11-23 17:57:25 +1100 | [diff] [blame] | 162 | bl setup_disp_bat |
| 163 | #endif |
Scott Wood | c374e00 | 2007-07-16 11:43:43 -0500 | [diff] [blame] | 164 | #ifdef CONFIG_PPC_EARLY_DEBUG_CPM |
| 165 | bl setup_cpm_bat |
| 166 | #endif |
Albert Herranz | d1d56f8 | 2009-12-12 06:31:51 +0000 | [diff] [blame] | 167 | #ifdef CONFIG_PPC_EARLY_DEBUG_USBGECKO |
| 168 | bl setup_usbgecko_bat |
| 169 | #endif |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 170 | |
| 171 | /* |
| 172 | * Call setup_cpu for CPU 0 and initialize 6xx Idle |
| 173 | */ |
| 174 | bl reloc_offset |
| 175 | li r24,0 /* cpu# */ |
| 176 | bl call_setup_cpu /* Call setup_cpu for this CPU */ |
| 177 | #ifdef CONFIG_6xx |
| 178 | bl reloc_offset |
| 179 | bl init_idle_6xx |
| 180 | #endif /* CONFIG_6xx */ |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 181 | |
| 182 | |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 183 | /* |
| 184 | * We need to run with _start at physical address 0. |
| 185 | * On CHRP, we are loaded at 0x10000 since OF on CHRP uses |
| 186 | * the exception vectors at 0 (and therefore this copy |
| 187 | * overwrites OF's exception vectors with our own). |
Paul Mackerras | 9b6b563 | 2005-10-06 12:06:20 +1000 | [diff] [blame] | 188 | * The MMU is off at this point. |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 189 | */ |
| 190 | bl reloc_offset |
| 191 | mr r26,r3 |
| 192 | addis r4,r3,KERNELBASE@h /* current address of _start */ |
Dale Farnsworth | ccdcef7 | 2008-12-17 10:09:13 +0000 | [diff] [blame] | 193 | lis r5,PHYSICAL_START@h |
| 194 | cmplw 0,r4,r5 /* already running at PHYSICAL_START? */ |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 195 | bne relocate_kernel |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 196 | /* |
| 197 | * we now have the 1st 16M of ram mapped with the bats. |
| 198 | * prep needs the mmu to be turned on here, but pmac already has it on. |
| 199 | * this shouldn't bother the pmac since it just gets turned on again |
| 200 | * as we jump to our code at KERNELBASE. -- Cort |
| 201 | * Actually no, pmac doesn't have it on any more. BootX enters with MMU |
| 202 | * off, and in other cases, we now turn it off before changing BATs above. |
| 203 | */ |
| 204 | turn_on_mmu: |
| 205 | mfmsr r0 |
| 206 | ori r0,r0,MSR_DR|MSR_IR |
| 207 | mtspr SPRN_SRR1,r0 |
| 208 | lis r0,start_here@h |
| 209 | ori r0,r0,start_here@l |
| 210 | mtspr SPRN_SRR0,r0 |
| 211 | SYNC |
| 212 | RFI /* enables MMU */ |
| 213 | |
| 214 | /* |
| 215 | * We need __secondary_hold as a place to hold the other cpus on |
| 216 | * an SMP machine, even when we are running a UP kernel. |
| 217 | */ |
| 218 | . = 0xc0 /* for prep bootloader */ |
| 219 | li r3,1 /* MTX only has 1 cpu */ |
| 220 | .globl __secondary_hold |
| 221 | __secondary_hold: |
| 222 | /* tell the master we're here */ |
Paul Mackerras | bbd0abd | 2005-10-26 21:45:56 +1000 | [diff] [blame] | 223 | stw r3,__secondary_hold_acknowledge@l(0) |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 224 | #ifdef CONFIG_SMP |
| 225 | 100: lwz r4,0(0) |
| 226 | /* wait until we're told to start */ |
| 227 | cmpw 0,r4,r3 |
| 228 | bne 100b |
| 229 | /* our cpu # was at addr 0 - go */ |
| 230 | mr r24,r3 /* cpu # */ |
| 231 | b __secondary_start |
| 232 | #else |
| 233 | b . |
| 234 | #endif /* CONFIG_SMP */ |
| 235 | |
Paul Mackerras | bbd0abd | 2005-10-26 21:45:56 +1000 | [diff] [blame] | 236 | .globl __secondary_hold_spinloop |
| 237 | __secondary_hold_spinloop: |
| 238 | .long 0 |
| 239 | .globl __secondary_hold_acknowledge |
| 240 | __secondary_hold_acknowledge: |
| 241 | .long -1 |
| 242 | |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 243 | /* |
| 244 | * Exception entry code. This code runs with address translation |
| 245 | * turned off, i.e. using physical addresses. |
| 246 | * We assume sprg3 has the physical address of the current |
| 247 | * task's thread_struct. |
| 248 | */ |
| 249 | #define EXCEPTION_PROLOG \ |
Benjamin Herrenschmidt | ee43eb7 | 2009-07-14 20:52:54 +0000 | [diff] [blame] | 250 | mtspr SPRN_SPRG_SCRATCH0,r10; \ |
| 251 | mtspr SPRN_SPRG_SCRATCH1,r11; \ |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 252 | mfcr r10; \ |
| 253 | EXCEPTION_PROLOG_1; \ |
| 254 | EXCEPTION_PROLOG_2 |
| 255 | |
| 256 | #define EXCEPTION_PROLOG_1 \ |
| 257 | mfspr r11,SPRN_SRR1; /* check whether user or kernel */ \ |
| 258 | andi. r11,r11,MSR_PR; \ |
| 259 | tophys(r11,r1); /* use tophys(r1) if kernel */ \ |
| 260 | beq 1f; \ |
Benjamin Herrenschmidt | ee43eb7 | 2009-07-14 20:52:54 +0000 | [diff] [blame] | 261 | mfspr r11,SPRN_SPRG_THREAD; \ |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 262 | lwz r11,THREAD_INFO-THREAD(r11); \ |
| 263 | addi r11,r11,THREAD_SIZE; \ |
| 264 | tophys(r11,r11); \ |
| 265 | 1: subi r11,r11,INT_FRAME_SIZE /* alloc exc. frame */ |
| 266 | |
| 267 | |
| 268 | #define EXCEPTION_PROLOG_2 \ |
| 269 | CLR_TOP32(r11); \ |
| 270 | stw r10,_CCR(r11); /* save registers */ \ |
| 271 | stw r12,GPR12(r11); \ |
| 272 | stw r9,GPR9(r11); \ |
Benjamin Herrenschmidt | ee43eb7 | 2009-07-14 20:52:54 +0000 | [diff] [blame] | 273 | mfspr r10,SPRN_SPRG_SCRATCH0; \ |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 274 | stw r10,GPR10(r11); \ |
Benjamin Herrenschmidt | ee43eb7 | 2009-07-14 20:52:54 +0000 | [diff] [blame] | 275 | mfspr r12,SPRN_SPRG_SCRATCH1; \ |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 276 | stw r12,GPR11(r11); \ |
| 277 | mflr r10; \ |
| 278 | stw r10,_LINK(r11); \ |
| 279 | mfspr r12,SPRN_SRR0; \ |
| 280 | mfspr r9,SPRN_SRR1; \ |
| 281 | stw r1,GPR1(r11); \ |
| 282 | stw r1,0(r11); \ |
| 283 | tovirt(r1,r11); /* set new kernel sp */ \ |
| 284 | li r10,MSR_KERNEL & ~(MSR_IR|MSR_DR); /* can take exceptions */ \ |
| 285 | MTMSRD(r10); /* (except for mach check in rtas) */ \ |
| 286 | stw r0,GPR0(r11); \ |
Benjamin Herrenschmidt | ec2b36b | 2008-04-17 14:34:59 +1000 | [diff] [blame] | 287 | lis r10,STACK_FRAME_REGS_MARKER@ha; /* exception frame marker */ \ |
| 288 | addi r10,r10,STACK_FRAME_REGS_MARKER@l; \ |
Paul Mackerras | f78541d | 2005-10-28 22:53:37 +1000 | [diff] [blame] | 289 | stw r10,8(r11); \ |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 290 | SAVE_4GPRS(3, r11); \ |
| 291 | SAVE_2GPRS(7, r11) |
| 292 | |
| 293 | /* |
| 294 | * Note: code which follows this uses cr0.eq (set if from kernel), |
| 295 | * r11, r12 (SRR0), and r9 (SRR1). |
| 296 | * |
| 297 | * Note2: once we have set r1 we are in a position to take exceptions |
| 298 | * again, and we could thus set MSR:RI at that point. |
| 299 | */ |
| 300 | |
| 301 | /* |
| 302 | * Exception vectors. |
| 303 | */ |
| 304 | #define EXCEPTION(n, label, hdlr, xfer) \ |
| 305 | . = n; \ |
| 306 | label: \ |
| 307 | EXCEPTION_PROLOG; \ |
| 308 | addi r3,r1,STACK_FRAME_OVERHEAD; \ |
| 309 | xfer(n, hdlr) |
| 310 | |
| 311 | #define EXC_XFER_TEMPLATE(n, hdlr, trap, copyee, tfer, ret) \ |
| 312 | li r10,trap; \ |
Paul Mackerras | d73e0c9 | 2005-10-28 22:45:25 +1000 | [diff] [blame] | 313 | stw r10,_TRAP(r11); \ |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 314 | li r10,MSR_KERNEL; \ |
| 315 | copyee(r10, r9); \ |
| 316 | bl tfer; \ |
| 317 | i##n: \ |
| 318 | .long hdlr; \ |
| 319 | .long ret |
| 320 | |
| 321 | #define COPY_EE(d, s) rlwimi d,s,0,16,16 |
| 322 | #define NOCOPY(d, s) |
| 323 | |
| 324 | #define EXC_XFER_STD(n, hdlr) \ |
| 325 | EXC_XFER_TEMPLATE(n, hdlr, n, NOCOPY, transfer_to_handler_full, \ |
| 326 | ret_from_except_full) |
| 327 | |
| 328 | #define EXC_XFER_LITE(n, hdlr) \ |
| 329 | EXC_XFER_TEMPLATE(n, hdlr, n+1, NOCOPY, transfer_to_handler, \ |
| 330 | ret_from_except) |
| 331 | |
| 332 | #define EXC_XFER_EE(n, hdlr) \ |
| 333 | EXC_XFER_TEMPLATE(n, hdlr, n, COPY_EE, transfer_to_handler_full, \ |
| 334 | ret_from_except_full) |
| 335 | |
| 336 | #define EXC_XFER_EE_LITE(n, hdlr) \ |
| 337 | EXC_XFER_TEMPLATE(n, hdlr, n+1, COPY_EE, transfer_to_handler, \ |
| 338 | ret_from_except) |
| 339 | |
| 340 | /* System reset */ |
| 341 | /* core99 pmac starts the seconary here by changing the vector, and |
Stephen Rothwell | dc1c1ca | 2005-10-01 18:43:42 +1000 | [diff] [blame] | 342 | putting it back to what it was (unknown_exception) when done. */ |
Stephen Rothwell | dc1c1ca | 2005-10-01 18:43:42 +1000 | [diff] [blame] | 343 | EXCEPTION(0x100, Reset, unknown_exception, EXC_XFER_STD) |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 344 | |
| 345 | /* Machine check */ |
| 346 | /* |
| 347 | * On CHRP, this is complicated by the fact that we could get a |
| 348 | * machine check inside RTAS, and we have no guarantee that certain |
| 349 | * critical registers will have the values we expect. The set of |
| 350 | * registers that might have bad values includes all the GPRs |
| 351 | * and all the BATs. We indicate that we are in RTAS by putting |
| 352 | * a non-zero value, the address of the exception frame to use, |
| 353 | * in SPRG2. The machine check handler checks SPRG2 and uses its |
| 354 | * value if it is non-zero. If we ever needed to free up SPRG2, |
| 355 | * we could use a field in the thread_info or thread_struct instead. |
| 356 | * (Other exception handlers assume that r1 is a valid kernel stack |
| 357 | * pointer when we take an exception from supervisor mode.) |
| 358 | * -- paulus. |
| 359 | */ |
| 360 | . = 0x200 |
Benjamin Herrenschmidt | ee43eb7 | 2009-07-14 20:52:54 +0000 | [diff] [blame] | 361 | mtspr SPRN_SPRG_SCRATCH0,r10 |
| 362 | mtspr SPRN_SPRG_SCRATCH1,r11 |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 363 | mfcr r10 |
| 364 | #ifdef CONFIG_PPC_CHRP |
Benjamin Herrenschmidt | ee43eb7 | 2009-07-14 20:52:54 +0000 | [diff] [blame] | 365 | mfspr r11,SPRN_SPRG_RTAS |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 366 | cmpwi 0,r11,0 |
| 367 | bne 7f |
| 368 | #endif /* CONFIG_PPC_CHRP */ |
| 369 | EXCEPTION_PROLOG_1 |
| 370 | 7: EXCEPTION_PROLOG_2 |
| 371 | addi r3,r1,STACK_FRAME_OVERHEAD |
| 372 | #ifdef CONFIG_PPC_CHRP |
Benjamin Herrenschmidt | ee43eb7 | 2009-07-14 20:52:54 +0000 | [diff] [blame] | 373 | mfspr r4,SPRN_SPRG_RTAS |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 374 | cmpwi cr1,r4,0 |
| 375 | bne cr1,1f |
| 376 | #endif |
Stephen Rothwell | dc1c1ca | 2005-10-01 18:43:42 +1000 | [diff] [blame] | 377 | EXC_XFER_STD(0x200, machine_check_exception) |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 378 | #ifdef CONFIG_PPC_CHRP |
| 379 | 1: b machine_check_in_rtas |
| 380 | #endif |
| 381 | |
| 382 | /* Data access exception. */ |
| 383 | . = 0x300 |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 384 | DataAccess: |
| 385 | EXCEPTION_PROLOG |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 386 | mfspr r10,SPRN_DSISR |
Becky Bruce | 4ee7084 | 2008-09-24 11:01:24 -0500 | [diff] [blame] | 387 | stw r10,_DSISR(r11) |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 388 | andis. r0,r10,0xa470 /* weird error? */ |
| 389 | bne 1f /* if not, try to put a PTE */ |
| 390 | mfspr r4,SPRN_DAR /* into the hash table */ |
| 391 | rlwinm r3,r10,32-15,21,21 /* DSISR_STORE -> _PAGE_RW */ |
| 392 | bl hash_page |
Becky Bruce | 4ee7084 | 2008-09-24 11:01:24 -0500 | [diff] [blame] | 393 | 1: lwz r5,_DSISR(r11) /* get DSISR value */ |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 394 | mfspr r4,SPRN_DAR |
| 395 | EXC_XFER_EE_LITE(0x300, handle_page_fault) |
| 396 | |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 397 | |
| 398 | /* Instruction access exception. */ |
| 399 | . = 0x400 |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 400 | InstructionAccess: |
| 401 | EXCEPTION_PROLOG |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 402 | andis. r0,r9,0x4000 /* no pte found? */ |
| 403 | beq 1f /* if so, try to put a PTE */ |
| 404 | li r3,0 /* into the hash table */ |
| 405 | mr r4,r12 /* SRR0 is fault address */ |
| 406 | bl hash_page |
| 407 | 1: mr r4,r12 |
| 408 | mr r5,r9 |
| 409 | EXC_XFER_EE_LITE(0x400, handle_page_fault) |
| 410 | |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 411 | /* External interrupt */ |
| 412 | EXCEPTION(0x500, HardwareInterrupt, do_IRQ, EXC_XFER_LITE) |
| 413 | |
| 414 | /* Alignment exception */ |
| 415 | . = 0x600 |
| 416 | Alignment: |
| 417 | EXCEPTION_PROLOG |
| 418 | mfspr r4,SPRN_DAR |
| 419 | stw r4,_DAR(r11) |
| 420 | mfspr r5,SPRN_DSISR |
| 421 | stw r5,_DSISR(r11) |
| 422 | addi r3,r1,STACK_FRAME_OVERHEAD |
Stephen Rothwell | dc1c1ca | 2005-10-01 18:43:42 +1000 | [diff] [blame] | 423 | EXC_XFER_EE(0x600, alignment_exception) |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 424 | |
| 425 | /* Program check exception */ |
Stephen Rothwell | dc1c1ca | 2005-10-01 18:43:42 +1000 | [diff] [blame] | 426 | EXCEPTION(0x700, ProgramCheck, program_check_exception, EXC_XFER_STD) |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 427 | |
| 428 | /* Floating-point unavailable */ |
| 429 | . = 0x800 |
| 430 | FPUnavailable: |
Kim Phillips | aa42c69 | 2006-12-08 02:43:30 -0600 | [diff] [blame] | 431 | BEGIN_FTR_SECTION |
| 432 | /* |
| 433 | * Certain Freescale cores don't have a FPU and treat fp instructions |
| 434 | * as a FP Unavailable exception. Redirect to illegal/emulation handling. |
| 435 | */ |
| 436 | b ProgramCheck |
| 437 | END_FTR_SECTION_IFSET(CPU_FTR_FPU_UNAVAILABLE) |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 438 | EXCEPTION_PROLOG |
Michael Neuling | 6f3d8e6 | 2008-06-25 14:07:18 +1000 | [diff] [blame] | 439 | beq 1f |
| 440 | bl load_up_fpu /* if from user, just load it up */ |
| 441 | b fast_exception_return |
| 442 | 1: addi r3,r1,STACK_FRAME_OVERHEAD |
Paul Mackerras | 8dad3f9 | 2005-10-06 13:27:05 +1000 | [diff] [blame] | 443 | EXC_XFER_EE_LITE(0x800, kernel_fp_unavailable_exception) |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 444 | |
| 445 | /* Decrementer */ |
| 446 | EXCEPTION(0x900, Decrementer, timer_interrupt, EXC_XFER_LITE) |
| 447 | |
Stephen Rothwell | dc1c1ca | 2005-10-01 18:43:42 +1000 | [diff] [blame] | 448 | EXCEPTION(0xa00, Trap_0a, unknown_exception, EXC_XFER_EE) |
| 449 | EXCEPTION(0xb00, Trap_0b, unknown_exception, EXC_XFER_EE) |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 450 | |
| 451 | /* System call */ |
| 452 | . = 0xc00 |
| 453 | SystemCall: |
| 454 | EXCEPTION_PROLOG |
| 455 | EXC_XFER_EE_LITE(0xc00, DoSyscall) |
| 456 | |
| 457 | /* Single step - not used on 601 */ |
Stephen Rothwell | dc1c1ca | 2005-10-01 18:43:42 +1000 | [diff] [blame] | 458 | EXCEPTION(0xd00, SingleStep, single_step_exception, EXC_XFER_STD) |
| 459 | EXCEPTION(0xe00, Trap_0e, unknown_exception, EXC_XFER_EE) |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 460 | |
| 461 | /* |
| 462 | * The Altivec unavailable trap is at 0x0f20. Foo. |
| 463 | * We effectively remap it to 0x3000. |
| 464 | * We include an altivec unavailable exception vector even if |
| 465 | * not configured for Altivec, so that you can't panic a |
| 466 | * non-altivec kernel running on a machine with altivec just |
| 467 | * by executing an altivec instruction. |
| 468 | */ |
| 469 | . = 0xf00 |
Andy Fleming | 555d97a | 2005-12-15 20:02:04 -0600 | [diff] [blame] | 470 | b PerformanceMonitor |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 471 | |
| 472 | . = 0xf20 |
| 473 | b AltiVecUnavailable |
| 474 | |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 475 | /* |
| 476 | * Handle TLB miss for instruction on 603/603e. |
| 477 | * Note: we get an alternate set of r0 - r3 to use automatically. |
| 478 | */ |
| 479 | . = 0x1000 |
| 480 | InstructionTLBMiss: |
| 481 | /* |
Kumar Gala | 00fcb147 | 2009-03-19 03:55:39 +0000 | [diff] [blame] | 482 | * r0: scratch |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 483 | * r1: linux style pte ( later becomes ppc hardware pte ) |
| 484 | * r2: ptr to linux-style pte |
| 485 | * r3: scratch |
| 486 | */ |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 487 | /* Get PTE (linux-style) and check access */ |
| 488 | mfspr r3,SPRN_IMISS |
Kumar Gala | 8a13c4f | 2007-10-11 13:36:52 -0500 | [diff] [blame] | 489 | lis r1,PAGE_OFFSET@h /* check if kernel address */ |
| 490 | cmplw 0,r1,r3 |
Benjamin Herrenschmidt | ee43eb7 | 2009-07-14 20:52:54 +0000 | [diff] [blame] | 491 | mfspr r2,SPRN_SPRG_THREAD |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 492 | li r1,_PAGE_USER|_PAGE_PRESENT /* low addresses tested as user */ |
| 493 | lwz r2,PGDIR(r2) |
Kumar Gala | 8a13c4f | 2007-10-11 13:36:52 -0500 | [diff] [blame] | 494 | bge- 112f |
Scott Wood | bde6c6e | 2007-09-06 08:04:38 +1000 | [diff] [blame] | 495 | mfspr r2,SPRN_SRR1 /* and MSR_PR bit from SRR1 */ |
| 496 | rlwimi r1,r2,32-12,29,29 /* shift MSR_PR to _PAGE_USER posn */ |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 497 | lis r2,swapper_pg_dir@ha /* if kernel address, use */ |
| 498 | addi r2,r2,swapper_pg_dir@l /* kernel page table */ |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 499 | 112: tophys(r2,r2) |
| 500 | rlwimi r2,r3,12,20,29 /* insert top 10 bits of address */ |
| 501 | lwz r2,0(r2) /* get pmd entry */ |
| 502 | rlwinm. r2,r2,0,0,19 /* extract address of pte page */ |
| 503 | beq- InstructionAddressInvalid /* return if no mapping */ |
| 504 | rlwimi r2,r3,22,20,29 /* insert next 10 bits of address */ |
Kumar Gala | eb3436a | 2009-03-19 03:55:40 +0000 | [diff] [blame] | 505 | lwz r0,0(r2) /* get linux-style pte */ |
| 506 | andc. r1,r1,r0 /* check access & ~permission */ |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 507 | bne- InstructionAddressInvalid /* return if access not permitted */ |
Kumar Gala | eb3436a | 2009-03-19 03:55:40 +0000 | [diff] [blame] | 508 | ori r0,r0,_PAGE_ACCESSED /* set _PAGE_ACCESSED in pte */ |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 509 | /* |
| 510 | * NOTE! We are assuming this is not an SMP system, otherwise |
| 511 | * we would need to update the pte atomically with lwarx/stwcx. |
| 512 | */ |
Kumar Gala | eb3436a | 2009-03-19 03:55:40 +0000 | [diff] [blame] | 513 | stw r0,0(r2) /* update PTE (accessed bit) */ |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 514 | /* Convert linux-style PTE to low word of PPC-style PTE */ |
Kumar Gala | eb3436a | 2009-03-19 03:55:40 +0000 | [diff] [blame] | 515 | rlwinm r1,r0,32-10,31,31 /* _PAGE_RW -> PP lsb */ |
| 516 | rlwinm r2,r0,32-7,31,31 /* _PAGE_DIRTY -> PP lsb */ |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 517 | and r1,r1,r2 /* writable if _RW and _DIRTY */ |
Kumar Gala | eb3436a | 2009-03-19 03:55:40 +0000 | [diff] [blame] | 518 | rlwimi r0,r0,32-1,30,30 /* _PAGE_USER -> PP msb */ |
| 519 | rlwimi r0,r0,32-1,31,31 /* _PAGE_USER -> PP lsb */ |
Kumar Gala | a4bd6a9 | 2009-03-17 09:17:50 -0600 | [diff] [blame] | 520 | ori r1,r1,0xe04 /* clear out reserved bits */ |
Kumar Gala | eb3436a | 2009-03-19 03:55:40 +0000 | [diff] [blame] | 521 | andc r1,r0,r1 /* PP = user? (rw&dirty? 2: 3): 0 */ |
Kumar Gala | 345953c | 2009-03-14 09:23:03 -0500 | [diff] [blame] | 522 | BEGIN_FTR_SECTION |
| 523 | rlwinm r1,r1,0,~_PAGE_COHERENT /* clear M (coherence not required) */ |
| 524 | END_FTR_SECTION_IFCLR(CPU_FTR_NEED_COHERENT) |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 525 | mtspr SPRN_RPA,r1 |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 526 | tlbli r3 |
| 527 | mfspr r3,SPRN_SRR1 /* Need to restore CR0 */ |
| 528 | mtcrf 0x80,r3 |
| 529 | rfi |
| 530 | InstructionAddressInvalid: |
| 531 | mfspr r3,SPRN_SRR1 |
| 532 | rlwinm r1,r3,9,6,6 /* Get load/store bit */ |
| 533 | |
| 534 | addis r1,r1,0x2000 |
| 535 | mtspr SPRN_DSISR,r1 /* (shouldn't be needed) */ |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 536 | andi. r2,r3,0xFFFF /* Clear upper bits of SRR1 */ |
| 537 | or r2,r2,r1 |
| 538 | mtspr SPRN_SRR1,r2 |
| 539 | mfspr r1,SPRN_IMISS /* Get failing address */ |
| 540 | rlwinm. r2,r2,0,31,31 /* Check for little endian access */ |
| 541 | rlwimi r2,r2,1,30,30 /* change 1 -> 3 */ |
| 542 | xor r1,r1,r2 |
| 543 | mtspr SPRN_DAR,r1 /* Set fault address */ |
| 544 | mfmsr r0 /* Restore "normal" registers */ |
| 545 | xoris r0,r0,MSR_TGPR>>16 |
| 546 | mtcrf 0x80,r3 /* Restore CR0 */ |
| 547 | mtmsr r0 |
| 548 | b InstructionAccess |
| 549 | |
| 550 | /* |
| 551 | * Handle TLB miss for DATA Load operation on 603/603e |
| 552 | */ |
| 553 | . = 0x1100 |
| 554 | DataLoadTLBMiss: |
| 555 | /* |
Kumar Gala | 00fcb147 | 2009-03-19 03:55:39 +0000 | [diff] [blame] | 556 | * r0: scratch |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 557 | * r1: linux style pte ( later becomes ppc hardware pte ) |
| 558 | * r2: ptr to linux-style pte |
| 559 | * r3: scratch |
| 560 | */ |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 561 | /* Get PTE (linux-style) and check access */ |
| 562 | mfspr r3,SPRN_DMISS |
Kumar Gala | 8a13c4f | 2007-10-11 13:36:52 -0500 | [diff] [blame] | 563 | lis r1,PAGE_OFFSET@h /* check if kernel address */ |
| 564 | cmplw 0,r1,r3 |
Benjamin Herrenschmidt | ee43eb7 | 2009-07-14 20:52:54 +0000 | [diff] [blame] | 565 | mfspr r2,SPRN_SPRG_THREAD |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 566 | li r1,_PAGE_USER|_PAGE_PRESENT /* low addresses tested as user */ |
| 567 | lwz r2,PGDIR(r2) |
Kumar Gala | 8a13c4f | 2007-10-11 13:36:52 -0500 | [diff] [blame] | 568 | bge- 112f |
Scott Wood | bde6c6e | 2007-09-06 08:04:38 +1000 | [diff] [blame] | 569 | mfspr r2,SPRN_SRR1 /* and MSR_PR bit from SRR1 */ |
| 570 | rlwimi r1,r2,32-12,29,29 /* shift MSR_PR to _PAGE_USER posn */ |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 571 | lis r2,swapper_pg_dir@ha /* if kernel address, use */ |
| 572 | addi r2,r2,swapper_pg_dir@l /* kernel page table */ |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 573 | 112: tophys(r2,r2) |
| 574 | rlwimi r2,r3,12,20,29 /* insert top 10 bits of address */ |
| 575 | lwz r2,0(r2) /* get pmd entry */ |
| 576 | rlwinm. r2,r2,0,0,19 /* extract address of pte page */ |
| 577 | beq- DataAddressInvalid /* return if no mapping */ |
| 578 | rlwimi r2,r3,22,20,29 /* insert next 10 bits of address */ |
Kumar Gala | eb3436a | 2009-03-19 03:55:40 +0000 | [diff] [blame] | 579 | lwz r0,0(r2) /* get linux-style pte */ |
| 580 | andc. r1,r1,r0 /* check access & ~permission */ |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 581 | bne- DataAddressInvalid /* return if access not permitted */ |
Kumar Gala | eb3436a | 2009-03-19 03:55:40 +0000 | [diff] [blame] | 582 | ori r0,r0,_PAGE_ACCESSED /* set _PAGE_ACCESSED in pte */ |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 583 | /* |
| 584 | * NOTE! We are assuming this is not an SMP system, otherwise |
| 585 | * we would need to update the pte atomically with lwarx/stwcx. |
| 586 | */ |
Kumar Gala | eb3436a | 2009-03-19 03:55:40 +0000 | [diff] [blame] | 587 | stw r0,0(r2) /* update PTE (accessed bit) */ |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 588 | /* Convert linux-style PTE to low word of PPC-style PTE */ |
Kumar Gala | eb3436a | 2009-03-19 03:55:40 +0000 | [diff] [blame] | 589 | rlwinm r1,r0,32-10,31,31 /* _PAGE_RW -> PP lsb */ |
| 590 | rlwinm r2,r0,32-7,31,31 /* _PAGE_DIRTY -> PP lsb */ |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 591 | and r1,r1,r2 /* writable if _RW and _DIRTY */ |
Kumar Gala | eb3436a | 2009-03-19 03:55:40 +0000 | [diff] [blame] | 592 | rlwimi r0,r0,32-1,30,30 /* _PAGE_USER -> PP msb */ |
| 593 | rlwimi r0,r0,32-1,31,31 /* _PAGE_USER -> PP lsb */ |
Kumar Gala | a4bd6a9 | 2009-03-17 09:17:50 -0600 | [diff] [blame] | 594 | ori r1,r1,0xe04 /* clear out reserved bits */ |
Kumar Gala | eb3436a | 2009-03-19 03:55:40 +0000 | [diff] [blame] | 595 | andc r1,r0,r1 /* PP = user? (rw&dirty? 2: 3): 0 */ |
Kumar Gala | 345953c | 2009-03-14 09:23:03 -0500 | [diff] [blame] | 596 | BEGIN_FTR_SECTION |
| 597 | rlwinm r1,r1,0,~_PAGE_COHERENT /* clear M (coherence not required) */ |
| 598 | END_FTR_SECTION_IFCLR(CPU_FTR_NEED_COHERENT) |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 599 | mtspr SPRN_RPA,r1 |
Kumar Gala | 2319f12 | 2009-03-19 03:55:41 +0000 | [diff] [blame] | 600 | mfspr r2,SPRN_SRR1 /* Need to restore CR0 */ |
| 601 | mtcrf 0x80,r2 |
| 602 | BEGIN_MMU_FTR_SECTION |
| 603 | li r0,1 |
Benjamin Herrenschmidt | ee43eb7 | 2009-07-14 20:52:54 +0000 | [diff] [blame] | 604 | mfspr r1,SPRN_SPRG_603_LRU |
Kumar Gala | 2319f12 | 2009-03-19 03:55:41 +0000 | [diff] [blame] | 605 | rlwinm r2,r3,20,27,31 /* Get Address bits 15:19 */ |
| 606 | slw r0,r0,r2 |
| 607 | xor r1,r0,r1 |
| 608 | srw r0,r1,r2 |
Benjamin Herrenschmidt | ee43eb7 | 2009-07-14 20:52:54 +0000 | [diff] [blame] | 609 | mtspr SPRN_SPRG_603_LRU,r1 |
Kumar Gala | 2319f12 | 2009-03-19 03:55:41 +0000 | [diff] [blame] | 610 | mfspr r2,SPRN_SRR1 |
| 611 | rlwimi r2,r0,31-14,14,14 |
| 612 | mtspr SPRN_SRR1,r2 |
| 613 | END_MMU_FTR_SECTION_IFSET(MMU_FTR_NEED_DTLB_SW_LRU) |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 614 | tlbld r3 |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 615 | rfi |
| 616 | DataAddressInvalid: |
| 617 | mfspr r3,SPRN_SRR1 |
| 618 | rlwinm r1,r3,9,6,6 /* Get load/store bit */ |
| 619 | addis r1,r1,0x2000 |
| 620 | mtspr SPRN_DSISR,r1 |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 621 | andi. r2,r3,0xFFFF /* Clear upper bits of SRR1 */ |
| 622 | mtspr SPRN_SRR1,r2 |
| 623 | mfspr r1,SPRN_DMISS /* Get failing address */ |
| 624 | rlwinm. r2,r2,0,31,31 /* Check for little endian access */ |
| 625 | beq 20f /* Jump if big endian */ |
| 626 | xori r1,r1,3 |
| 627 | 20: mtspr SPRN_DAR,r1 /* Set fault address */ |
| 628 | mfmsr r0 /* Restore "normal" registers */ |
| 629 | xoris r0,r0,MSR_TGPR>>16 |
| 630 | mtcrf 0x80,r3 /* Restore CR0 */ |
| 631 | mtmsr r0 |
| 632 | b DataAccess |
| 633 | |
| 634 | /* |
| 635 | * Handle TLB miss for DATA Store on 603/603e |
| 636 | */ |
| 637 | . = 0x1200 |
| 638 | DataStoreTLBMiss: |
| 639 | /* |
Kumar Gala | 00fcb147 | 2009-03-19 03:55:39 +0000 | [diff] [blame] | 640 | * r0: scratch |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 641 | * r1: linux style pte ( later becomes ppc hardware pte ) |
| 642 | * r2: ptr to linux-style pte |
| 643 | * r3: scratch |
| 644 | */ |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 645 | /* Get PTE (linux-style) and check access */ |
| 646 | mfspr r3,SPRN_DMISS |
Kumar Gala | 8a13c4f | 2007-10-11 13:36:52 -0500 | [diff] [blame] | 647 | lis r1,PAGE_OFFSET@h /* check if kernel address */ |
| 648 | cmplw 0,r1,r3 |
Benjamin Herrenschmidt | ee43eb7 | 2009-07-14 20:52:54 +0000 | [diff] [blame] | 649 | mfspr r2,SPRN_SPRG_THREAD |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 650 | li r1,_PAGE_RW|_PAGE_USER|_PAGE_PRESENT /* access flags */ |
| 651 | lwz r2,PGDIR(r2) |
Kumar Gala | 8a13c4f | 2007-10-11 13:36:52 -0500 | [diff] [blame] | 652 | bge- 112f |
Scott Wood | bde6c6e | 2007-09-06 08:04:38 +1000 | [diff] [blame] | 653 | mfspr r2,SPRN_SRR1 /* and MSR_PR bit from SRR1 */ |
| 654 | rlwimi r1,r2,32-12,29,29 /* shift MSR_PR to _PAGE_USER posn */ |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 655 | lis r2,swapper_pg_dir@ha /* if kernel address, use */ |
| 656 | addi r2,r2,swapper_pg_dir@l /* kernel page table */ |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 657 | 112: tophys(r2,r2) |
| 658 | rlwimi r2,r3,12,20,29 /* insert top 10 bits of address */ |
| 659 | lwz r2,0(r2) /* get pmd entry */ |
| 660 | rlwinm. r2,r2,0,0,19 /* extract address of pte page */ |
| 661 | beq- DataAddressInvalid /* return if no mapping */ |
| 662 | rlwimi r2,r3,22,20,29 /* insert next 10 bits of address */ |
Kumar Gala | eb3436a | 2009-03-19 03:55:40 +0000 | [diff] [blame] | 663 | lwz r0,0(r2) /* get linux-style pte */ |
| 664 | andc. r1,r1,r0 /* check access & ~permission */ |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 665 | bne- DataAddressInvalid /* return if access not permitted */ |
Kumar Gala | eb3436a | 2009-03-19 03:55:40 +0000 | [diff] [blame] | 666 | ori r0,r0,_PAGE_ACCESSED|_PAGE_DIRTY |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 667 | /* |
| 668 | * NOTE! We are assuming this is not an SMP system, otherwise |
| 669 | * we would need to update the pte atomically with lwarx/stwcx. |
| 670 | */ |
Kumar Gala | eb3436a | 2009-03-19 03:55:40 +0000 | [diff] [blame] | 671 | stw r0,0(r2) /* update PTE (accessed/dirty bits) */ |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 672 | /* Convert linux-style PTE to low word of PPC-style PTE */ |
Kumar Gala | eb3436a | 2009-03-19 03:55:40 +0000 | [diff] [blame] | 673 | rlwimi r0,r0,32-1,30,30 /* _PAGE_USER -> PP msb */ |
Kumar Gala | a4bd6a9 | 2009-03-17 09:17:50 -0600 | [diff] [blame] | 674 | li r1,0xe05 /* clear out reserved bits & PP lsb */ |
Kumar Gala | eb3436a | 2009-03-19 03:55:40 +0000 | [diff] [blame] | 675 | andc r1,r0,r1 /* PP = user? 2: 0 */ |
Kumar Gala | 345953c | 2009-03-14 09:23:03 -0500 | [diff] [blame] | 676 | BEGIN_FTR_SECTION |
| 677 | rlwinm r1,r1,0,~_PAGE_COHERENT /* clear M (coherence not required) */ |
| 678 | END_FTR_SECTION_IFCLR(CPU_FTR_NEED_COHERENT) |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 679 | mtspr SPRN_RPA,r1 |
Kumar Gala | 2319f12 | 2009-03-19 03:55:41 +0000 | [diff] [blame] | 680 | mfspr r2,SPRN_SRR1 /* Need to restore CR0 */ |
| 681 | mtcrf 0x80,r2 |
| 682 | BEGIN_MMU_FTR_SECTION |
| 683 | li r0,1 |
Benjamin Herrenschmidt | ee43eb7 | 2009-07-14 20:52:54 +0000 | [diff] [blame] | 684 | mfspr r1,SPRN_SPRG_603_LRU |
Kumar Gala | 2319f12 | 2009-03-19 03:55:41 +0000 | [diff] [blame] | 685 | rlwinm r2,r3,20,27,31 /* Get Address bits 15:19 */ |
| 686 | slw r0,r0,r2 |
| 687 | xor r1,r0,r1 |
| 688 | srw r0,r1,r2 |
Benjamin Herrenschmidt | ee43eb7 | 2009-07-14 20:52:54 +0000 | [diff] [blame] | 689 | mtspr SPRN_SPRG_603_LRU,r1 |
Kumar Gala | 2319f12 | 2009-03-19 03:55:41 +0000 | [diff] [blame] | 690 | mfspr r2,SPRN_SRR1 |
| 691 | rlwimi r2,r0,31-14,14,14 |
| 692 | mtspr SPRN_SRR1,r2 |
| 693 | END_MMU_FTR_SECTION_IFSET(MMU_FTR_NEED_DTLB_SW_LRU) |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 694 | tlbld r3 |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 695 | rfi |
| 696 | |
| 697 | #ifndef CONFIG_ALTIVEC |
Stephen Rothwell | dc1c1ca | 2005-10-01 18:43:42 +1000 | [diff] [blame] | 698 | #define altivec_assist_exception unknown_exception |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 699 | #endif |
| 700 | |
Stephen Rothwell | dc1c1ca | 2005-10-01 18:43:42 +1000 | [diff] [blame] | 701 | EXCEPTION(0x1300, Trap_13, instruction_breakpoint_exception, EXC_XFER_EE) |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 702 | EXCEPTION(0x1400, SMI, SMIException, EXC_XFER_EE) |
Stephen Rothwell | dc1c1ca | 2005-10-01 18:43:42 +1000 | [diff] [blame] | 703 | EXCEPTION(0x1500, Trap_15, unknown_exception, EXC_XFER_EE) |
Stephen Rothwell | dc1c1ca | 2005-10-01 18:43:42 +1000 | [diff] [blame] | 704 | EXCEPTION(0x1600, Trap_16, altivec_assist_exception, EXC_XFER_EE) |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 705 | EXCEPTION(0x1700, Trap_17, TAUException, EXC_XFER_STD) |
Stephen Rothwell | dc1c1ca | 2005-10-01 18:43:42 +1000 | [diff] [blame] | 706 | EXCEPTION(0x1800, Trap_18, unknown_exception, EXC_XFER_EE) |
Stephen Rothwell | dc1c1ca | 2005-10-01 18:43:42 +1000 | [diff] [blame] | 707 | EXCEPTION(0x1900, Trap_19, unknown_exception, EXC_XFER_EE) |
| 708 | EXCEPTION(0x1a00, Trap_1a, unknown_exception, EXC_XFER_EE) |
| 709 | EXCEPTION(0x1b00, Trap_1b, unknown_exception, EXC_XFER_EE) |
| 710 | EXCEPTION(0x1c00, Trap_1c, unknown_exception, EXC_XFER_EE) |
| 711 | EXCEPTION(0x1d00, Trap_1d, unknown_exception, EXC_XFER_EE) |
| 712 | EXCEPTION(0x1e00, Trap_1e, unknown_exception, EXC_XFER_EE) |
| 713 | EXCEPTION(0x1f00, Trap_1f, unknown_exception, EXC_XFER_EE) |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 714 | EXCEPTION(0x2000, RunMode, RunModeException, EXC_XFER_EE) |
Stephen Rothwell | dc1c1ca | 2005-10-01 18:43:42 +1000 | [diff] [blame] | 715 | EXCEPTION(0x2100, Trap_21, unknown_exception, EXC_XFER_EE) |
| 716 | EXCEPTION(0x2200, Trap_22, unknown_exception, EXC_XFER_EE) |
| 717 | EXCEPTION(0x2300, Trap_23, unknown_exception, EXC_XFER_EE) |
| 718 | EXCEPTION(0x2400, Trap_24, unknown_exception, EXC_XFER_EE) |
| 719 | EXCEPTION(0x2500, Trap_25, unknown_exception, EXC_XFER_EE) |
| 720 | EXCEPTION(0x2600, Trap_26, unknown_exception, EXC_XFER_EE) |
| 721 | EXCEPTION(0x2700, Trap_27, unknown_exception, EXC_XFER_EE) |
| 722 | EXCEPTION(0x2800, Trap_28, unknown_exception, EXC_XFER_EE) |
| 723 | EXCEPTION(0x2900, Trap_29, unknown_exception, EXC_XFER_EE) |
| 724 | EXCEPTION(0x2a00, Trap_2a, unknown_exception, EXC_XFER_EE) |
| 725 | EXCEPTION(0x2b00, Trap_2b, unknown_exception, EXC_XFER_EE) |
| 726 | EXCEPTION(0x2c00, Trap_2c, unknown_exception, EXC_XFER_EE) |
| 727 | EXCEPTION(0x2d00, Trap_2d, unknown_exception, EXC_XFER_EE) |
| 728 | EXCEPTION(0x2e00, Trap_2e, unknown_exception, EXC_XFER_EE) |
| 729 | EXCEPTION(0x2f00, MOLTrampoline, unknown_exception, EXC_XFER_EE_LITE) |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 730 | |
| 731 | .globl mol_trampoline |
| 732 | .set mol_trampoline, i0x2f00 |
| 733 | |
| 734 | . = 0x3000 |
| 735 | |
| 736 | AltiVecUnavailable: |
| 737 | EXCEPTION_PROLOG |
| 738 | #ifdef CONFIG_ALTIVEC |
Benjamin Herrenschmidt | 37f9ef5 | 2009-06-12 16:46:47 +1000 | [diff] [blame] | 739 | beq 1f |
| 740 | bl load_up_altivec /* if from user, just load it up */ |
| 741 | b fast_exception_return |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 742 | #endif /* CONFIG_ALTIVEC */ |
Benjamin Herrenschmidt | 37f9ef5 | 2009-06-12 16:46:47 +1000 | [diff] [blame] | 743 | 1: addi r3,r1,STACK_FRAME_OVERHEAD |
Stephen Rothwell | dc1c1ca | 2005-10-01 18:43:42 +1000 | [diff] [blame] | 744 | EXC_XFER_EE_LITE(0xf20, altivec_unavailable_exception) |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 745 | |
Andy Fleming | 555d97a | 2005-12-15 20:02:04 -0600 | [diff] [blame] | 746 | PerformanceMonitor: |
| 747 | EXCEPTION_PROLOG |
| 748 | addi r3,r1,STACK_FRAME_OVERHEAD |
| 749 | EXC_XFER_STD(0xf00, performance_monitor_exception) |
| 750 | |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 751 | |
| 752 | /* |
| 753 | * This code is jumped to from the startup code to copy |
Dale Farnsworth | ccdcef7 | 2008-12-17 10:09:13 +0000 | [diff] [blame] | 754 | * the kernel image to physical address PHYSICAL_START. |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 755 | */ |
| 756 | relocate_kernel: |
| 757 | addis r9,r26,klimit@ha /* fetch klimit */ |
| 758 | lwz r25,klimit@l(r9) |
| 759 | addis r25,r25,-KERNELBASE@h |
Dale Farnsworth | ccdcef7 | 2008-12-17 10:09:13 +0000 | [diff] [blame] | 760 | lis r3,PHYSICAL_START@h /* Destination base address */ |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 761 | li r6,0 /* Destination offset */ |
| 762 | li r5,0x4000 /* # bytes of memory to copy */ |
| 763 | bl copy_and_flush /* copy the first 0x4000 bytes */ |
| 764 | addi r0,r3,4f@l /* jump to the address of 4f */ |
| 765 | mtctr r0 /* in copy and do the rest. */ |
| 766 | bctr /* jump to the copy */ |
| 767 | 4: mr r5,r25 |
| 768 | bl copy_and_flush /* copy the rest */ |
| 769 | b turn_on_mmu |
| 770 | |
| 771 | /* |
| 772 | * Copy routine used to copy the kernel to start at physical address 0 |
| 773 | * and flush and invalidate the caches as needed. |
| 774 | * r3 = dest addr, r4 = source addr, r5 = copy limit, r6 = start offset |
| 775 | * on exit, r3, r4, r5 are unchanged, r6 is updated to be >= r5. |
| 776 | */ |
Kumar Gala | 748a768 | 2007-09-13 15:42:35 -0500 | [diff] [blame] | 777 | _ENTRY(copy_and_flush) |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 778 | addi r5,r5,-4 |
| 779 | addi r6,r6,-4 |
Stephen Rothwell | 7dffb72 | 2005-10-17 11:50:32 +1000 | [diff] [blame] | 780 | 4: li r0,L1_CACHE_BYTES/4 |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 781 | mtctr r0 |
| 782 | 3: addi r6,r6,4 /* copy a cache line */ |
| 783 | lwzx r0,r6,r4 |
| 784 | stwx r0,r6,r3 |
| 785 | bdnz 3b |
| 786 | dcbst r6,r3 /* write it to memory */ |
| 787 | sync |
| 788 | icbi r6,r3 /* flush the icache line */ |
| 789 | cmplw 0,r6,r5 |
| 790 | blt 4b |
| 791 | sync /* additional sync needed on g4 */ |
| 792 | isync |
| 793 | addi r5,r5,4 |
| 794 | addi r6,r6,4 |
| 795 | blr |
| 796 | |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 797 | #ifdef CONFIG_SMP |
| 798 | #ifdef CONFIG_GEMINI |
| 799 | .globl __secondary_start_gemini |
| 800 | __secondary_start_gemini: |
| 801 | mfspr r4,SPRN_HID0 |
| 802 | ori r4,r4,HID0_ICFI |
| 803 | li r3,0 |
| 804 | ori r3,r3,HID0_ICE |
| 805 | andc r4,r4,r3 |
| 806 | mtspr SPRN_HID0,r4 |
| 807 | sync |
| 808 | b __secondary_start |
| 809 | #endif /* CONFIG_GEMINI */ |
| 810 | |
Jon Loeliger | ee0339f | 2006-06-17 17:52:44 -0500 | [diff] [blame] | 811 | .globl __secondary_start_mpc86xx |
| 812 | __secondary_start_mpc86xx: |
| 813 | mfspr r3, SPRN_PIR |
| 814 | stw r3, __secondary_hold_acknowledge@l(0) |
| 815 | mr r24, r3 /* cpu # */ |
| 816 | b __secondary_start |
| 817 | |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 818 | .globl __secondary_start_pmac_0 |
| 819 | __secondary_start_pmac_0: |
| 820 | /* NB the entries for cpus 0, 1, 2 must each occupy 8 bytes. */ |
| 821 | li r24,0 |
| 822 | b 1f |
| 823 | li r24,1 |
| 824 | b 1f |
| 825 | li r24,2 |
| 826 | b 1f |
| 827 | li r24,3 |
| 828 | 1: |
| 829 | /* on powersurge, we come in here with IR=0 and DR=1, and DBAT 0 |
| 830 | set to map the 0xf0000000 - 0xffffffff region */ |
| 831 | mfmsr r0 |
| 832 | rlwinm r0,r0,0,28,26 /* clear DR (0x10) */ |
| 833 | SYNC |
| 834 | mtmsr r0 |
| 835 | isync |
| 836 | |
| 837 | .globl __secondary_start |
| 838 | __secondary_start: |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 839 | /* Copy some CPU settings from CPU 0 */ |
| 840 | bl __restore_cpu_setup |
| 841 | |
| 842 | lis r3,-KERNELBASE@h |
| 843 | mr r4,r24 |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 844 | bl call_setup_cpu /* Call setup_cpu for this CPU */ |
| 845 | #ifdef CONFIG_6xx |
| 846 | lis r3,-KERNELBASE@h |
| 847 | bl init_idle_6xx |
| 848 | #endif /* CONFIG_6xx */ |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 849 | |
| 850 | /* get current_thread_info and current */ |
| 851 | lis r1,secondary_ti@ha |
| 852 | tophys(r1,r1) |
| 853 | lwz r1,secondary_ti@l(r1) |
| 854 | tophys(r2,r1) |
| 855 | lwz r2,TI_TASK(r2) |
| 856 | |
| 857 | /* stack */ |
| 858 | addi r1,r1,THREAD_SIZE-STACK_FRAME_OVERHEAD |
| 859 | li r0,0 |
| 860 | tophys(r3,r1) |
| 861 | stw r0,0(r3) |
| 862 | |
| 863 | /* load up the MMU */ |
| 864 | bl load_up_mmu |
| 865 | |
| 866 | /* ptr to phys current thread */ |
| 867 | tophys(r4,r2) |
| 868 | addi r4,r4,THREAD /* phys address of our thread_struct */ |
| 869 | CLR_TOP32(r4) |
Benjamin Herrenschmidt | ee43eb7 | 2009-07-14 20:52:54 +0000 | [diff] [blame] | 870 | mtspr SPRN_SPRG_THREAD,r4 |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 871 | li r3,0 |
Benjamin Herrenschmidt | ee43eb7 | 2009-07-14 20:52:54 +0000 | [diff] [blame] | 872 | mtspr SPRN_SPRG_RTAS,r3 /* 0 => not in RTAS */ |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 873 | |
| 874 | /* enable MMU and jump to start_secondary */ |
| 875 | li r4,MSR_KERNEL |
| 876 | FIX_SRR1(r4,r5) |
| 877 | lis r3,start_secondary@h |
| 878 | ori r3,r3,start_secondary@l |
| 879 | mtspr SPRN_SRR0,r3 |
| 880 | mtspr SPRN_SRR1,r4 |
| 881 | SYNC |
| 882 | RFI |
| 883 | #endif /* CONFIG_SMP */ |
| 884 | |
| 885 | /* |
| 886 | * Those generic dummy functions are kept for CPUs not |
| 887 | * included in CONFIG_6xx |
| 888 | */ |
Paul Mackerras | 187a006 | 2005-10-06 12:49:05 +1000 | [diff] [blame] | 889 | #if !defined(CONFIG_6xx) |
Kumar Gala | 748a768 | 2007-09-13 15:42:35 -0500 | [diff] [blame] | 890 | _ENTRY(__save_cpu_setup) |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 891 | blr |
Kumar Gala | 748a768 | 2007-09-13 15:42:35 -0500 | [diff] [blame] | 892 | _ENTRY(__restore_cpu_setup) |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 893 | blr |
Paul Mackerras | 187a006 | 2005-10-06 12:49:05 +1000 | [diff] [blame] | 894 | #endif /* !defined(CONFIG_6xx) */ |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 895 | |
| 896 | |
| 897 | /* |
| 898 | * Load stuff into the MMU. Intended to be called with |
| 899 | * IR=0 and DR=0. |
| 900 | */ |
| 901 | load_up_mmu: |
| 902 | sync /* Force all PTE updates to finish */ |
| 903 | isync |
| 904 | tlbia /* Clear all TLB entries */ |
| 905 | sync /* wait for tlbia/tlbie to finish */ |
| 906 | TLBSYNC /* ... on all CPUs */ |
| 907 | /* Load the SDR1 register (hash table base & size) */ |
| 908 | lis r6,_SDR1@ha |
| 909 | tophys(r6,r6) |
| 910 | lwz r6,_SDR1@l(r6) |
| 911 | mtspr SPRN_SDR1,r6 |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 912 | li r0,16 /* load up segment register values */ |
| 913 | mtctr r0 /* for context 0 */ |
| 914 | lis r3,0x2000 /* Ku = 1, VSID = 0 */ |
| 915 | li r4,0 |
| 916 | 3: mtsrin r3,r4 |
| 917 | addi r3,r3,0x111 /* increment VSID */ |
| 918 | addis r4,r4,0x1000 /* address of next segment */ |
| 919 | bdnz 3b |
Paul Mackerras | 187a006 | 2005-10-06 12:49:05 +1000 | [diff] [blame] | 920 | |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 921 | /* Load the BAT registers with the values set up by MMU_init. |
| 922 | MMU_init takes care of whether we're on a 601 or not. */ |
| 923 | mfpvr r3 |
| 924 | srwi r3,r3,16 |
| 925 | cmpwi r3,1 |
| 926 | lis r3,BATS@ha |
| 927 | addi r3,r3,BATS@l |
| 928 | tophys(r3,r3) |
| 929 | LOAD_BAT(0,r3,r4,r5) |
| 930 | LOAD_BAT(1,r3,r4,r5) |
| 931 | LOAD_BAT(2,r3,r4,r5) |
| 932 | LOAD_BAT(3,r3,r4,r5) |
Benjamin Herrenschmidt | 7c03d65 | 2008-12-18 19:13:32 +0000 | [diff] [blame] | 933 | BEGIN_MMU_FTR_SECTION |
Jon Loeliger | ee0339f | 2006-06-17 17:52:44 -0500 | [diff] [blame] | 934 | LOAD_BAT(4,r3,r4,r5) |
| 935 | LOAD_BAT(5,r3,r4,r5) |
| 936 | LOAD_BAT(6,r3,r4,r5) |
| 937 | LOAD_BAT(7,r3,r4,r5) |
Benjamin Herrenschmidt | 7c03d65 | 2008-12-18 19:13:32 +0000 | [diff] [blame] | 938 | END_MMU_FTR_SECTION_IFSET(MMU_FTR_USE_HIGH_BATS) |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 939 | blr |
| 940 | |
| 941 | /* |
| 942 | * This is where the main kernel code starts. |
| 943 | */ |
| 944 | start_here: |
| 945 | /* ptr to current */ |
| 946 | lis r2,init_task@h |
| 947 | ori r2,r2,init_task@l |
| 948 | /* Set up for using our exception vectors */ |
| 949 | /* ptr to phys current thread */ |
| 950 | tophys(r4,r2) |
| 951 | addi r4,r4,THREAD /* init task's THREAD */ |
| 952 | CLR_TOP32(r4) |
Benjamin Herrenschmidt | ee43eb7 | 2009-07-14 20:52:54 +0000 | [diff] [blame] | 953 | mtspr SPRN_SPRG_THREAD,r4 |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 954 | li r3,0 |
Benjamin Herrenschmidt | ee43eb7 | 2009-07-14 20:52:54 +0000 | [diff] [blame] | 955 | mtspr SPRN_SPRG_RTAS,r3 /* 0 => not in RTAS */ |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 956 | |
| 957 | /* stack */ |
| 958 | lis r1,init_thread_union@ha |
| 959 | addi r1,r1,init_thread_union@l |
| 960 | li r0,0 |
| 961 | stwu r0,THREAD_SIZE-STACK_FRAME_OVERHEAD(r1) |
| 962 | /* |
Paul Mackerras | 187a006 | 2005-10-06 12:49:05 +1000 | [diff] [blame] | 963 | * Do early platform-specific initialization, |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 964 | * and set up the MMU. |
| 965 | */ |
| 966 | mr r3,r31 |
| 967 | mr r4,r30 |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 968 | bl machine_init |
Paul Mackerras | 22c841c | 2005-11-11 22:34:43 +1100 | [diff] [blame] | 969 | bl __save_cpu_setup |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 970 | bl MMU_init |
| 971 | |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 972 | /* |
| 973 | * Go back to running unmapped so we can load up new values |
| 974 | * for SDR1 (hash table pointer) and the segment registers |
| 975 | * and change to using our exception vectors. |
| 976 | */ |
| 977 | lis r4,2f@h |
| 978 | ori r4,r4,2f@l |
| 979 | tophys(r4,r4) |
| 980 | li r3,MSR_KERNEL & ~(MSR_IR|MSR_DR) |
| 981 | FIX_SRR1(r3,r5) |
| 982 | mtspr SPRN_SRR0,r4 |
| 983 | mtspr SPRN_SRR1,r3 |
| 984 | SYNC |
| 985 | RFI |
| 986 | /* Load up the kernel context */ |
| 987 | 2: bl load_up_mmu |
| 988 | |
| 989 | #ifdef CONFIG_BDI_SWITCH |
| 990 | /* Add helper information for the Abatron bdiGDB debugger. |
| 991 | * We do this here because we know the mmu is disabled, and |
| 992 | * will be enabled for real in just a few instructions. |
| 993 | */ |
| 994 | lis r5, abatron_pteptrs@h |
| 995 | ori r5, r5, abatron_pteptrs@l |
| 996 | stw r5, 0xf0(r0) /* This much match your Abatron config */ |
| 997 | lis r6, swapper_pg_dir@h |
| 998 | ori r6, r6, swapper_pg_dir@l |
| 999 | tophys(r5, r5) |
| 1000 | stw r6, 0(r5) |
| 1001 | #endif /* CONFIG_BDI_SWITCH */ |
| 1002 | |
| 1003 | /* Now turn on the MMU for real! */ |
| 1004 | li r4,MSR_KERNEL |
| 1005 | FIX_SRR1(r4,r5) |
| 1006 | lis r3,start_kernel@h |
| 1007 | ori r3,r3,start_kernel@l |
| 1008 | mtspr SPRN_SRR0,r3 |
| 1009 | mtspr SPRN_SRR1,r4 |
| 1010 | SYNC |
| 1011 | RFI |
| 1012 | |
| 1013 | /* |
Benjamin Herrenschmidt | 5e69661 | 2008-12-18 19:13:24 +0000 | [diff] [blame] | 1014 | * void switch_mmu_context(struct mm_struct *prev, struct mm_struct *next); |
| 1015 | * |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 1016 | * Set up the segment registers for a new context. |
| 1017 | */ |
Benjamin Herrenschmidt | 5e69661 | 2008-12-18 19:13:24 +0000 | [diff] [blame] | 1018 | _ENTRY(switch_mmu_context) |
| 1019 | lwz r3,MMCONTEXTID(r4) |
| 1020 | cmpwi cr0,r3,0 |
| 1021 | blt- 4f |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 1022 | mulli r3,r3,897 /* multiply context by skew factor */ |
| 1023 | rlwinm r3,r3,4,8,27 /* VSID = (context & 0xfffff) << 4 */ |
| 1024 | addis r3,r3,0x6000 /* Set Ks, Ku bits */ |
| 1025 | li r0,NUM_USER_SEGMENTS |
| 1026 | mtctr r0 |
| 1027 | |
| 1028 | #ifdef CONFIG_BDI_SWITCH |
| 1029 | /* Context switch the PTE pointer for the Abatron BDI2000. |
| 1030 | * The PGDIR is passed as second argument. |
| 1031 | */ |
Benjamin Herrenschmidt | 5e69661 | 2008-12-18 19:13:24 +0000 | [diff] [blame] | 1032 | lwz r4,MM_PGD(r4) |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 1033 | lis r5, KERNELBASE@h |
| 1034 | lwz r5, 0xf0(r5) |
| 1035 | stw r4, 0x4(r5) |
| 1036 | #endif |
| 1037 | li r4,0 |
| 1038 | isync |
| 1039 | 3: |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 1040 | mtsrin r3,r4 |
| 1041 | addi r3,r3,0x111 /* next VSID */ |
| 1042 | rlwinm r3,r3,0,8,3 /* clear out any overflow from VSID field */ |
| 1043 | addis r4,r4,0x1000 /* address of next segment */ |
| 1044 | bdnz 3b |
| 1045 | sync |
| 1046 | isync |
| 1047 | blr |
Benjamin Herrenschmidt | 5e69661 | 2008-12-18 19:13:24 +0000 | [diff] [blame] | 1048 | 4: trap |
| 1049 | EMIT_BUG_ENTRY 4b,__FILE__,__LINE__,0 |
| 1050 | blr |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 1051 | |
| 1052 | /* |
| 1053 | * An undocumented "feature" of 604e requires that the v bit |
| 1054 | * be cleared before changing BAT values. |
| 1055 | * |
| 1056 | * Also, newer IBM firmware does not clear bat3 and 4 so |
| 1057 | * this makes sure it's done. |
| 1058 | * -- Cort |
| 1059 | */ |
| 1060 | clear_bats: |
| 1061 | li r10,0 |
| 1062 | mfspr r9,SPRN_PVR |
| 1063 | rlwinm r9,r9,16,16,31 /* r9 = 1 for 601, 4 for 604 */ |
| 1064 | cmpwi r9, 1 |
| 1065 | beq 1f |
| 1066 | |
| 1067 | mtspr SPRN_DBAT0U,r10 |
| 1068 | mtspr SPRN_DBAT0L,r10 |
| 1069 | mtspr SPRN_DBAT1U,r10 |
| 1070 | mtspr SPRN_DBAT1L,r10 |
| 1071 | mtspr SPRN_DBAT2U,r10 |
| 1072 | mtspr SPRN_DBAT2L,r10 |
| 1073 | mtspr SPRN_DBAT3U,r10 |
| 1074 | mtspr SPRN_DBAT3L,r10 |
| 1075 | 1: |
| 1076 | mtspr SPRN_IBAT0U,r10 |
| 1077 | mtspr SPRN_IBAT0L,r10 |
| 1078 | mtspr SPRN_IBAT1U,r10 |
| 1079 | mtspr SPRN_IBAT1L,r10 |
| 1080 | mtspr SPRN_IBAT2U,r10 |
| 1081 | mtspr SPRN_IBAT2L,r10 |
| 1082 | mtspr SPRN_IBAT3U,r10 |
| 1083 | mtspr SPRN_IBAT3L,r10 |
Benjamin Herrenschmidt | 7c03d65 | 2008-12-18 19:13:32 +0000 | [diff] [blame] | 1084 | BEGIN_MMU_FTR_SECTION |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 1085 | /* Here's a tweak: at this point, CPU setup have |
| 1086 | * not been called yet, so HIGH_BAT_EN may not be |
| 1087 | * set in HID0 for the 745x processors. However, it |
| 1088 | * seems that doesn't affect our ability to actually |
| 1089 | * write to these SPRs. |
| 1090 | */ |
| 1091 | mtspr SPRN_DBAT4U,r10 |
| 1092 | mtspr SPRN_DBAT4L,r10 |
| 1093 | mtspr SPRN_DBAT5U,r10 |
| 1094 | mtspr SPRN_DBAT5L,r10 |
| 1095 | mtspr SPRN_DBAT6U,r10 |
| 1096 | mtspr SPRN_DBAT6L,r10 |
| 1097 | mtspr SPRN_DBAT7U,r10 |
| 1098 | mtspr SPRN_DBAT7L,r10 |
| 1099 | mtspr SPRN_IBAT4U,r10 |
| 1100 | mtspr SPRN_IBAT4L,r10 |
| 1101 | mtspr SPRN_IBAT5U,r10 |
| 1102 | mtspr SPRN_IBAT5L,r10 |
| 1103 | mtspr SPRN_IBAT6U,r10 |
| 1104 | mtspr SPRN_IBAT6L,r10 |
| 1105 | mtspr SPRN_IBAT7U,r10 |
| 1106 | mtspr SPRN_IBAT7L,r10 |
Benjamin Herrenschmidt | 7c03d65 | 2008-12-18 19:13:32 +0000 | [diff] [blame] | 1107 | END_MMU_FTR_SECTION_IFSET(MMU_FTR_USE_HIGH_BATS) |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 1108 | blr |
| 1109 | |
| 1110 | flush_tlbs: |
| 1111 | lis r10, 0x40 |
| 1112 | 1: addic. r10, r10, -0x1000 |
| 1113 | tlbie r10 |
Rocky Craig | 9acd57c | 2008-08-14 23:11:54 +1000 | [diff] [blame] | 1114 | bgt 1b |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 1115 | sync |
| 1116 | blr |
| 1117 | |
| 1118 | mmu_off: |
| 1119 | addi r4, r3, __after_mmu_off - _start |
| 1120 | mfmsr r3 |
| 1121 | andi. r0,r3,MSR_DR|MSR_IR /* MMU enabled? */ |
| 1122 | beqlr |
| 1123 | andc r3,r3,r0 |
| 1124 | mtspr SPRN_SRR0,r4 |
| 1125 | mtspr SPRN_SRR1,r3 |
| 1126 | sync |
| 1127 | RFI |
| 1128 | |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 1129 | /* |
Benjamin Herrenschmidt | 4a5cbf1 | 2009-06-18 19:17:39 +0000 | [diff] [blame] | 1130 | * On 601, we use 3 BATs to map up to 24M of RAM at _PAGE_OFFSET |
| 1131 | * (we keep one for debugging) and on others, we use one 256M BAT. |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 1132 | */ |
| 1133 | initial_bats: |
Dale Farnsworth | ccdcef7 | 2008-12-17 10:09:13 +0000 | [diff] [blame] | 1134 | lis r11,PAGE_OFFSET@h |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 1135 | mfspr r9,SPRN_PVR |
| 1136 | rlwinm r9,r9,16,16,31 /* r9 = 1 for 601, 4 for 604 */ |
| 1137 | cmpwi 0,r9,1 |
| 1138 | bne 4f |
| 1139 | ori r11,r11,4 /* set up BAT registers for 601 */ |
| 1140 | li r8,0x7f /* valid, block length = 8MB */ |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 1141 | mtspr SPRN_IBAT0U,r11 /* N.B. 601 has valid bit in */ |
| 1142 | mtspr SPRN_IBAT0L,r8 /* lower BAT register */ |
Benjamin Herrenschmidt | 4a5cbf1 | 2009-06-18 19:17:39 +0000 | [diff] [blame] | 1143 | addis r11,r11,0x800000@h |
| 1144 | addis r8,r8,0x800000@h |
| 1145 | mtspr SPRN_IBAT1U,r11 |
| 1146 | mtspr SPRN_IBAT1L,r8 |
| 1147 | addis r11,r11,0x800000@h |
| 1148 | addis r8,r8,0x800000@h |
| 1149 | mtspr SPRN_IBAT2U,r11 |
| 1150 | mtspr SPRN_IBAT2L,r8 |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 1151 | isync |
| 1152 | blr |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 1153 | |
| 1154 | 4: tophys(r8,r11) |
| 1155 | #ifdef CONFIG_SMP |
| 1156 | ori r8,r8,0x12 /* R/W access, M=1 */ |
| 1157 | #else |
| 1158 | ori r8,r8,2 /* R/W access */ |
| 1159 | #endif /* CONFIG_SMP */ |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 1160 | ori r11,r11,BL_256M<<2|0x2 /* set up BAT registers for 604 */ |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 1161 | |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 1162 | mtspr SPRN_DBAT0L,r8 /* N.B. 6xx (not 601) have valid */ |
| 1163 | mtspr SPRN_DBAT0U,r11 /* bit in upper BAT register */ |
| 1164 | mtspr SPRN_IBAT0L,r8 |
| 1165 | mtspr SPRN_IBAT0U,r11 |
| 1166 | isync |
| 1167 | blr |
| 1168 | |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 1169 | |
David Gibson | f21f49e | 2007-06-13 14:52:54 +1000 | [diff] [blame] | 1170 | #ifdef CONFIG_BOOTX_TEXT |
Benjamin Herrenschmidt | 51d3082 | 2005-11-23 17:57:25 +1100 | [diff] [blame] | 1171 | setup_disp_bat: |
| 1172 | /* |
| 1173 | * setup the display bat prepared for us in prom.c |
| 1174 | */ |
| 1175 | mflr r8 |
| 1176 | bl reloc_offset |
| 1177 | mtlr r8 |
| 1178 | addis r8,r3,disp_BAT@ha |
| 1179 | addi r8,r8,disp_BAT@l |
| 1180 | cmpwi cr0,r8,0 |
| 1181 | beqlr |
| 1182 | lwz r11,0(r8) |
| 1183 | lwz r8,4(r8) |
| 1184 | mfspr r9,SPRN_PVR |
| 1185 | rlwinm r9,r9,16,16,31 /* r9 = 1 for 601, 4 for 604 */ |
| 1186 | cmpwi 0,r9,1 |
| 1187 | beq 1f |
| 1188 | mtspr SPRN_DBAT3L,r8 |
| 1189 | mtspr SPRN_DBAT3U,r11 |
| 1190 | blr |
| 1191 | 1: mtspr SPRN_IBAT3L,r8 |
| 1192 | mtspr SPRN_IBAT3U,r11 |
| 1193 | blr |
David Gibson | f21f49e | 2007-06-13 14:52:54 +1000 | [diff] [blame] | 1194 | #endif /* CONFIG_BOOTX_TEXT */ |
Benjamin Herrenschmidt | 51d3082 | 2005-11-23 17:57:25 +1100 | [diff] [blame] | 1195 | |
Scott Wood | c374e00 | 2007-07-16 11:43:43 -0500 | [diff] [blame] | 1196 | #ifdef CONFIG_PPC_EARLY_DEBUG_CPM |
| 1197 | setup_cpm_bat: |
| 1198 | lis r8, 0xf000 |
| 1199 | ori r8, r8, 0x002a |
| 1200 | mtspr SPRN_DBAT1L, r8 |
| 1201 | |
| 1202 | lis r11, 0xf000 |
| 1203 | ori r11, r11, (BL_1M << 2) | 2 |
| 1204 | mtspr SPRN_DBAT1U, r11 |
| 1205 | |
| 1206 | blr |
| 1207 | #endif |
| 1208 | |
Albert Herranz | d1d56f8 | 2009-12-12 06:31:51 +0000 | [diff] [blame] | 1209 | #ifdef CONFIG_PPC_EARLY_DEBUG_USBGECKO |
| 1210 | setup_usbgecko_bat: |
| 1211 | /* prepare a BAT for early io */ |
| 1212 | #if defined(CONFIG_GAMECUBE) |
| 1213 | lis r8, 0x0c00 |
| 1214 | #elif defined(CONFIG_WII) |
| 1215 | lis r8, 0x0d00 |
| 1216 | #else |
| 1217 | #error Invalid platform for USB Gecko based early debugging. |
| 1218 | #endif |
| 1219 | /* |
| 1220 | * The virtual address used must match the virtual address |
| 1221 | * associated to the fixmap entry FIX_EARLY_DEBUG_BASE. |
| 1222 | */ |
| 1223 | lis r11, 0xfffe /* top 128K */ |
| 1224 | ori r8, r8, 0x002a /* uncached, guarded ,rw */ |
| 1225 | ori r11, r11, 0x2 /* 128K, Vs=1, Vp=0 */ |
| 1226 | mtspr SPRN_DBAT1L, r8 |
| 1227 | mtspr SPRN_DBAT1U, r11 |
| 1228 | blr |
| 1229 | #endif |
| 1230 | |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 1231 | #ifdef CONFIG_8260 |
| 1232 | /* Jump into the system reset for the rom. |
| 1233 | * We first disable the MMU, and then jump to the ROM reset address. |
| 1234 | * |
| 1235 | * r3 is the board info structure, r4 is the location for starting. |
| 1236 | * I use this for building a small kernel that can load other kernels, |
| 1237 | * rather than trying to write or rely on a rom monitor that can tftp load. |
| 1238 | */ |
| 1239 | .globl m8260_gorom |
| 1240 | m8260_gorom: |
| 1241 | mfmsr r0 |
| 1242 | rlwinm r0,r0,0,17,15 /* clear MSR_EE in r0 */ |
| 1243 | sync |
| 1244 | mtmsr r0 |
| 1245 | sync |
| 1246 | mfspr r11, SPRN_HID0 |
| 1247 | lis r10, 0 |
| 1248 | ori r10,r10,HID0_ICE|HID0_DCE |
| 1249 | andc r11, r11, r10 |
| 1250 | mtspr SPRN_HID0, r11 |
| 1251 | isync |
| 1252 | li r5, MSR_ME|MSR_RI |
| 1253 | lis r6,2f@h |
| 1254 | addis r6,r6,-KERNELBASE@h |
| 1255 | ori r6,r6,2f@l |
| 1256 | mtspr SPRN_SRR0,r6 |
| 1257 | mtspr SPRN_SRR1,r5 |
| 1258 | isync |
| 1259 | sync |
| 1260 | rfi |
| 1261 | 2: |
| 1262 | mtlr r4 |
| 1263 | blr |
| 1264 | #endif |
| 1265 | |
| 1266 | |
| 1267 | /* |
| 1268 | * We put a few things here that have to be page-aligned. |
| 1269 | * This stuff goes at the beginning of the data segment, |
| 1270 | * which is page-aligned. |
| 1271 | */ |
| 1272 | .data |
| 1273 | .globl sdata |
| 1274 | sdata: |
| 1275 | .globl empty_zero_page |
| 1276 | empty_zero_page: |
| 1277 | .space 4096 |
| 1278 | |
| 1279 | .globl swapper_pg_dir |
| 1280 | swapper_pg_dir: |
Kumar Gala | bee86f1 | 2007-12-06 13:11:04 -0600 | [diff] [blame] | 1281 | .space PGD_TABLE_SIZE |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 1282 | |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 1283 | .globl intercept_table |
| 1284 | intercept_table: |
| 1285 | .long 0, 0, i0x200, i0x300, i0x400, 0, i0x600, i0x700 |
| 1286 | .long i0x800, 0, 0, 0, 0, i0xd00, 0, 0 |
| 1287 | .long 0, 0, 0, i0x1300, 0, 0, 0, 0 |
| 1288 | .long 0, 0, 0, 0, 0, 0, 0, 0 |
| 1289 | .long 0, 0, 0, 0, 0, 0, 0, 0 |
| 1290 | .long 0, 0, 0, 0, 0, 0, 0, 0 |
| 1291 | |
| 1292 | /* Room for two PTE pointers, usually the kernel and current user pointers |
| 1293 | * to their respective root page table. |
| 1294 | */ |
| 1295 | abatron_pteptrs: |
| 1296 | .space 8 |