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