blob: 0552f01041ab88fb3b1b5450133d0aaf0a8f803d [file] [log] [blame]
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001/*
Paul Mackerras14cf11a2005-09-26 16:04:21 +10002 * 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 *
Benjamin Herrenschmidt0ebc4cd2009-06-02 21:17:38 +000015 * 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.
Paul Mackerras14cf11a2005-09-26 16:04:21 +100018 *
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
Paul Mackerras14cf11a2005-09-26 16:04:21 +100025#include <linux/threads.h>
Paul Mackerrasb5bbeb22005-10-10 14:01:07 +100026#include <asm/reg.h>
Paul Mackerras14cf11a2005-09-26 16:04:21 +100027#include <asm/page.h>
28#include <asm/mmu.h>
Paul Mackerras14cf11a2005-09-26 16:04:21 +100029#include <asm/ppc_asm.h>
30#include <asm/asm-offsets.h>
31#include <asm/bug.h>
32#include <asm/cputable.h>
33#include <asm/setup.h>
34#include <asm/hvcall.h>
Kelly Dalyc43a55f2005-11-02 15:02:47 +110035#include <asm/iseries/lpar_map.h>
David Gibson6cb7bfe2005-10-21 15:45:50 +100036#include <asm/thread_info.h>
Stephen Rothwell3f639ee2006-09-25 18:19:00 +100037#include <asm/firmware.h>
Stephen Rothwell16a15a32007-08-20 14:58:36 +100038#include <asm/page_64.h>
Benjamin Herrenschmidt945feb12008-04-17 14:35:01 +100039#include <asm/irqflags.h>
Paul Mackerras14cf11a2005-09-26 16:04:21 +100040
Benjamin Herrenschmidt0ebc4cd2009-06-02 21:17:38 +000041/* The physical memory is layed out such that the secondary processor
42 * spin code sits at 0x0000...0x00ff. On server, the vectors follow
43 * using the layout described in exceptions-64s.S
Paul Mackerras14cf11a2005-09-26 16:04:21 +100044 */
45
46/*
47 * Entering into this code we make the following assumptions:
Benjamin Herrenschmidt0ebc4cd2009-06-02 21:17:38 +000048 *
49 * For pSeries or server processors:
Paul Mackerras14cf11a2005-09-26 16:04:21 +100050 * 1. The MMU is off & open firmware is running in real mode.
51 * 2. The kernel is entered at __start
52 *
53 * For iSeries:
54 * 1. The MMU is on (as it always is for iSeries)
55 * 2. The kernel is entered at system_reset_iSeries
Benjamin Herrenschmidt0ebc4cd2009-06-02 21:17:38 +000056 *
57 * For Book3E processors:
58 * 1. The MMU is on running in AS0 in a state defined in ePAPR
59 * 2. The kernel is entered at __start
Paul Mackerras14cf11a2005-09-26 16:04:21 +100060 */
61
62 .text
63 .globl _stext
64_stext:
Paul Mackerras14cf11a2005-09-26 16:04:21 +100065_GLOBAL(__start)
66 /* NOP this out unconditionally */
67BEGIN_FTR_SECTION
Paul Mackerrasb85a0462005-10-06 10:59:19 +100068 b .__start_initialization_multiplatform
Paul Mackerras14cf11a2005-09-26 16:04:21 +100069END_FTR_SECTION(0, 1)
Paul Mackerras14cf11a2005-09-26 16:04:21 +100070
71 /* Catch branch to 0 in real mode */
72 trap
73
Paul Mackerras1f6a93e2008-08-30 11:40:24 +100074 /* Secondary processors spin on this value until it becomes nonzero.
75 * When it does it contains the real address of the descriptor
76 * of the function that the cpu should jump to to continue
77 * initialization.
78 */
Paul Mackerras14cf11a2005-09-26 16:04:21 +100079 .globl __secondary_hold_spinloop
80__secondary_hold_spinloop:
81 .llong 0x0
82
83 /* Secondary processors write this value with their cpu # */
84 /* after they enter the spin loop immediately below. */
85 .globl __secondary_hold_acknowledge
86__secondary_hold_acknowledge:
87 .llong 0x0
88
Michael Ellerman1dce0e32006-06-23 18:15:37 +100089#ifdef CONFIG_PPC_ISERIES
90 /*
91 * At offset 0x20, there is a pointer to iSeries LPAR data.
92 * This is required by the hypervisor
93 */
94 . = 0x20
95 .llong hvReleaseData-KERNELBASE
96#endif /* CONFIG_PPC_ISERIES */
97
Milton Miller8b8b0cc2008-10-23 18:41:09 +000098#ifdef CONFIG_CRASH_DUMP
99 /* This flag is set to 1 by a loader if the kernel should run
100 * at the loaded address instead of the linked address. This
101 * is used by kexec-tools to keep the the kdump kernel in the
102 * crash_kernel region. The loader is responsible for
103 * observing the alignment requirement.
104 */
105 /* Do not move this variable as kexec-tools knows about it. */
106 . = 0x5c
107 .globl __run_at_load
108__run_at_load:
109 .long 0x72756e30 /* "run0" -- relocate to 0 by default */
110#endif
111
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000112 . = 0x60
113/*
Geoff Levand75423b72007-06-16 08:06:23 +1000114 * The following code is used to hold secondary processors
115 * in a spin loop after they have entered the kernel, but
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000116 * before the bulk of the kernel has been relocated. This code
117 * is relocated to physical address 0x60 before prom_init is run.
118 * All of it must fit below the first exception vector at 0x100.
Paul Mackerras1f6a93e2008-08-30 11:40:24 +1000119 * Use .globl here not _GLOBAL because we want __secondary_hold
120 * to be the actual text address, not a descriptor.
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000121 */
Paul Mackerras1f6a93e2008-08-30 11:40:24 +1000122 .globl __secondary_hold
123__secondary_hold:
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000124 mfmsr r24
125 ori r24,r24,MSR_RI
126 mtmsrd r24 /* RI on */
127
Anton Blanchardf1870f72006-02-13 18:11:13 +1100128 /* Grab our physical cpu number */
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000129 mr r24,r3
130
131 /* Tell the master cpu we're here */
132 /* Relocation is off & we are located at an address less */
133 /* than 0x100, so only need to grab low order offset. */
Paul Mackerrase31aa452008-08-30 11:41:12 +1000134 std r24,__secondary_hold_acknowledge-_stext(0)
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000135 sync
136
137 /* All secondary cpus wait here until told to start. */
Paul Mackerrase31aa452008-08-30 11:41:12 +1000138100: ld r4,__secondary_hold_spinloop-_stext(0)
Paul Mackerras1f6a93e2008-08-30 11:40:24 +1000139 cmpdi 0,r4,0
140 beq 100b
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000141
Anton Blanchardf1870f72006-02-13 18:11:13 +1100142#if defined(CONFIG_SMP) || defined(CONFIG_KEXEC)
Paul Mackerras1f6a93e2008-08-30 11:40:24 +1000143 ld r4,0(r4) /* deref function descriptor */
Michael Ellerman758438a2005-12-05 15:49:00 -0600144 mtctr r4
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000145 mr r3,r24
Michael Ellerman758438a2005-12-05 15:49:00 -0600146 bctr
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000147#else
148 BUG_OPCODE
149#endif
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000150
151/* This value is used to mark exception frames on the stack. */
152 .section ".toc","aw"
153exception_marker:
154 .tc ID_72656773_68657265[TC],0x7265677368657265
155 .text
156
157/*
Benjamin Herrenschmidt0ebc4cd2009-06-02 21:17:38 +0000158 * On server, we include the exception vectors code here as it
159 * relies on absolute addressing which is only possible within
160 * this compilation unit
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000161 */
Benjamin Herrenschmidt0ebc4cd2009-06-02 21:17:38 +0000162#ifdef CONFIG_PPC_BOOK3S
163#include "exceptions-64s.S"
Paul Mackerras1f6a93e2008-08-30 11:40:24 +1000164#endif
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000165
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000166
167/*
Olof Johanssonf39b7a52006-08-11 00:07:08 -0500168 * On pSeries and most other platforms, secondary processors spin
169 * in the following code.
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000170 * At entry, r3 = this processor's number (physical cpu id)
171 */
Olof Johanssonf39b7a52006-08-11 00:07:08 -0500172_GLOBAL(generic_secondary_smp_init)
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000173 mr r24,r3
174
175 /* turn on 64-bit mode */
176 bl .enable_64b_mode
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000177
Paul Mackerrase31aa452008-08-30 11:41:12 +1000178 /* get the TOC pointer (real address) */
179 bl .relative_toc
180
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000181 /* Set up a paca value for this processor. Since we have the
182 * physical cpu id in r24, we need to search the pacas to find
183 * which logical id maps to our physical one.
184 */
Paul Mackerrase31aa452008-08-30 11:41:12 +1000185 LOAD_REG_ADDR(r13, paca) /* Get base vaddr of paca array */
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000186 li r5,0 /* logical cpu id */
1871: lhz r6,PACAHWCPUID(r13) /* Load HW procid from paca */
188 cmpw r6,r24 /* Compare to our id */
189 beq 2f
190 addi r13,r13,PACA_SIZE /* Loop to next PACA on miss */
191 addi r5,r5,1
192 cmpwi r5,NR_CPUS
193 blt 1b
194
195 mr r3,r24 /* not found, copy phys to r3 */
196 b .kexec_wait /* next kernel might do better */
197
Benjamin Herrenschmidtee43eb72009-07-14 20:52:54 +00001982: mtspr SPRN_SPRG_PACA,r13 /* Save vaddr of paca in an SPRG */
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000199 /* From now on, r24 is expected to be logical cpuid */
200 mr r24,r5
2013: HMT_LOW
202 lbz r23,PACAPROCSTART(r13) /* Test if this processor should */
203 /* start. */
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000204
Olof Johanssonf39b7a52006-08-11 00:07:08 -0500205#ifndef CONFIG_SMP
206 b 3b /* Never go on non-SMP */
207#else
208 cmpwi 0,r23,0
209 beq 3b /* Loop until told to go */
210
Sonny Raob6f6b982008-07-12 09:00:26 +1000211 sync /* order paca.run and cur_cpu_spec */
212
Olof Johanssonf39b7a52006-08-11 00:07:08 -0500213 /* See if we need to call a cpu state restore handler */
Paul Mackerrase31aa452008-08-30 11:41:12 +1000214 LOAD_REG_ADDR(r23, cur_cpu_spec)
Olof Johanssonf39b7a52006-08-11 00:07:08 -0500215 ld r23,0(r23)
216 ld r23,CPU_SPEC_RESTORE(r23)
217 cmpdi 0,r23,0
218 beq 4f
219 ld r23,0(r23)
220 mtctr r23
221 bctrl
222
2234: /* Create a temp kernel stack for use before relocation is on. */
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000224 ld r1,PACAEMERGSP(r13)
225 subi r1,r1,STACK_FRAME_OVERHEAD
226
Stephen Rothwellc7056772006-11-27 14:59:50 +1100227 b __secondary_start
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000228#endif
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000229
Paul Mackerrase31aa452008-08-30 11:41:12 +1000230/*
231 * Turn the MMU off.
232 * Assumes we're mapped EA == RA if the MMU is on.
233 */
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000234_STATIC(__mmu_off)
235 mfmsr r3
236 andi. r0,r3,MSR_IR|MSR_DR
237 beqlr
Paul Mackerrase31aa452008-08-30 11:41:12 +1000238 mflr r4
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000239 andc r3,r3,r0
240 mtspr SPRN_SRR0,r4
241 mtspr SPRN_SRR1,r3
242 sync
243 rfid
244 b . /* prevent speculative execution */
245
246
247/*
248 * Here is our main kernel entry point. We support currently 2 kind of entries
249 * depending on the value of r5.
250 *
251 * r5 != NULL -> OF entry, we go to prom_init, "legacy" parameter content
252 * in r3...r7
253 *
254 * r5 == NULL -> kexec style entry. r3 is a physical pointer to the
255 * DT block, r4 is a physical pointer to the kernel itself
256 *
257 */
258_GLOBAL(__start_initialization_multiplatform)
Paul Mackerrase31aa452008-08-30 11:41:12 +1000259 /* Make sure we are running in 64 bits mode */
260 bl .enable_64b_mode
261
262 /* Get TOC pointer (current runtime address) */
263 bl .relative_toc
264
265 /* find out where we are now */
266 bcl 20,31,$+4
2670: mflr r26 /* r26 = runtime addr here */
268 addis r26,r26,(_stext - 0b)@ha
269 addi r26,r26,(_stext - 0b)@l /* current runtime base addr */
270
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000271 /*
272 * Are we booted from a PROM Of-type client-interface ?
273 */
274 cmpldi cr0,r5,0
Stephen Rothwell939e60f62007-07-31 16:44:13 +1000275 beq 1f
276 b .__boot_from_prom /* yes -> prom */
2771:
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000278 /* Save parameters */
279 mr r31,r3
280 mr r30,r4
281
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000282 /* Setup some critical 970 SPRs before switching MMU off */
Olof Johanssonf39b7a52006-08-11 00:07:08 -0500283 mfspr r0,SPRN_PVR
284 srwi r0,r0,16
285 cmpwi r0,0x39 /* 970 */
286 beq 1f
287 cmpwi r0,0x3c /* 970FX */
288 beq 1f
289 cmpwi r0,0x44 /* 970MP */
Olof Johansson190a24f2006-10-25 17:32:40 -0500290 beq 1f
291 cmpwi r0,0x45 /* 970GX */
Olof Johanssonf39b7a52006-08-11 00:07:08 -0500292 bne 2f
2931: bl .__cpu_preinit_ppc970
2942:
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000295
Paul Mackerrase31aa452008-08-30 11:41:12 +1000296 /* Switch off MMU if not already off */
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000297 bl .__mmu_off
298 b .__after_prom_start
299
Stephen Rothwell939e60f62007-07-31 16:44:13 +1000300_INIT_STATIC(__boot_from_prom)
Benjamin Herrenschmidt28794d32009-03-10 17:53:27 +0000301#ifdef CONFIG_PPC_OF_BOOT_TRAMPOLINE
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000302 /* Save parameters */
303 mr r31,r3
304 mr r30,r4
305 mr r29,r5
306 mr r28,r6
307 mr r27,r7
308
Olaf Hering60888572006-03-23 21:50:59 +0100309 /*
310 * Align the stack to 16-byte boundary
311 * Depending on the size and layout of the ELF sections in the initial
Paul Mackerrase31aa452008-08-30 11:41:12 +1000312 * boot binary, the stack pointer may be unaligned on PowerMac
Olaf Hering60888572006-03-23 21:50:59 +0100313 */
Linus Torvaldsc05b4772006-03-04 15:00:45 -0800314 rldicr r1,r1,0,59
315
Paul Mackerras549e8152008-08-30 11:43:47 +1000316#ifdef CONFIG_RELOCATABLE
317 /* Relocate code for where we are now */
318 mr r3,r26
319 bl .relocate
320#endif
321
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000322 /* Restore parameters */
323 mr r3,r31
324 mr r4,r30
325 mr r5,r29
326 mr r6,r28
327 mr r7,r27
328
329 /* Do all of the interaction with OF client interface */
Paul Mackerras549e8152008-08-30 11:43:47 +1000330 mr r8,r26
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000331 bl .prom_init
Benjamin Herrenschmidt28794d32009-03-10 17:53:27 +0000332#endif /* #CONFIG_PPC_OF_BOOT_TRAMPOLINE */
333
334 /* We never return. We also hit that trap if trying to boot
335 * from OF while CONFIG_PPC_OF_BOOT_TRAMPOLINE isn't selected */
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000336 trap
337
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000338_STATIC(__after_prom_start)
Paul Mackerras549e8152008-08-30 11:43:47 +1000339#ifdef CONFIG_RELOCATABLE
340 /* process relocations for the final address of the kernel */
341 lis r25,PAGE_OFFSET@highest /* compute virtual base of kernel */
342 sldi r25,r25,32
Mohan Kumar M54622f12008-10-21 17:38:10 +0000343#ifdef CONFIG_CRASH_DUMP
Milton Miller8b8b0cc2008-10-23 18:41:09 +0000344 lwz r7,__run_at_load-_stext(r26)
345 cmplwi cr0,r7,1 /* kdump kernel ? - stay where we are */
Mohan Kumar M54622f12008-10-21 17:38:10 +0000346 bne 1f
347 add r25,r25,r26
348#endif
3491: mr r3,r25
Paul Mackerras549e8152008-08-30 11:43:47 +1000350 bl .relocate
351#endif
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000352
353/*
Paul Mackerrase31aa452008-08-30 11:41:12 +1000354 * We need to run with _stext at physical address PHYSICAL_START.
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000355 * This will leave some code in the first 256B of
356 * real memory, which are reserved for software use.
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000357 *
358 * Note: This process overwrites the OF exception vectors.
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000359 */
Paul Mackerras549e8152008-08-30 11:43:47 +1000360 li r3,0 /* target addr */
361 mr. r4,r26 /* In some cases the loader may */
Paul Mackerrase31aa452008-08-30 11:41:12 +1000362 beq 9f /* have already put us at zero */
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000363 li r6,0x100 /* Start offset, the first 0x100 */
364 /* bytes were copied earlier. */
365
Mohan Kumar M54622f12008-10-21 17:38:10 +0000366#ifdef CONFIG_CRASH_DUMP
367/*
368 * Check if the kernel has to be running as relocatable kernel based on the
Milton Miller8b8b0cc2008-10-23 18:41:09 +0000369 * variable __run_at_load, if it is set the kernel is treated as relocatable
Mohan Kumar M54622f12008-10-21 17:38:10 +0000370 * kernel, otherwise it will be moved to PHYSICAL_START
371 */
Milton Miller8b8b0cc2008-10-23 18:41:09 +0000372 lwz r7,__run_at_load-_stext(r26)
373 cmplwi cr0,r7,1
Mohan Kumar M54622f12008-10-21 17:38:10 +0000374 bne 3f
375
376 li r5,__end_interrupts - _stext /* just copy interrupts */
377 b 5f
3783:
379#endif
380 lis r5,(copy_to_here - _stext)@ha
381 addi r5,r5,(copy_to_here - _stext)@l /* # bytes of memory to copy */
382
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000383 bl .copy_and_flush /* copy the first n bytes */
384 /* this includes the code being */
385 /* executed here. */
Paul Mackerrase31aa452008-08-30 11:41:12 +1000386 addis r8,r3,(4f - _stext)@ha /* Jump to the copy of this code */
387 addi r8,r8,(4f - _stext)@l /* that we just made */
388 mtctr r8
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000389 bctr
390
Mohan Kumar M54622f12008-10-21 17:38:10 +0000391p_end: .llong _end - _stext
392
Paul Mackerrase31aa452008-08-30 11:41:12 +10003934: /* Now copy the rest of the kernel up to _end */
394 addis r5,r26,(p_end - _stext)@ha
395 ld r5,(p_end - _stext)@l(r5) /* get _end */
Mohan Kumar M54622f12008-10-21 17:38:10 +00003965: bl .copy_and_flush /* copy the rest */
Paul Mackerrase31aa452008-08-30 11:41:12 +1000397
3989: b .start_here_multiplatform
399
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000400/*
401 * Copy routine used to copy the kernel to start at physical address 0
402 * and flush and invalidate the caches as needed.
403 * r3 = dest addr, r4 = source addr, r5 = copy limit, r6 = start offset
404 * on exit, r3, r4, r5 are unchanged, r6 is updated to be >= r5.
405 *
406 * Note: this routine *only* clobbers r0, r6 and lr
407 */
408_GLOBAL(copy_and_flush)
409 addi r5,r5,-8
410 addi r6,r6,-8
Olof Johansson5a2fe382006-09-06 14:34:41 -05004114: li r0,8 /* Use the smallest common */
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000412 /* denominator cache line */
413 /* size. This results in */
414 /* extra cache line flushes */
415 /* but operation is correct. */
416 /* Can't get cache line size */
417 /* from NACA as it is being */
418 /* moved too. */
419
420 mtctr r0 /* put # words/line in ctr */
4213: addi r6,r6,8 /* copy a cache line */
422 ldx r0,r6,r4
423 stdx r0,r6,r3
424 bdnz 3b
425 dcbst r6,r3 /* write it to memory */
426 sync
427 icbi r6,r3 /* flush the icache line */
428 cmpld 0,r6,r5
429 blt 4b
430 sync
431 addi r5,r5,8
432 addi r6,r6,8
433 blr
434
435.align 8
436copy_to_here:
437
438#ifdef CONFIG_SMP
439#ifdef CONFIG_PPC_PMAC
440/*
441 * On PowerMac, secondary processors starts from the reset vector, which
442 * is temporarily turned into a call to one of the functions below.
443 */
444 .section ".text";
445 .align 2 ;
446
Paul Mackerras35499c02005-10-22 16:02:39 +1000447 .globl __secondary_start_pmac_0
448__secondary_start_pmac_0:
449 /* NB the entries for cpus 0, 1, 2 must each occupy 8 bytes. */
450 li r24,0
451 b 1f
452 li r24,1
453 b 1f
454 li r24,2
455 b 1f
456 li r24,3
4571:
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000458
459_GLOBAL(pmac_secondary_start)
460 /* turn on 64-bit mode */
461 bl .enable_64b_mode
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000462
Benjamin Herrenschmidtc478b582009-01-11 19:03:45 +0000463 li r0,0
464 mfspr r3,SPRN_HID4
465 rldimi r3,r0,40,23 /* clear bit 23 (rm_ci) */
466 sync
467 mtspr SPRN_HID4,r3
468 isync
469 sync
470 slbia
471
Paul Mackerrase31aa452008-08-30 11:41:12 +1000472 /* get TOC pointer (real address) */
473 bl .relative_toc
474
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000475 /* Copy some CPU settings from CPU 0 */
Olof Johanssonf39b7a52006-08-11 00:07:08 -0500476 bl .__restore_cpu_ppc970
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000477
478 /* pSeries do that early though I don't think we really need it */
479 mfmsr r3
480 ori r3,r3,MSR_RI
481 mtmsrd r3 /* RI on */
482
483 /* Set up a paca value for this processor. */
Paul Mackerrase31aa452008-08-30 11:41:12 +1000484 LOAD_REG_ADDR(r4,paca) /* Get base vaddr of paca array */
485 mulli r13,r24,PACA_SIZE /* Calculate vaddr of right paca */
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000486 add r13,r13,r4 /* for this processor. */
Benjamin Herrenschmidtee43eb72009-07-14 20:52:54 +0000487 mtspr SPRN_SPRG_PACA,r13 /* Save vaddr of paca in an SPRG*/
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000488
489 /* Create a temp kernel stack for use before relocation is on. */
490 ld r1,PACAEMERGSP(r13)
491 subi r1,r1,STACK_FRAME_OVERHEAD
492
Stephen Rothwellc7056772006-11-27 14:59:50 +1100493 b __secondary_start
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000494
495#endif /* CONFIG_PPC_PMAC */
496
497/*
498 * This function is called after the master CPU has released the
499 * secondary processors. The execution environment is relocation off.
500 * The paca for this processor has the following fields initialized at
501 * this point:
502 * 1. Processor number
503 * 2. Segment table pointer (virtual address)
504 * On entry the following are set:
Benjamin Herrenschmidtee43eb72009-07-14 20:52:54 +0000505 * r1 = stack pointer. vaddr for iSeries, raddr (temp stack) for pSeries
506 * r24 = cpu# (in Linux terms)
507 * r13 = paca virtual address
508 * SPRG_PACA = paca virtual address
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000509 */
Stephen Rothwellfc68e862007-08-22 13:44:58 +1000510 .globl __secondary_start
Stephen Rothwellc7056772006-11-27 14:59:50 +1100511__secondary_start:
Paul Mackerras799d6042005-11-10 13:37:51 +1100512 /* Set thread priority to MEDIUM */
513 HMT_MEDIUM
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000514
Paul Mackerras799d6042005-11-10 13:37:51 +1100515 /* Do early setup for that CPU (stab, slb, hash table pointer) */
516 bl .early_setup_secondary
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000517
518 /* Initialize the kernel stack. Just a repeat for iSeries. */
David Gibsone58c3492006-01-13 14:56:25 +1100519 LOAD_REG_ADDR(r3, current_set)
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000520 sldi r28,r24,3 /* get current_set[cpu#] */
521 ldx r1,r3,r28
522 addi r1,r1,THREAD_SIZE-STACK_FRAME_OVERHEAD
523 std r1,PACAKSAVE(r13)
524
Paul Mackerras799d6042005-11-10 13:37:51 +1100525 /* Clear backchain so we get nice backtraces */
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000526 li r7,0
527 mtlr r7
528
529 /* enable MMU and jump to start_secondary */
David Gibsone58c3492006-01-13 14:56:25 +1100530 LOAD_REG_ADDR(r3, .start_secondary_prolog)
531 LOAD_REG_IMMEDIATE(r4, MSR_KERNEL)
Paul Mackerrasd04c56f2006-10-04 16:47:49 +1000532#ifdef CONFIG_PPC_ISERIES
Stephen Rothwell3f639ee2006-09-25 18:19:00 +1000533BEGIN_FW_FTR_SECTION
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000534 ori r4,r4,MSR_EE
Benjamin Herrenschmidtff3da2e2008-04-02 15:58:40 +1100535 li r8,1
536 stb r8,PACAHARDIRQEN(r13)
Stephen Rothwell3f639ee2006-09-25 18:19:00 +1000537END_FW_FTR_SECTION_IFSET(FW_FEATURE_ISERIES)
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000538#endif
Paul Mackerrasd04c56f2006-10-04 16:47:49 +1000539BEGIN_FW_FTR_SECTION
Paul Mackerrasd04c56f2006-10-04 16:47:49 +1000540 stb r7,PACAHARDIRQEN(r13)
541END_FW_FTR_SECTION_IFCLR(FW_FEATURE_ISERIES)
Benjamin Herrenschmidtff3da2e2008-04-02 15:58:40 +1100542 stb r7,PACASOFTIRQEN(r13)
Paul Mackerrasd04c56f2006-10-04 16:47:49 +1000543
Paul Mackerrasb5bbeb22005-10-10 14:01:07 +1000544 mtspr SPRN_SRR0,r3
545 mtspr SPRN_SRR1,r4
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000546 rfid
547 b . /* prevent speculative execution */
548
549/*
550 * Running with relocation on at this point. All we want to do is
Paul Mackerrase31aa452008-08-30 11:41:12 +1000551 * zero the stack back-chain pointer and get the TOC virtual address
552 * before going into C code.
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000553 */
554_GLOBAL(start_secondary_prolog)
Paul Mackerrase31aa452008-08-30 11:41:12 +1000555 ld r2,PACATOC(r13)
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000556 li r3,0
557 std r3,0(r1) /* Zero the stack frame pointer */
558 bl .start_secondary
Paul Mackerras799d6042005-11-10 13:37:51 +1100559 b .
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000560#endif
561
562/*
563 * This subroutine clobbers r11 and r12
564 */
565_GLOBAL(enable_64b_mode)
566 mfmsr r11 /* grab the current MSR */
Paul Mackerrase31aa452008-08-30 11:41:12 +1000567 li r12,(MSR_SF | MSR_ISF)@highest
568 sldi r12,r12,48
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000569 or r11,r11,r12
570 mtmsrd r11
571 isync
572 blr
573
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000574/*
Paul Mackerrase31aa452008-08-30 11:41:12 +1000575 * This puts the TOC pointer into r2, offset by 0x8000 (as expected
576 * by the toolchain). It computes the correct value for wherever we
577 * are running at the moment, using position-independent code.
578 */
579_GLOBAL(relative_toc)
580 mflr r0
581 bcl 20,31,$+4
5820: mflr r9
583 ld r2,(p_toc - 0b)(r9)
584 add r2,r2,r9
585 mtlr r0
586 blr
587
588p_toc: .llong __toc_start + 0x8000 - 0b
589
590/*
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000591 * This is where the main kernel code starts.
592 */
Stephen Rothwell939e60f62007-07-31 16:44:13 +1000593_INIT_STATIC(start_here_multiplatform)
Paul Mackerrase31aa452008-08-30 11:41:12 +1000594 /* set up the TOC (real address) */
595 bl .relative_toc
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000596
597 /* Clear out the BSS. It may have been done in prom_init,
598 * already but that's irrelevant since prom_init will soon
599 * be detached from the kernel completely. Besides, we need
600 * to clear it now for kexec-style entry.
601 */
Paul Mackerrase31aa452008-08-30 11:41:12 +1000602 LOAD_REG_ADDR(r11,__bss_stop)
603 LOAD_REG_ADDR(r8,__bss_start)
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000604 sub r11,r11,r8 /* bss size */
605 addi r11,r11,7 /* round up to an even double word */
Paul Mackerrase31aa452008-08-30 11:41:12 +1000606 srdi. r11,r11,3 /* shift right by 3 */
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000607 beq 4f
608 addi r8,r8,-8
609 li r0,0
610 mtctr r11 /* zero this many doublewords */
6113: stdu r0,8(r8)
612 bdnz 3b
6134:
614
615 mfmsr r6
616 ori r6,r6,MSR_RI
617 mtmsrd r6 /* RI on */
618
Paul Mackerras549e8152008-08-30 11:43:47 +1000619#ifdef CONFIG_RELOCATABLE
620 /* Save the physical address we're running at in kernstart_addr */
621 LOAD_REG_ADDR(r4, kernstart_addr)
622 clrldi r0,r25,2
623 std r0,0(r4)
624#endif
625
Paul Mackerrase31aa452008-08-30 11:41:12 +1000626 /* The following gets the stack set up with the regs */
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000627 /* pointing to the real addr of the kernel stack. This is */
628 /* all done to support the C function call below which sets */
629 /* up the htab. This is done because we have relocated the */
630 /* kernel but are still running in real mode. */
631
Paul Mackerrase31aa452008-08-30 11:41:12 +1000632 LOAD_REG_ADDR(r3,init_thread_union)
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000633
Paul Mackerrase31aa452008-08-30 11:41:12 +1000634 /* set up a stack pointer */
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000635 addi r1,r3,THREAD_SIZE
636 li r0,0
637 stdu r0,-STACK_FRAME_OVERHEAD(r1)
638
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000639 /* Do very early kernel initializations, including initial hash table,
640 * stab and slb setup before we turn on relocation. */
641
642 /* Restore parameters passed from prom_init/kexec */
643 mr r3,r31
Benjamin Herrenschmidtee43eb72009-07-14 20:52:54 +0000644 bl .early_setup /* also sets r13 and SPRG_PACA */
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000645
Paul Mackerrase31aa452008-08-30 11:41:12 +1000646 LOAD_REG_ADDR(r3, .start_here_common)
647 ld r4,PACAKMSR(r13)
Paul Mackerrasb5bbeb22005-10-10 14:01:07 +1000648 mtspr SPRN_SRR0,r3
649 mtspr SPRN_SRR1,r4
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000650 rfid
651 b . /* prevent speculative execution */
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000652
653 /* This is where all platforms converge execution */
Stephen Rothwellfc68e862007-08-22 13:44:58 +1000654_INIT_GLOBAL(start_here_common)
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000655 /* relocation is on at this point */
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000656 std r1,PACAKSAVE(r13)
657
Paul Mackerrase31aa452008-08-30 11:41:12 +1000658 /* Load the TOC (virtual address) */
659 ld r2,PACATOC(r13)
660
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000661 bl .setup_system
662
663 /* Load up the kernel context */
6645:
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000665 li r5,0
Paul Mackerrasd04c56f2006-10-04 16:47:49 +1000666 stb r5,PACASOFTIRQEN(r13) /* Soft Disabled */
667#ifdef CONFIG_PPC_ISERIES
668BEGIN_FW_FTR_SECTION
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000669 mfmsr r5
Benjamin Herrenschmidtff3da2e2008-04-02 15:58:40 +1100670 ori r5,r5,MSR_EE /* Hard Enabled on iSeries*/
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000671 mtmsrd r5
Benjamin Herrenschmidtff3da2e2008-04-02 15:58:40 +1100672 li r5,1
Stephen Rothwell3f639ee2006-09-25 18:19:00 +1000673END_FW_FTR_SECTION_IFSET(FW_FEATURE_ISERIES)
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000674#endif
Benjamin Herrenschmidtff3da2e2008-04-02 15:58:40 +1100675 stb r5,PACAHARDIRQEN(r13) /* Hard Disabled on others */
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000676
Benjamin Herrenschmidtff3da2e2008-04-02 15:58:40 +1100677 bl .start_kernel
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000678
Anton Blanchardf1870f72006-02-13 18:11:13 +1100679 /* Not reached */
680 BUG_OPCODE
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000681
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000682/*
683 * We put a few things here that have to be page-aligned.
684 * This stuff goes at the beginning of the bss, which is page-aligned.
685 */
686 .section ".bss"
687
688 .align PAGE_SHIFT
689
690 .globl empty_zero_page
691empty_zero_page:
692 .space PAGE_SIZE
693
694 .globl swapper_pg_dir
695swapper_pg_dir:
Stephen Rothwellee7a76d2007-09-18 17:22:59 +1000696 .space PGD_TABLE_SIZE