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