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