]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blob - arch/powerpc/kernel/head_64.S
43a38d89eafc3a3303af811b26224117d807b10d
[mirror_ubuntu-bionic-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 #include <asm/firmware.h>
37 #include <asm/page_64.h>
38 #include <asm/exception.h>
39
40 #define DO_SOFT_DISABLE
41
42 /*
43 * We layout physical memory as follows:
44 * 0x0000 - 0x00ff : Secondary processor spin code
45 * 0x0100 - 0x2fff : pSeries Interrupt prologs
46 * 0x3000 - 0x5fff : interrupt support, iSeries and common interrupt prologs
47 * 0x6000 - 0x6fff : Initial (CPU0) segment table
48 * 0x7000 - 0x7fff : FWNMI data area
49 * 0x8000 - : Early init and support code
50 */
51
52 /*
53 * SPRG Usage
54 *
55 * Register Definition
56 *
57 * SPRG0 reserved for hypervisor
58 * SPRG1 temp - used to save gpr
59 * SPRG2 temp - used to save gpr
60 * SPRG3 virt addr of paca
61 */
62
63 /*
64 * Entering into this code we make the following assumptions:
65 * For pSeries:
66 * 1. The MMU is off & open firmware is running in real mode.
67 * 2. The kernel is entered at __start
68 *
69 * For iSeries:
70 * 1. The MMU is on (as it always is for iSeries)
71 * 2. The kernel is entered at system_reset_iSeries
72 */
73
74 .text
75 .globl _stext
76 _stext:
77 _GLOBAL(__start)
78 /* NOP this out unconditionally */
79 BEGIN_FTR_SECTION
80 b .__start_initialization_multiplatform
81 END_FTR_SECTION(0, 1)
82
83 /* Catch branch to 0 in real mode */
84 trap
85
86 /* Secondary processors spin on this value until it goes to 1. */
87 .globl __secondary_hold_spinloop
88 __secondary_hold_spinloop:
89 .llong 0x0
90
91 /* Secondary processors write this value with their cpu # */
92 /* after they enter the spin loop immediately below. */
93 .globl __secondary_hold_acknowledge
94 __secondary_hold_acknowledge:
95 .llong 0x0
96
97 #ifdef CONFIG_PPC_ISERIES
98 /*
99 * At offset 0x20, there is a pointer to iSeries LPAR data.
100 * This is required by the hypervisor
101 */
102 . = 0x20
103 .llong hvReleaseData-KERNELBASE
104 #endif /* CONFIG_PPC_ISERIES */
105
106 . = 0x60
107 /*
108 * The following code is used to hold secondary processors
109 * in a spin loop after they have entered the kernel, but
110 * before the bulk of the kernel has been relocated. This code
111 * is relocated to physical address 0x60 before prom_init is run.
112 * All of it must fit below the first exception vector at 0x100.
113 */
114 _GLOBAL(__secondary_hold)
115 mfmsr r24
116 ori r24,r24,MSR_RI
117 mtmsrd r24 /* RI on */
118
119 /* Grab our physical cpu number */
120 mr r24,r3
121
122 /* Tell the master cpu we're here */
123 /* Relocation is off & we are located at an address less */
124 /* than 0x100, so only need to grab low order offset. */
125 std r24,__secondary_hold_acknowledge@l(0)
126 sync
127
128 /* All secondary cpus wait here until told to start. */
129 100: ld r4,__secondary_hold_spinloop@l(0)
130 cmpdi 0,r4,1
131 bne 100b
132
133 #if defined(CONFIG_SMP) || defined(CONFIG_KEXEC)
134 LOAD_REG_IMMEDIATE(r4, .generic_secondary_smp_init)
135 mtctr r4
136 mr r3,r24
137 bctr
138 #else
139 BUG_OPCODE
140 #endif
141
142 /* This value is used to mark exception frames on the stack. */
143 .section ".toc","aw"
144 exception_marker:
145 .tc ID_72656773_68657265[TC],0x7265677368657265
146 .text
147
148 /*
149 * This is the start of the interrupt handlers for pSeries
150 * This code runs with relocation off.
151 */
152 . = 0x100
153 .globl __start_interrupts
154 __start_interrupts:
155
156 STD_EXCEPTION_PSERIES(0x100, system_reset)
157
158 . = 0x200
159 _machine_check_pSeries:
160 HMT_MEDIUM
161 mtspr SPRN_SPRG1,r13 /* save r13 */
162 EXCEPTION_PROLOG_PSERIES(PACA_EXMC, machine_check_common)
163
164 . = 0x300
165 .globl data_access_pSeries
166 data_access_pSeries:
167 HMT_MEDIUM
168 mtspr SPRN_SPRG1,r13
169 BEGIN_FTR_SECTION
170 mtspr SPRN_SPRG2,r12
171 mfspr r13,SPRN_DAR
172 mfspr r12,SPRN_DSISR
173 srdi r13,r13,60
174 rlwimi r13,r12,16,0x20
175 mfcr r12
176 cmpwi r13,0x2c
177 beq do_stab_bolted_pSeries
178 mtcrf 0x80,r12
179 mfspr r12,SPRN_SPRG2
180 END_FTR_SECTION_IFCLR(CPU_FTR_SLB)
181 EXCEPTION_PROLOG_PSERIES(PACA_EXGEN, data_access_common)
182
183 . = 0x380
184 .globl data_access_slb_pSeries
185 data_access_slb_pSeries:
186 HMT_MEDIUM
187 mtspr SPRN_SPRG1,r13
188 mfspr r13,SPRN_SPRG3 /* get paca address into r13 */
189 std r3,PACA_EXSLB+EX_R3(r13)
190 mfspr r3,SPRN_DAR
191 std r9,PACA_EXSLB+EX_R9(r13) /* save r9 - r12 */
192 mfcr r9
193 #ifdef __DISABLED__
194 /* Keep that around for when we re-implement dynamic VSIDs */
195 cmpdi r3,0
196 bge slb_miss_user_pseries
197 #endif /* __DISABLED__ */
198 std r10,PACA_EXSLB+EX_R10(r13)
199 std r11,PACA_EXSLB+EX_R11(r13)
200 std r12,PACA_EXSLB+EX_R12(r13)
201 mfspr r10,SPRN_SPRG1
202 std r10,PACA_EXSLB+EX_R13(r13)
203 mfspr r12,SPRN_SRR1 /* and SRR1 */
204 b .slb_miss_realmode /* Rel. branch works in real mode */
205
206 STD_EXCEPTION_PSERIES(0x400, instruction_access)
207
208 . = 0x480
209 .globl instruction_access_slb_pSeries
210 instruction_access_slb_pSeries:
211 HMT_MEDIUM
212 mtspr SPRN_SPRG1,r13
213 mfspr r13,SPRN_SPRG3 /* get paca address into r13 */
214 std r3,PACA_EXSLB+EX_R3(r13)
215 mfspr r3,SPRN_SRR0 /* SRR0 is faulting address */
216 std r9,PACA_EXSLB+EX_R9(r13) /* save r9 - r12 */
217 mfcr r9
218 #ifdef __DISABLED__
219 /* Keep that around for when we re-implement dynamic VSIDs */
220 cmpdi r3,0
221 bge slb_miss_user_pseries
222 #endif /* __DISABLED__ */
223 std r10,PACA_EXSLB+EX_R10(r13)
224 std r11,PACA_EXSLB+EX_R11(r13)
225 std r12,PACA_EXSLB+EX_R12(r13)
226 mfspr r10,SPRN_SPRG1
227 std r10,PACA_EXSLB+EX_R13(r13)
228 mfspr r12,SPRN_SRR1 /* and SRR1 */
229 b .slb_miss_realmode /* Rel. branch works in real mode */
230
231 MASKABLE_EXCEPTION_PSERIES(0x500, hardware_interrupt)
232 STD_EXCEPTION_PSERIES(0x600, alignment)
233 STD_EXCEPTION_PSERIES(0x700, program_check)
234 STD_EXCEPTION_PSERIES(0x800, fp_unavailable)
235 MASKABLE_EXCEPTION_PSERIES(0x900, decrementer)
236 STD_EXCEPTION_PSERIES(0xa00, trap_0a)
237 STD_EXCEPTION_PSERIES(0xb00, trap_0b)
238
239 . = 0xc00
240 .globl system_call_pSeries
241 system_call_pSeries:
242 HMT_MEDIUM
243 mr r9,r13
244 mfmsr r10
245 mfspr r13,SPRN_SPRG3
246 mfspr r11,SPRN_SRR0
247 clrrdi r12,r13,32
248 oris r12,r12,system_call_common@h
249 ori r12,r12,system_call_common@l
250 mtspr SPRN_SRR0,r12
251 ori r10,r10,MSR_IR|MSR_DR|MSR_RI
252 mfspr r12,SPRN_SRR1
253 mtspr SPRN_SRR1,r10
254 rfid
255 b . /* prevent speculative execution */
256
257 STD_EXCEPTION_PSERIES(0xd00, single_step)
258 STD_EXCEPTION_PSERIES(0xe00, trap_0e)
259
260 /* We need to deal with the Altivec unavailable exception
261 * here which is at 0xf20, thus in the middle of the
262 * prolog code of the PerformanceMonitor one. A little
263 * trickery is thus necessary
264 */
265 . = 0xf00
266 b performance_monitor_pSeries
267
268 STD_EXCEPTION_PSERIES(0xf20, altivec_unavailable)
269
270 #ifdef CONFIG_CBE_RAS
271 HSTD_EXCEPTION_PSERIES(0x1200, cbe_system_error)
272 #endif /* CONFIG_CBE_RAS */
273 STD_EXCEPTION_PSERIES(0x1300, instruction_breakpoint)
274 #ifdef CONFIG_CBE_RAS
275 HSTD_EXCEPTION_PSERIES(0x1600, cbe_maintenance)
276 #endif /* CONFIG_CBE_RAS */
277 STD_EXCEPTION_PSERIES(0x1700, altivec_assist)
278 #ifdef CONFIG_CBE_RAS
279 HSTD_EXCEPTION_PSERIES(0x1800, cbe_thermal)
280 #endif /* CONFIG_CBE_RAS */
281
282 . = 0x3000
283
284 /*** pSeries interrupt support ***/
285
286 /* moved from 0xf00 */
287 STD_EXCEPTION_PSERIES(., performance_monitor)
288
289 /*
290 * An interrupt came in while soft-disabled; clear EE in SRR1,
291 * clear paca->hard_enabled and return.
292 */
293 masked_interrupt:
294 stb r10,PACAHARDIRQEN(r13)
295 mtcrf 0x80,r9
296 ld r9,PACA_EXGEN+EX_R9(r13)
297 mfspr r10,SPRN_SRR1
298 rldicl r10,r10,48,1 /* clear MSR_EE */
299 rotldi r10,r10,16
300 mtspr SPRN_SRR1,r10
301 ld r10,PACA_EXGEN+EX_R10(r13)
302 mfspr r13,SPRN_SPRG1
303 rfid
304 b .
305
306 .align 7
307 do_stab_bolted_pSeries:
308 mtcrf 0x80,r12
309 mfspr r12,SPRN_SPRG2
310 EXCEPTION_PROLOG_PSERIES(PACA_EXSLB, .do_stab_bolted)
311
312 /*
313 * We have some room here we use that to put
314 * the peries slb miss user trampoline code so it's reasonably
315 * away from slb_miss_user_common to avoid problems with rfid
316 *
317 * This is used for when the SLB miss handler has to go virtual,
318 * which doesn't happen for now anymore but will once we re-implement
319 * dynamic VSIDs for shared page tables
320 */
321 #ifdef __DISABLED__
322 slb_miss_user_pseries:
323 std r10,PACA_EXGEN+EX_R10(r13)
324 std r11,PACA_EXGEN+EX_R11(r13)
325 std r12,PACA_EXGEN+EX_R12(r13)
326 mfspr r10,SPRG1
327 ld r11,PACA_EXSLB+EX_R9(r13)
328 ld r12,PACA_EXSLB+EX_R3(r13)
329 std r10,PACA_EXGEN+EX_R13(r13)
330 std r11,PACA_EXGEN+EX_R9(r13)
331 std r12,PACA_EXGEN+EX_R3(r13)
332 clrrdi r12,r13,32
333 mfmsr r10
334 mfspr r11,SRR0 /* save SRR0 */
335 ori r12,r12,slb_miss_user_common@l /* virt addr of handler */
336 ori r10,r10,MSR_IR|MSR_DR|MSR_RI
337 mtspr SRR0,r12
338 mfspr r12,SRR1 /* and SRR1 */
339 mtspr SRR1,r10
340 rfid
341 b . /* prevent spec. execution */
342 #endif /* __DISABLED__ */
343
344 #ifdef CONFIG_PPC_PSERIES
345 /*
346 * Vectors for the FWNMI option. Share common code.
347 */
348 .globl system_reset_fwnmi
349 .align 7
350 system_reset_fwnmi:
351 HMT_MEDIUM
352 mtspr SPRN_SPRG1,r13 /* save r13 */
353 EXCEPTION_PROLOG_PSERIES_FORCE_64BIT(PACA_EXGEN, system_reset_common)
354
355 .globl machine_check_fwnmi
356 .align 7
357 machine_check_fwnmi:
358 HMT_MEDIUM
359 mtspr SPRN_SPRG1,r13 /* save r13 */
360 EXCEPTION_PROLOG_PSERIES_FORCE_64BIT(PACA_EXMC, machine_check_common)
361
362 #endif /* CONFIG_PPC_PSERIES */
363
364 /*** Common interrupt handlers ***/
365
366 STD_EXCEPTION_COMMON(0x100, system_reset, .system_reset_exception)
367
368 /*
369 * Machine check is different because we use a different
370 * save area: PACA_EXMC instead of PACA_EXGEN.
371 */
372 .align 7
373 .globl machine_check_common
374 machine_check_common:
375 EXCEPTION_PROLOG_COMMON(0x200, PACA_EXMC)
376 FINISH_NAP
377 DISABLE_INTS
378 bl .save_nvgprs
379 addi r3,r1,STACK_FRAME_OVERHEAD
380 bl .machine_check_exception
381 b .ret_from_except
382
383 STD_EXCEPTION_COMMON_LITE(0x900, decrementer, .timer_interrupt)
384 STD_EXCEPTION_COMMON(0xa00, trap_0a, .unknown_exception)
385 STD_EXCEPTION_COMMON(0xb00, trap_0b, .unknown_exception)
386 STD_EXCEPTION_COMMON(0xd00, single_step, .single_step_exception)
387 STD_EXCEPTION_COMMON(0xe00, trap_0e, .unknown_exception)
388 STD_EXCEPTION_COMMON_IDLE(0xf00, performance_monitor, .performance_monitor_exception)
389 STD_EXCEPTION_COMMON(0x1300, instruction_breakpoint, .instruction_breakpoint_exception)
390 #ifdef CONFIG_ALTIVEC
391 STD_EXCEPTION_COMMON(0x1700, altivec_assist, .altivec_assist_exception)
392 #else
393 STD_EXCEPTION_COMMON(0x1700, altivec_assist, .unknown_exception)
394 #endif
395 #ifdef CONFIG_CBE_RAS
396 STD_EXCEPTION_COMMON(0x1200, cbe_system_error, .cbe_system_error_exception)
397 STD_EXCEPTION_COMMON(0x1600, cbe_maintenance, .cbe_maintenance_exception)
398 STD_EXCEPTION_COMMON(0x1800, cbe_thermal, .cbe_thermal_exception)
399 #endif /* CONFIG_CBE_RAS */
400
401 /*
402 * Here we have detected that the kernel stack pointer is bad.
403 * R9 contains the saved CR, r13 points to the paca,
404 * r10 contains the (bad) kernel stack pointer,
405 * r11 and r12 contain the saved SRR0 and SRR1.
406 * We switch to using an emergency stack, save the registers there,
407 * and call kernel_bad_stack(), which panics.
408 */
409 bad_stack:
410 ld r1,PACAEMERGSP(r13)
411 subi r1,r1,64+INT_FRAME_SIZE
412 std r9,_CCR(r1)
413 std r10,GPR1(r1)
414 std r11,_NIP(r1)
415 std r12,_MSR(r1)
416 mfspr r11,SPRN_DAR
417 mfspr r12,SPRN_DSISR
418 std r11,_DAR(r1)
419 std r12,_DSISR(r1)
420 mflr r10
421 mfctr r11
422 mfxer r12
423 std r10,_LINK(r1)
424 std r11,_CTR(r1)
425 std r12,_XER(r1)
426 SAVE_GPR(0,r1)
427 SAVE_GPR(2,r1)
428 SAVE_4GPRS(3,r1)
429 SAVE_2GPRS(7,r1)
430 SAVE_10GPRS(12,r1)
431 SAVE_10GPRS(22,r1)
432 lhz r12,PACA_TRAP_SAVE(r13)
433 std r12,_TRAP(r1)
434 addi r11,r1,INT_FRAME_SIZE
435 std r11,0(r1)
436 li r12,0
437 std r12,0(r11)
438 ld r2,PACATOC(r13)
439 1: addi r3,r1,STACK_FRAME_OVERHEAD
440 bl .kernel_bad_stack
441 b 1b
442
443 /*
444 * Return from an exception with minimal checks.
445 * The caller is assumed to have done EXCEPTION_PROLOG_COMMON.
446 * If interrupts have been enabled, or anything has been
447 * done that might have changed the scheduling status of
448 * any task or sent any task a signal, you should use
449 * ret_from_except or ret_from_except_lite instead of this.
450 */
451 fast_exc_return_irq: /* restores irq state too */
452 ld r3,SOFTE(r1)
453 ld r12,_MSR(r1)
454 stb r3,PACASOFTIRQEN(r13) /* restore paca->soft_enabled */
455 rldicl r4,r12,49,63 /* get MSR_EE to LSB */
456 stb r4,PACAHARDIRQEN(r13) /* restore paca->hard_enabled */
457 b 1f
458
459 .globl fast_exception_return
460 fast_exception_return:
461 ld r12,_MSR(r1)
462 1: ld r11,_NIP(r1)
463 andi. r3,r12,MSR_RI /* check if RI is set */
464 beq- unrecov_fer
465
466 #ifdef CONFIG_VIRT_CPU_ACCOUNTING
467 andi. r3,r12,MSR_PR
468 beq 2f
469 ACCOUNT_CPU_USER_EXIT(r3, r4)
470 2:
471 #endif
472
473 ld r3,_CCR(r1)
474 ld r4,_LINK(r1)
475 ld r5,_CTR(r1)
476 ld r6,_XER(r1)
477 mtcr r3
478 mtlr r4
479 mtctr r5
480 mtxer r6
481 REST_GPR(0, r1)
482 REST_8GPRS(2, r1)
483
484 mfmsr r10
485 rldicl r10,r10,48,1 /* clear EE */
486 rldicr r10,r10,16,61 /* clear RI (LE is 0 already) */
487 mtmsrd r10,1
488
489 mtspr SPRN_SRR1,r12
490 mtspr SPRN_SRR0,r11
491 REST_4GPRS(10, r1)
492 ld r1,GPR1(r1)
493 rfid
494 b . /* prevent speculative execution */
495
496 unrecov_fer:
497 bl .save_nvgprs
498 1: addi r3,r1,STACK_FRAME_OVERHEAD
499 bl .unrecoverable_exception
500 b 1b
501
502 /*
503 * Here r13 points to the paca, r9 contains the saved CR,
504 * SRR0 and SRR1 are saved in r11 and r12,
505 * r9 - r13 are saved in paca->exgen.
506 */
507 .align 7
508 .globl data_access_common
509 data_access_common:
510 mfspr r10,SPRN_DAR
511 std r10,PACA_EXGEN+EX_DAR(r13)
512 mfspr r10,SPRN_DSISR
513 stw r10,PACA_EXGEN+EX_DSISR(r13)
514 EXCEPTION_PROLOG_COMMON(0x300, PACA_EXGEN)
515 ld r3,PACA_EXGEN+EX_DAR(r13)
516 lwz r4,PACA_EXGEN+EX_DSISR(r13)
517 li r5,0x300
518 b .do_hash_page /* Try to handle as hpte fault */
519
520 .align 7
521 .globl instruction_access_common
522 instruction_access_common:
523 EXCEPTION_PROLOG_COMMON(0x400, PACA_EXGEN)
524 ld r3,_NIP(r1)
525 andis. r4,r12,0x5820
526 li r5,0x400
527 b .do_hash_page /* Try to handle as hpte fault */
528
529 /*
530 * Here is the common SLB miss user that is used when going to virtual
531 * mode for SLB misses, that is currently not used
532 */
533 #ifdef __DISABLED__
534 .align 7
535 .globl slb_miss_user_common
536 slb_miss_user_common:
537 mflr r10
538 std r3,PACA_EXGEN+EX_DAR(r13)
539 stw r9,PACA_EXGEN+EX_CCR(r13)
540 std r10,PACA_EXGEN+EX_LR(r13)
541 std r11,PACA_EXGEN+EX_SRR0(r13)
542 bl .slb_allocate_user
543
544 ld r10,PACA_EXGEN+EX_LR(r13)
545 ld r3,PACA_EXGEN+EX_R3(r13)
546 lwz r9,PACA_EXGEN+EX_CCR(r13)
547 ld r11,PACA_EXGEN+EX_SRR0(r13)
548 mtlr r10
549 beq- slb_miss_fault
550
551 andi. r10,r12,MSR_RI /* check for unrecoverable exception */
552 beq- unrecov_user_slb
553 mfmsr r10
554
555 .machine push
556 .machine "power4"
557 mtcrf 0x80,r9
558 .machine pop
559
560 clrrdi r10,r10,2 /* clear RI before setting SRR0/1 */
561 mtmsrd r10,1
562
563 mtspr SRR0,r11
564 mtspr SRR1,r12
565
566 ld r9,PACA_EXGEN+EX_R9(r13)
567 ld r10,PACA_EXGEN+EX_R10(r13)
568 ld r11,PACA_EXGEN+EX_R11(r13)
569 ld r12,PACA_EXGEN+EX_R12(r13)
570 ld r13,PACA_EXGEN+EX_R13(r13)
571 rfid
572 b .
573
574 slb_miss_fault:
575 EXCEPTION_PROLOG_COMMON(0x380, PACA_EXGEN)
576 ld r4,PACA_EXGEN+EX_DAR(r13)
577 li r5,0
578 std r4,_DAR(r1)
579 std r5,_DSISR(r1)
580 b handle_page_fault
581
582 unrecov_user_slb:
583 EXCEPTION_PROLOG_COMMON(0x4200, PACA_EXGEN)
584 DISABLE_INTS
585 bl .save_nvgprs
586 1: addi r3,r1,STACK_FRAME_OVERHEAD
587 bl .unrecoverable_exception
588 b 1b
589
590 #endif /* __DISABLED__ */
591
592
593 /*
594 * r13 points to the PACA, r9 contains the saved CR,
595 * r12 contain the saved SRR1, SRR0 is still ready for return
596 * r3 has the faulting address
597 * r9 - r13 are saved in paca->exslb.
598 * r3 is saved in paca->slb_r3
599 * We assume we aren't going to take any exceptions during this procedure.
600 */
601 _GLOBAL(slb_miss_realmode)
602 mflr r10
603
604 stw r9,PACA_EXSLB+EX_CCR(r13) /* save CR in exc. frame */
605 std r10,PACA_EXSLB+EX_LR(r13) /* save LR */
606
607 bl .slb_allocate_realmode
608
609 /* All done -- return from exception. */
610
611 ld r10,PACA_EXSLB+EX_LR(r13)
612 ld r3,PACA_EXSLB+EX_R3(r13)
613 lwz r9,PACA_EXSLB+EX_CCR(r13) /* get saved CR */
614 #ifdef CONFIG_PPC_ISERIES
615 BEGIN_FW_FTR_SECTION
616 ld r11,PACALPPACAPTR(r13)
617 ld r11,LPPACASRR0(r11) /* get SRR0 value */
618 END_FW_FTR_SECTION_IFSET(FW_FEATURE_ISERIES)
619 #endif /* CONFIG_PPC_ISERIES */
620
621 mtlr r10
622
623 andi. r10,r12,MSR_RI /* check for unrecoverable exception */
624 beq- 2f
625
626 .machine push
627 .machine "power4"
628 mtcrf 0x80,r9
629 mtcrf 0x01,r9 /* slb_allocate uses cr0 and cr7 */
630 .machine pop
631
632 #ifdef CONFIG_PPC_ISERIES
633 BEGIN_FW_FTR_SECTION
634 mtspr SPRN_SRR0,r11
635 mtspr SPRN_SRR1,r12
636 END_FW_FTR_SECTION_IFSET(FW_FEATURE_ISERIES)
637 #endif /* CONFIG_PPC_ISERIES */
638 ld r9,PACA_EXSLB+EX_R9(r13)
639 ld r10,PACA_EXSLB+EX_R10(r13)
640 ld r11,PACA_EXSLB+EX_R11(r13)
641 ld r12,PACA_EXSLB+EX_R12(r13)
642 ld r13,PACA_EXSLB+EX_R13(r13)
643 rfid
644 b . /* prevent speculative execution */
645
646 2:
647 #ifdef CONFIG_PPC_ISERIES
648 BEGIN_FW_FTR_SECTION
649 b unrecov_slb
650 END_FW_FTR_SECTION_IFSET(FW_FEATURE_ISERIES)
651 #endif /* CONFIG_PPC_ISERIES */
652 mfspr r11,SPRN_SRR0
653 clrrdi r10,r13,32
654 LOAD_HANDLER(r10,unrecov_slb)
655 mtspr SPRN_SRR0,r10
656 mfmsr r10
657 ori r10,r10,MSR_IR|MSR_DR|MSR_RI
658 mtspr SPRN_SRR1,r10
659 rfid
660 b .
661
662 unrecov_slb:
663 EXCEPTION_PROLOG_COMMON(0x4100, PACA_EXSLB)
664 DISABLE_INTS
665 bl .save_nvgprs
666 1: addi r3,r1,STACK_FRAME_OVERHEAD
667 bl .unrecoverable_exception
668 b 1b
669
670 .align 7
671 .globl hardware_interrupt_common
672 .globl hardware_interrupt_entry
673 hardware_interrupt_common:
674 EXCEPTION_PROLOG_COMMON(0x500, PACA_EXGEN)
675 FINISH_NAP
676 hardware_interrupt_entry:
677 DISABLE_INTS
678 BEGIN_FTR_SECTION
679 bl .ppc64_runlatch_on
680 END_FTR_SECTION_IFSET(CPU_FTR_CTRL)
681 addi r3,r1,STACK_FRAME_OVERHEAD
682 bl .do_IRQ
683 b .ret_from_except_lite
684
685 #ifdef CONFIG_PPC_970_NAP
686 power4_fixup_nap:
687 andc r9,r9,r10
688 std r9,TI_LOCAL_FLAGS(r11)
689 ld r10,_LINK(r1) /* make idle task do the */
690 std r10,_NIP(r1) /* equivalent of a blr */
691 blr
692 #endif
693
694 .align 7
695 .globl alignment_common
696 alignment_common:
697 mfspr r10,SPRN_DAR
698 std r10,PACA_EXGEN+EX_DAR(r13)
699 mfspr r10,SPRN_DSISR
700 stw r10,PACA_EXGEN+EX_DSISR(r13)
701 EXCEPTION_PROLOG_COMMON(0x600, PACA_EXGEN)
702 ld r3,PACA_EXGEN+EX_DAR(r13)
703 lwz r4,PACA_EXGEN+EX_DSISR(r13)
704 std r3,_DAR(r1)
705 std r4,_DSISR(r1)
706 bl .save_nvgprs
707 addi r3,r1,STACK_FRAME_OVERHEAD
708 ENABLE_INTS
709 bl .alignment_exception
710 b .ret_from_except
711
712 .align 7
713 .globl program_check_common
714 program_check_common:
715 EXCEPTION_PROLOG_COMMON(0x700, PACA_EXGEN)
716 bl .save_nvgprs
717 addi r3,r1,STACK_FRAME_OVERHEAD
718 ENABLE_INTS
719 bl .program_check_exception
720 b .ret_from_except
721
722 .align 7
723 .globl fp_unavailable_common
724 fp_unavailable_common:
725 EXCEPTION_PROLOG_COMMON(0x800, PACA_EXGEN)
726 bne 1f /* if from user, just load it up */
727 bl .save_nvgprs
728 addi r3,r1,STACK_FRAME_OVERHEAD
729 ENABLE_INTS
730 bl .kernel_fp_unavailable_exception
731 BUG_OPCODE
732 1: b .load_up_fpu
733
734 .align 7
735 .globl altivec_unavailable_common
736 altivec_unavailable_common:
737 EXCEPTION_PROLOG_COMMON(0xf20, PACA_EXGEN)
738 #ifdef CONFIG_ALTIVEC
739 BEGIN_FTR_SECTION
740 bne .load_up_altivec /* if from user, just load it up */
741 END_FTR_SECTION_IFSET(CPU_FTR_ALTIVEC)
742 #endif
743 bl .save_nvgprs
744 addi r3,r1,STACK_FRAME_OVERHEAD
745 ENABLE_INTS
746 bl .altivec_unavailable_exception
747 b .ret_from_except
748
749 #ifdef CONFIG_ALTIVEC
750 /*
751 * load_up_altivec(unused, unused, tsk)
752 * Disable VMX for the task which had it previously,
753 * and save its vector registers in its thread_struct.
754 * Enables the VMX for use in the kernel on return.
755 * On SMP we know the VMX is free, since we give it up every
756 * switch (ie, no lazy save of the vector registers).
757 * On entry: r13 == 'current' && last_task_used_altivec != 'current'
758 */
759 _STATIC(load_up_altivec)
760 mfmsr r5 /* grab the current MSR */
761 oris r5,r5,MSR_VEC@h
762 mtmsrd r5 /* enable use of VMX now */
763 isync
764
765 /*
766 * For SMP, we don't do lazy VMX switching because it just gets too
767 * horrendously complex, especially when a task switches from one CPU
768 * to another. Instead we call giveup_altvec in switch_to.
769 * VRSAVE isn't dealt with here, that is done in the normal context
770 * switch code. Note that we could rely on vrsave value to eventually
771 * avoid saving all of the VREGs here...
772 */
773 #ifndef CONFIG_SMP
774 ld r3,last_task_used_altivec@got(r2)
775 ld r4,0(r3)
776 cmpdi 0,r4,0
777 beq 1f
778 /* Save VMX state to last_task_used_altivec's THREAD struct */
779 addi r4,r4,THREAD
780 SAVE_32VRS(0,r5,r4)
781 mfvscr vr0
782 li r10,THREAD_VSCR
783 stvx vr0,r10,r4
784 /* Disable VMX for last_task_used_altivec */
785 ld r5,PT_REGS(r4)
786 ld r4,_MSR-STACK_FRAME_OVERHEAD(r5)
787 lis r6,MSR_VEC@h
788 andc r4,r4,r6
789 std r4,_MSR-STACK_FRAME_OVERHEAD(r5)
790 1:
791 #endif /* CONFIG_SMP */
792 /* Hack: if we get an altivec unavailable trap with VRSAVE
793 * set to all zeros, we assume this is a broken application
794 * that fails to set it properly, and thus we switch it to
795 * all 1's
796 */
797 mfspr r4,SPRN_VRSAVE
798 cmpdi 0,r4,0
799 bne+ 1f
800 li r4,-1
801 mtspr SPRN_VRSAVE,r4
802 1:
803 /* enable use of VMX after return */
804 ld r4,PACACURRENT(r13)
805 addi r5,r4,THREAD /* Get THREAD */
806 oris r12,r12,MSR_VEC@h
807 std r12,_MSR(r1)
808 li r4,1
809 li r10,THREAD_VSCR
810 stw r4,THREAD_USED_VR(r5)
811 lvx vr0,r10,r5
812 mtvscr vr0
813 REST_32VRS(0,r4,r5)
814 #ifndef CONFIG_SMP
815 /* Update last_task_used_math to 'current' */
816 subi r4,r5,THREAD /* Back to 'current' */
817 std r4,0(r3)
818 #endif /* CONFIG_SMP */
819 /* restore registers and return */
820 b fast_exception_return
821 #endif /* CONFIG_ALTIVEC */
822
823 /*
824 * Hash table stuff
825 */
826 .align 7
827 _GLOBAL(do_hash_page)
828 std r3,_DAR(r1)
829 std r4,_DSISR(r1)
830
831 andis. r0,r4,0xa450 /* weird error? */
832 bne- handle_page_fault /* if not, try to insert a HPTE */
833 BEGIN_FTR_SECTION
834 andis. r0,r4,0x0020 /* Is it a segment table fault? */
835 bne- do_ste_alloc /* If so handle it */
836 END_FTR_SECTION_IFCLR(CPU_FTR_SLB)
837
838 /*
839 * We need to set the _PAGE_USER bit if MSR_PR is set or if we are
840 * accessing a userspace segment (even from the kernel). We assume
841 * kernel addresses always have the high bit set.
842 */
843 rlwinm r4,r4,32-25+9,31-9,31-9 /* DSISR_STORE -> _PAGE_RW */
844 rotldi r0,r3,15 /* Move high bit into MSR_PR posn */
845 orc r0,r12,r0 /* MSR_PR | ~high_bit */
846 rlwimi r4,r0,32-13,30,30 /* becomes _PAGE_USER access bit */
847 ori r4,r4,1 /* add _PAGE_PRESENT */
848 rlwimi r4,r5,22+2,31-2,31-2 /* Set _PAGE_EXEC if trap is 0x400 */
849
850 /*
851 * On iSeries, we soft-disable interrupts here, then
852 * hard-enable interrupts so that the hash_page code can spin on
853 * the hash_table_lock without problems on a shared processor.
854 */
855 DISABLE_INTS
856
857 /*
858 * r3 contains the faulting address
859 * r4 contains the required access permissions
860 * r5 contains the trap number
861 *
862 * at return r3 = 0 for success
863 */
864 bl .hash_page /* build HPTE if possible */
865 cmpdi r3,0 /* see if hash_page succeeded */
866
867 #ifdef DO_SOFT_DISABLE
868 BEGIN_FW_FTR_SECTION
869 /*
870 * If we had interrupts soft-enabled at the point where the
871 * DSI/ISI occurred, and an interrupt came in during hash_page,
872 * handle it now.
873 * We jump to ret_from_except_lite rather than fast_exception_return
874 * because ret_from_except_lite will check for and handle pending
875 * interrupts if necessary.
876 */
877 beq 13f
878 END_FW_FTR_SECTION_IFSET(FW_FEATURE_ISERIES)
879 #endif
880 BEGIN_FW_FTR_SECTION
881 /*
882 * Here we have interrupts hard-disabled, so it is sufficient
883 * to restore paca->{soft,hard}_enable and get out.
884 */
885 beq fast_exc_return_irq /* Return from exception on success */
886 END_FW_FTR_SECTION_IFCLR(FW_FEATURE_ISERIES)
887
888 /* For a hash failure, we don't bother re-enabling interrupts */
889 ble- 12f
890
891 /*
892 * hash_page couldn't handle it, set soft interrupt enable back
893 * to what it was before the trap. Note that .local_irq_restore
894 * handles any interrupts pending at this point.
895 */
896 ld r3,SOFTE(r1)
897 bl .local_irq_restore
898 b 11f
899
900 /* Here we have a page fault that hash_page can't handle. */
901 handle_page_fault:
902 ENABLE_INTS
903 11: ld r4,_DAR(r1)
904 ld r5,_DSISR(r1)
905 addi r3,r1,STACK_FRAME_OVERHEAD
906 bl .do_page_fault
907 cmpdi r3,0
908 beq+ 13f
909 bl .save_nvgprs
910 mr r5,r3
911 addi r3,r1,STACK_FRAME_OVERHEAD
912 lwz r4,_DAR(r1)
913 bl .bad_page_fault
914 b .ret_from_except
915
916 13: b .ret_from_except_lite
917
918 /* We have a page fault that hash_page could handle but HV refused
919 * the PTE insertion
920 */
921 12: bl .save_nvgprs
922 mr r5,r3
923 addi r3,r1,STACK_FRAME_OVERHEAD
924 ld r4,_DAR(r1)
925 bl .low_hash_fault
926 b .ret_from_except
927
928 /* here we have a segment miss */
929 do_ste_alloc:
930 bl .ste_allocate /* try to insert stab entry */
931 cmpdi r3,0
932 bne- handle_page_fault
933 b fast_exception_return
934
935 /*
936 * r13 points to the PACA, r9 contains the saved CR,
937 * r11 and r12 contain the saved SRR0 and SRR1.
938 * r9 - r13 are saved in paca->exslb.
939 * We assume we aren't going to take any exceptions during this procedure.
940 * We assume (DAR >> 60) == 0xc.
941 */
942 .align 7
943 _GLOBAL(do_stab_bolted)
944 stw r9,PACA_EXSLB+EX_CCR(r13) /* save CR in exc. frame */
945 std r11,PACA_EXSLB+EX_SRR0(r13) /* save SRR0 in exc. frame */
946
947 /* Hash to the primary group */
948 ld r10,PACASTABVIRT(r13)
949 mfspr r11,SPRN_DAR
950 srdi r11,r11,28
951 rldimi r10,r11,7,52 /* r10 = first ste of the group */
952
953 /* Calculate VSID */
954 /* This is a kernel address, so protovsid = ESID */
955 ASM_VSID_SCRAMBLE(r11, r9, 256M)
956 rldic r9,r11,12,16 /* r9 = vsid << 12 */
957
958 /* Search the primary group for a free entry */
959 1: ld r11,0(r10) /* Test valid bit of the current ste */
960 andi. r11,r11,0x80
961 beq 2f
962 addi r10,r10,16
963 andi. r11,r10,0x70
964 bne 1b
965
966 /* Stick for only searching the primary group for now. */
967 /* At least for now, we use a very simple random castout scheme */
968 /* Use the TB as a random number ; OR in 1 to avoid entry 0 */
969 mftb r11
970 rldic r11,r11,4,57 /* r11 = (r11 << 4) & 0x70 */
971 ori r11,r11,0x10
972
973 /* r10 currently points to an ste one past the group of interest */
974 /* make it point to the randomly selected entry */
975 subi r10,r10,128
976 or r10,r10,r11 /* r10 is the entry to invalidate */
977
978 isync /* mark the entry invalid */
979 ld r11,0(r10)
980 rldicl r11,r11,56,1 /* clear the valid bit */
981 rotldi r11,r11,8
982 std r11,0(r10)
983 sync
984
985 clrrdi r11,r11,28 /* Get the esid part of the ste */
986 slbie r11
987
988 2: std r9,8(r10) /* Store the vsid part of the ste */
989 eieio
990
991 mfspr r11,SPRN_DAR /* Get the new esid */
992 clrrdi r11,r11,28 /* Permits a full 32b of ESID */
993 ori r11,r11,0x90 /* Turn on valid and kp */
994 std r11,0(r10) /* Put new entry back into the stab */
995
996 sync
997
998 /* All done -- return from exception. */
999 lwz r9,PACA_EXSLB+EX_CCR(r13) /* get saved CR */
1000 ld r11,PACA_EXSLB+EX_SRR0(r13) /* get saved SRR0 */
1001
1002 andi. r10,r12,MSR_RI
1003 beq- unrecov_slb
1004
1005 mtcrf 0x80,r9 /* restore CR */
1006
1007 mfmsr r10
1008 clrrdi r10,r10,2
1009 mtmsrd r10,1
1010
1011 mtspr SPRN_SRR0,r11
1012 mtspr SPRN_SRR1,r12
1013 ld r9,PACA_EXSLB+EX_R9(r13)
1014 ld r10,PACA_EXSLB+EX_R10(r13)
1015 ld r11,PACA_EXSLB+EX_R11(r13)
1016 ld r12,PACA_EXSLB+EX_R12(r13)
1017 ld r13,PACA_EXSLB+EX_R13(r13)
1018 rfid
1019 b . /* prevent speculative execution */
1020
1021 /*
1022 * Space for CPU0's segment table.
1023 *
1024 * On iSeries, the hypervisor must fill in at least one entry before
1025 * we get control (with relocate on). The address is given to the hv
1026 * as a page number (see xLparMap below), so this must be at a
1027 * fixed address (the linker can't compute (u64)&initial_stab >>
1028 * PAGE_SHIFT).
1029 */
1030 . = STAB0_OFFSET /* 0x6000 */
1031 .globl initial_stab
1032 initial_stab:
1033 .space 4096
1034
1035 #ifdef CONFIG_PPC_PSERIES
1036 /*
1037 * Data area reserved for FWNMI option.
1038 * This address (0x7000) is fixed by the RPA.
1039 */
1040 .= 0x7000
1041 .globl fwnmi_data_area
1042 fwnmi_data_area:
1043 #endif /* CONFIG_PPC_PSERIES */
1044
1045 /* iSeries does not use the FWNMI stuff, so it is safe to put
1046 * this here, even if we later allow kernels that will boot on
1047 * both pSeries and iSeries */
1048 #ifdef CONFIG_PPC_ISERIES
1049 . = LPARMAP_PHYS
1050 .globl xLparMap
1051 xLparMap:
1052 .quad HvEsidsToMap /* xNumberEsids */
1053 .quad HvRangesToMap /* xNumberRanges */
1054 .quad STAB0_PAGE /* xSegmentTableOffs */
1055 .zero 40 /* xRsvd */
1056 /* xEsids (HvEsidsToMap entries of 2 quads) */
1057 .quad PAGE_OFFSET_ESID /* xKernelEsid */
1058 .quad PAGE_OFFSET_VSID /* xKernelVsid */
1059 .quad VMALLOC_START_ESID /* xKernelEsid */
1060 .quad VMALLOC_START_VSID /* xKernelVsid */
1061 /* xRanges (HvRangesToMap entries of 3 quads) */
1062 .quad HvPagesToMap /* xPages */
1063 .quad 0 /* xOffset */
1064 .quad PAGE_OFFSET_VSID << (SID_SHIFT - HW_PAGE_SHIFT) /* xVPN */
1065
1066 #endif /* CONFIG_PPC_ISERIES */
1067
1068 #ifdef CONFIG_PPC_PSERIES
1069 . = 0x8000
1070 #endif /* CONFIG_PPC_PSERIES */
1071
1072 /*
1073 * On pSeries and most other platforms, secondary processors spin
1074 * in the following code.
1075 * At entry, r3 = this processor's number (physical cpu id)
1076 */
1077 _GLOBAL(generic_secondary_smp_init)
1078 mr r24,r3
1079
1080 /* turn on 64-bit mode */
1081 bl .enable_64b_mode
1082
1083 /* Set up a paca value for this processor. Since we have the
1084 * physical cpu id in r24, we need to search the pacas to find
1085 * which logical id maps to our physical one.
1086 */
1087 LOAD_REG_IMMEDIATE(r13, paca) /* Get base vaddr of paca array */
1088 li r5,0 /* logical cpu id */
1089 1: lhz r6,PACAHWCPUID(r13) /* Load HW procid from paca */
1090 cmpw r6,r24 /* Compare to our id */
1091 beq 2f
1092 addi r13,r13,PACA_SIZE /* Loop to next PACA on miss */
1093 addi r5,r5,1
1094 cmpwi r5,NR_CPUS
1095 blt 1b
1096
1097 mr r3,r24 /* not found, copy phys to r3 */
1098 b .kexec_wait /* next kernel might do better */
1099
1100 2: mtspr SPRN_SPRG3,r13 /* Save vaddr of paca in SPRG3 */
1101 /* From now on, r24 is expected to be logical cpuid */
1102 mr r24,r5
1103 3: HMT_LOW
1104 lbz r23,PACAPROCSTART(r13) /* Test if this processor should */
1105 /* start. */
1106 sync
1107
1108 #ifndef CONFIG_SMP
1109 b 3b /* Never go on non-SMP */
1110 #else
1111 cmpwi 0,r23,0
1112 beq 3b /* Loop until told to go */
1113
1114 /* See if we need to call a cpu state restore handler */
1115 LOAD_REG_IMMEDIATE(r23, cur_cpu_spec)
1116 ld r23,0(r23)
1117 ld r23,CPU_SPEC_RESTORE(r23)
1118 cmpdi 0,r23,0
1119 beq 4f
1120 ld r23,0(r23)
1121 mtctr r23
1122 bctrl
1123
1124 4: /* Create a temp kernel stack for use before relocation is on. */
1125 ld r1,PACAEMERGSP(r13)
1126 subi r1,r1,STACK_FRAME_OVERHEAD
1127
1128 b __secondary_start
1129 #endif
1130
1131 _STATIC(__mmu_off)
1132 mfmsr r3
1133 andi. r0,r3,MSR_IR|MSR_DR
1134 beqlr
1135 andc r3,r3,r0
1136 mtspr SPRN_SRR0,r4
1137 mtspr SPRN_SRR1,r3
1138 sync
1139 rfid
1140 b . /* prevent speculative execution */
1141
1142
1143 /*
1144 * Here is our main kernel entry point. We support currently 2 kind of entries
1145 * depending on the value of r5.
1146 *
1147 * r5 != NULL -> OF entry, we go to prom_init, "legacy" parameter content
1148 * in r3...r7
1149 *
1150 * r5 == NULL -> kexec style entry. r3 is a physical pointer to the
1151 * DT block, r4 is a physical pointer to the kernel itself
1152 *
1153 */
1154 _GLOBAL(__start_initialization_multiplatform)
1155 /*
1156 * Are we booted from a PROM Of-type client-interface ?
1157 */
1158 cmpldi cr0,r5,0
1159 beq 1f
1160 b .__boot_from_prom /* yes -> prom */
1161 1:
1162 /* Save parameters */
1163 mr r31,r3
1164 mr r30,r4
1165
1166 /* Make sure we are running in 64 bits mode */
1167 bl .enable_64b_mode
1168
1169 /* Setup some critical 970 SPRs before switching MMU off */
1170 mfspr r0,SPRN_PVR
1171 srwi r0,r0,16
1172 cmpwi r0,0x39 /* 970 */
1173 beq 1f
1174 cmpwi r0,0x3c /* 970FX */
1175 beq 1f
1176 cmpwi r0,0x44 /* 970MP */
1177 beq 1f
1178 cmpwi r0,0x45 /* 970GX */
1179 bne 2f
1180 1: bl .__cpu_preinit_ppc970
1181 2:
1182
1183 /* Switch off MMU if not already */
1184 LOAD_REG_IMMEDIATE(r4, .__after_prom_start - KERNELBASE)
1185 add r4,r4,r30
1186 bl .__mmu_off
1187 b .__after_prom_start
1188
1189 _INIT_STATIC(__boot_from_prom)
1190 /* Save parameters */
1191 mr r31,r3
1192 mr r30,r4
1193 mr r29,r5
1194 mr r28,r6
1195 mr r27,r7
1196
1197 /*
1198 * Align the stack to 16-byte boundary
1199 * Depending on the size and layout of the ELF sections in the initial
1200 * boot binary, the stack pointer will be unalignet on PowerMac
1201 */
1202 rldicr r1,r1,0,59
1203
1204 /* Make sure we are running in 64 bits mode */
1205 bl .enable_64b_mode
1206
1207 /* put a relocation offset into r3 */
1208 bl .reloc_offset
1209
1210 LOAD_REG_IMMEDIATE(r2,__toc_start)
1211 addi r2,r2,0x4000
1212 addi r2,r2,0x4000
1213
1214 /* Relocate the TOC from a virt addr to a real addr */
1215 add r2,r2,r3
1216
1217 /* Restore parameters */
1218 mr r3,r31
1219 mr r4,r30
1220 mr r5,r29
1221 mr r6,r28
1222 mr r7,r27
1223
1224 /* Do all of the interaction with OF client interface */
1225 bl .prom_init
1226 /* We never return */
1227 trap
1228
1229 _STATIC(__after_prom_start)
1230
1231 /*
1232 * We need to run with __start at physical address PHYSICAL_START.
1233 * This will leave some code in the first 256B of
1234 * real memory, which are reserved for software use.
1235 * The remainder of the first page is loaded with the fixed
1236 * interrupt vectors. The next two pages are filled with
1237 * unknown exception placeholders.
1238 *
1239 * Note: This process overwrites the OF exception vectors.
1240 * r26 == relocation offset
1241 * r27 == KERNELBASE
1242 */
1243 bl .reloc_offset
1244 mr r26,r3
1245 LOAD_REG_IMMEDIATE(r27, KERNELBASE)
1246
1247 LOAD_REG_IMMEDIATE(r3, PHYSICAL_START) /* target addr */
1248
1249 // XXX FIXME: Use phys returned by OF (r30)
1250 add r4,r27,r26 /* source addr */
1251 /* current address of _start */
1252 /* i.e. where we are running */
1253 /* the source addr */
1254
1255 cmpdi r4,0 /* In some cases the loader may */
1256 bne 1f
1257 b .start_here_multiplatform /* have already put us at zero */
1258 /* so we can skip the copy. */
1259 1: LOAD_REG_IMMEDIATE(r5,copy_to_here) /* # bytes of memory to copy */
1260 sub r5,r5,r27
1261
1262 li r6,0x100 /* Start offset, the first 0x100 */
1263 /* bytes were copied earlier. */
1264
1265 bl .copy_and_flush /* copy the first n bytes */
1266 /* this includes the code being */
1267 /* executed here. */
1268
1269 LOAD_REG_IMMEDIATE(r0, 4f) /* Jump to the copy of this code */
1270 mtctr r0 /* that we just made/relocated */
1271 bctr
1272
1273 4: LOAD_REG_IMMEDIATE(r5,klimit)
1274 add r5,r5,r26
1275 ld r5,0(r5) /* get the value of klimit */
1276 sub r5,r5,r27
1277 bl .copy_and_flush /* copy the rest */
1278 b .start_here_multiplatform
1279
1280 /*
1281 * Copy routine used to copy the kernel to start at physical address 0
1282 * and flush and invalidate the caches as needed.
1283 * r3 = dest addr, r4 = source addr, r5 = copy limit, r6 = start offset
1284 * on exit, r3, r4, r5 are unchanged, r6 is updated to be >= r5.
1285 *
1286 * Note: this routine *only* clobbers r0, r6 and lr
1287 */
1288 _GLOBAL(copy_and_flush)
1289 addi r5,r5,-8
1290 addi r6,r6,-8
1291 4: li r0,8 /* Use the smallest common */
1292 /* denominator cache line */
1293 /* size. This results in */
1294 /* extra cache line flushes */
1295 /* but operation is correct. */
1296 /* Can't get cache line size */
1297 /* from NACA as it is being */
1298 /* moved too. */
1299
1300 mtctr r0 /* put # words/line in ctr */
1301 3: addi r6,r6,8 /* copy a cache line */
1302 ldx r0,r6,r4
1303 stdx r0,r6,r3
1304 bdnz 3b
1305 dcbst r6,r3 /* write it to memory */
1306 sync
1307 icbi r6,r3 /* flush the icache line */
1308 cmpld 0,r6,r5
1309 blt 4b
1310 sync
1311 addi r5,r5,8
1312 addi r6,r6,8
1313 blr
1314
1315 .align 8
1316 copy_to_here:
1317
1318 #ifdef CONFIG_SMP
1319 #ifdef CONFIG_PPC_PMAC
1320 /*
1321 * On PowerMac, secondary processors starts from the reset vector, which
1322 * is temporarily turned into a call to one of the functions below.
1323 */
1324 .section ".text";
1325 .align 2 ;
1326
1327 .globl __secondary_start_pmac_0
1328 __secondary_start_pmac_0:
1329 /* NB the entries for cpus 0, 1, 2 must each occupy 8 bytes. */
1330 li r24,0
1331 b 1f
1332 li r24,1
1333 b 1f
1334 li r24,2
1335 b 1f
1336 li r24,3
1337 1:
1338
1339 _GLOBAL(pmac_secondary_start)
1340 /* turn on 64-bit mode */
1341 bl .enable_64b_mode
1342
1343 /* Copy some CPU settings from CPU 0 */
1344 bl .__restore_cpu_ppc970
1345
1346 /* pSeries do that early though I don't think we really need it */
1347 mfmsr r3
1348 ori r3,r3,MSR_RI
1349 mtmsrd r3 /* RI on */
1350
1351 /* Set up a paca value for this processor. */
1352 LOAD_REG_IMMEDIATE(r4, paca) /* Get base vaddr of paca array */
1353 mulli r13,r24,PACA_SIZE /* Calculate vaddr of right paca */
1354 add r13,r13,r4 /* for this processor. */
1355 mtspr SPRN_SPRG3,r13 /* Save vaddr of paca in SPRG3 */
1356
1357 /* Create a temp kernel stack for use before relocation is on. */
1358 ld r1,PACAEMERGSP(r13)
1359 subi r1,r1,STACK_FRAME_OVERHEAD
1360
1361 b __secondary_start
1362
1363 #endif /* CONFIG_PPC_PMAC */
1364
1365 /*
1366 * This function is called after the master CPU has released the
1367 * secondary processors. The execution environment is relocation off.
1368 * The paca for this processor has the following fields initialized at
1369 * this point:
1370 * 1. Processor number
1371 * 2. Segment table pointer (virtual address)
1372 * On entry the following are set:
1373 * r1 = stack pointer. vaddr for iSeries, raddr (temp stack) for pSeries
1374 * r24 = cpu# (in Linux terms)
1375 * r13 = paca virtual address
1376 * SPRG3 = paca virtual address
1377 */
1378 .globl __secondary_start
1379 __secondary_start:
1380 /* Set thread priority to MEDIUM */
1381 HMT_MEDIUM
1382
1383 /* Load TOC */
1384 ld r2,PACATOC(r13)
1385
1386 /* Do early setup for that CPU (stab, slb, hash table pointer) */
1387 bl .early_setup_secondary
1388
1389 /* Initialize the kernel stack. Just a repeat for iSeries. */
1390 LOAD_REG_ADDR(r3, current_set)
1391 sldi r28,r24,3 /* get current_set[cpu#] */
1392 ldx r1,r3,r28
1393 addi r1,r1,THREAD_SIZE-STACK_FRAME_OVERHEAD
1394 std r1,PACAKSAVE(r13)
1395
1396 /* Clear backchain so we get nice backtraces */
1397 li r7,0
1398 mtlr r7
1399
1400 /* enable MMU and jump to start_secondary */
1401 LOAD_REG_ADDR(r3, .start_secondary_prolog)
1402 LOAD_REG_IMMEDIATE(r4, MSR_KERNEL)
1403 #ifdef CONFIG_PPC_ISERIES
1404 BEGIN_FW_FTR_SECTION
1405 ori r4,r4,MSR_EE
1406 li r8,1
1407 stb r8,PACAHARDIRQEN(r13)
1408 END_FW_FTR_SECTION_IFSET(FW_FEATURE_ISERIES)
1409 #endif
1410 BEGIN_FW_FTR_SECTION
1411 stb r7,PACAHARDIRQEN(r13)
1412 END_FW_FTR_SECTION_IFCLR(FW_FEATURE_ISERIES)
1413 stb r7,PACASOFTIRQEN(r13)
1414
1415 mtspr SPRN_SRR0,r3
1416 mtspr SPRN_SRR1,r4
1417 rfid
1418 b . /* prevent speculative execution */
1419
1420 /*
1421 * Running with relocation on at this point. All we want to do is
1422 * zero the stack back-chain pointer before going into C code.
1423 */
1424 _GLOBAL(start_secondary_prolog)
1425 li r3,0
1426 std r3,0(r1) /* Zero the stack frame pointer */
1427 bl .start_secondary
1428 b .
1429 #endif
1430
1431 /*
1432 * This subroutine clobbers r11 and r12
1433 */
1434 _GLOBAL(enable_64b_mode)
1435 mfmsr r11 /* grab the current MSR */
1436 li r12,1
1437 rldicr r12,r12,MSR_SF_LG,(63-MSR_SF_LG)
1438 or r11,r11,r12
1439 li r12,1
1440 rldicr r12,r12,MSR_ISF_LG,(63-MSR_ISF_LG)
1441 or r11,r11,r12
1442 mtmsrd r11
1443 isync
1444 blr
1445
1446 /*
1447 * This is where the main kernel code starts.
1448 */
1449 _INIT_STATIC(start_here_multiplatform)
1450 /* get a new offset, now that the kernel has moved. */
1451 bl .reloc_offset
1452 mr r26,r3
1453
1454 /* Clear out the BSS. It may have been done in prom_init,
1455 * already but that's irrelevant since prom_init will soon
1456 * be detached from the kernel completely. Besides, we need
1457 * to clear it now for kexec-style entry.
1458 */
1459 LOAD_REG_IMMEDIATE(r11,__bss_stop)
1460 LOAD_REG_IMMEDIATE(r8,__bss_start)
1461 sub r11,r11,r8 /* bss size */
1462 addi r11,r11,7 /* round up to an even double word */
1463 rldicl. r11,r11,61,3 /* shift right by 3 */
1464 beq 4f
1465 addi r8,r8,-8
1466 li r0,0
1467 mtctr r11 /* zero this many doublewords */
1468 3: stdu r0,8(r8)
1469 bdnz 3b
1470 4:
1471
1472 mfmsr r6
1473 ori r6,r6,MSR_RI
1474 mtmsrd r6 /* RI on */
1475
1476 /* The following gets the stack and TOC set up with the regs */
1477 /* pointing to the real addr of the kernel stack. This is */
1478 /* all done to support the C function call below which sets */
1479 /* up the htab. This is done because we have relocated the */
1480 /* kernel but are still running in real mode. */
1481
1482 LOAD_REG_IMMEDIATE(r3,init_thread_union)
1483 add r3,r3,r26
1484
1485 /* set up a stack pointer (physical address) */
1486 addi r1,r3,THREAD_SIZE
1487 li r0,0
1488 stdu r0,-STACK_FRAME_OVERHEAD(r1)
1489
1490 /* set up the TOC (physical address) */
1491 LOAD_REG_IMMEDIATE(r2,__toc_start)
1492 addi r2,r2,0x4000
1493 addi r2,r2,0x4000
1494 add r2,r2,r26
1495
1496 /* Do very early kernel initializations, including initial hash table,
1497 * stab and slb setup before we turn on relocation. */
1498
1499 /* Restore parameters passed from prom_init/kexec */
1500 mr r3,r31
1501 bl .early_setup
1502
1503 LOAD_REG_IMMEDIATE(r3, .start_here_common)
1504 LOAD_REG_IMMEDIATE(r4, MSR_KERNEL)
1505 mtspr SPRN_SRR0,r3
1506 mtspr SPRN_SRR1,r4
1507 rfid
1508 b . /* prevent speculative execution */
1509
1510 /* This is where all platforms converge execution */
1511 _INIT_GLOBAL(start_here_common)
1512 /* relocation is on at this point */
1513
1514 /* The following code sets up the SP and TOC now that we are */
1515 /* running with translation enabled. */
1516
1517 LOAD_REG_IMMEDIATE(r3,init_thread_union)
1518
1519 /* set up the stack */
1520 addi r1,r3,THREAD_SIZE
1521 li r0,0
1522 stdu r0,-STACK_FRAME_OVERHEAD(r1)
1523
1524 /* ptr to current */
1525 LOAD_REG_IMMEDIATE(r4, init_task)
1526 std r4,PACACURRENT(r13)
1527
1528 /* Load the TOC */
1529 ld r2,PACATOC(r13)
1530 std r1,PACAKSAVE(r13)
1531
1532 bl .setup_system
1533
1534 /* Load up the kernel context */
1535 5:
1536 li r5,0
1537 stb r5,PACASOFTIRQEN(r13) /* Soft Disabled */
1538 #ifdef CONFIG_PPC_ISERIES
1539 BEGIN_FW_FTR_SECTION
1540 mfmsr r5
1541 ori r5,r5,MSR_EE /* Hard Enabled on iSeries*/
1542 mtmsrd r5
1543 li r5,1
1544 END_FW_FTR_SECTION_IFSET(FW_FEATURE_ISERIES)
1545 #endif
1546 stb r5,PACAHARDIRQEN(r13) /* Hard Disabled on others */
1547
1548 bl .start_kernel
1549
1550 /* Not reached */
1551 BUG_OPCODE
1552
1553 /*
1554 * We put a few things here that have to be page-aligned.
1555 * This stuff goes at the beginning of the bss, which is page-aligned.
1556 */
1557 .section ".bss"
1558
1559 .align PAGE_SHIFT
1560
1561 .globl empty_zero_page
1562 empty_zero_page:
1563 .space PAGE_SIZE
1564
1565 .globl swapper_pg_dir
1566 swapper_pg_dir:
1567 .space PGD_TABLE_SIZE