[POWERPC] Remove ioremap64 and fixup_bigphys_addr
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / arch / powerpc / kernel / head_64.S
CommitLineData
14cf11af 1/*
14cf11af
PM
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 *
12 * Adapted for 64bit PowerPC by Dave Engebretsen, Peter Bergner, and
13 * Mike Corrigan {engebret|bergner|mikejc}@us.ibm.com
14 *
15 * This file contains the low-level support and setup for the
16 * PowerPC-64 platform, including trap and interrupt dispatch.
17 *
18 * This program is free software; you can redistribute it and/or
19 * modify it under the terms of the GNU General Public License
20 * as published by the Free Software Foundation; either version
21 * 2 of the License, or (at your option) any later version.
22 */
23
14cf11af 24#include <linux/threads.h>
b5bbeb23 25#include <asm/reg.h>
14cf11af
PM
26#include <asm/page.h>
27#include <asm/mmu.h>
14cf11af
PM
28#include <asm/ppc_asm.h>
29#include <asm/asm-offsets.h>
30#include <asm/bug.h>
31#include <asm/cputable.h>
32#include <asm/setup.h>
33#include <asm/hvcall.h>
c43a55ff 34#include <asm/iseries/lpar_map.h>
6cb7bfeb 35#include <asm/thread_info.h>
3f639ee8 36#include <asm/firmware.h>
14cf11af 37
14cf11af 38#define DO_SOFT_DISABLE
14cf11af
PM
39
40/*
41 * We layout physical memory as follows:
42 * 0x0000 - 0x00ff : Secondary processor spin code
43 * 0x0100 - 0x2fff : pSeries Interrupt prologs
44 * 0x3000 - 0x5fff : interrupt support, iSeries and common interrupt prologs
45 * 0x6000 - 0x6fff : Initial (CPU0) segment table
46 * 0x7000 - 0x7fff : FWNMI data area
47 * 0x8000 - : Early init and support code
48 */
49
50/*
51 * SPRG Usage
52 *
53 * Register Definition
54 *
55 * SPRG0 reserved for hypervisor
56 * SPRG1 temp - used to save gpr
57 * SPRG2 temp - used to save gpr
58 * SPRG3 virt addr of paca
59 */
60
61/*
62 * Entering into this code we make the following assumptions:
63 * For pSeries:
64 * 1. The MMU is off & open firmware is running in real mode.
65 * 2. The kernel is entered at __start
66 *
67 * For iSeries:
68 * 1. The MMU is on (as it always is for iSeries)
69 * 2. The kernel is entered at system_reset_iSeries
70 */
71
72 .text
73 .globl _stext
74_stext:
14cf11af
PM
75_GLOBAL(__start)
76 /* NOP this out unconditionally */
77BEGIN_FTR_SECTION
b85a046a 78 b .__start_initialization_multiplatform
14cf11af 79END_FTR_SECTION(0, 1)
14cf11af
PM
80
81 /* Catch branch to 0 in real mode */
82 trap
83
14cf11af
PM
84 /* Secondary processors spin on this value until it goes to 1. */
85 .globl __secondary_hold_spinloop
86__secondary_hold_spinloop:
87 .llong 0x0
88
89 /* Secondary processors write this value with their cpu # */
90 /* after they enter the spin loop immediately below. */
91 .globl __secondary_hold_acknowledge
92__secondary_hold_acknowledge:
93 .llong 0x0
94
1dce0e30
ME
95#ifdef CONFIG_PPC_ISERIES
96 /*
97 * At offset 0x20, there is a pointer to iSeries LPAR data.
98 * This is required by the hypervisor
99 */
100 . = 0x20
101 .llong hvReleaseData-KERNELBASE
102#endif /* CONFIG_PPC_ISERIES */
103
14cf11af
PM
104 . = 0x60
105/*
106 * The following code is used on pSeries to hold secondary processors
107 * in a spin loop after they have been freed from OpenFirmware, but
108 * before the bulk of the kernel has been relocated. This code
109 * is relocated to physical address 0x60 before prom_init is run.
110 * All of it must fit below the first exception vector at 0x100.
111 */
112_GLOBAL(__secondary_hold)
113 mfmsr r24
114 ori r24,r24,MSR_RI
115 mtmsrd r24 /* RI on */
116
f1870f77 117 /* Grab our physical cpu number */
14cf11af
PM
118 mr r24,r3
119
120 /* Tell the master cpu we're here */
121 /* Relocation is off & we are located at an address less */
122 /* than 0x100, so only need to grab low order offset. */
123 std r24,__secondary_hold_acknowledge@l(0)
124 sync
125
126 /* All secondary cpus wait here until told to start. */
127100: ld r4,__secondary_hold_spinloop@l(0)
128 cmpdi 0,r4,1
129 bne 100b
130
f1870f77 131#if defined(CONFIG_SMP) || defined(CONFIG_KEXEC)
f39b7a55 132 LOAD_REG_IMMEDIATE(r4, .generic_secondary_smp_init)
758438a7 133 mtctr r4
14cf11af 134 mr r3,r24
758438a7 135 bctr
14cf11af
PM
136#else
137 BUG_OPCODE
138#endif
14cf11af
PM
139
140/* This value is used to mark exception frames on the stack. */
141 .section ".toc","aw"
142exception_marker:
143 .tc ID_72656773_68657265[TC],0x7265677368657265
144 .text
145
146/*
147 * The following macros define the code that appears as
148 * the prologue to each of the exception handlers. They
149 * are split into two parts to allow a single kernel binary
150 * to be used for pSeries and iSeries.
151 * LOL. One day... - paulus
152 */
153
154/*
155 * We make as much of the exception code common between native
156 * exception handlers (including pSeries LPAR) and iSeries LPAR
157 * implementations as possible.
158 */
159
160/*
161 * This is the start of the interrupt handlers for pSeries
162 * This code runs with relocation off.
163 */
164#define EX_R9 0
165#define EX_R10 8
166#define EX_R11 16
167#define EX_R12 24
168#define EX_R13 32
169#define EX_SRR0 40
14cf11af 170#define EX_DAR 48
14cf11af
PM
171#define EX_DSISR 56
172#define EX_CCR 60
3c726f8d
BH
173#define EX_R3 64
174#define EX_LR 72
14cf11af 175
758438a7 176/*
e58c3495
DG
177 * We're short on space and time in the exception prolog, so we can't
178 * use the normal SET_REG_IMMEDIATE macro. Normally we just need the
179 * low halfword of the address, but for Kdump we need the whole low
180 * word.
758438a7
ME
181 */
182#ifdef CONFIG_CRASH_DUMP
183#define LOAD_HANDLER(reg, label) \
184 oris reg,reg,(label)@h; /* virt addr of handler ... */ \
185 ori reg,reg,(label)@l; /* .. and the rest */
186#else
187#define LOAD_HANDLER(reg, label) \
188 ori reg,reg,(label)@l; /* virt addr of handler ... */
189#endif
190
9fc0a92c
OH
191/*
192 * Equal to EXCEPTION_PROLOG_PSERIES, except that it forces 64bit mode.
193 * The firmware calls the registered system_reset_fwnmi and
194 * machine_check_fwnmi handlers in 32bit mode if the cpu happens to run
195 * a 32bit application at the time of the event.
196 * This firmware bug is present on POWER4 and JS20.
197 */
198#define EXCEPTION_PROLOG_PSERIES_FORCE_64BIT(area, label) \
199 mfspr r13,SPRN_SPRG3; /* get paca address into r13 */ \
200 std r9,area+EX_R9(r13); /* save r9 - r12 */ \
201 std r10,area+EX_R10(r13); \
202 std r11,area+EX_R11(r13); \
203 std r12,area+EX_R12(r13); \
204 mfspr r9,SPRN_SPRG1; \
205 std r9,area+EX_R13(r13); \
206 mfcr r9; \
207 clrrdi r12,r13,32; /* get high part of &label */ \
208 mfmsr r10; \
209 /* force 64bit mode */ \
210 li r11,5; /* MSR_SF_LG|MSR_ISF_LG */ \
211 rldimi r10,r11,61,0; /* insert into top 3 bits */ \
212 /* done 64bit mode */ \
213 mfspr r11,SPRN_SRR0; /* save SRR0 */ \
214 LOAD_HANDLER(r12,label) \
215 ori r10,r10,MSR_IR|MSR_DR|MSR_RI; \
216 mtspr SPRN_SRR0,r12; \
217 mfspr r12,SPRN_SRR1; /* and SRR1 */ \
218 mtspr SPRN_SRR1,r10; \
219 rfid; \
220 b . /* prevent speculative execution */
221
14cf11af 222#define EXCEPTION_PROLOG_PSERIES(area, label) \
b5bbeb23 223 mfspr r13,SPRN_SPRG3; /* get paca address into r13 */ \
14cf11af
PM
224 std r9,area+EX_R9(r13); /* save r9 - r12 */ \
225 std r10,area+EX_R10(r13); \
226 std r11,area+EX_R11(r13); \
227 std r12,area+EX_R12(r13); \
b5bbeb23 228 mfspr r9,SPRN_SPRG1; \
14cf11af
PM
229 std r9,area+EX_R13(r13); \
230 mfcr r9; \
231 clrrdi r12,r13,32; /* get high part of &label */ \
232 mfmsr r10; \
b5bbeb23 233 mfspr r11,SPRN_SRR0; /* save SRR0 */ \
758438a7 234 LOAD_HANDLER(r12,label) \
14cf11af 235 ori r10,r10,MSR_IR|MSR_DR|MSR_RI; \
b5bbeb23
PM
236 mtspr SPRN_SRR0,r12; \
237 mfspr r12,SPRN_SRR1; /* and SRR1 */ \
238 mtspr SPRN_SRR1,r10; \
14cf11af
PM
239 rfid; \
240 b . /* prevent speculative execution */
241
242/*
243 * This is the start of the interrupt handlers for iSeries
244 * This code runs with relocation on.
245 */
246#define EXCEPTION_PROLOG_ISERIES_1(area) \
b5bbeb23 247 mfspr r13,SPRN_SPRG3; /* get paca address into r13 */ \
14cf11af
PM
248 std r9,area+EX_R9(r13); /* save r9 - r12 */ \
249 std r10,area+EX_R10(r13); \
250 std r11,area+EX_R11(r13); \
251 std r12,area+EX_R12(r13); \
b5bbeb23 252 mfspr r9,SPRN_SPRG1; \
14cf11af
PM
253 std r9,area+EX_R13(r13); \
254 mfcr r9
255
256#define EXCEPTION_PROLOG_ISERIES_2 \
257 mfmsr r10; \
3356bb9f
DG
258 ld r12,PACALPPACAPTR(r13); \
259 ld r11,LPPACASRR0(r12); \
260 ld r12,LPPACASRR1(r12); \
14cf11af
PM
261 ori r10,r10,MSR_RI; \
262 mtmsrd r10,1
263
264/*
265 * The common exception prolog is used for all except a few exceptions
266 * such as a segment miss on a kernel address. We have to be prepared
267 * to take another exception from the point where we first touch the
268 * kernel stack onwards.
269 *
270 * On entry r13 points to the paca, r9-r13 are saved in the paca,
271 * r9 contains the saved CR, r11 and r12 contain the saved SRR0 and
272 * SRR1, and relocation is on.
273 */
274#define EXCEPTION_PROLOG_COMMON(n, area) \
275 andi. r10,r12,MSR_PR; /* See if coming from user */ \
276 mr r10,r1; /* Save r1 */ \
277 subi r1,r1,INT_FRAME_SIZE; /* alloc frame on kernel stack */ \
278 beq- 1f; \
279 ld r1,PACAKSAVE(r13); /* kernel stack to use */ \
2801: cmpdi cr1,r1,0; /* check if r1 is in userspace */ \
281 bge- cr1,bad_stack; /* abort if it is */ \
282 std r9,_CCR(r1); /* save CR in stackframe */ \
283 std r11,_NIP(r1); /* save SRR0 in stackframe */ \
284 std r12,_MSR(r1); /* save SRR1 in stackframe */ \
285 std r10,0(r1); /* make stack chain pointer */ \
286 std r0,GPR0(r1); /* save r0 in stackframe */ \
287 std r10,GPR1(r1); /* save r1 in stackframe */ \
c6622f63 288 ACCOUNT_CPU_USER_ENTRY(r9, r10); \
14cf11af
PM
289 std r2,GPR2(r1); /* save r2 in stackframe */ \
290 SAVE_4GPRS(3, r1); /* save r3 - r6 in stackframe */ \
291 SAVE_2GPRS(7, r1); /* save r7, r8 in stackframe */ \
292 ld r9,area+EX_R9(r13); /* move r9, r10 to stackframe */ \
293 ld r10,area+EX_R10(r13); \
294 std r9,GPR9(r1); \
295 std r10,GPR10(r1); \
296 ld r9,area+EX_R11(r13); /* move r11 - r13 to stackframe */ \
297 ld r10,area+EX_R12(r13); \
298 ld r11,area+EX_R13(r13); \
299 std r9,GPR11(r1); \
300 std r10,GPR12(r1); \
301 std r11,GPR13(r1); \
302 ld r2,PACATOC(r13); /* get kernel TOC into r2 */ \
303 mflr r9; /* save LR in stackframe */ \
304 std r9,_LINK(r1); \
305 mfctr r10; /* save CTR in stackframe */ \
306 std r10,_CTR(r1); \
d04c56f7 307 lbz r10,PACASOFTIRQEN(r13); \
b5bbeb23 308 mfspr r11,SPRN_XER; /* save XER in stackframe */ \
d04c56f7 309 std r10,SOFTE(r1); \
14cf11af
PM
310 std r11,_XER(r1); \
311 li r9,(n)+1; \
312 std r9,_TRAP(r1); /* set trap number */ \
313 li r10,0; \
314 ld r11,exception_marker@toc(r2); \
315 std r10,RESULT(r1); /* clear regs->result */ \
316 std r11,STACK_FRAME_OVERHEAD-16(r1); /* mark the frame */
317
318/*
319 * Exception vectors.
320 */
321#define STD_EXCEPTION_PSERIES(n, label) \
322 . = n; \
323 .globl label##_pSeries; \
324label##_pSeries: \
325 HMT_MEDIUM; \
b5bbeb23 326 mtspr SPRN_SPRG1,r13; /* save r13 */ \
14cf11af
PM
327 EXCEPTION_PROLOG_PSERIES(PACA_EXGEN, label##_common)
328
acf7d768
BH
329#define HSTD_EXCEPTION_PSERIES(n, label) \
330 . = n; \
331 .globl label##_pSeries; \
332label##_pSeries: \
333 HMT_MEDIUM; \
334 mtspr SPRN_SPRG1,r20; /* save r20 */ \
335 mfspr r20,SPRN_HSRR0; /* copy HSRR0 to SRR0 */ \
336 mtspr SPRN_SRR0,r20; \
337 mfspr r20,SPRN_HSRR1; /* copy HSRR0 to SRR0 */ \
338 mtspr SPRN_SRR1,r20; \
339 mfspr r20,SPRN_SPRG1; /* restore r20 */ \
340 mtspr SPRN_SPRG1,r13; /* save r13 */ \
341 EXCEPTION_PROLOG_PSERIES(PACA_EXGEN, label##_common)
342
343
d04c56f7
PM
344#define MASKABLE_EXCEPTION_PSERIES(n, label) \
345 . = n; \
346 .globl label##_pSeries; \
347label##_pSeries: \
348 HMT_MEDIUM; \
349 mtspr SPRN_SPRG1,r13; /* save r13 */ \
350 mfspr r13,SPRN_SPRG3; /* get paca address into r13 */ \
351 std r9,PACA_EXGEN+EX_R9(r13); /* save r9, r10 */ \
352 std r10,PACA_EXGEN+EX_R10(r13); \
353 lbz r10,PACASOFTIRQEN(r13); \
354 mfcr r9; \
355 cmpwi r10,0; \
356 beq masked_interrupt; \
357 mfspr r10,SPRN_SPRG1; \
358 std r10,PACA_EXGEN+EX_R13(r13); \
359 std r11,PACA_EXGEN+EX_R11(r13); \
360 std r12,PACA_EXGEN+EX_R12(r13); \
361 clrrdi r12,r13,32; /* get high part of &label */ \
362 mfmsr r10; \
363 mfspr r11,SPRN_SRR0; /* save SRR0 */ \
364 LOAD_HANDLER(r12,label##_common) \
365 ori r10,r10,MSR_IR|MSR_DR|MSR_RI; \
366 mtspr SPRN_SRR0,r12; \
367 mfspr r12,SPRN_SRR1; /* and SRR1 */ \
368 mtspr SPRN_SRR1,r10; \
369 rfid; \
370 b . /* prevent speculative execution */
371
14cf11af
PM
372#define STD_EXCEPTION_ISERIES(n, label, area) \
373 .globl label##_iSeries; \
374label##_iSeries: \
375 HMT_MEDIUM; \
b5bbeb23 376 mtspr SPRN_SPRG1,r13; /* save r13 */ \
14cf11af
PM
377 EXCEPTION_PROLOG_ISERIES_1(area); \
378 EXCEPTION_PROLOG_ISERIES_2; \
379 b label##_common
380
381#define MASKABLE_EXCEPTION_ISERIES(n, label) \
382 .globl label##_iSeries; \
383label##_iSeries: \
384 HMT_MEDIUM; \
b5bbeb23 385 mtspr SPRN_SPRG1,r13; /* save r13 */ \
14cf11af 386 EXCEPTION_PROLOG_ISERIES_1(PACA_EXGEN); \
d04c56f7 387 lbz r10,PACASOFTIRQEN(r13); \
14cf11af
PM
388 cmpwi 0,r10,0; \
389 beq- label##_iSeries_masked; \
390 EXCEPTION_PROLOG_ISERIES_2; \
391 b label##_common; \
392
d04c56f7 393#ifdef CONFIG_PPC_ISERIES
14cf11af 394#define DISABLE_INTS \
14cf11af 395 li r11,0; \
d04c56f7
PM
396 stb r11,PACASOFTIRQEN(r13); \
397BEGIN_FW_FTR_SECTION; \
398 stb r11,PACAHARDIRQEN(r13); \
399END_FW_FTR_SECTION_IFCLR(FW_FEATURE_ISERIES); \
400BEGIN_FW_FTR_SECTION; \
14cf11af 401 mfmsr r10; \
14cf11af 402 ori r10,r10,MSR_EE; \
3f639ee8
SR
403 mtmsrd r10,1; \
404END_FW_FTR_SECTION_IFSET(FW_FEATURE_ISERIES)
14cf11af 405
d04c56f7
PM
406#else
407#define DISABLE_INTS \
408 li r11,0; \
409 stb r11,PACASOFTIRQEN(r13); \
410 stb r11,PACAHARDIRQEN(r13)
14cf11af 411
d04c56f7 412#endif /* CONFIG_PPC_ISERIES */
14cf11af
PM
413
414#define ENABLE_INTS \
415 ld r12,_MSR(r1); \
416 mfmsr r11; \
417 rlwimi r11,r12,0,MSR_EE; \
418 mtmsrd r11,1
419
14cf11af
PM
420#define STD_EXCEPTION_COMMON(trap, label, hdlr) \
421 .align 7; \
422 .globl label##_common; \
423label##_common: \
424 EXCEPTION_PROLOG_COMMON(trap, PACA_EXGEN); \
425 DISABLE_INTS; \
426 bl .save_nvgprs; \
427 addi r3,r1,STACK_FRAME_OVERHEAD; \
428 bl hdlr; \
429 b .ret_from_except
430
f39224a8
PM
431/*
432 * Like STD_EXCEPTION_COMMON, but for exceptions that can occur
433 * in the idle task and therefore need the special idle handling.
434 */
435#define STD_EXCEPTION_COMMON_IDLE(trap, label, hdlr) \
436 .align 7; \
437 .globl label##_common; \
438label##_common: \
439 EXCEPTION_PROLOG_COMMON(trap, PACA_EXGEN); \
440 FINISH_NAP; \
441 DISABLE_INTS; \
442 bl .save_nvgprs; \
443 addi r3,r1,STACK_FRAME_OVERHEAD; \
444 bl hdlr; \
445 b .ret_from_except
446
14cf11af
PM
447#define STD_EXCEPTION_COMMON_LITE(trap, label, hdlr) \
448 .align 7; \
449 .globl label##_common; \
450label##_common: \
451 EXCEPTION_PROLOG_COMMON(trap, PACA_EXGEN); \
f39224a8 452 FINISH_NAP; \
14cf11af 453 DISABLE_INTS; \
cb2c9b27 454 bl .ppc64_runlatch_on; \
14cf11af
PM
455 addi r3,r1,STACK_FRAME_OVERHEAD; \
456 bl hdlr; \
457 b .ret_from_except_lite
458
f39224a8
PM
459/*
460 * When the idle code in power4_idle puts the CPU into NAP mode,
461 * it has to do so in a loop, and relies on the external interrupt
462 * and decrementer interrupt entry code to get it out of the loop.
463 * It sets the _TLF_NAPPING bit in current_thread_info()->local_flags
464 * to signal that it is in the loop and needs help to get out.
465 */
466#ifdef CONFIG_PPC_970_NAP
467#define FINISH_NAP \
468BEGIN_FTR_SECTION \
469 clrrdi r11,r1,THREAD_SHIFT; \
470 ld r9,TI_LOCAL_FLAGS(r11); \
471 andi. r10,r9,_TLF_NAPPING; \
472 bnel power4_fixup_nap; \
473END_FTR_SECTION_IFSET(CPU_FTR_CAN_NAP)
474#else
475#define FINISH_NAP
476#endif
477
14cf11af
PM
478/*
479 * Start of pSeries system interrupt routines
480 */
481 . = 0x100
482 .globl __start_interrupts
483__start_interrupts:
484
485 STD_EXCEPTION_PSERIES(0x100, system_reset)
486
487 . = 0x200
488_machine_check_pSeries:
489 HMT_MEDIUM
b5bbeb23 490 mtspr SPRN_SPRG1,r13 /* save r13 */
14cf11af
PM
491 EXCEPTION_PROLOG_PSERIES(PACA_EXMC, machine_check_common)
492
493 . = 0x300
494 .globl data_access_pSeries
495data_access_pSeries:
496 HMT_MEDIUM
b5bbeb23 497 mtspr SPRN_SPRG1,r13
14cf11af 498BEGIN_FTR_SECTION
b5bbeb23
PM
499 mtspr SPRN_SPRG2,r12
500 mfspr r13,SPRN_DAR
501 mfspr r12,SPRN_DSISR
14cf11af
PM
502 srdi r13,r13,60
503 rlwimi r13,r12,16,0x20
504 mfcr r12
505 cmpwi r13,0x2c
3ccfc65c 506 beq do_stab_bolted_pSeries
14cf11af 507 mtcrf 0x80,r12
b5bbeb23 508 mfspr r12,SPRN_SPRG2
14cf11af
PM
509END_FTR_SECTION_IFCLR(CPU_FTR_SLB)
510 EXCEPTION_PROLOG_PSERIES(PACA_EXGEN, data_access_common)
511
512 . = 0x380
513 .globl data_access_slb_pSeries
514data_access_slb_pSeries:
515 HMT_MEDIUM
b5bbeb23 516 mtspr SPRN_SPRG1,r13
b5bbeb23 517 mfspr r13,SPRN_SPRG3 /* get paca address into r13 */
3c726f8d
BH
518 std r3,PACA_EXSLB+EX_R3(r13)
519 mfspr r3,SPRN_DAR
14cf11af 520 std r9,PACA_EXSLB+EX_R9(r13) /* save r9 - r12 */
3c726f8d
BH
521 mfcr r9
522#ifdef __DISABLED__
523 /* Keep that around for when we re-implement dynamic VSIDs */
524 cmpdi r3,0
525 bge slb_miss_user_pseries
526#endif /* __DISABLED__ */
14cf11af
PM
527 std r10,PACA_EXSLB+EX_R10(r13)
528 std r11,PACA_EXSLB+EX_R11(r13)
529 std r12,PACA_EXSLB+EX_R12(r13)
3c726f8d
BH
530 mfspr r10,SPRN_SPRG1
531 std r10,PACA_EXSLB+EX_R13(r13)
b5bbeb23 532 mfspr r12,SPRN_SRR1 /* and SRR1 */
3c726f8d 533 b .slb_miss_realmode /* Rel. branch works in real mode */
14cf11af
PM
534
535 STD_EXCEPTION_PSERIES(0x400, instruction_access)
536
537 . = 0x480
538 .globl instruction_access_slb_pSeries
539instruction_access_slb_pSeries:
540 HMT_MEDIUM
b5bbeb23 541 mtspr SPRN_SPRG1,r13
b5bbeb23 542 mfspr r13,SPRN_SPRG3 /* get paca address into r13 */
3c726f8d
BH
543 std r3,PACA_EXSLB+EX_R3(r13)
544 mfspr r3,SPRN_SRR0 /* SRR0 is faulting address */
14cf11af 545 std r9,PACA_EXSLB+EX_R9(r13) /* save r9 - r12 */
3c726f8d
BH
546 mfcr r9
547#ifdef __DISABLED__
548 /* Keep that around for when we re-implement dynamic VSIDs */
549 cmpdi r3,0
550 bge slb_miss_user_pseries
551#endif /* __DISABLED__ */
14cf11af
PM
552 std r10,PACA_EXSLB+EX_R10(r13)
553 std r11,PACA_EXSLB+EX_R11(r13)
554 std r12,PACA_EXSLB+EX_R12(r13)
3c726f8d
BH
555 mfspr r10,SPRN_SPRG1
556 std r10,PACA_EXSLB+EX_R13(r13)
b5bbeb23 557 mfspr r12,SPRN_SRR1 /* and SRR1 */
3c726f8d 558 b .slb_miss_realmode /* Rel. branch works in real mode */
14cf11af 559
d04c56f7 560 MASKABLE_EXCEPTION_PSERIES(0x500, hardware_interrupt)
14cf11af
PM
561 STD_EXCEPTION_PSERIES(0x600, alignment)
562 STD_EXCEPTION_PSERIES(0x700, program_check)
563 STD_EXCEPTION_PSERIES(0x800, fp_unavailable)
d04c56f7 564 MASKABLE_EXCEPTION_PSERIES(0x900, decrementer)
14cf11af
PM
565 STD_EXCEPTION_PSERIES(0xa00, trap_0a)
566 STD_EXCEPTION_PSERIES(0xb00, trap_0b)
567
568 . = 0xc00
569 .globl system_call_pSeries
570system_call_pSeries:
571 HMT_MEDIUM
14cf11af
PM
572 mr r9,r13
573 mfmsr r10
b5bbeb23
PM
574 mfspr r13,SPRN_SPRG3
575 mfspr r11,SPRN_SRR0
14cf11af
PM
576 clrrdi r12,r13,32
577 oris r12,r12,system_call_common@h
578 ori r12,r12,system_call_common@l
b5bbeb23 579 mtspr SPRN_SRR0,r12
14cf11af 580 ori r10,r10,MSR_IR|MSR_DR|MSR_RI
b5bbeb23
PM
581 mfspr r12,SPRN_SRR1
582 mtspr SPRN_SRR1,r10
14cf11af
PM
583 rfid
584 b . /* prevent speculative execution */
585
586 STD_EXCEPTION_PSERIES(0xd00, single_step)
587 STD_EXCEPTION_PSERIES(0xe00, trap_0e)
588
589 /* We need to deal with the Altivec unavailable exception
590 * here which is at 0xf20, thus in the middle of the
591 * prolog code of the PerformanceMonitor one. A little
592 * trickery is thus necessary
593 */
594 . = 0xf00
595 b performance_monitor_pSeries
596
597 STD_EXCEPTION_PSERIES(0xf20, altivec_unavailable)
598
acf7d768
BH
599#ifdef CONFIG_CBE_RAS
600 HSTD_EXCEPTION_PSERIES(0x1200, cbe_system_error)
601#endif /* CONFIG_CBE_RAS */
14cf11af 602 STD_EXCEPTION_PSERIES(0x1300, instruction_breakpoint)
acf7d768
BH
603#ifdef CONFIG_CBE_RAS
604 HSTD_EXCEPTION_PSERIES(0x1600, cbe_maintenance)
605#endif /* CONFIG_CBE_RAS */
14cf11af 606 STD_EXCEPTION_PSERIES(0x1700, altivec_assist)
acf7d768
BH
607#ifdef CONFIG_CBE_RAS
608 HSTD_EXCEPTION_PSERIES(0x1800, cbe_thermal)
609#endif /* CONFIG_CBE_RAS */
14cf11af
PM
610
611 . = 0x3000
612
613/*** pSeries interrupt support ***/
614
615 /* moved from 0xf00 */
d04c56f7
PM
616 MASKABLE_EXCEPTION_PSERIES(., performance_monitor)
617
618/*
619 * An interrupt came in while soft-disabled; clear EE in SRR1,
620 * clear paca->hard_enabled and return.
621 */
622masked_interrupt:
623 stb r10,PACAHARDIRQEN(r13)
624 mtcrf 0x80,r9
625 ld r9,PACA_EXGEN+EX_R9(r13)
626 mfspr r10,SPRN_SRR1
627 rldicl r10,r10,48,1 /* clear MSR_EE */
628 rotldi r10,r10,16
629 mtspr SPRN_SRR1,r10
630 ld r10,PACA_EXGEN+EX_R10(r13)
631 mfspr r13,SPRN_SPRG1
632 rfid
633 b .
14cf11af
PM
634
635 .align 7
3ccfc65c 636do_stab_bolted_pSeries:
14cf11af 637 mtcrf 0x80,r12
b5bbeb23 638 mfspr r12,SPRN_SPRG2
14cf11af
PM
639 EXCEPTION_PROLOG_PSERIES(PACA_EXSLB, .do_stab_bolted)
640
3c726f8d
BH
641/*
642 * We have some room here we use that to put
643 * the peries slb miss user trampoline code so it's reasonably
644 * away from slb_miss_user_common to avoid problems with rfid
645 *
646 * This is used for when the SLB miss handler has to go virtual,
647 * which doesn't happen for now anymore but will once we re-implement
648 * dynamic VSIDs for shared page tables
649 */
650#ifdef __DISABLED__
651slb_miss_user_pseries:
652 std r10,PACA_EXGEN+EX_R10(r13)
653 std r11,PACA_EXGEN+EX_R11(r13)
654 std r12,PACA_EXGEN+EX_R12(r13)
655 mfspr r10,SPRG1
656 ld r11,PACA_EXSLB+EX_R9(r13)
657 ld r12,PACA_EXSLB+EX_R3(r13)
658 std r10,PACA_EXGEN+EX_R13(r13)
659 std r11,PACA_EXGEN+EX_R9(r13)
660 std r12,PACA_EXGEN+EX_R3(r13)
661 clrrdi r12,r13,32
662 mfmsr r10
663 mfspr r11,SRR0 /* save SRR0 */
664 ori r12,r12,slb_miss_user_common@l /* virt addr of handler */
665 ori r10,r10,MSR_IR|MSR_DR|MSR_RI
666 mtspr SRR0,r12
667 mfspr r12,SRR1 /* and SRR1 */
668 mtspr SRR1,r10
669 rfid
670 b . /* prevent spec. execution */
671#endif /* __DISABLED__ */
672
14cf11af
PM
673/*
674 * Vectors for the FWNMI option. Share common code.
675 */
b5bbeb23 676 .globl system_reset_fwnmi
8c4f1f29 677 .align 7
14cf11af 678system_reset_fwnmi:
b5bbeb23
PM
679 HMT_MEDIUM
680 mtspr SPRN_SPRG1,r13 /* save r13 */
9fc0a92c 681 EXCEPTION_PROLOG_PSERIES_FORCE_64BIT(PACA_EXGEN, system_reset_common)
14cf11af 682
b5bbeb23 683 .globl machine_check_fwnmi
8c4f1f29 684 .align 7
14cf11af 685machine_check_fwnmi:
b5bbeb23
PM
686 HMT_MEDIUM
687 mtspr SPRN_SPRG1,r13 /* save r13 */
9fc0a92c 688 EXCEPTION_PROLOG_PSERIES_FORCE_64BIT(PACA_EXMC, machine_check_common)
14cf11af
PM
689
690#ifdef CONFIG_PPC_ISERIES
691/*** ISeries-LPAR interrupt handlers ***/
692
693 STD_EXCEPTION_ISERIES(0x200, machine_check, PACA_EXMC)
694
695 .globl data_access_iSeries
696data_access_iSeries:
b5bbeb23 697 mtspr SPRN_SPRG1,r13
14cf11af 698BEGIN_FTR_SECTION
b5bbeb23
PM
699 mtspr SPRN_SPRG2,r12
700 mfspr r13,SPRN_DAR
701 mfspr r12,SPRN_DSISR
14cf11af
PM
702 srdi r13,r13,60
703 rlwimi r13,r12,16,0x20
704 mfcr r12
705 cmpwi r13,0x2c
706 beq .do_stab_bolted_iSeries
707 mtcrf 0x80,r12
b5bbeb23 708 mfspr r12,SPRN_SPRG2
14cf11af
PM
709END_FTR_SECTION_IFCLR(CPU_FTR_SLB)
710 EXCEPTION_PROLOG_ISERIES_1(PACA_EXGEN)
711 EXCEPTION_PROLOG_ISERIES_2
712 b data_access_common
713
714.do_stab_bolted_iSeries:
715 mtcrf 0x80,r12
b5bbeb23 716 mfspr r12,SPRN_SPRG2
14cf11af
PM
717 EXCEPTION_PROLOG_ISERIES_1(PACA_EXSLB)
718 EXCEPTION_PROLOG_ISERIES_2
719 b .do_stab_bolted
720
721 .globl data_access_slb_iSeries
722data_access_slb_iSeries:
b5bbeb23 723 mtspr SPRN_SPRG1,r13 /* save r13 */
3c726f8d 724 mfspr r13,SPRN_SPRG3 /* get paca address into r13 */
14cf11af 725 std r3,PACA_EXSLB+EX_R3(r13)
b5bbeb23 726 mfspr r3,SPRN_DAR
3c726f8d
BH
727 std r9,PACA_EXSLB+EX_R9(r13)
728 mfcr r9
729#ifdef __DISABLED__
730 cmpdi r3,0
731 bge slb_miss_user_iseries
732#endif
733 std r10,PACA_EXSLB+EX_R10(r13)
734 std r11,PACA_EXSLB+EX_R11(r13)
735 std r12,PACA_EXSLB+EX_R12(r13)
736 mfspr r10,SPRN_SPRG1
737 std r10,PACA_EXSLB+EX_R13(r13)
3356bb9f
DG
738 ld r12,PACALPPACAPTR(r13)
739 ld r12,LPPACASRR1(r12)
3c726f8d 740 b .slb_miss_realmode
14cf11af
PM
741
742 STD_EXCEPTION_ISERIES(0x400, instruction_access, PACA_EXGEN)
743
744 .globl instruction_access_slb_iSeries
745instruction_access_slb_iSeries:
b5bbeb23 746 mtspr SPRN_SPRG1,r13 /* save r13 */
3c726f8d 747 mfspr r13,SPRN_SPRG3 /* get paca address into r13 */
14cf11af 748 std r3,PACA_EXSLB+EX_R3(r13)
3356bb9f
DG
749 ld r3,PACALPPACAPTR(r13)
750 ld r3,LPPACASRR0(r3) /* get SRR0 value */
3c726f8d
BH
751 std r9,PACA_EXSLB+EX_R9(r13)
752 mfcr r9
753#ifdef __DISABLED__
754 cmpdi r3,0
755 bge .slb_miss_user_iseries
756#endif
757 std r10,PACA_EXSLB+EX_R10(r13)
758 std r11,PACA_EXSLB+EX_R11(r13)
759 std r12,PACA_EXSLB+EX_R12(r13)
760 mfspr r10,SPRN_SPRG1
761 std r10,PACA_EXSLB+EX_R13(r13)
3356bb9f
DG
762 ld r12,PACALPPACAPTR(r13)
763 ld r12,LPPACASRR1(r12)
3c726f8d
BH
764 b .slb_miss_realmode
765
766#ifdef __DISABLED__
767slb_miss_user_iseries:
768 std r10,PACA_EXGEN+EX_R10(r13)
769 std r11,PACA_EXGEN+EX_R11(r13)
770 std r12,PACA_EXGEN+EX_R12(r13)
771 mfspr r10,SPRG1
772 ld r11,PACA_EXSLB+EX_R9(r13)
773 ld r12,PACA_EXSLB+EX_R3(r13)
774 std r10,PACA_EXGEN+EX_R13(r13)
775 std r11,PACA_EXGEN+EX_R9(r13)
776 std r12,PACA_EXGEN+EX_R3(r13)
777 EXCEPTION_PROLOG_ISERIES_2
778 b slb_miss_user_common
779#endif
14cf11af
PM
780
781 MASKABLE_EXCEPTION_ISERIES(0x500, hardware_interrupt)
782 STD_EXCEPTION_ISERIES(0x600, alignment, PACA_EXGEN)
783 STD_EXCEPTION_ISERIES(0x700, program_check, PACA_EXGEN)
784 STD_EXCEPTION_ISERIES(0x800, fp_unavailable, PACA_EXGEN)
785 MASKABLE_EXCEPTION_ISERIES(0x900, decrementer)
786 STD_EXCEPTION_ISERIES(0xa00, trap_0a, PACA_EXGEN)
787 STD_EXCEPTION_ISERIES(0xb00, trap_0b, PACA_EXGEN)
788
789 .globl system_call_iSeries
790system_call_iSeries:
791 mr r9,r13
b5bbeb23 792 mfspr r13,SPRN_SPRG3
14cf11af
PM
793 EXCEPTION_PROLOG_ISERIES_2
794 b system_call_common
795
796 STD_EXCEPTION_ISERIES( 0xd00, single_step, PACA_EXGEN)
797 STD_EXCEPTION_ISERIES( 0xe00, trap_0e, PACA_EXGEN)
798 STD_EXCEPTION_ISERIES( 0xf00, performance_monitor, PACA_EXGEN)
799
800 .globl system_reset_iSeries
801system_reset_iSeries:
b5bbeb23 802 mfspr r13,SPRN_SPRG3 /* Get paca address */
14cf11af
PM
803 mfmsr r24
804 ori r24,r24,MSR_RI
805 mtmsrd r24 /* RI on */
806 lhz r24,PACAPACAINDEX(r13) /* Get processor # */
807 cmpwi 0,r24,0 /* Are we processor 0? */
808 beq .__start_initialization_iSeries /* Start up the first processor */
809 mfspr r4,SPRN_CTRLF
810 li r5,CTRL_RUNLATCH /* Turn off the run light */
811 andc r4,r4,r5
812 mtspr SPRN_CTRLT,r4
813
8141:
815 HMT_LOW
816#ifdef CONFIG_SMP
817 lbz r23,PACAPROCSTART(r13) /* Test if this processor
818 * should start */
819 sync
e58c3495 820 LOAD_REG_IMMEDIATE(r3,current_set)
14cf11af
PM
821 sldi r28,r24,3 /* get current_set[cpu#] */
822 ldx r3,r3,r28
823 addi r1,r3,THREAD_SIZE
824 subi r1,r1,STACK_FRAME_OVERHEAD
825
826 cmpwi 0,r23,0
827 beq iSeries_secondary_smp_loop /* Loop until told to go */
828 bne .__secondary_start /* Loop until told to go */
829iSeries_secondary_smp_loop:
830 /* Let the Hypervisor know we are alive */
831 /* 8002 is a call to HvCallCfg::getLps, a harmless Hypervisor function */
832 lis r3,0x8002
833 rldicr r3,r3,32,15 /* r0 = (r3 << 32) & 0xffff000000000000 */
834#else /* CONFIG_SMP */
835 /* Yield the processor. This is required for non-SMP kernels
836 which are running on multi-threaded machines. */
837 lis r3,0x8000
838 rldicr r3,r3,32,15 /* r3 = (r3 << 32) & 0xffff000000000000 */
839 addi r3,r3,18 /* r3 = 0x8000000000000012 which is "yield" */
840 li r4,0 /* "yield timed" */
841 li r5,-1 /* "yield forever" */
842#endif /* CONFIG_SMP */
843 li r0,-1 /* r0=-1 indicates a Hypervisor call */
844 sc /* Invoke the hypervisor via a system call */
b5bbeb23 845 mfspr r13,SPRN_SPRG3 /* Put r13 back ???? */
14cf11af
PM
846 b 1b /* If SMP not configured, secondaries
847 * loop forever */
848
849 .globl decrementer_iSeries_masked
850decrementer_iSeries_masked:
f9b4045d 851 /* We may not have a valid TOC pointer in here. */
14cf11af 852 li r11,1
3356bb9f
DG
853 ld r12,PACALPPACAPTR(r13)
854 stb r11,LPPACADECRINT(r12)
f9b4045d
ME
855 LOAD_REG_IMMEDIATE(r12, tb_ticks_per_jiffy)
856 lwz r12,0(r12)
14cf11af
PM
857 mtspr SPRN_DEC,r12
858 /* fall through */
859
860 .globl hardware_interrupt_iSeries_masked
861hardware_interrupt_iSeries_masked:
862 mtcrf 0x80,r9 /* Restore regs */
3356bb9f
DG
863 ld r12,PACALPPACAPTR(r13)
864 ld r11,LPPACASRR0(r12)
865 ld r12,LPPACASRR1(r12)
b5bbeb23
PM
866 mtspr SPRN_SRR0,r11
867 mtspr SPRN_SRR1,r12
14cf11af
PM
868 ld r9,PACA_EXGEN+EX_R9(r13)
869 ld r10,PACA_EXGEN+EX_R10(r13)
870 ld r11,PACA_EXGEN+EX_R11(r13)
871 ld r12,PACA_EXGEN+EX_R12(r13)
872 ld r13,PACA_EXGEN+EX_R13(r13)
873 rfid
874 b . /* prevent speculative execution */
875#endif /* CONFIG_PPC_ISERIES */
876
877/*** Common interrupt handlers ***/
878
879 STD_EXCEPTION_COMMON(0x100, system_reset, .system_reset_exception)
880
881 /*
882 * Machine check is different because we use a different
883 * save area: PACA_EXMC instead of PACA_EXGEN.
884 */
885 .align 7
886 .globl machine_check_common
887machine_check_common:
888 EXCEPTION_PROLOG_COMMON(0x200, PACA_EXMC)
f39224a8 889 FINISH_NAP
14cf11af
PM
890 DISABLE_INTS
891 bl .save_nvgprs
892 addi r3,r1,STACK_FRAME_OVERHEAD
893 bl .machine_check_exception
894 b .ret_from_except
895
896 STD_EXCEPTION_COMMON_LITE(0x900, decrementer, .timer_interrupt)
897 STD_EXCEPTION_COMMON(0xa00, trap_0a, .unknown_exception)
898 STD_EXCEPTION_COMMON(0xb00, trap_0b, .unknown_exception)
899 STD_EXCEPTION_COMMON(0xd00, single_step, .single_step_exception)
900 STD_EXCEPTION_COMMON(0xe00, trap_0e, .unknown_exception)
f39224a8 901 STD_EXCEPTION_COMMON_IDLE(0xf00, performance_monitor, .performance_monitor_exception)
14cf11af
PM
902 STD_EXCEPTION_COMMON(0x1300, instruction_breakpoint, .instruction_breakpoint_exception)
903#ifdef CONFIG_ALTIVEC
904 STD_EXCEPTION_COMMON(0x1700, altivec_assist, .altivec_assist_exception)
905#else
906 STD_EXCEPTION_COMMON(0x1700, altivec_assist, .unknown_exception)
907#endif
acf7d768
BH
908#ifdef CONFIG_CBE_RAS
909 STD_EXCEPTION_COMMON(0x1200, cbe_system_error, .cbe_system_error_exception)
910 STD_EXCEPTION_COMMON(0x1600, cbe_maintenance, .cbe_maintenance_exception)
911 STD_EXCEPTION_COMMON(0x1800, cbe_thermal, .cbe_thermal_exception)
912#endif /* CONFIG_CBE_RAS */
14cf11af
PM
913
914/*
915 * Here we have detected that the kernel stack pointer is bad.
916 * R9 contains the saved CR, r13 points to the paca,
917 * r10 contains the (bad) kernel stack pointer,
918 * r11 and r12 contain the saved SRR0 and SRR1.
919 * We switch to using an emergency stack, save the registers there,
920 * and call kernel_bad_stack(), which panics.
921 */
922bad_stack:
923 ld r1,PACAEMERGSP(r13)
924 subi r1,r1,64+INT_FRAME_SIZE
925 std r9,_CCR(r1)
926 std r10,GPR1(r1)
927 std r11,_NIP(r1)
928 std r12,_MSR(r1)
b5bbeb23
PM
929 mfspr r11,SPRN_DAR
930 mfspr r12,SPRN_DSISR
14cf11af
PM
931 std r11,_DAR(r1)
932 std r12,_DSISR(r1)
933 mflr r10
934 mfctr r11
935 mfxer r12
936 std r10,_LINK(r1)
937 std r11,_CTR(r1)
938 std r12,_XER(r1)
939 SAVE_GPR(0,r1)
940 SAVE_GPR(2,r1)
941 SAVE_4GPRS(3,r1)
942 SAVE_2GPRS(7,r1)
943 SAVE_10GPRS(12,r1)
944 SAVE_10GPRS(22,r1)
945 addi r11,r1,INT_FRAME_SIZE
946 std r11,0(r1)
947 li r12,0
948 std r12,0(r11)
949 ld r2,PACATOC(r13)
9501: addi r3,r1,STACK_FRAME_OVERHEAD
951 bl .kernel_bad_stack
952 b 1b
953
954/*
955 * Return from an exception with minimal checks.
956 * The caller is assumed to have done EXCEPTION_PROLOG_COMMON.
957 * If interrupts have been enabled, or anything has been
958 * done that might have changed the scheduling status of
959 * any task or sent any task a signal, you should use
960 * ret_from_except or ret_from_except_lite instead of this.
961 */
b0a779de
PM
962fast_exc_return_irq: /* restores irq state too */
963 ld r3,SOFTE(r1)
964 ld r12,_MSR(r1)
965 stb r3,PACASOFTIRQEN(r13) /* restore paca->soft_enabled */
966 rldicl r4,r12,49,63 /* get MSR_EE to LSB */
967 stb r4,PACAHARDIRQEN(r13) /* restore paca->hard_enabled */
968 b 1f
969
40ef8cbc 970 .globl fast_exception_return
14cf11af
PM
971fast_exception_return:
972 ld r12,_MSR(r1)
b0a779de 9731: ld r11,_NIP(r1)
14cf11af
PM
974 andi. r3,r12,MSR_RI /* check if RI is set */
975 beq- unrecov_fer
c6622f63
PM
976
977#ifdef CONFIG_VIRT_CPU_ACCOUNTING
978 andi. r3,r12,MSR_PR
979 beq 2f
980 ACCOUNT_CPU_USER_EXIT(r3, r4)
9812:
982#endif
983
14cf11af
PM
984 ld r3,_CCR(r1)
985 ld r4,_LINK(r1)
986 ld r5,_CTR(r1)
987 ld r6,_XER(r1)
988 mtcr r3
989 mtlr r4
990 mtctr r5
991 mtxer r6
992 REST_GPR(0, r1)
993 REST_8GPRS(2, r1)
994
995 mfmsr r10
d04c56f7
PM
996 rldicl r10,r10,48,1 /* clear EE */
997 rldicr r10,r10,16,61 /* clear RI (LE is 0 already) */
14cf11af
PM
998 mtmsrd r10,1
999
b5bbeb23
PM
1000 mtspr SPRN_SRR1,r12
1001 mtspr SPRN_SRR0,r11
14cf11af
PM
1002 REST_4GPRS(10, r1)
1003 ld r1,GPR1(r1)
1004 rfid
1005 b . /* prevent speculative execution */
1006
1007unrecov_fer:
1008 bl .save_nvgprs
10091: addi r3,r1,STACK_FRAME_OVERHEAD
1010 bl .unrecoverable_exception
1011 b 1b
1012
1013/*
1014 * Here r13 points to the paca, r9 contains the saved CR,
1015 * SRR0 and SRR1 are saved in r11 and r12,
1016 * r9 - r13 are saved in paca->exgen.
1017 */
1018 .align 7
1019 .globl data_access_common
1020data_access_common:
b5bbeb23 1021 mfspr r10,SPRN_DAR
14cf11af 1022 std r10,PACA_EXGEN+EX_DAR(r13)
b5bbeb23 1023 mfspr r10,SPRN_DSISR
14cf11af
PM
1024 stw r10,PACA_EXGEN+EX_DSISR(r13)
1025 EXCEPTION_PROLOG_COMMON(0x300, PACA_EXGEN)
1026 ld r3,PACA_EXGEN+EX_DAR(r13)
1027 lwz r4,PACA_EXGEN+EX_DSISR(r13)
1028 li r5,0x300
1029 b .do_hash_page /* Try to handle as hpte fault */
1030
1031 .align 7
1032 .globl instruction_access_common
1033instruction_access_common:
1034 EXCEPTION_PROLOG_COMMON(0x400, PACA_EXGEN)
1035 ld r3,_NIP(r1)
1036 andis. r4,r12,0x5820
1037 li r5,0x400
1038 b .do_hash_page /* Try to handle as hpte fault */
1039
3c726f8d
BH
1040/*
1041 * Here is the common SLB miss user that is used when going to virtual
1042 * mode for SLB misses, that is currently not used
1043 */
1044#ifdef __DISABLED__
1045 .align 7
1046 .globl slb_miss_user_common
1047slb_miss_user_common:
1048 mflr r10
1049 std r3,PACA_EXGEN+EX_DAR(r13)
1050 stw r9,PACA_EXGEN+EX_CCR(r13)
1051 std r10,PACA_EXGEN+EX_LR(r13)
1052 std r11,PACA_EXGEN+EX_SRR0(r13)
1053 bl .slb_allocate_user
1054
1055 ld r10,PACA_EXGEN+EX_LR(r13)
1056 ld r3,PACA_EXGEN+EX_R3(r13)
1057 lwz r9,PACA_EXGEN+EX_CCR(r13)
1058 ld r11,PACA_EXGEN+EX_SRR0(r13)
1059 mtlr r10
1060 beq- slb_miss_fault
1061
1062 andi. r10,r12,MSR_RI /* check for unrecoverable exception */
1063 beq- unrecov_user_slb
1064 mfmsr r10
1065
1066.machine push
1067.machine "power4"
1068 mtcrf 0x80,r9
1069.machine pop
1070
1071 clrrdi r10,r10,2 /* clear RI before setting SRR0/1 */
1072 mtmsrd r10,1
1073
1074 mtspr SRR0,r11
1075 mtspr SRR1,r12
1076
1077 ld r9,PACA_EXGEN+EX_R9(r13)
1078 ld r10,PACA_EXGEN+EX_R10(r13)
1079 ld r11,PACA_EXGEN+EX_R11(r13)
1080 ld r12,PACA_EXGEN+EX_R12(r13)
1081 ld r13,PACA_EXGEN+EX_R13(r13)
1082 rfid
1083 b .
1084
1085slb_miss_fault:
1086 EXCEPTION_PROLOG_COMMON(0x380, PACA_EXGEN)
1087 ld r4,PACA_EXGEN+EX_DAR(r13)
1088 li r5,0
1089 std r4,_DAR(r1)
1090 std r5,_DSISR(r1)
3ccfc65c 1091 b handle_page_fault
3c726f8d
BH
1092
1093unrecov_user_slb:
1094 EXCEPTION_PROLOG_COMMON(0x4200, PACA_EXGEN)
1095 DISABLE_INTS
1096 bl .save_nvgprs
10971: addi r3,r1,STACK_FRAME_OVERHEAD
1098 bl .unrecoverable_exception
1099 b 1b
1100
1101#endif /* __DISABLED__ */
1102
1103
1104/*
1105 * r13 points to the PACA, r9 contains the saved CR,
1106 * r12 contain the saved SRR1, SRR0 is still ready for return
1107 * r3 has the faulting address
1108 * r9 - r13 are saved in paca->exslb.
1109 * r3 is saved in paca->slb_r3
1110 * We assume we aren't going to take any exceptions during this procedure.
1111 */
1112_GLOBAL(slb_miss_realmode)
1113 mflr r10
1114
1115 stw r9,PACA_EXSLB+EX_CCR(r13) /* save CR in exc. frame */
1116 std r10,PACA_EXSLB+EX_LR(r13) /* save LR */
1117
1118 bl .slb_allocate_realmode
1119
1120 /* All done -- return from exception. */
1121
1122 ld r10,PACA_EXSLB+EX_LR(r13)
1123 ld r3,PACA_EXSLB+EX_R3(r13)
1124 lwz r9,PACA_EXSLB+EX_CCR(r13) /* get saved CR */
1125#ifdef CONFIG_PPC_ISERIES
3f639ee8 1126BEGIN_FW_FTR_SECTION
3356bb9f
DG
1127 ld r11,PACALPPACAPTR(r13)
1128 ld r11,LPPACASRR0(r11) /* get SRR0 value */
3f639ee8 1129END_FW_FTR_SECTION_IFSET(FW_FEATURE_ISERIES)
3c726f8d
BH
1130#endif /* CONFIG_PPC_ISERIES */
1131
1132 mtlr r10
1133
1134 andi. r10,r12,MSR_RI /* check for unrecoverable exception */
1135 beq- unrecov_slb
1136
1137.machine push
1138.machine "power4"
1139 mtcrf 0x80,r9
1140 mtcrf 0x01,r9 /* slb_allocate uses cr0 and cr7 */
1141.machine pop
1142
1143#ifdef CONFIG_PPC_ISERIES
3f639ee8 1144BEGIN_FW_FTR_SECTION
3c726f8d
BH
1145 mtspr SPRN_SRR0,r11
1146 mtspr SPRN_SRR1,r12
3f639ee8 1147END_FW_FTR_SECTION_IFSET(FW_FEATURE_ISERIES)
3c726f8d
BH
1148#endif /* CONFIG_PPC_ISERIES */
1149 ld r9,PACA_EXSLB+EX_R9(r13)
1150 ld r10,PACA_EXSLB+EX_R10(r13)
1151 ld r11,PACA_EXSLB+EX_R11(r13)
1152 ld r12,PACA_EXSLB+EX_R12(r13)
1153 ld r13,PACA_EXSLB+EX_R13(r13)
1154 rfid
1155 b . /* prevent speculative execution */
1156
1157unrecov_slb:
1158 EXCEPTION_PROLOG_COMMON(0x4100, PACA_EXSLB)
1159 DISABLE_INTS
1160 bl .save_nvgprs
11611: addi r3,r1,STACK_FRAME_OVERHEAD
1162 bl .unrecoverable_exception
1163 b 1b
1164
14cf11af
PM
1165 .align 7
1166 .globl hardware_interrupt_common
1167 .globl hardware_interrupt_entry
1168hardware_interrupt_common:
1169 EXCEPTION_PROLOG_COMMON(0x500, PACA_EXGEN)
f39224a8 1170 FINISH_NAP
14cf11af
PM
1171hardware_interrupt_entry:
1172 DISABLE_INTS
cb2c9b27 1173 bl .ppc64_runlatch_on
14cf11af
PM
1174 addi r3,r1,STACK_FRAME_OVERHEAD
1175 bl .do_IRQ
1176 b .ret_from_except_lite
1177
f39224a8
PM
1178#ifdef CONFIG_PPC_970_NAP
1179power4_fixup_nap:
1180 andc r9,r9,r10
1181 std r9,TI_LOCAL_FLAGS(r11)
1182 ld r10,_LINK(r1) /* make idle task do the */
1183 std r10,_NIP(r1) /* equivalent of a blr */
1184 blr
1185#endif
1186
14cf11af
PM
1187 .align 7
1188 .globl alignment_common
1189alignment_common:
b5bbeb23 1190 mfspr r10,SPRN_DAR
14cf11af 1191 std r10,PACA_EXGEN+EX_DAR(r13)
b5bbeb23 1192 mfspr r10,SPRN_DSISR
14cf11af
PM
1193 stw r10,PACA_EXGEN+EX_DSISR(r13)
1194 EXCEPTION_PROLOG_COMMON(0x600, PACA_EXGEN)
1195 ld r3,PACA_EXGEN+EX_DAR(r13)
1196 lwz r4,PACA_EXGEN+EX_DSISR(r13)
1197 std r3,_DAR(r1)
1198 std r4,_DSISR(r1)
1199 bl .save_nvgprs
1200 addi r3,r1,STACK_FRAME_OVERHEAD
1201 ENABLE_INTS
1202 bl .alignment_exception
1203 b .ret_from_except
1204
1205 .align 7
1206 .globl program_check_common
1207program_check_common:
1208 EXCEPTION_PROLOG_COMMON(0x700, PACA_EXGEN)
1209 bl .save_nvgprs
1210 addi r3,r1,STACK_FRAME_OVERHEAD
1211 ENABLE_INTS
1212 bl .program_check_exception
1213 b .ret_from_except
1214
1215 .align 7
1216 .globl fp_unavailable_common
1217fp_unavailable_common:
1218 EXCEPTION_PROLOG_COMMON(0x800, PACA_EXGEN)
3ccfc65c 1219 bne 1f /* if from user, just load it up */
14cf11af
PM
1220 bl .save_nvgprs
1221 addi r3,r1,STACK_FRAME_OVERHEAD
1222 ENABLE_INTS
1223 bl .kernel_fp_unavailable_exception
1224 BUG_OPCODE
3ccfc65c 12251: b .load_up_fpu
14cf11af 1226
14cf11af
PM
1227 .align 7
1228 .globl altivec_unavailable_common
1229altivec_unavailable_common:
1230 EXCEPTION_PROLOG_COMMON(0xf20, PACA_EXGEN)
1231#ifdef CONFIG_ALTIVEC
1232BEGIN_FTR_SECTION
1233 bne .load_up_altivec /* if from user, just load it up */
1234END_FTR_SECTION_IFSET(CPU_FTR_ALTIVEC)
1235#endif
1236 bl .save_nvgprs
1237 addi r3,r1,STACK_FRAME_OVERHEAD
1238 ENABLE_INTS
1239 bl .altivec_unavailable_exception
1240 b .ret_from_except
1241
1242#ifdef CONFIG_ALTIVEC
1243/*
1244 * load_up_altivec(unused, unused, tsk)
1245 * Disable VMX for the task which had it previously,
1246 * and save its vector registers in its thread_struct.
1247 * Enables the VMX for use in the kernel on return.
1248 * On SMP we know the VMX is free, since we give it up every
1249 * switch (ie, no lazy save of the vector registers).
1250 * On entry: r13 == 'current' && last_task_used_altivec != 'current'
1251 */
1252_STATIC(load_up_altivec)
1253 mfmsr r5 /* grab the current MSR */
1254 oris r5,r5,MSR_VEC@h
1255 mtmsrd r5 /* enable use of VMX now */
1256 isync
1257
1258/*
1259 * For SMP, we don't do lazy VMX switching because it just gets too
1260 * horrendously complex, especially when a task switches from one CPU
1261 * to another. Instead we call giveup_altvec in switch_to.
1262 * VRSAVE isn't dealt with here, that is done in the normal context
1263 * switch code. Note that we could rely on vrsave value to eventually
1264 * avoid saving all of the VREGs here...
1265 */
1266#ifndef CONFIG_SMP
1267 ld r3,last_task_used_altivec@got(r2)
1268 ld r4,0(r3)
1269 cmpdi 0,r4,0
1270 beq 1f
1271 /* Save VMX state to last_task_used_altivec's THREAD struct */
1272 addi r4,r4,THREAD
1273 SAVE_32VRS(0,r5,r4)
1274 mfvscr vr0
1275 li r10,THREAD_VSCR
1276 stvx vr0,r10,r4
1277 /* Disable VMX for last_task_used_altivec */
1278 ld r5,PT_REGS(r4)
1279 ld r4,_MSR-STACK_FRAME_OVERHEAD(r5)
1280 lis r6,MSR_VEC@h
1281 andc r4,r4,r6
1282 std r4,_MSR-STACK_FRAME_OVERHEAD(r5)
12831:
1284#endif /* CONFIG_SMP */
1285 /* Hack: if we get an altivec unavailable trap with VRSAVE
1286 * set to all zeros, we assume this is a broken application
1287 * that fails to set it properly, and thus we switch it to
1288 * all 1's
1289 */
1290 mfspr r4,SPRN_VRSAVE
1291 cmpdi 0,r4,0
1292 bne+ 1f
1293 li r4,-1
1294 mtspr SPRN_VRSAVE,r4
12951:
1296 /* enable use of VMX after return */
1297 ld r4,PACACURRENT(r13)
1298 addi r5,r4,THREAD /* Get THREAD */
1299 oris r12,r12,MSR_VEC@h
1300 std r12,_MSR(r1)
1301 li r4,1
1302 li r10,THREAD_VSCR
1303 stw r4,THREAD_USED_VR(r5)
1304 lvx vr0,r10,r5
1305 mtvscr vr0
1306 REST_32VRS(0,r4,r5)
1307#ifndef CONFIG_SMP
1308 /* Update last_task_used_math to 'current' */
1309 subi r4,r5,THREAD /* Back to 'current' */
1310 std r4,0(r3)
1311#endif /* CONFIG_SMP */
1312 /* restore registers and return */
1313 b fast_exception_return
1314#endif /* CONFIG_ALTIVEC */
1315
1316/*
1317 * Hash table stuff
1318 */
1319 .align 7
1320_GLOBAL(do_hash_page)
1321 std r3,_DAR(r1)
1322 std r4,_DSISR(r1)
1323
1324 andis. r0,r4,0xa450 /* weird error? */
3ccfc65c 1325 bne- handle_page_fault /* if not, try to insert a HPTE */
14cf11af
PM
1326BEGIN_FTR_SECTION
1327 andis. r0,r4,0x0020 /* Is it a segment table fault? */
3ccfc65c 1328 bne- do_ste_alloc /* If so handle it */
14cf11af
PM
1329END_FTR_SECTION_IFCLR(CPU_FTR_SLB)
1330
1331 /*
1332 * We need to set the _PAGE_USER bit if MSR_PR is set or if we are
1333 * accessing a userspace segment (even from the kernel). We assume
1334 * kernel addresses always have the high bit set.
1335 */
1336 rlwinm r4,r4,32-25+9,31-9,31-9 /* DSISR_STORE -> _PAGE_RW */
1337 rotldi r0,r3,15 /* Move high bit into MSR_PR posn */
1338 orc r0,r12,r0 /* MSR_PR | ~high_bit */
1339 rlwimi r4,r0,32-13,30,30 /* becomes _PAGE_USER access bit */
1340 ori r4,r4,1 /* add _PAGE_PRESENT */
1341 rlwimi r4,r5,22+2,31-2,31-2 /* Set _PAGE_EXEC if trap is 0x400 */
1342
1343 /*
1344 * On iSeries, we soft-disable interrupts here, then
1345 * hard-enable interrupts so that the hash_page code can spin on
1346 * the hash_table_lock without problems on a shared processor.
1347 */
1348 DISABLE_INTS
1349
1350 /*
1351 * r3 contains the faulting address
1352 * r4 contains the required access permissions
1353 * r5 contains the trap number
1354 *
1355 * at return r3 = 0 for success
1356 */
1357 bl .hash_page /* build HPTE if possible */
1358 cmpdi r3,0 /* see if hash_page succeeded */
1359
1360#ifdef DO_SOFT_DISABLE
3f639ee8 1361BEGIN_FW_FTR_SECTION
14cf11af
PM
1362 /*
1363 * If we had interrupts soft-enabled at the point where the
1364 * DSI/ISI occurred, and an interrupt came in during hash_page,
1365 * handle it now.
1366 * We jump to ret_from_except_lite rather than fast_exception_return
1367 * because ret_from_except_lite will check for and handle pending
1368 * interrupts if necessary.
1369 */
3ccfc65c 1370 beq 13f
b0a779de
PM
1371END_FW_FTR_SECTION_IFSET(FW_FEATURE_ISERIES)
1372#endif
1373BEGIN_FW_FTR_SECTION
1374 /*
1375 * Here we have interrupts hard-disabled, so it is sufficient
1376 * to restore paca->{soft,hard}_enable and get out.
1377 */
1378 beq fast_exc_return_irq /* Return from exception on success */
1379END_FW_FTR_SECTION_IFCLR(FW_FEATURE_ISERIES)
1380
14cf11af
PM
1381 /* For a hash failure, we don't bother re-enabling interrupts */
1382 ble- 12f
1383
1384 /*
1385 * hash_page couldn't handle it, set soft interrupt enable back
1386 * to what it was before the trap. Note that .local_irq_restore
1387 * handles any interrupts pending at this point.
1388 */
1389 ld r3,SOFTE(r1)
1390 bl .local_irq_restore
1391 b 11f
14cf11af
PM
1392
1393/* Here we have a page fault that hash_page can't handle. */
3ccfc65c 1394handle_page_fault:
14cf11af
PM
1395 ENABLE_INTS
139611: ld r4,_DAR(r1)
1397 ld r5,_DSISR(r1)
1398 addi r3,r1,STACK_FRAME_OVERHEAD
1399 bl .do_page_fault
1400 cmpdi r3,0
3ccfc65c 1401 beq+ 13f
14cf11af
PM
1402 bl .save_nvgprs
1403 mr r5,r3
1404 addi r3,r1,STACK_FRAME_OVERHEAD
1405 lwz r4,_DAR(r1)
1406 bl .bad_page_fault
1407 b .ret_from_except
1408
79acbb3f
PM
140913: b .ret_from_except_lite
1410
14cf11af
PM
1411/* We have a page fault that hash_page could handle but HV refused
1412 * the PTE insertion
1413 */
141412: bl .save_nvgprs
1415 addi r3,r1,STACK_FRAME_OVERHEAD
1416 lwz r4,_DAR(r1)
1417 bl .low_hash_fault
1418 b .ret_from_except
1419
1420 /* here we have a segment miss */
3ccfc65c 1421do_ste_alloc:
14cf11af
PM
1422 bl .ste_allocate /* try to insert stab entry */
1423 cmpdi r3,0
3ccfc65c
PM
1424 bne- handle_page_fault
1425 b fast_exception_return
14cf11af
PM
1426
1427/*
1428 * r13 points to the PACA, r9 contains the saved CR,
1429 * r11 and r12 contain the saved SRR0 and SRR1.
1430 * r9 - r13 are saved in paca->exslb.
1431 * We assume we aren't going to take any exceptions during this procedure.
1432 * We assume (DAR >> 60) == 0xc.
1433 */
1434 .align 7
1435_GLOBAL(do_stab_bolted)
1436 stw r9,PACA_EXSLB+EX_CCR(r13) /* save CR in exc. frame */
1437 std r11,PACA_EXSLB+EX_SRR0(r13) /* save SRR0 in exc. frame */
1438
1439 /* Hash to the primary group */
1440 ld r10,PACASTABVIRT(r13)
b5bbeb23 1441 mfspr r11,SPRN_DAR
14cf11af
PM
1442 srdi r11,r11,28
1443 rldimi r10,r11,7,52 /* r10 = first ste of the group */
1444
1445 /* Calculate VSID */
1446 /* This is a kernel address, so protovsid = ESID */
1447 ASM_VSID_SCRAMBLE(r11, r9)
1448 rldic r9,r11,12,16 /* r9 = vsid << 12 */
1449
1450 /* Search the primary group for a free entry */
14511: ld r11,0(r10) /* Test valid bit of the current ste */
1452 andi. r11,r11,0x80
1453 beq 2f
1454 addi r10,r10,16
1455 andi. r11,r10,0x70
1456 bne 1b
1457
1458 /* Stick for only searching the primary group for now. */
1459 /* At least for now, we use a very simple random castout scheme */
1460 /* Use the TB as a random number ; OR in 1 to avoid entry 0 */
1461 mftb r11
1462 rldic r11,r11,4,57 /* r11 = (r11 << 4) & 0x70 */
1463 ori r11,r11,0x10
1464
1465 /* r10 currently points to an ste one past the group of interest */
1466 /* make it point to the randomly selected entry */
1467 subi r10,r10,128
1468 or r10,r10,r11 /* r10 is the entry to invalidate */
1469
1470 isync /* mark the entry invalid */
1471 ld r11,0(r10)
1472 rldicl r11,r11,56,1 /* clear the valid bit */
1473 rotldi r11,r11,8
1474 std r11,0(r10)
1475 sync
1476
1477 clrrdi r11,r11,28 /* Get the esid part of the ste */
1478 slbie r11
1479
14802: std r9,8(r10) /* Store the vsid part of the ste */
1481 eieio
1482
b5bbeb23 1483 mfspr r11,SPRN_DAR /* Get the new esid */
14cf11af
PM
1484 clrrdi r11,r11,28 /* Permits a full 32b of ESID */
1485 ori r11,r11,0x90 /* Turn on valid and kp */
1486 std r11,0(r10) /* Put new entry back into the stab */
1487
1488 sync
1489
1490 /* All done -- return from exception. */
1491 lwz r9,PACA_EXSLB+EX_CCR(r13) /* get saved CR */
1492 ld r11,PACA_EXSLB+EX_SRR0(r13) /* get saved SRR0 */
1493
1494 andi. r10,r12,MSR_RI
1495 beq- unrecov_slb
1496
1497 mtcrf 0x80,r9 /* restore CR */
1498
1499 mfmsr r10
1500 clrrdi r10,r10,2
1501 mtmsrd r10,1
1502
b5bbeb23
PM
1503 mtspr SPRN_SRR0,r11
1504 mtspr SPRN_SRR1,r12
14cf11af
PM
1505 ld r9,PACA_EXSLB+EX_R9(r13)
1506 ld r10,PACA_EXSLB+EX_R10(r13)
1507 ld r11,PACA_EXSLB+EX_R11(r13)
1508 ld r12,PACA_EXSLB+EX_R12(r13)
1509 ld r13,PACA_EXSLB+EX_R13(r13)
1510 rfid
1511 b . /* prevent speculative execution */
1512
14cf11af
PM
1513/*
1514 * Space for CPU0's segment table.
1515 *
1516 * On iSeries, the hypervisor must fill in at least one entry before
1517 * we get control (with relocate on). The address is give to the hv
ee400b63 1518 * as a page number (see xLparMap in lpardata.c), so this must be at a
14cf11af
PM
1519 * fixed address (the linker can't compute (u64)&initial_stab >>
1520 * PAGE_SHIFT).
1521 */
758438a7 1522 . = STAB0_OFFSET /* 0x6000 */
14cf11af
PM
1523 .globl initial_stab
1524initial_stab:
1525 .space 4096
1526
1527/*
1528 * Data area reserved for FWNMI option.
1529 * This address (0x7000) is fixed by the RPA.
1530 */
1531 .= 0x7000
1532 .globl fwnmi_data_area
1533fwnmi_data_area:
1534
1535 /* iSeries does not use the FWNMI stuff, so it is safe to put
1536 * this here, even if we later allow kernels that will boot on
1537 * both pSeries and iSeries */
1538#ifdef CONFIG_PPC_ISERIES
1539 . = LPARMAP_PHYS
1540#include "lparmap.s"
1541/*
1542 * This ".text" is here for old compilers that generate a trailing
1543 * .note section when compiling .c files to .s
1544 */
1545 .text
1546#endif /* CONFIG_PPC_ISERIES */
1547
1548 . = 0x8000
1549
1550/*
f39b7a55
OJ
1551 * On pSeries and most other platforms, secondary processors spin
1552 * in the following code.
14cf11af
PM
1553 * At entry, r3 = this processor's number (physical cpu id)
1554 */
f39b7a55 1555_GLOBAL(generic_secondary_smp_init)
14cf11af
PM
1556 mr r24,r3
1557
1558 /* turn on 64-bit mode */
1559 bl .enable_64b_mode
1560 isync
1561
14cf11af
PM
1562 /* Set up a paca value for this processor. Since we have the
1563 * physical cpu id in r24, we need to search the pacas to find
1564 * which logical id maps to our physical one.
1565 */
e58c3495 1566 LOAD_REG_IMMEDIATE(r13, paca) /* Get base vaddr of paca array */
14cf11af
PM
1567 li r5,0 /* logical cpu id */
15681: lhz r6,PACAHWCPUID(r13) /* Load HW procid from paca */
1569 cmpw r6,r24 /* Compare to our id */
1570 beq 2f
1571 addi r13,r13,PACA_SIZE /* Loop to next PACA on miss */
1572 addi r5,r5,1
1573 cmpwi r5,NR_CPUS
1574 blt 1b
1575
1576 mr r3,r24 /* not found, copy phys to r3 */
1577 b .kexec_wait /* next kernel might do better */
1578
b5bbeb23 15792: mtspr SPRN_SPRG3,r13 /* Save vaddr of paca in SPRG3 */
14cf11af
PM
1580 /* From now on, r24 is expected to be logical cpuid */
1581 mr r24,r5
15823: HMT_LOW
1583 lbz r23,PACAPROCSTART(r13) /* Test if this processor should */
1584 /* start. */
1585 sync
1586
f39b7a55
OJ
1587#ifndef CONFIG_SMP
1588 b 3b /* Never go on non-SMP */
1589#else
1590 cmpwi 0,r23,0
1591 beq 3b /* Loop until told to go */
1592
1593 /* See if we need to call a cpu state restore handler */
1594 LOAD_REG_IMMEDIATE(r23, cur_cpu_spec)
1595 ld r23,0(r23)
1596 ld r23,CPU_SPEC_RESTORE(r23)
1597 cmpdi 0,r23,0
1598 beq 4f
1599 ld r23,0(r23)
1600 mtctr r23
1601 bctrl
1602
16034: /* Create a temp kernel stack for use before relocation is on. */
14cf11af
PM
1604 ld r1,PACAEMERGSP(r13)
1605 subi r1,r1,STACK_FRAME_OVERHEAD
1606
f39b7a55 1607 b .__secondary_start
14cf11af 1608#endif
14cf11af
PM
1609
1610#ifdef CONFIG_PPC_ISERIES
1611_STATIC(__start_initialization_iSeries)
1612 /* Clear out the BSS */
e58c3495
DG
1613 LOAD_REG_IMMEDIATE(r11,__bss_stop)
1614 LOAD_REG_IMMEDIATE(r8,__bss_start)
14cf11af
PM
1615 sub r11,r11,r8 /* bss size */
1616 addi r11,r11,7 /* round up to an even double word */
1617 rldicl. r11,r11,61,3 /* shift right by 3 */
1618 beq 4f
1619 addi r8,r8,-8
1620 li r0,0
1621 mtctr r11 /* zero this many doublewords */
16223: stdu r0,8(r8)
1623 bdnz 3b
16244:
e58c3495 1625 LOAD_REG_IMMEDIATE(r1,init_thread_union)
14cf11af
PM
1626 addi r1,r1,THREAD_SIZE
1627 li r0,0
1628 stdu r0,-STACK_FRAME_OVERHEAD(r1)
1629
e58c3495 1630 LOAD_REG_IMMEDIATE(r2,__toc_start)
14cf11af
PM
1631 addi r2,r2,0x4000
1632 addi r2,r2,0x4000
1633
1634 bl .iSeries_early_setup
ee400b63 1635 bl .early_setup
14cf11af
PM
1636
1637 /* relocation is on at this point */
1638
1639 b .start_here_common
1640#endif /* CONFIG_PPC_ISERIES */
1641
14cf11af
PM
1642
1643_STATIC(__mmu_off)
1644 mfmsr r3
1645 andi. r0,r3,MSR_IR|MSR_DR
1646 beqlr
1647 andc r3,r3,r0
1648 mtspr SPRN_SRR0,r4
1649 mtspr SPRN_SRR1,r3
1650 sync
1651 rfid
1652 b . /* prevent speculative execution */
1653
1654
1655/*
1656 * Here is our main kernel entry point. We support currently 2 kind of entries
1657 * depending on the value of r5.
1658 *
1659 * r5 != NULL -> OF entry, we go to prom_init, "legacy" parameter content
1660 * in r3...r7
1661 *
1662 * r5 == NULL -> kexec style entry. r3 is a physical pointer to the
1663 * DT block, r4 is a physical pointer to the kernel itself
1664 *
1665 */
1666_GLOBAL(__start_initialization_multiplatform)
1667 /*
1668 * Are we booted from a PROM Of-type client-interface ?
1669 */
1670 cmpldi cr0,r5,0
1671 bne .__boot_from_prom /* yes -> prom */
1672
1673 /* Save parameters */
1674 mr r31,r3
1675 mr r30,r4
1676
1677 /* Make sure we are running in 64 bits mode */
1678 bl .enable_64b_mode
1679
1680 /* Setup some critical 970 SPRs before switching MMU off */
f39b7a55
OJ
1681 mfspr r0,SPRN_PVR
1682 srwi r0,r0,16
1683 cmpwi r0,0x39 /* 970 */
1684 beq 1f
1685 cmpwi r0,0x3c /* 970FX */
1686 beq 1f
1687 cmpwi r0,0x44 /* 970MP */
190a24f5
OJ
1688 beq 1f
1689 cmpwi r0,0x45 /* 970GX */
f39b7a55
OJ
1690 bne 2f
16911: bl .__cpu_preinit_ppc970
16922:
14cf11af 1693
14cf11af 1694 /* Switch off MMU if not already */
e58c3495 1695 LOAD_REG_IMMEDIATE(r4, .__after_prom_start - KERNELBASE)
14cf11af
PM
1696 add r4,r4,r30
1697 bl .__mmu_off
1698 b .__after_prom_start
1699
1700_STATIC(__boot_from_prom)
1701 /* Save parameters */
1702 mr r31,r3
1703 mr r30,r4
1704 mr r29,r5
1705 mr r28,r6
1706 mr r27,r7
1707
6088857b
OH
1708 /*
1709 * Align the stack to 16-byte boundary
1710 * Depending on the size and layout of the ELF sections in the initial
1711 * boot binary, the stack pointer will be unalignet on PowerMac
1712 */
c05b4770
LT
1713 rldicr r1,r1,0,59
1714
14cf11af
PM
1715 /* Make sure we are running in 64 bits mode */
1716 bl .enable_64b_mode
1717
1718 /* put a relocation offset into r3 */
1719 bl .reloc_offset
1720
e58c3495 1721 LOAD_REG_IMMEDIATE(r2,__toc_start)
14cf11af
PM
1722 addi r2,r2,0x4000
1723 addi r2,r2,0x4000
1724
1725 /* Relocate the TOC from a virt addr to a real addr */
5a408329 1726 add r2,r2,r3
14cf11af
PM
1727
1728 /* Restore parameters */
1729 mr r3,r31
1730 mr r4,r30
1731 mr r5,r29
1732 mr r6,r28
1733 mr r7,r27
1734
1735 /* Do all of the interaction with OF client interface */
1736 bl .prom_init
1737 /* We never return */
1738 trap
1739
1740/*
1741 * At this point, r3 contains the physical address we are running at,
1742 * returned by prom_init()
1743 */
1744_STATIC(__after_prom_start)
1745
1746/*
758438a7 1747 * We need to run with __start at physical address PHYSICAL_START.
14cf11af
PM
1748 * This will leave some code in the first 256B of
1749 * real memory, which are reserved for software use.
1750 * The remainder of the first page is loaded with the fixed
1751 * interrupt vectors. The next two pages are filled with
1752 * unknown exception placeholders.
1753 *
1754 * Note: This process overwrites the OF exception vectors.
1755 * r26 == relocation offset
1756 * r27 == KERNELBASE
1757 */
1758 bl .reloc_offset
1759 mr r26,r3
e58c3495 1760 LOAD_REG_IMMEDIATE(r27, KERNELBASE)
14cf11af 1761
e58c3495 1762 LOAD_REG_IMMEDIATE(r3, PHYSICAL_START) /* target addr */
14cf11af
PM
1763
1764 // XXX FIXME: Use phys returned by OF (r30)
5a408329 1765 add r4,r27,r26 /* source addr */
14cf11af
PM
1766 /* current address of _start */
1767 /* i.e. where we are running */
1768 /* the source addr */
1769
d0b79c54
JX
1770 cmpdi r4,0 /* In some cases the loader may */
1771 beq .start_here_multiplatform /* have already put us at zero */
1772 /* so we can skip the copy. */
e58c3495 1773 LOAD_REG_IMMEDIATE(r5,copy_to_here) /* # bytes of memory to copy */
14cf11af
PM
1774 sub r5,r5,r27
1775
1776 li r6,0x100 /* Start offset, the first 0x100 */
1777 /* bytes were copied earlier. */
1778
1779 bl .copy_and_flush /* copy the first n bytes */
1780 /* this includes the code being */
1781 /* executed here. */
1782
e58c3495 1783 LOAD_REG_IMMEDIATE(r0, 4f) /* Jump to the copy of this code */
14cf11af
PM
1784 mtctr r0 /* that we just made/relocated */
1785 bctr
1786
e58c3495 17874: LOAD_REG_IMMEDIATE(r5,klimit)
5a408329 1788 add r5,r5,r26
14cf11af
PM
1789 ld r5,0(r5) /* get the value of klimit */
1790 sub r5,r5,r27
1791 bl .copy_and_flush /* copy the rest */
1792 b .start_here_multiplatform
1793
14cf11af
PM
1794/*
1795 * Copy routine used to copy the kernel to start at physical address 0
1796 * and flush and invalidate the caches as needed.
1797 * r3 = dest addr, r4 = source addr, r5 = copy limit, r6 = start offset
1798 * on exit, r3, r4, r5 are unchanged, r6 is updated to be >= r5.
1799 *
1800 * Note: this routine *only* clobbers r0, r6 and lr
1801 */
1802_GLOBAL(copy_and_flush)
1803 addi r5,r5,-8
1804 addi r6,r6,-8
5a2fe38d 18054: li r0,8 /* Use the smallest common */
14cf11af
PM
1806 /* denominator cache line */
1807 /* size. This results in */
1808 /* extra cache line flushes */
1809 /* but operation is correct. */
1810 /* Can't get cache line size */
1811 /* from NACA as it is being */
1812 /* moved too. */
1813
1814 mtctr r0 /* put # words/line in ctr */
18153: addi r6,r6,8 /* copy a cache line */
1816 ldx r0,r6,r4
1817 stdx r0,r6,r3
1818 bdnz 3b
1819 dcbst r6,r3 /* write it to memory */
1820 sync
1821 icbi r6,r3 /* flush the icache line */
1822 cmpld 0,r6,r5
1823 blt 4b
1824 sync
1825 addi r5,r5,8
1826 addi r6,r6,8
1827 blr
1828
1829.align 8
1830copy_to_here:
1831
1832#ifdef CONFIG_SMP
1833#ifdef CONFIG_PPC_PMAC
1834/*
1835 * On PowerMac, secondary processors starts from the reset vector, which
1836 * is temporarily turned into a call to one of the functions below.
1837 */
1838 .section ".text";
1839 .align 2 ;
1840
35499c01
PM
1841 .globl __secondary_start_pmac_0
1842__secondary_start_pmac_0:
1843 /* NB the entries for cpus 0, 1, 2 must each occupy 8 bytes. */
1844 li r24,0
1845 b 1f
1846 li r24,1
1847 b 1f
1848 li r24,2
1849 b 1f
1850 li r24,3
18511:
14cf11af
PM
1852
1853_GLOBAL(pmac_secondary_start)
1854 /* turn on 64-bit mode */
1855 bl .enable_64b_mode
1856 isync
1857
1858 /* Copy some CPU settings from CPU 0 */
f39b7a55 1859 bl .__restore_cpu_ppc970
14cf11af
PM
1860
1861 /* pSeries do that early though I don't think we really need it */
1862 mfmsr r3
1863 ori r3,r3,MSR_RI
1864 mtmsrd r3 /* RI on */
1865
1866 /* Set up a paca value for this processor. */
e58c3495 1867 LOAD_REG_IMMEDIATE(r4, paca) /* Get base vaddr of paca array */
14cf11af
PM
1868 mulli r13,r24,PACA_SIZE /* Calculate vaddr of right paca */
1869 add r13,r13,r4 /* for this processor. */
b5bbeb23 1870 mtspr SPRN_SPRG3,r13 /* Save vaddr of paca in SPRG3 */
14cf11af
PM
1871
1872 /* Create a temp kernel stack for use before relocation is on. */
1873 ld r1,PACAEMERGSP(r13)
1874 subi r1,r1,STACK_FRAME_OVERHEAD
1875
1876 b .__secondary_start
1877
1878#endif /* CONFIG_PPC_PMAC */
1879
1880/*
1881 * This function is called after the master CPU has released the
1882 * secondary processors. The execution environment is relocation off.
1883 * The paca for this processor has the following fields initialized at
1884 * this point:
1885 * 1. Processor number
1886 * 2. Segment table pointer (virtual address)
1887 * On entry the following are set:
1888 * r1 = stack pointer. vaddr for iSeries, raddr (temp stack) for pSeries
1889 * r24 = cpu# (in Linux terms)
1890 * r13 = paca virtual address
1891 * SPRG3 = paca virtual address
1892 */
1893_GLOBAL(__secondary_start)
799d6046
PM
1894 /* Set thread priority to MEDIUM */
1895 HMT_MEDIUM
14cf11af 1896
799d6046 1897 /* Load TOC */
14cf11af 1898 ld r2,PACATOC(r13)
799d6046
PM
1899
1900 /* Do early setup for that CPU (stab, slb, hash table pointer) */
1901 bl .early_setup_secondary
14cf11af
PM
1902
1903 /* Initialize the kernel stack. Just a repeat for iSeries. */
e58c3495 1904 LOAD_REG_ADDR(r3, current_set)
14cf11af
PM
1905 sldi r28,r24,3 /* get current_set[cpu#] */
1906 ldx r1,r3,r28
1907 addi r1,r1,THREAD_SIZE-STACK_FRAME_OVERHEAD
1908 std r1,PACAKSAVE(r13)
1909
799d6046 1910 /* Clear backchain so we get nice backtraces */
14cf11af
PM
1911 li r7,0
1912 mtlr r7
1913
1914 /* enable MMU and jump to start_secondary */
e58c3495
DG
1915 LOAD_REG_ADDR(r3, .start_secondary_prolog)
1916 LOAD_REG_IMMEDIATE(r4, MSR_KERNEL)
d04c56f7 1917#ifdef CONFIG_PPC_ISERIES
3f639ee8 1918BEGIN_FW_FTR_SECTION
14cf11af 1919 ori r4,r4,MSR_EE
3f639ee8 1920END_FW_FTR_SECTION_IFSET(FW_FEATURE_ISERIES)
14cf11af 1921#endif
d04c56f7
PM
1922BEGIN_FW_FTR_SECTION
1923 stb r7,PACASOFTIRQEN(r13)
1924 stb r7,PACAHARDIRQEN(r13)
1925END_FW_FTR_SECTION_IFCLR(FW_FEATURE_ISERIES)
1926
b5bbeb23
PM
1927 mtspr SPRN_SRR0,r3
1928 mtspr SPRN_SRR1,r4
14cf11af
PM
1929 rfid
1930 b . /* prevent speculative execution */
1931
1932/*
1933 * Running with relocation on at this point. All we want to do is
1934 * zero the stack back-chain pointer before going into C code.
1935 */
1936_GLOBAL(start_secondary_prolog)
1937 li r3,0
1938 std r3,0(r1) /* Zero the stack frame pointer */
1939 bl .start_secondary
799d6046 1940 b .
14cf11af
PM
1941#endif
1942
1943/*
1944 * This subroutine clobbers r11 and r12
1945 */
1946_GLOBAL(enable_64b_mode)
1947 mfmsr r11 /* grab the current MSR */
1948 li r12,1
1949 rldicr r12,r12,MSR_SF_LG,(63-MSR_SF_LG)
1950 or r11,r11,r12
1951 li r12,1
1952 rldicr r12,r12,MSR_ISF_LG,(63-MSR_ISF_LG)
1953 or r11,r11,r12
1954 mtmsrd r11
1955 isync
1956 blr
1957
14cf11af
PM
1958/*
1959 * This is where the main kernel code starts.
1960 */
1961_STATIC(start_here_multiplatform)
1962 /* get a new offset, now that the kernel has moved. */
1963 bl .reloc_offset
1964 mr r26,r3
1965
1966 /* Clear out the BSS. It may have been done in prom_init,
1967 * already but that's irrelevant since prom_init will soon
1968 * be detached from the kernel completely. Besides, we need
1969 * to clear it now for kexec-style entry.
1970 */
e58c3495
DG
1971 LOAD_REG_IMMEDIATE(r11,__bss_stop)
1972 LOAD_REG_IMMEDIATE(r8,__bss_start)
14cf11af
PM
1973 sub r11,r11,r8 /* bss size */
1974 addi r11,r11,7 /* round up to an even double word */
1975 rldicl. r11,r11,61,3 /* shift right by 3 */
1976 beq 4f
1977 addi r8,r8,-8
1978 li r0,0
1979 mtctr r11 /* zero this many doublewords */
19803: stdu r0,8(r8)
1981 bdnz 3b
19824:
1983
1984 mfmsr r6
1985 ori r6,r6,MSR_RI
1986 mtmsrd r6 /* RI on */
1987
14cf11af
PM
1988 /* The following gets the stack and TOC set up with the regs */
1989 /* pointing to the real addr of the kernel stack. This is */
1990 /* all done to support the C function call below which sets */
1991 /* up the htab. This is done because we have relocated the */
1992 /* kernel but are still running in real mode. */
1993
e58c3495 1994 LOAD_REG_IMMEDIATE(r3,init_thread_union)
5a408329 1995 add r3,r3,r26
14cf11af
PM
1996
1997 /* set up a stack pointer (physical address) */
1998 addi r1,r3,THREAD_SIZE
1999 li r0,0
2000 stdu r0,-STACK_FRAME_OVERHEAD(r1)
2001
2002 /* set up the TOC (physical address) */
e58c3495 2003 LOAD_REG_IMMEDIATE(r2,__toc_start)
14cf11af
PM
2004 addi r2,r2,0x4000
2005 addi r2,r2,0x4000
5a408329 2006 add r2,r2,r26
14cf11af 2007
14cf11af
PM
2008 /* Do very early kernel initializations, including initial hash table,
2009 * stab and slb setup before we turn on relocation. */
2010
2011 /* Restore parameters passed from prom_init/kexec */
2012 mr r3,r31
2013 bl .early_setup
2014
e58c3495
DG
2015 LOAD_REG_IMMEDIATE(r3, .start_here_common)
2016 LOAD_REG_IMMEDIATE(r4, MSR_KERNEL)
b5bbeb23
PM
2017 mtspr SPRN_SRR0,r3
2018 mtspr SPRN_SRR1,r4
14cf11af
PM
2019 rfid
2020 b . /* prevent speculative execution */
14cf11af
PM
2021
2022 /* This is where all platforms converge execution */
2023_STATIC(start_here_common)
2024 /* relocation is on at this point */
2025
2026 /* The following code sets up the SP and TOC now that we are */
2027 /* running with translation enabled. */
2028
e58c3495 2029 LOAD_REG_IMMEDIATE(r3,init_thread_union)
14cf11af
PM
2030
2031 /* set up the stack */
2032 addi r1,r3,THREAD_SIZE
2033 li r0,0
2034 stdu r0,-STACK_FRAME_OVERHEAD(r1)
2035
14cf11af 2036 /* ptr to current */
e58c3495 2037 LOAD_REG_IMMEDIATE(r4, init_task)
14cf11af
PM
2038 std r4,PACACURRENT(r13)
2039
2040 /* Load the TOC */
2041 ld r2,PACATOC(r13)
2042 std r1,PACAKSAVE(r13)
2043
2044 bl .setup_system
2045
2046 /* Load up the kernel context */
20475:
14cf11af 2048 li r5,0
d04c56f7
PM
2049 stb r5,PACASOFTIRQEN(r13) /* Soft Disabled */
2050#ifdef CONFIG_PPC_ISERIES
2051BEGIN_FW_FTR_SECTION
14cf11af
PM
2052 mfmsr r5
2053 ori r5,r5,MSR_EE /* Hard Enabled */
2054 mtmsrd r5
3f639ee8 2055END_FW_FTR_SECTION_IFSET(FW_FEATURE_ISERIES)
14cf11af 2056#endif
d04c56f7
PM
2057BEGIN_FW_FTR_SECTION
2058 stb r5,PACAHARDIRQEN(r13)
2059END_FW_FTR_SECTION_IFCLR(FW_FEATURE_ISERIES)
14cf11af
PM
2060
2061 bl .start_kernel
2062
f1870f77
AB
2063 /* Not reached */
2064 BUG_OPCODE
14cf11af 2065
14cf11af
PM
2066/*
2067 * We put a few things here that have to be page-aligned.
2068 * This stuff goes at the beginning of the bss, which is page-aligned.
2069 */
2070 .section ".bss"
2071
2072 .align PAGE_SHIFT
2073
2074 .globl empty_zero_page
2075empty_zero_page:
2076 .space PAGE_SIZE
2077
2078 .globl swapper_pg_dir
2079swapper_pg_dir:
2080 .space PAGE_SIZE
2081
2082/*
2083 * This space gets a copy of optional info passed to us by the bootstrap
2084 * Used to pass parameters into the kernel like root=/dev/sda1, etc.
2085 */
2086 .globl cmd_line
2087cmd_line:
2088 .space COMMAND_LINE_SIZE