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>
42 #ifdef CONFIG_IRQSTACKS
43 _GLOBAL(call_do_softirq)
46 stdu r1,THREAD_SIZE-112(r3)
54 _GLOBAL(call_handle_irq)
59 stdu r1,THREAD_SIZE-112(r5)
66 #endif /* CONFIG_IRQSTACKS */
70 .tc ppc64_caches[TC],ppc64_caches
74 * Write any modified data cache blocks out to memory
75 * and invalidate the corresponding instruction cache blocks.
77 * flush_icache_range(unsigned long start, unsigned long stop)
79 * flush all bytes from start through stop-1 inclusive
82 _KPROBE(__flush_icache_range)
85 * Flush the data cache to memory
87 * Different systems have different cache line sizes
88 * and in some cases i-cache and d-cache line sizes differ from
91 ld r10,PPC64_CACHES@toc(r2)
92 lwz r7,DCACHEL1LINESIZE(r10)/* Get cache line size */
94 andc r6,r3,r5 /* round low to line bdy */
95 subf r8,r6,r4 /* compute length */
96 add r8,r8,r5 /* ensure we get enough */
97 lwz r9,DCACHEL1LOGLINESIZE(r10) /* Get log-2 of cache line size */
98 srw. r8,r8,r9 /* compute line count */
99 beqlr /* nothing to do? */
106 /* Now invalidate the instruction cache */
108 lwz r7,ICACHEL1LINESIZE(r10) /* Get Icache line size */
110 andc r6,r3,r5 /* round low to line bdy */
111 subf r8,r6,r4 /* compute length */
113 lwz r9,ICACHEL1LOGLINESIZE(r10) /* Get log-2 of Icache line size */
114 srw. r8,r8,r9 /* compute line count */
115 beqlr /* nothing to do? */
124 * Like above, but only do the D-cache.
126 * flush_dcache_range(unsigned long start, unsigned long stop)
128 * flush all bytes from start to stop-1 inclusive
130 _GLOBAL(flush_dcache_range)
133 * Flush the data cache to memory
135 * Different systems have different cache line sizes
137 ld r10,PPC64_CACHES@toc(r2)
138 lwz r7,DCACHEL1LINESIZE(r10) /* Get dcache line size */
140 andc r6,r3,r5 /* round low to line bdy */
141 subf r8,r6,r4 /* compute length */
142 add r8,r8,r5 /* ensure we get enough */
143 lwz r9,DCACHEL1LOGLINESIZE(r10) /* Get log-2 of dcache line size */
144 srw. r8,r8,r9 /* compute line count */
145 beqlr /* nothing to do? */
154 * Like above, but works on non-mapped physical addresses.
155 * Use only for non-LPAR setups ! It also assumes real mode
156 * is cacheable. Used for flushing out the DART before using
157 * it as uncacheable memory
159 * flush_dcache_phys_range(unsigned long start, unsigned long stop)
161 * flush all bytes from start to stop-1 inclusive
163 _GLOBAL(flush_dcache_phys_range)
164 ld r10,PPC64_CACHES@toc(r2)
165 lwz r7,DCACHEL1LINESIZE(r10) /* Get dcache line size */
167 andc r6,r3,r5 /* round low to line bdy */
168 subf r8,r6,r4 /* compute length */
169 add r8,r8,r5 /* ensure we get enough */
170 lwz r9,DCACHEL1LOGLINESIZE(r10) /* Get log-2 of dcache line size */
171 srw. r8,r8,r9 /* compute line count */
172 beqlr /* nothing to do? */
173 mfmsr r5 /* Disable MMU Data Relocation */
186 mtmsr r5 /* Re-enable MMU Data Relocation */
191 _GLOBAL(flush_inval_dcache_range)
192 ld r10,PPC64_CACHES@toc(r2)
193 lwz r7,DCACHEL1LINESIZE(r10) /* Get dcache line size */
195 andc r6,r3,r5 /* round low to line bdy */
196 subf r8,r6,r4 /* compute length */
197 add r8,r8,r5 /* ensure we get enough */
198 lwz r9,DCACHEL1LOGLINESIZE(r10)/* Get log-2 of dcache line size */
199 srw. r8,r8,r9 /* compute line count */
200 beqlr /* nothing to do? */
213 * Flush a particular page from the data cache to RAM.
214 * Note: this is necessary because the instruction cache does *not*
215 * snoop from the data cache.
217 * void __flush_dcache_icache(void *page)
219 _GLOBAL(__flush_dcache_icache)
221 * Flush the data cache to memory
223 * Different systems have different cache line sizes
226 /* Flush the dcache */
227 ld r7,PPC64_CACHES@toc(r2)
228 clrrdi r3,r3,PAGE_SHIFT /* Page align */
229 lwz r4,DCACHEL1LINESPERPAGE(r7) /* Get # dcache lines per page */
230 lwz r5,DCACHEL1LINESIZE(r7) /* Get dcache line size */
238 /* Now invalidate the icache */
240 lwz r4,ICACHEL1LINESPERPAGE(r7) /* Get # icache lines per page */
241 lwz r5,ICACHEL1LINESIZE(r7) /* Get icache line size */
250 #if defined(CONFIG_PPC_PMAC) || defined(CONFIG_PPC_MAPLE)
252 * Do an IO access in real mode
283 * Do an IO access in real mode
312 #endif /* defined(CONFIG_PPC_PMAC) || defined(CONFIG_PPC_MAPLE) */
314 #ifdef CONFIG_PPC_PASEMI
316 /* No support in all binutils for these yet, so use defines */
317 #define LBZCIX(RT,RA,RB) .long (0x7c0006aa|(RT<<21)|(RA<<16)|(RB << 11))
318 #define STBCIX(RS,RA,RB) .long (0x7c0007aa|(RS<<21)|(RA<<16)|(RB << 11))
321 _GLOBAL(real_205_readb)
336 _GLOBAL(real_205_writeb)
351 #endif /* CONFIG_PPC_PASEMI */
354 #ifdef CONFIG_CPU_FREQ_PMAC64
356 * SCOM access functions for 970 (FX only for now)
358 * unsigned long scom970_read(unsigned int address);
359 * void scom970_write(unsigned int address, unsigned long value);
361 * The address passed in is the 24 bits register address. This code
362 * is 970 specific and will not check the status bits, so you should
363 * know what you are doing.
365 _GLOBAL(scom970_read)
372 /* rotate 24 bits SCOM address 8 bits left and mask out it's low 8 bits
373 * (including parity). On current CPUs they must be 0'd,
374 * and finally or in RW bit
379 /* do the actual scom read */
388 /* XXX: fixup result on some buggy 970's (ouch ! we lost a bit, bah
389 * that's the best we can do). Not implemented yet as we don't use
390 * the scom on any of the bogus CPUs yet, but may have to be done
394 /* restore interrupts */
399 _GLOBAL(scom970_write)
406 /* rotate 24 bits SCOM address 8 bits left and mask out it's low 8 bits
407 * (including parity). On current CPUs they must be 0'd.
413 mtspr SPRN_SCOMD,r4 /* write data */
415 mtspr SPRN_SCOMC,r3 /* write command */
420 /* restore interrupts */
423 #endif /* CONFIG_CPU_FREQ_PMAC64 */
427 * Create a kernel thread
428 * kernel_thread(fn, arg, flags)
430 _GLOBAL(kernel_thread)
433 stdu r1,-STACK_FRAME_OVERHEAD(r1)
436 ori r3,r5,CLONE_VM /* flags */
437 oris r3,r3,(CLONE_UNTRACED>>16)
438 li r4,0 /* new sp (unused) */
441 cmpdi 0,r3,0 /* parent or child? */
442 bne 1f /* return if parent */
444 stdu r0,-STACK_FRAME_OVERHEAD(r1)
447 mtlr r29 /* fn addr in lr */
448 mr r3,r30 /* load arg and call fn */
450 li r0,__NR_exit /* exit after child exits */
453 1: addi r1,r1,STACK_FRAME_OVERHEAD
459 * disable_kernel_fp()
462 _GLOBAL(disable_kernel_fp)
464 rldicl r0,r3,(63-MSR_FP_LG),1
465 rldicl r3,r0,(MSR_FP_LG+1),0
466 mtmsrd r3 /* disable use of fpu now */
470 #ifdef CONFIG_ALTIVEC
472 #if 0 /* this has no callers for now */
474 * disable_kernel_altivec()
477 _GLOBAL(disable_kernel_altivec)
479 rldicl r0,r3,(63-MSR_VEC_LG),1
480 rldicl r3,r0,(MSR_VEC_LG+1),0
481 mtmsrd r3 /* disable use of VMX now */
487 * giveup_altivec(tsk)
488 * Disable VMX for the task given as the argument,
489 * and save the vector registers in its thread_struct.
490 * Enables the VMX for use in the kernel on return.
492 _GLOBAL(giveup_altivec)
495 mtmsrd r5 /* enable use of VMX now */
498 beqlr- /* if no previous owner, done */
499 addi r3,r3,THREAD /* want THREAD of task */
507 ld r4,_MSR-STACK_FRAME_OVERHEAD(r5)
509 andc r4,r4,r3 /* disable FP for previous task */
510 std r4,_MSR-STACK_FRAME_OVERHEAD(r5)
514 ld r4,last_task_used_altivec@got(r2)
516 #endif /* CONFIG_SMP */
519 #endif /* CONFIG_ALTIVEC */
521 _GLOBAL(kernel_execve)
528 /* kexec_wait(phys_cpu)
530 * wait for the flag to change, indicating this kernel is going away but
531 * the slave code for the next one is at addresses 0 to 100.
533 * This is used by all slaves.
535 * Physical (hardware) cpu id should be in r3.
540 addi r5,r5,kexec_flag-1b
543 #ifdef CONFIG_KEXEC /* use no memory without kexec */
550 /* this can be in text because we won't change it until we are
551 * running in real anyways
559 /* kexec_smp_wait(void)
561 * call with interrupts off
562 * note: this is a terminal routine, it does not save lr
564 * get phys id from paca
565 * set paca id to -1 to say we got here
566 * switch to real mode
567 * join other cpus in kexec_wait(phys_id)
569 _GLOBAL(kexec_smp_wait)
570 lhz r3,PACAHWCPUID(r13)
572 sth r4,PACAHWCPUID(r13) /* let others know we left */
577 * switch to real mode (turn mmu off)
578 * we use the early kernel trick that the hardware ignores bits
579 * 0 and 1 (big endian) of the effective address in real mode
581 * don't overwrite r3 here, it is live for kexec_wait above.
583 real_mode: /* assume normal blr return */
586 mflr r11 /* return address to SRR0 */
598 * kexec_sequence(newstack, start, image, control, clear_all())
600 * does the grungy work with stack switching and real mode switches
601 * also does simple calls to other code
604 _GLOBAL(kexec_sequence)
608 /* switch stacks to newstack -- &kexec_stack.stack */
609 stdu r1,THREAD_SIZE-112(r3)
615 /* save regs for local vars on new stack.
616 * yes, we won't go back, but ...
628 /* save args into preserved regs */
629 mr r31,r3 /* newstack (both) */
630 mr r30,r4 /* start (real) */
631 mr r29,r5 /* image (virt) */
632 mr r28,r6 /* control, unused */
633 mr r27,r7 /* clear_all() fn desc */
634 mr r26,r8 /* spare */
635 lhz r25,PACAHWCPUID(r13) /* get our phys cpu from paca */
637 /* disable interrupts, we are overwriting kernel data next */
642 /* copy dest pages, flush whole dest image */
644 bl .kexec_copy_flush /* (image) */
649 /* clear out hardware hash page table and tlb */
650 ld r5,0(r27) /* deref function descriptor */
652 bctrl /* ppc_md.hpte_clear_all(void); */
655 * kexec image calling is:
656 * the first 0x100 bytes of the entry point are copied to 0
658 * all slaves branch to slave = 0x60 (absolute)
659 * slave(phys_cpu_id);
661 * master goes to start = entry point
662 * start(phys_cpu_id, start, 0);
665 * a wrapper is needed to call existing kernels, here is an approximate
666 * description of one method:
669 * start will be near the boot_block (maybe 0x100 bytes before it?)
670 * it will have a 0x60, which will b to boot_block, where it will wait
671 * and 0 will store phys into struct boot-block and load r3 from there,
672 * copy kernel 0-0x100 and tell slaves to back down to 0x60 again
675 * boot block will have all cpus scanning device tree to see if they
676 * are the boot cpu ?????
677 * other device tree differences (prop sizes, va vs pa, etc)...
680 /* copy 0x100 bytes starting at start to 0 */
685 bl .copy_and_flush /* (dest, src, copy limit, start offset) */
686 1: /* assume normal blr return */
688 /* release other cpus to the new kernel secondary start at 0x60 */
691 stw r6,kexec_flag-1b(5)
692 mr r3,r25 # my phys cpu
693 mr r4,r30 # start, aka phys mem offset
696 blr /* image->start(physid, image->start, 0); */
697 #endif /* CONFIG_KEXEC */