2 * This file contains miscellaneous low-level functions.
3 * Copyright (C) 1995-1996 Gary Thomas (gdt@linuxppc.org)
5 * Largely rewritten by Cort Dougan (cort@cs.nmt.edu)
7 * Adapted for iSeries by Mike Corrigan (mikejc@us.ibm.com)
8 * PPC64 updates by Dave Engebretsen (engebret@us.ibm.com)
10 * This program is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU General Public License
12 * as published by the Free Software Foundation; either version
13 * 2 of the License, or (at your option) any later version.
17 #include <linux/sys.h>
18 #include <asm/unistd.h>
19 #include <asm/errno.h>
20 #include <asm/processor.h>
22 #include <asm/cache.h>
23 #include <asm/ppc_asm.h>
24 #include <asm/asm-offsets.h>
25 #include <asm/cputable.h>
26 #include <asm/thread_info.h>
27 #include <asm/kexec.h>
28 #include <asm/ptrace.h>
33 _GLOBAL(call_do_softirq)
36 stdu r1,THREAD_SIZE-STACK_FRAME_OVERHEAD(r3)
47 stdu r1,THREAD_SIZE-STACK_FRAME_OVERHEAD(r4)
57 .tc ppc64_caches[TC],ppc64_caches
61 * Write any modified data cache blocks out to memory
62 * and invalidate the corresponding instruction cache blocks.
64 * flush_icache_range(unsigned long start, unsigned long stop)
66 * flush all bytes from start through stop-1 inclusive
69 _KPROBE(flush_icache_range)
73 END_FTR_SECTION_IFSET(CPU_FTR_COHERENT_ICACHE)
75 * Flush the data cache to memory
77 * Different systems have different cache line sizes
78 * and in some cases i-cache and d-cache line sizes differ from
81 ld r10,PPC64_CACHES@toc(r2)
82 lwz r7,DCACHEL1LINESIZE(r10)/* Get cache line size */
84 andc r6,r3,r5 /* round low to line bdy */
85 subf r8,r6,r4 /* compute length */
86 add r8,r8,r5 /* ensure we get enough */
87 lwz r9,DCACHEL1LOGLINESIZE(r10) /* Get log-2 of cache line size */
88 srw. r8,r8,r9 /* compute line count */
89 beqlr /* nothing to do? */
96 /* Now invalidate the instruction cache */
98 lwz r7,ICACHEL1LINESIZE(r10) /* Get Icache line size */
100 andc r6,r3,r5 /* round low to line bdy */
101 subf r8,r6,r4 /* compute length */
103 lwz r9,ICACHEL1LOGLINESIZE(r10) /* Get log-2 of Icache line size */
104 srw. r8,r8,r9 /* compute line count */
105 beqlr /* nothing to do? */
114 * Like above, but only do the D-cache.
116 * flush_dcache_range(unsigned long start, unsigned long stop)
118 * flush all bytes from start to stop-1 inclusive
120 _GLOBAL(flush_dcache_range)
123 * Flush the data cache to memory
125 * Different systems have different cache line sizes
127 ld r10,PPC64_CACHES@toc(r2)
128 lwz r7,DCACHEL1LINESIZE(r10) /* Get dcache line size */
130 andc r6,r3,r5 /* round low to line bdy */
131 subf r8,r6,r4 /* compute length */
132 add r8,r8,r5 /* ensure we get enough */
133 lwz r9,DCACHEL1LOGLINESIZE(r10) /* Get log-2 of dcache line size */
134 srw. r8,r8,r9 /* compute line count */
135 beqlr /* nothing to do? */
144 * Like above, but works on non-mapped physical addresses.
145 * Use only for non-LPAR setups ! It also assumes real mode
146 * is cacheable. Used for flushing out the DART before using
147 * it as uncacheable memory
149 * flush_dcache_phys_range(unsigned long start, unsigned long stop)
151 * flush all bytes from start to stop-1 inclusive
153 _GLOBAL(flush_dcache_phys_range)
154 ld r10,PPC64_CACHES@toc(r2)
155 lwz r7,DCACHEL1LINESIZE(r10) /* Get dcache line size */
157 andc r6,r3,r5 /* round low to line bdy */
158 subf r8,r6,r4 /* compute length */
159 add r8,r8,r5 /* ensure we get enough */
160 lwz r9,DCACHEL1LOGLINESIZE(r10) /* Get log-2 of dcache line size */
161 srw. r8,r8,r9 /* compute line count */
162 beqlr /* nothing to do? */
163 mfmsr r5 /* Disable MMU Data Relocation */
176 mtmsr r5 /* Re-enable MMU Data Relocation */
181 _GLOBAL(flush_inval_dcache_range)
182 ld r10,PPC64_CACHES@toc(r2)
183 lwz r7,DCACHEL1LINESIZE(r10) /* Get dcache line size */
185 andc r6,r3,r5 /* round low to line bdy */
186 subf r8,r6,r4 /* compute length */
187 add r8,r8,r5 /* ensure we get enough */
188 lwz r9,DCACHEL1LOGLINESIZE(r10)/* Get log-2 of dcache line size */
189 srw. r8,r8,r9 /* compute line count */
190 beqlr /* nothing to do? */
203 * Flush a particular page from the data cache to RAM.
204 * Note: this is necessary because the instruction cache does *not*
205 * snoop from the data cache.
207 * void __flush_dcache_icache(void *page)
209 _GLOBAL(__flush_dcache_icache)
211 * Flush the data cache to memory
213 * Different systems have different cache line sizes
219 END_FTR_SECTION_IFSET(CPU_FTR_COHERENT_ICACHE)
221 /* Flush the dcache */
222 ld r7,PPC64_CACHES@toc(r2)
223 clrrdi r3,r3,PAGE_SHIFT /* Page align */
224 lwz r4,DCACHEL1LINESPERPAGE(r7) /* Get # dcache lines per page */
225 lwz r5,DCACHEL1LINESIZE(r7) /* Get dcache line size */
233 /* Now invalidate the icache */
235 lwz r4,ICACHEL1LINESPERPAGE(r7) /* Get # icache lines per page */
236 lwz r5,ICACHEL1LINESIZE(r7) /* Get icache line size */
246 rlwinm r7,r3,8,0xffffffff
248 rlwinm r9,r8,8,0xffffffff
249 rlwimi r7,r3,24,16,23
251 rlwimi r9,r8,24,16,23
257 #ifdef CONFIG_PPC_EARLY_DEBUG_BOOTX
287 #endif /* CONFIG_PPC_EARLY_DEBUG_BOOTX */
289 #if defined(CONFIG_PPC_PMAC) || defined(CONFIG_PPC_MAPLE)
292 * Do an IO access in real mode
323 * Do an IO access in real mode
352 #endif /* defined(CONFIG_PPC_PMAC) || defined(CONFIG_PPC_MAPLE) */
354 #ifdef CONFIG_PPC_PASEMI
356 _GLOBAL(real_205_readb)
371 _GLOBAL(real_205_writeb)
386 #endif /* CONFIG_PPC_PASEMI */
389 #if defined(CONFIG_CPU_FREQ_PMAC64) || defined(CONFIG_CPU_FREQ_MAPLE)
391 * SCOM access functions for 970 (FX only for now)
393 * unsigned long scom970_read(unsigned int address);
394 * void scom970_write(unsigned int address, unsigned long value);
396 * The address passed in is the 24 bits register address. This code
397 * is 970 specific and will not check the status bits, so you should
398 * know what you are doing.
400 _GLOBAL(scom970_read)
407 /* rotate 24 bits SCOM address 8 bits left and mask out it's low 8 bits
408 * (including parity). On current CPUs they must be 0'd,
409 * and finally or in RW bit
414 /* do the actual scom read */
423 /* XXX: fixup result on some buggy 970's (ouch ! we lost a bit, bah
424 * that's the best we can do). Not implemented yet as we don't use
425 * the scom on any of the bogus CPUs yet, but may have to be done
429 /* restore interrupts */
434 _GLOBAL(scom970_write)
441 /* rotate 24 bits SCOM address 8 bits left and mask out it's low 8 bits
442 * (including parity). On current CPUs they must be 0'd.
448 mtspr SPRN_SCOMD,r4 /* write data */
450 mtspr SPRN_SCOMC,r3 /* write command */
455 /* restore interrupts */
458 #endif /* CONFIG_CPU_FREQ_PMAC64 || CONFIG_CPU_FREQ_MAPLE */
460 /* kexec_wait(phys_cpu)
462 * wait for the flag to change, indicating this kernel is going away but
463 * the slave code for the next one is at addresses 0 to 100.
465 * This is used by all slaves, even those that did not find a matching
466 * paca in the secondary startup code.
468 * Physical (hardware) cpu id should be in r3.
473 addi r5,r5,kexec_flag-1b
476 #ifdef CONFIG_KEXEC /* use no memory without kexec */
480 #ifdef CONFIG_PPC_BOOK3S_64
483 clrrdi r11,r11,1 /* Clear MSR_LE */
488 /* Create TLB entry in book3e_secondary_core_init */
494 /* this can be in text because we won't change it until we are
495 * running in real anyways
502 #ifdef CONFIG_PPC_BOOK3E
504 * BOOK3E has no real MMU mode, so we have to setup the initial TLB
505 * for a core to identity map v:0 to p:0. This current implementation
506 * assumes that 1G is enough for kexec.
510 * Invalidate all non-IPROT TLB entries to avoid any TLB conflict.
511 * IPROT TLB entries should be >= PAGE_OFFSET and thus not conflict.
517 mfspr r10,SPRN_TLB1CFG
518 andi. r10,r10,TLBnCFG_N_ENTRY /* Extract # entries */
519 subi r10,r10,1 /* Last entry: no conflict with kernel text */
520 lis r9,MAS0_TLBSEL(1)@h
521 rlwimi r9,r10,16,4,15 /* Setup MAS0 = TLBSEL | ESEL(r9) */
523 /* Set up a temp identity mapping v:0 to p:0 and return to it. */
524 #if defined(CONFIG_SMP) || defined(CONFIG_PPC_E500MC)
525 #define M_IF_NEEDED MAS2_M
527 #define M_IF_NEEDED 0
531 lis r9,(MAS1_VALID|MAS1_IPROT)@h
532 ori r9,r9,(MAS1_TSIZE(BOOK3E_PAGESZ_1GB))@l
535 LOAD_REG_IMMEDIATE(r9, 0x0 | M_IF_NEEDED)
538 LOAD_REG_IMMEDIATE(r9, 0x0 | MAS3_SR | MAS3_SW | MAS3_SX)
548 /* kexec_smp_wait(void)
550 * call with interrupts off
551 * note: this is a terminal routine, it does not save lr
553 * get phys id from paca
554 * switch to real mode
555 * mark the paca as no longer used
556 * join other cpus in kexec_wait(phys_id)
558 _GLOBAL(kexec_smp_wait)
559 lhz r3,PACAHWCPUID(r13)
562 li r4,KEXEC_STATE_REAL_MODE
563 stb r4,PACAKEXECSTATE(r13)
569 * switch to real mode (turn mmu off)
570 * we use the early kernel trick that the hardware ignores bits
571 * 0 and 1 (big endian) of the effective address in real mode
573 * don't overwrite r3 here, it is live for kexec_wait above.
575 real_mode: /* assume normal blr return */
576 #ifdef CONFIG_PPC_BOOK3E
577 /* Create an identity mapping. */
582 mflr r11 /* return address to SRR0 */
594 * kexec_sequence(newstack, start, image, control, clear_all())
596 * does the grungy work with stack switching and real mode switches
597 * also does simple calls to other code
600 _GLOBAL(kexec_sequence)
604 /* switch stacks to newstack -- &kexec_stack.stack */
605 stdu r1,THREAD_SIZE-STACK_FRAME_OVERHEAD(r3)
611 /* save regs for local vars on new stack.
612 * yes, we won't go back, but ...
622 stdu r1,-STACK_FRAME_OVERHEAD-64(r1)
624 /* save args into preserved regs */
625 mr r31,r3 /* newstack (both) */
626 mr r30,r4 /* start (real) */
627 mr r29,r5 /* image (virt) */
628 mr r28,r6 /* control, unused */
629 mr r27,r7 /* clear_all() fn desc */
630 mr r26,r8 /* spare */
631 lhz r25,PACAHWCPUID(r13) /* get our phys cpu from paca */
633 /* disable interrupts, we are overwriting kernel data next */
634 #ifdef CONFIG_PPC_BOOK3E
642 /* copy dest pages, flush whole dest image */
644 bl kexec_copy_flush /* (image) */
649 /* copy 0x100 bytes starting at start to 0 */
651 mr r4,r30 /* start, aka phys mem offset */
654 bl copy_and_flush /* (dest, src, copy limit, start offset) */
655 1: /* assume normal blr return */
657 /* release other cpus to the new kernel secondary start at 0x60 */
660 stw r6,kexec_flag-1b(5)
662 #ifndef CONFIG_PPC_BOOK3E
663 /* clear out hardware hash page table and tlb */
664 #if !defined(_CALL_ELF) || _CALL_ELF != 2
665 ld r12,0(r27) /* deref function descriptor */
670 bctrl /* ppc_md.hpte_clear_all(void); */
671 #endif /* !CONFIG_PPC_BOOK3E */
674 * kexec image calling is:
675 * the first 0x100 bytes of the entry point are copied to 0
677 * all slaves branch to slave = 0x60 (absolute)
678 * slave(phys_cpu_id);
680 * master goes to start = entry point
681 * start(phys_cpu_id, start, 0);
684 * a wrapper is needed to call existing kernels, here is an approximate
685 * description of one method:
688 * start will be near the boot_block (maybe 0x100 bytes before it?)
689 * it will have a 0x60, which will b to boot_block, where it will wait
690 * and 0 will store phys into struct boot-block and load r3 from there,
691 * copy kernel 0-0x100 and tell slaves to back down to 0x60 again
694 * boot block will have all cpus scanning device tree to see if they
695 * are the boot cpu ?????
696 * other device tree differences (prop sizes, va vs pa, etc)...
698 mr r3,r25 # my phys cpu
699 mr r4,r30 # start, aka phys mem offset
702 blr /* image->start(physid, image->start, 0); */
703 #endif /* CONFIG_KEXEC */
705 #ifdef CONFIG_MODULES
706 #if defined(_CALL_ELF) && _CALL_ELF == 2
708 #ifdef CONFIG_MODVERSIONS
710 .section "___kcrctab+TOC.","a"
711 .globl __kcrctab_TOC.
717 * Export a fake .TOC. since both modpost and depmod will complain otherwise.
718 * Both modpost and depmod strip the leading . so we do the same here.
720 .section "__ksymtab_strings","a"
724 .section "___ksymtab+TOC.","a"
725 /* This symbol name is important: it's used by modpost to find exported syms */
726 .globl __ksymtab_TOC.
728 .llong 0 /* .value */
729 .llong __kstrtab_TOC.