Merge tag 'armsoc-arm64' of git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc
[linux-2.6-block.git] / arch / powerpc / kernel / head_64.S
CommitLineData
14cf11af 1/*
14cf11af
PM
2 * PowerPC version
3 * Copyright (C) 1995-1996 Gary Thomas (gdt@linuxppc.org)
4 *
5 * Rewritten by Cort Dougan (cort@cs.nmt.edu) for PReP
6 * Copyright (C) 1996 Cort Dougan <cort@cs.nmt.edu>
7 * Adapted for Power Macintosh by Paul Mackerras.
8 * Low-level exception handlers and MMU support
9 * rewritten by Paul Mackerras.
10 * Copyright (C) 1996 Paul Mackerras.
11 *
12 * Adapted for 64bit PowerPC by Dave Engebretsen, Peter Bergner, and
13 * Mike Corrigan {engebret|bergner|mikejc}@us.ibm.com
14 *
0ebc4cda
BH
15 * This file contains the entry point for the 64-bit kernel along
16 * with some early initialization code common to all 64-bit powerpc
17 * variants.
14cf11af
PM
18 *
19 * This program is free software; you can redistribute it and/or
20 * modify it under the terms of the GNU General Public License
21 * as published by the Free Software Foundation; either version
22 * 2 of the License, or (at your option) any later version.
23 */
24
14cf11af 25#include <linux/threads.h>
c141611f 26#include <linux/init.h>
b5bbeb23 27#include <asm/reg.h>
14cf11af
PM
28#include <asm/page.h>
29#include <asm/mmu.h>
14cf11af
PM
30#include <asm/ppc_asm.h>
31#include <asm/asm-offsets.h>
32#include <asm/bug.h>
33#include <asm/cputable.h>
34#include <asm/setup.h>
35#include <asm/hvcall.h>
6cb7bfeb 36#include <asm/thread_info.h>
3f639ee8 37#include <asm/firmware.h>
16a15a30 38#include <asm/page_64.h>
945feb17 39#include <asm/irqflags.h>
2191d657 40#include <asm/kvm_book3s_asm.h>
46f52210 41#include <asm/ptrace.h>
7230c564 42#include <asm/hw_irq.h>
6becef7e 43#include <asm/cputhreads.h>
7a25d912 44#include <asm/ppc-opcode.h>
14cf11af 45
25985edc 46/* The physical memory is laid out such that the secondary processor
0ebc4cda
BH
47 * spin code sits at 0x0000...0x00ff. On server, the vectors follow
48 * using the layout described in exceptions-64s.S
14cf11af
PM
49 */
50
51/*
52 * Entering into this code we make the following assumptions:
0ebc4cda
BH
53 *
54 * For pSeries or server processors:
14cf11af
PM
55 * 1. The MMU is off & open firmware is running in real mode.
56 * 2. The kernel is entered at __start
27f44888
BH
57 * -or- For OPAL entry:
58 * 1. The MMU is off, processor in HV mode, primary CPU enters at 0
daea1175
BH
59 * with device-tree in gpr3. We also get OPAL base in r8 and
60 * entry in r9 for debugging purposes
27f44888 61 * 2. Secondary processors enter at 0x60 with PIR in gpr3
14cf11af 62 *
0ebc4cda
BH
63 * For Book3E processors:
64 * 1. The MMU is on running in AS0 in a state defined in ePAPR
65 * 2. The kernel is entered at __start
14cf11af
PM
66 */
67
68 .text
69 .globl _stext
70_stext:
14cf11af
PM
71_GLOBAL(__start)
72 /* NOP this out unconditionally */
73BEGIN_FTR_SECTION
5c0484e2 74 FIXUP_ENDIAN
b1576fec 75 b __start_initialization_multiplatform
14cf11af 76END_FTR_SECTION(0, 1)
14cf11af
PM
77
78 /* Catch branch to 0 in real mode */
79 trap
80
2751b628
AB
81 /* Secondary processors spin on this value until it becomes non-zero.
82 * When non-zero, it contains the real address of the function the cpu
83 * should jump to.
1f6a93e4 84 */
7d4151b5 85 .balign 8
14cf11af
PM
86 .globl __secondary_hold_spinloop
87__secondary_hold_spinloop:
88 .llong 0x0
89
90 /* Secondary processors write this value with their cpu # */
91 /* after they enter the spin loop immediately below. */
92 .globl __secondary_hold_acknowledge
93__secondary_hold_acknowledge:
94 .llong 0x0
95
928a3197 96#ifdef CONFIG_RELOCATABLE
8b8b0cc1
MM
97 /* This flag is set to 1 by a loader if the kernel should run
98 * at the loaded address instead of the linked address. This
99 * is used by kexec-tools to keep the the kdump kernel in the
100 * crash_kernel region. The loader is responsible for
101 * observing the alignment requirement.
102 */
103 /* Do not move this variable as kexec-tools knows about it. */
104 . = 0x5c
105 .globl __run_at_load
106__run_at_load:
107 .long 0x72756e30 /* "run0" -- relocate to 0 by default */
108#endif
109
14cf11af
PM
110 . = 0x60
111/*
75423b7b
GL
112 * The following code is used to hold secondary processors
113 * in a spin loop after they have entered the kernel, but
14cf11af
PM
114 * before the bulk of the kernel has been relocated. This code
115 * is relocated to physical address 0x60 before prom_init is run.
116 * All of it must fit below the first exception vector at 0x100.
1f6a93e4
PM
117 * Use .globl here not _GLOBAL because we want __secondary_hold
118 * to be the actual text address, not a descriptor.
14cf11af 119 */
1f6a93e4
PM
120 .globl __secondary_hold
121__secondary_hold:
5c0484e2 122 FIXUP_ENDIAN
2d27cfd3 123#ifndef CONFIG_PPC_BOOK3E
14cf11af
PM
124 mfmsr r24
125 ori r24,r24,MSR_RI
126 mtmsrd r24 /* RI on */
2d27cfd3 127#endif
f1870f77 128 /* Grab our physical cpu number */
14cf11af 129 mr r24,r3
96f013fe
JX
130 /* stash r4 for book3e */
131 mr r25,r4
14cf11af
PM
132
133 /* Tell the master cpu we're here */
134 /* Relocation is off & we are located at an address less */
135 /* than 0x100, so only need to grab low order offset. */
e31aa453 136 std r24,__secondary_hold_acknowledge-_stext(0)
14cf11af
PM
137 sync
138
96f013fe
JX
139 li r26,0
140#ifdef CONFIG_PPC_BOOK3E
141 tovirt(r26,r26)
142#endif
14cf11af 143 /* All secondary cpus wait here until told to start. */
cc7efbf9
AB
144100: ld r12,__secondary_hold_spinloop-_stext(r26)
145 cmpdi 0,r12,0
1f6a93e4 146 beq 100b
14cf11af 147
f1870f77 148#if defined(CONFIG_SMP) || defined(CONFIG_KEXEC)
96f013fe 149#ifdef CONFIG_PPC_BOOK3E
cc7efbf9 150 tovirt(r12,r12)
cc7efbf9
AB
151#endif
152 mtctr r12
14cf11af 153 mr r3,r24
96f013fe
JX
154 /*
155 * it may be the case that other platforms have r4 right to
156 * begin with, this gives us some safety in case it is not
157 */
158#ifdef CONFIG_PPC_BOOK3E
159 mr r4,r25
160#else
2d27cfd3 161 li r4,0
96f013fe 162#endif
dd797738
BH
163 /* Make sure that patched code is visible */
164 isync
758438a7 165 bctr
14cf11af
PM
166#else
167 BUG_OPCODE
168#endif
14cf11af
PM
169
170/* This value is used to mark exception frames on the stack. */
171 .section ".toc","aw"
172exception_marker:
173 .tc ID_72656773_68657265[TC],0x7265677368657265
174 .text
175
14cf11af 176/*
0ebc4cda
BH
177 * On server, we include the exception vectors code here as it
178 * relies on absolute addressing which is only possible within
179 * this compilation unit
3c726f8d 180 */
0ebc4cda
BH
181#ifdef CONFIG_PPC_BOOK3S
182#include "exceptions-64s.S"
1f6a93e4 183#endif
3c726f8d 184
e16c8765 185#ifdef CONFIG_PPC_BOOK3E
6becef7e 186/*
187 * The booting_thread_hwid holds the thread id we want to boot in cpu
188 * hotplug case. It is set by cpu hotplug code, and is invalid by default.
189 * The thread id is the same as the initial value of SPRN_PIR[THREAD_ID]
190 * bit field.
191 */
192 .globl booting_thread_hwid
193booting_thread_hwid:
194 .long INVALID_THREAD_HWID
195 .align 3
196/*
197 * start a thread in the same core
198 * input parameters:
199 * r3 = the thread physical id
200 * r4 = the entry point where thread starts
201 */
202_GLOBAL(book3e_start_thread)
203 LOAD_REG_IMMEDIATE(r5, MSR_KERNEL)
204 cmpi 0, r3, 0
205 beq 10f
206 cmpi 0, r3, 1
207 beq 11f
208 /* If the thread id is invalid, just exit. */
209 b 13f
21010:
7a25d912
SW
211 MTTMR(TMRN_IMSR0, 5)
212 MTTMR(TMRN_INIA0, 4)
6becef7e 213 b 12f
21411:
7a25d912
SW
215 MTTMR(TMRN_IMSR1, 5)
216 MTTMR(TMRN_INIA1, 4)
6becef7e 21712:
218 isync
219 li r6, 1
220 sld r6, r6, r3
221 mtspr SPRN_TENS, r6
22213:
223 blr
224
d17799f9 225/*
226 * stop a thread in the same core
227 * input parameter:
228 * r3 = the thread physical id
229 */
230_GLOBAL(book3e_stop_thread)
231 cmpi 0, r3, 0
232 beq 10f
233 cmpi 0, r3, 1
234 beq 10f
235 /* If the thread id is invalid, just exit. */
236 b 13f
23710:
238 li r4, 1
239 sld r4, r4, r3
240 mtspr SPRN_TENC, r4
24113:
242 blr
243
e16c8765 244_GLOBAL(fsl_secondary_thread_init)
f34b3e19
SW
245 mfspr r4,SPRN_BUCSR
246
e16c8765
AF
247 /* Enable branch prediction */
248 lis r3,BUCSR_INIT@h
249 ori r3,r3,BUCSR_INIT@l
250 mtspr SPRN_BUCSR,r3
251 isync
252
253 /*
254 * Fix PIR to match the linear numbering in the device tree.
255 *
256 * On e6500, the reset value of PIR uses the low three bits for
257 * the thread within a core, and the upper bits for the core
258 * number. There are two threads per core, so shift everything
259 * but the low bit right by two bits so that the cpu numbering is
260 * continuous.
f34b3e19
SW
261 *
262 * If the old value of BUCSR is non-zero, this thread has run
263 * before. Thus, we assume we are coming from kexec or a similar
264 * scenario, and PIR is already set to the correct value. This
265 * is a bit of a hack, but there are limited opportunities for
266 * getting information into the thread and the alternatives
267 * seemed like they'd be overkill. We can't tell just by looking
268 * at the old PIR value which state it's in, since the same value
269 * could be valid for one thread out of reset and for a different
270 * thread in Linux.
e16c8765 271 */
f34b3e19 272
e16c8765 273 mfspr r3, SPRN_PIR
f34b3e19
SW
274 cmpwi r4,0
275 bne 1f
e16c8765
AF
276 rlwimi r3, r3, 30, 2, 30
277 mtspr SPRN_PIR, r3
f34b3e19 2781:
e16c8765
AF
279#endif
280
2d27cfd3
BH
281_GLOBAL(generic_secondary_thread_init)
282 mr r24,r3
283
284 /* turn on 64-bit mode */
b1576fec 285 bl enable_64b_mode
2d27cfd3
BH
286
287 /* get a valid TOC pointer, wherever we're mapped at */
b1576fec 288 bl relative_toc
1fbe9cf2 289 tovirt(r2,r2)
2d27cfd3
BH
290
291#ifdef CONFIG_PPC_BOOK3E
292 /* Book3E initialization */
293 mr r3,r24
b1576fec 294 bl book3e_secondary_thread_init
2d27cfd3
BH
295#endif
296 b generic_secondary_common_init
14cf11af
PM
297
298/*
f39b7a55
OJ
299 * On pSeries and most other platforms, secondary processors spin
300 * in the following code.
14cf11af 301 * At entry, r3 = this processor's number (physical cpu id)
2d27cfd3
BH
302 *
303 * On Book3E, r4 = 1 to indicate that the initial TLB entry for
304 * this core already exists (setup via some other mechanism such
305 * as SCOM before entry).
14cf11af 306 */
f39b7a55 307_GLOBAL(generic_secondary_smp_init)
5c0484e2 308 FIXUP_ENDIAN
14cf11af 309 mr r24,r3
2d27cfd3
BH
310 mr r25,r4
311
14cf11af 312 /* turn on 64-bit mode */
b1576fec 313 bl enable_64b_mode
14cf11af 314
2d27cfd3 315 /* get a valid TOC pointer, wherever we're mapped at */
b1576fec 316 bl relative_toc
1fbe9cf2 317 tovirt(r2,r2)
e31aa453 318
2d27cfd3
BH
319#ifdef CONFIG_PPC_BOOK3E
320 /* Book3E initialization */
321 mr r3,r24
322 mr r4,r25
b1576fec 323 bl book3e_secondary_core_init
6becef7e 324
325/*
326 * After common core init has finished, check if the current thread is the
327 * one we wanted to boot. If not, start the specified thread and stop the
328 * current thread.
329 */
330 LOAD_REG_ADDR(r4, booting_thread_hwid)
331 lwz r3, 0(r4)
332 li r5, INVALID_THREAD_HWID
333 cmpw r3, r5
334 beq 20f
335
336 /*
337 * The value of booting_thread_hwid has been stored in r3,
338 * so make it invalid.
339 */
340 stw r5, 0(r4)
341
342 /*
343 * Get the current thread id and check if it is the one we wanted.
344 * If not, start the one specified in booting_thread_hwid and stop
345 * the current thread.
346 */
347 mfspr r8, SPRN_TIR
348 cmpw r3, r8
349 beq 20f
350
351 /* start the specified thread */
352 LOAD_REG_ADDR(r5, fsl_secondary_thread_init)
353 ld r4, 0(r5)
354 bl book3e_start_thread
355
356 /* stop the current thread */
357 mr r3, r8
358 bl book3e_stop_thread
35910:
360 b 10b
36120:
2d27cfd3
BH
362#endif
363
364generic_secondary_common_init:
14cf11af
PM
365 /* Set up a paca value for this processor. Since we have the
366 * physical cpu id in r24, we need to search the pacas to find
367 * which logical id maps to our physical one.
368 */
1426d5a3
ME
369 LOAD_REG_ADDR(r13, paca) /* Load paca pointer */
370 ld r13,0(r13) /* Get base vaddr of paca array */
768d18ad
MM
371#ifndef CONFIG_SMP
372 addi r13,r13,PACA_SIZE /* know r13 if used accidentally */
b1576fec 373 b kexec_wait /* wait for next kernel if !SMP */
768d18ad
MM
374#else
375 LOAD_REG_ADDR(r7, nr_cpu_ids) /* Load nr_cpu_ids address */
376 lwz r7,0(r7) /* also the max paca allocated */
14cf11af
PM
377 li r5,0 /* logical cpu id */
3781: lhz r6,PACAHWCPUID(r13) /* Load HW procid from paca */
379 cmpw r6,r24 /* Compare to our id */
380 beq 2f
381 addi r13,r13,PACA_SIZE /* Loop to next PACA on miss */
382 addi r5,r5,1
768d18ad 383 cmpw r5,r7 /* Check if more pacas exist */
14cf11af
PM
384 blt 1b
385
386 mr r3,r24 /* not found, copy phys to r3 */
b1576fec 387 b kexec_wait /* next kernel might do better */
14cf11af 388
2dd60d79 3892: SET_PACA(r13)
2d27cfd3
BH
390#ifdef CONFIG_PPC_BOOK3E
391 addi r12,r13,PACA_EXTLB /* and TLB exc frame in another */
392 mtspr SPRN_SPRG_TLB_EXFRAME,r12
393#endif
394
14cf11af
PM
395 /* From now on, r24 is expected to be logical cpuid */
396 mr r24,r5
b6f6b98a 397
f39b7a55 398 /* See if we need to call a cpu state restore handler */
e31aa453 399 LOAD_REG_ADDR(r23, cur_cpu_spec)
f39b7a55 400 ld r23,0(r23)
2751b628
AB
401 ld r12,CPU_SPEC_RESTORE(r23)
402 cmpdi 0,r12,0
9d07bc84 403 beq 3f
2751b628
AB
404#if !defined(_CALL_ELF) || _CALL_ELF != 2
405 ld r12,0(r12)
406#endif
cc7efbf9 407 mtctr r12
f39b7a55
OJ
408 bctrl
409
7ac87abb 4103: LOAD_REG_ADDR(r3, spinning_secondaries) /* Decrement spinning_secondaries */
9d07bc84
BH
411 lwarx r4,0,r3
412 subi r4,r4,1
413 stwcx. r4,0,r3
414 bne 3b
415 isync
416
4174: HMT_LOW
ad0693ee
BH
418 lbz r23,PACAPROCSTART(r13) /* Test if this processor should */
419 /* start. */
ad0693ee 420 cmpwi 0,r23,0
9d07bc84 421 beq 4b /* Loop until told to go */
ad0693ee
BH
422
423 sync /* order paca.run and cur_cpu_spec */
9d07bc84 424 isync /* In case code patching happened */
ad0693ee 425
9d07bc84 426 /* Create a temp kernel stack for use before relocation is on. */
14cf11af
PM
427 ld r1,PACAEMERGSP(r13)
428 subi r1,r1,STACK_FRAME_OVERHEAD
429
c705677e 430 b __secondary_start
768d18ad 431#endif /* SMP */
14cf11af 432
e31aa453
PM
433/*
434 * Turn the MMU off.
435 * Assumes we're mapped EA == RA if the MMU is on.
436 */
2d27cfd3 437#ifdef CONFIG_PPC_BOOK3S
6a3bab90 438__mmu_off:
14cf11af
PM
439 mfmsr r3
440 andi. r0,r3,MSR_IR|MSR_DR
441 beqlr
e31aa453 442 mflr r4
14cf11af
PM
443 andc r3,r3,r0
444 mtspr SPRN_SRR0,r4
445 mtspr SPRN_SRR1,r3
446 sync
447 rfid
448 b . /* prevent speculative execution */
2d27cfd3 449#endif
14cf11af
PM
450
451
452/*
453 * Here is our main kernel entry point. We support currently 2 kind of entries
454 * depending on the value of r5.
455 *
456 * r5 != NULL -> OF entry, we go to prom_init, "legacy" parameter content
457 * in r3...r7
458 *
459 * r5 == NULL -> kexec style entry. r3 is a physical pointer to the
460 * DT block, r4 is a physical pointer to the kernel itself
461 *
462 */
6a3bab90 463__start_initialization_multiplatform:
e31aa453 464 /* Make sure we are running in 64 bits mode */
b1576fec 465 bl enable_64b_mode
e31aa453
PM
466
467 /* Get TOC pointer (current runtime address) */
b1576fec 468 bl relative_toc
e31aa453
PM
469
470 /* find out where we are now */
471 bcl 20,31,$+4
4720: mflr r26 /* r26 = runtime addr here */
473 addis r26,r26,(_stext - 0b)@ha
474 addi r26,r26,(_stext - 0b)@l /* current runtime base addr */
475
14cf11af
PM
476 /*
477 * Are we booted from a PROM Of-type client-interface ?
478 */
479 cmpldi cr0,r5,0
939e60f6 480 beq 1f
b1576fec 481 b __boot_from_prom /* yes -> prom */
939e60f6 4821:
14cf11af
PM
483 /* Save parameters */
484 mr r31,r3
485 mr r30,r4
daea1175
BH
486#ifdef CONFIG_PPC_EARLY_DEBUG_OPAL
487 /* Save OPAL entry */
488 mr r28,r8
489 mr r29,r9
490#endif
14cf11af 491
2d27cfd3 492#ifdef CONFIG_PPC_BOOK3E
b1576fec
AB
493 bl start_initialization_book3e
494 b __after_prom_start
2d27cfd3 495#else
14cf11af 496 /* Setup some critical 970 SPRs before switching MMU off */
f39b7a55
OJ
497 mfspr r0,SPRN_PVR
498 srwi r0,r0,16
499 cmpwi r0,0x39 /* 970 */
500 beq 1f
501 cmpwi r0,0x3c /* 970FX */
502 beq 1f
503 cmpwi r0,0x44 /* 970MP */
190a24f5
OJ
504 beq 1f
505 cmpwi r0,0x45 /* 970GX */
f39b7a55 506 bne 2f
b1576fec 5071: bl __cpu_preinit_ppc970
f39b7a55 5082:
14cf11af 509
e31aa453 510 /* Switch off MMU if not already off */
b1576fec
AB
511 bl __mmu_off
512 b __after_prom_start
2d27cfd3 513#endif /* CONFIG_PPC_BOOK3E */
14cf11af 514
6a3bab90 515__boot_from_prom:
28794d34 516#ifdef CONFIG_PPC_OF_BOOT_TRAMPOLINE
14cf11af
PM
517 /* Save parameters */
518 mr r31,r3
519 mr r30,r4
520 mr r29,r5
521 mr r28,r6
522 mr r27,r7
523
6088857b
OH
524 /*
525 * Align the stack to 16-byte boundary
526 * Depending on the size and layout of the ELF sections in the initial
e31aa453 527 * boot binary, the stack pointer may be unaligned on PowerMac
6088857b 528 */
c05b4770
LT
529 rldicr r1,r1,0,59
530
549e8152
PM
531#ifdef CONFIG_RELOCATABLE
532 /* Relocate code for where we are now */
533 mr r3,r26
b1576fec 534 bl relocate
549e8152
PM
535#endif
536
14cf11af
PM
537 /* Restore parameters */
538 mr r3,r31
539 mr r4,r30
540 mr r5,r29
541 mr r6,r28
542 mr r7,r27
543
544 /* Do all of the interaction with OF client interface */
549e8152 545 mr r8,r26
b1576fec 546 bl prom_init
28794d34
BH
547#endif /* #CONFIG_PPC_OF_BOOT_TRAMPOLINE */
548
549 /* We never return. We also hit that trap if trying to boot
550 * from OF while CONFIG_PPC_OF_BOOT_TRAMPOLINE isn't selected */
14cf11af
PM
551 trap
552
6a3bab90 553__after_prom_start:
549e8152
PM
554#ifdef CONFIG_RELOCATABLE
555 /* process relocations for the final address of the kernel */
556 lis r25,PAGE_OFFSET@highest /* compute virtual base of kernel */
557 sldi r25,r25,32
1cb6e064
TC
558#if defined(CONFIG_PPC_BOOK3E)
559 tovirt(r26,r26) /* on booke, we already run at PAGE_OFFSET */
560#endif
8b8b0cc1 561 lwz r7,__run_at_load-_stext(r26)
1cb6e064
TC
562#if defined(CONFIG_PPC_BOOK3E)
563 tophys(r26,r26)
564#endif
928a3197 565 cmplwi cr0,r7,1 /* flagged to stay where we are ? */
54622f10
MK
566 bne 1f
567 add r25,r25,r26
54622f10 5681: mr r3,r25
b1576fec 569 bl relocate
1cb6e064
TC
570#if defined(CONFIG_PPC_BOOK3E)
571 /* IVPR needs to be set after relocation. */
572 bl init_core_book3e
573#endif
549e8152 574#endif
14cf11af
PM
575
576/*
e31aa453 577 * We need to run with _stext at physical address PHYSICAL_START.
14cf11af
PM
578 * This will leave some code in the first 256B of
579 * real memory, which are reserved for software use.
14cf11af
PM
580 *
581 * Note: This process overwrites the OF exception vectors.
14cf11af 582 */
549e8152 583 li r3,0 /* target addr */
2d27cfd3 584#ifdef CONFIG_PPC_BOOK3E
835c031c 585 tovirt(r3,r3) /* on booke, we already run at PAGE_OFFSET */
2d27cfd3 586#endif
549e8152 587 mr. r4,r26 /* In some cases the loader may */
835c031c
TC
588#if defined(CONFIG_PPC_BOOK3E)
589 tovirt(r4,r4)
590#endif
e31aa453 591 beq 9f /* have already put us at zero */
14cf11af
PM
592 li r6,0x100 /* Start offset, the first 0x100 */
593 /* bytes were copied earlier. */
594
11ee7e99 595#ifdef CONFIG_RELOCATABLE
54622f10
MK
596/*
597 * Check if the kernel has to be running as relocatable kernel based on the
8b8b0cc1 598 * variable __run_at_load, if it is set the kernel is treated as relocatable
54622f10
MK
599 * kernel, otherwise it will be moved to PHYSICAL_START
600 */
1cb6e064
TC
601#if defined(CONFIG_PPC_BOOK3E)
602 tovirt(r26,r26) /* on booke, we already run at PAGE_OFFSET */
603#endif
8b8b0cc1
MM
604 lwz r7,__run_at_load-_stext(r26)
605 cmplwi cr0,r7,1
54622f10
MK
606 bne 3f
607
1cb6e064
TC
608#ifdef CONFIG_PPC_BOOK3E
609 LOAD_REG_ADDR(r5, __end_interrupts)
610 LOAD_REG_ADDR(r11, _stext)
611 sub r5,r5,r11
612#else
c1fb6816
MN
613 /* just copy interrupts */
614 LOAD_REG_IMMEDIATE(r5, __end_interrupts - _stext)
1cb6e064 615#endif
54622f10
MK
616 b 5f
6173:
618#endif
619 lis r5,(copy_to_here - _stext)@ha
620 addi r5,r5,(copy_to_here - _stext)@l /* # bytes of memory to copy */
621
b1576fec 622 bl copy_and_flush /* copy the first n bytes */
14cf11af
PM
623 /* this includes the code being */
624 /* executed here. */
e31aa453 625 addis r8,r3,(4f - _stext)@ha /* Jump to the copy of this code */
cc7efbf9
AB
626 addi r12,r8,(4f - _stext)@l /* that we just made */
627 mtctr r12
14cf11af
PM
628 bctr
629
286e4f90 630.balign 8
54622f10
MK
631p_end: .llong _end - _stext
632
e31aa453
PM
6334: /* Now copy the rest of the kernel up to _end */
634 addis r5,r26,(p_end - _stext)@ha
635 ld r5,(p_end - _stext)@l(r5) /* get _end */
b1576fec 6365: bl copy_and_flush /* copy the rest */
e31aa453 637
b1576fec 6389: b start_here_multiplatform
e31aa453 639
14cf11af
PM
640/*
641 * Copy routine used to copy the kernel to start at physical address 0
642 * and flush and invalidate the caches as needed.
643 * r3 = dest addr, r4 = source addr, r5 = copy limit, r6 = start offset
644 * on exit, r3, r4, r5 are unchanged, r6 is updated to be >= r5.
645 *
646 * Note: this routine *only* clobbers r0, r6 and lr
647 */
648_GLOBAL(copy_and_flush)
649 addi r5,r5,-8
650 addi r6,r6,-8
5a2fe38d 6514: li r0,8 /* Use the smallest common */
14cf11af
PM
652 /* denominator cache line */
653 /* size. This results in */
654 /* extra cache line flushes */
655 /* but operation is correct. */
656 /* Can't get cache line size */
657 /* from NACA as it is being */
658 /* moved too. */
659
660 mtctr r0 /* put # words/line in ctr */
6613: addi r6,r6,8 /* copy a cache line */
662 ldx r0,r6,r4
663 stdx r0,r6,r3
664 bdnz 3b
665 dcbst r6,r3 /* write it to memory */
666 sync
667 icbi r6,r3 /* flush the icache line */
668 cmpld 0,r6,r5
669 blt 4b
670 sync
671 addi r5,r5,8
672 addi r6,r6,8
29ce3c50 673 isync
14cf11af
PM
674 blr
675
676.align 8
677copy_to_here:
678
679#ifdef CONFIG_SMP
680#ifdef CONFIG_PPC_PMAC
681/*
682 * On PowerMac, secondary processors starts from the reset vector, which
683 * is temporarily turned into a call to one of the functions below.
684 */
685 .section ".text";
686 .align 2 ;
687
35499c01
PM
688 .globl __secondary_start_pmac_0
689__secondary_start_pmac_0:
690 /* NB the entries for cpus 0, 1, 2 must each occupy 8 bytes. */
691 li r24,0
692 b 1f
693 li r24,1
694 b 1f
695 li r24,2
696 b 1f
697 li r24,3
6981:
14cf11af
PM
699
700_GLOBAL(pmac_secondary_start)
701 /* turn on 64-bit mode */
b1576fec 702 bl enable_64b_mode
14cf11af 703
c478b581
BH
704 li r0,0
705 mfspr r3,SPRN_HID4
706 rldimi r3,r0,40,23 /* clear bit 23 (rm_ci) */
707 sync
708 mtspr SPRN_HID4,r3
709 isync
710 sync
711 slbia
712
e31aa453 713 /* get TOC pointer (real address) */
b1576fec 714 bl relative_toc
1fbe9cf2 715 tovirt(r2,r2)
e31aa453 716
14cf11af 717 /* Copy some CPU settings from CPU 0 */
b1576fec 718 bl __restore_cpu_ppc970
14cf11af
PM
719
720 /* pSeries do that early though I don't think we really need it */
721 mfmsr r3
722 ori r3,r3,MSR_RI
723 mtmsrd r3 /* RI on */
724
725 /* Set up a paca value for this processor. */
1426d5a3
ME
726 LOAD_REG_ADDR(r4,paca) /* Load paca pointer */
727 ld r4,0(r4) /* Get base vaddr of paca array */
e31aa453 728 mulli r13,r24,PACA_SIZE /* Calculate vaddr of right paca */
14cf11af 729 add r13,r13,r4 /* for this processor. */
2dd60d79 730 SET_PACA(r13) /* Save vaddr of paca in an SPRG*/
14cf11af 731
62cc67b9
BH
732 /* Mark interrupts soft and hard disabled (they might be enabled
733 * in the PACA when doing hotplug)
734 */
735 li r0,0
736 stb r0,PACASOFTIRQEN(r13)
7230c564
BH
737 li r0,PACA_IRQ_HARD_DIS
738 stb r0,PACAIRQHAPPENED(r13)
62cc67b9 739
14cf11af
PM
740 /* Create a temp kernel stack for use before relocation is on. */
741 ld r1,PACAEMERGSP(r13)
742 subi r1,r1,STACK_FRAME_OVERHEAD
743
c705677e 744 b __secondary_start
14cf11af
PM
745
746#endif /* CONFIG_PPC_PMAC */
747
748/*
749 * This function is called after the master CPU has released the
750 * secondary processors. The execution environment is relocation off.
751 * The paca for this processor has the following fields initialized at
752 * this point:
753 * 1. Processor number
754 * 2. Segment table pointer (virtual address)
755 * On entry the following are set:
4f8cf36f 756 * r1 = stack pointer (real addr of temp stack)
ee43eb78
BH
757 * r24 = cpu# (in Linux terms)
758 * r13 = paca virtual address
759 * SPRG_PACA = paca virtual address
14cf11af 760 */
2d27cfd3
BH
761 .section ".text";
762 .align 2 ;
763
fc68e869 764 .globl __secondary_start
c705677e 765__secondary_start:
799d6046
PM
766 /* Set thread priority to MEDIUM */
767 HMT_MEDIUM
14cf11af 768
4f8cf36f 769 /* Initialize the kernel stack */
e58c3495 770 LOAD_REG_ADDR(r3, current_set)
14cf11af 771 sldi r28,r24,3 /* get current_set[cpu#] */
54a83404
MN
772 ldx r14,r3,r28
773 addi r14,r14,THREAD_SIZE-STACK_FRAME_OVERHEAD
774 std r14,PACAKSAVE(r13)
14cf11af 775
376af594 776 /* Do early setup for that CPU (SLB and hash table pointer) */
b1576fec 777 bl early_setup_secondary
f761622e 778
54a83404
MN
779 /*
780 * setup the new stack pointer, but *don't* use this until
781 * translation is on.
782 */
783 mr r1, r14
784
799d6046 785 /* Clear backchain so we get nice backtraces */
14cf11af
PM
786 li r7,0
787 mtlr r7
788
7230c564
BH
789 /* Mark interrupts soft and hard disabled (they might be enabled
790 * in the PACA when doing hotplug)
791 */
4f8cf36f 792 stb r7,PACASOFTIRQEN(r13)
7230c564
BH
793 li r0,PACA_IRQ_HARD_DIS
794 stb r0,PACAIRQHAPPENED(r13)
4f8cf36f 795
14cf11af 796 /* enable MMU and jump to start_secondary */
ad0289e4 797 LOAD_REG_ADDR(r3, start_secondary_prolog)
e58c3495 798 LOAD_REG_IMMEDIATE(r4, MSR_KERNEL)
d04c56f7 799
b5bbeb23
PM
800 mtspr SPRN_SRR0,r3
801 mtspr SPRN_SRR1,r4
2d27cfd3 802 RFI
14cf11af
PM
803 b . /* prevent speculative execution */
804
805/*
806 * Running with relocation on at this point. All we want to do is
e31aa453
PM
807 * zero the stack back-chain pointer and get the TOC virtual address
808 * before going into C code.
14cf11af 809 */
ad0289e4 810start_secondary_prolog:
e31aa453 811 ld r2,PACATOC(r13)
14cf11af
PM
812 li r3,0
813 std r3,0(r1) /* Zero the stack frame pointer */
b1576fec 814 bl start_secondary
799d6046 815 b .
8dbce53c
VS
816/*
817 * Reset stack pointer and call start_secondary
818 * to continue with online operation when woken up
819 * from cede in cpu offline.
820 */
821_GLOBAL(start_secondary_resume)
822 ld r1,PACAKSAVE(r13) /* Reload kernel stack pointer */
823 li r3,0
824 std r3,0(r1) /* Zero the stack frame pointer */
b1576fec 825 bl start_secondary
8dbce53c 826 b .
14cf11af
PM
827#endif
828
829/*
830 * This subroutine clobbers r11 and r12
831 */
6a3bab90 832enable_64b_mode:
14cf11af 833 mfmsr r11 /* grab the current MSR */
2d27cfd3
BH
834#ifdef CONFIG_PPC_BOOK3E
835 oris r11,r11,0x8000 /* CM bit set, we'll set ICM later */
836 mtmsr r11
837#else /* CONFIG_PPC_BOOK3E */
9f0b0793 838 li r12,(MSR_64BIT | MSR_ISF)@highest
e31aa453 839 sldi r12,r12,48
14cf11af
PM
840 or r11,r11,r12
841 mtmsrd r11
842 isync
2d27cfd3 843#endif
14cf11af
PM
844 blr
845
e31aa453
PM
846/*
847 * This puts the TOC pointer into r2, offset by 0x8000 (as expected
848 * by the toolchain). It computes the correct value for wherever we
849 * are running at the moment, using position-independent code.
1fbe9cf2
AB
850 *
851 * Note: The compiler constructs pointers using offsets from the
852 * TOC in -mcmodel=medium mode. After we relocate to 0 but before
853 * the MMU is on we need our TOC to be a virtual address otherwise
854 * these pointers will be real addresses which may get stored and
855 * accessed later with the MMU on. We use tovirt() at the call
856 * sites to handle this.
e31aa453
PM
857 */
858_GLOBAL(relative_toc)
859 mflr r0
860 bcl 20,31,$+4
e550592e
BH
8610: mflr r11
862 ld r2,(p_toc - 0b)(r11)
863 add r2,r2,r11
e31aa453
PM
864 mtlr r0
865 blr
866
5b63fee1 867.balign 8
e31aa453
PM
868p_toc: .llong __toc_start + 0x8000 - 0b
869
14cf11af
PM
870/*
871 * This is where the main kernel code starts.
872 */
6a3bab90 873start_here_multiplatform:
1fbe9cf2 874 /* set up the TOC */
b1576fec 875 bl relative_toc
1fbe9cf2 876 tovirt(r2,r2)
14cf11af
PM
877
878 /* Clear out the BSS. It may have been done in prom_init,
879 * already but that's irrelevant since prom_init will soon
880 * be detached from the kernel completely. Besides, we need
881 * to clear it now for kexec-style entry.
882 */
e31aa453
PM
883 LOAD_REG_ADDR(r11,__bss_stop)
884 LOAD_REG_ADDR(r8,__bss_start)
14cf11af
PM
885 sub r11,r11,r8 /* bss size */
886 addi r11,r11,7 /* round up to an even double word */
e31aa453 887 srdi. r11,r11,3 /* shift right by 3 */
14cf11af
PM
888 beq 4f
889 addi r8,r8,-8
890 li r0,0
891 mtctr r11 /* zero this many doublewords */
8923: stdu r0,8(r8)
893 bdnz 3b
8944:
895
daea1175
BH
896#ifdef CONFIG_PPC_EARLY_DEBUG_OPAL
897 /* Setup OPAL entry */
ab7f961a 898 LOAD_REG_ADDR(r11, opal)
daea1175
BH
899 std r28,0(r11);
900 std r29,8(r11);
901#endif
902
2d27cfd3 903#ifndef CONFIG_PPC_BOOK3E
14cf11af
PM
904 mfmsr r6
905 ori r6,r6,MSR_RI
906 mtmsrd r6 /* RI on */
2d27cfd3 907#endif
14cf11af 908
549e8152
PM
909#ifdef CONFIG_RELOCATABLE
910 /* Save the physical address we're running at in kernstart_addr */
911 LOAD_REG_ADDR(r4, kernstart_addr)
912 clrldi r0,r25,2
913 std r0,0(r4)
914#endif
915
e31aa453 916 /* The following gets the stack set up with the regs */
14cf11af
PM
917 /* pointing to the real addr of the kernel stack. This is */
918 /* all done to support the C function call below which sets */
919 /* up the htab. This is done because we have relocated the */
920 /* kernel but are still running in real mode. */
921
e31aa453 922 LOAD_REG_ADDR(r3,init_thread_union)
14cf11af 923
e31aa453 924 /* set up a stack pointer */
14cf11af
PM
925 addi r1,r3,THREAD_SIZE
926 li r0,0
927 stdu r0,-STACK_FRAME_OVERHEAD(r1)
928
376af594
ME
929 /*
930 * Do very early kernel initializations, including initial hash table
931 * and SLB setup before we turn on relocation.
932 */
14cf11af
PM
933
934 /* Restore parameters passed from prom_init/kexec */
935 mr r3,r31
b1576fec 936 bl early_setup /* also sets r13 and SPRG_PACA */
14cf11af 937
ad0289e4 938 LOAD_REG_ADDR(r3, start_here_common)
e31aa453 939 ld r4,PACAKMSR(r13)
b5bbeb23
PM
940 mtspr SPRN_SRR0,r3
941 mtspr SPRN_SRR1,r4
2d27cfd3 942 RFI
14cf11af 943 b . /* prevent speculative execution */
14cf11af
PM
944
945 /* This is where all platforms converge execution */
ad0289e4
AB
946
947start_here_common:
14cf11af 948 /* relocation is on at this point */
e31aa453 949 std r1,PACAKSAVE(r13)
14cf11af 950
e31aa453 951 /* Load the TOC (virtual address) */
14cf11af 952 ld r2,PACATOC(r13)
14cf11af 953
7230c564 954 /* Do more system initializations in virtual mode */
b1576fec 955 bl setup_system
14cf11af 956
7230c564
BH
957 /* Mark interrupts soft and hard disabled (they might be enabled
958 * in the PACA when doing hotplug)
959 */
960 li r0,0
961 stb r0,PACASOFTIRQEN(r13)
962 li r0,PACA_IRQ_HARD_DIS
963 stb r0,PACAIRQHAPPENED(r13)
14cf11af 964
7230c564 965 /* Generic kernel entry */
b1576fec 966 bl start_kernel
14cf11af 967
f1870f77
AB
968 /* Not reached */
969 BUG_OPCODE
14cf11af 970
14cf11af
PM
971/*
972 * We put a few things here that have to be page-aligned.
973 * This stuff goes at the beginning of the bss, which is page-aligned.
974 */
975 .section ".bss"
976
977 .align PAGE_SHIFT
978
979 .globl empty_zero_page
980empty_zero_page:
981 .space PAGE_SIZE
982
983 .globl swapper_pg_dir
984swapper_pg_dir:
ee7a76da 985 .space PGD_TABLE_SIZE