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)
9 * Copyright (C) 2002-2003 Eric Biederman <ebiederm@xmission.com>
10 * GameCube/ppc32 port Copyright (C) 2004 Albert Herranz
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version
15 * 2 of the License, or (at your option) any later version.
19 #include <linux/sys.h>
20 #include <asm/unistd.h>
21 #include <asm/errno.h>
24 #include <asm/cache.h>
25 #include <asm/cputable.h>
27 #include <asm/ppc_asm.h>
28 #include <asm/thread_info.h>
29 #include <asm/asm-offsets.h>
30 #include <asm/processor.h>
31 #include <asm/kexec.h>
35 #ifdef CONFIG_IRQSTACKS
36 _GLOBAL(call_do_softirq)
39 stwu r1,THREAD_SIZE-STACK_FRAME_OVERHEAD(r3)
47 _GLOBAL(call_handle_irq)
51 stwu r1,THREAD_SIZE-STACK_FRAME_OVERHEAD(r5)
58 #endif /* CONFIG_IRQSTACKS */
61 * This returns the high 64 bits of the product of two 64-bit numbers.
73 1: beqlr cr1 /* all done if high part of A is 0 */
88 * sub_reloc_offset(x) returns x - reloc_offset().
90 _GLOBAL(sub_reloc_offset)
102 * reloc_got2 runs through the .got2 section adding an offset
107 lis r7,__got2_start@ha
108 addi r7,r7,__got2_start@l
110 addi r8,r8,__got2_end@l
130 * call_setup_cpu - call the setup_cpu function for this cpu
131 * r3 = data offset, r24 = cpu number
133 * Setup function is called with:
135 * r4 = ptr to CPU spec (relocated)
137 _GLOBAL(call_setup_cpu)
138 addis r4,r3,cur_cpu_spec@ha
139 addi r4,r4,cur_cpu_spec@l
142 lwz r5,CPU_SPEC_SETUP(r4)
149 #if defined(CONFIG_CPU_FREQ_PMAC) && defined(CONFIG_6xx)
151 /* This gets called by via-pmu.c to switch the PLL selection
152 * on 750fx CPU. This function should really be moved to some
153 * other place (as most of the cpufreq code in via-pmu
155 _GLOBAL(low_choose_750fx_pll)
161 /* If switching to PLL1, disable HID0:BTIC */
172 /* Calc new HID1 value */
173 mfspr r4,SPRN_HID1 /* Build a HID1:PS bit from parameter */
174 rlwinm r5,r3,16,15,15 /* Clear out HID1:PS from value read */
175 rlwinm r4,r4,0,16,14 /* Could have I used rlwimi here ? */
179 /* Store new HID1 image */
180 rlwinm r6,r1,0,0,(31-THREAD_SHIFT)
183 addis r6,r6,nap_save_hid1@ha
184 stw r4,nap_save_hid1@l(r6)
186 /* If switching to PLL0, enable HID0:BTIC */
201 _GLOBAL(low_choose_7447a_dfs)
207 /* Calc new HID1 value */
209 insrwi r4,r3,1,9 /* insert parameter into bit 9 */
219 #endif /* CONFIG_CPU_FREQ_PMAC && CONFIG_6xx */
222 * complement mask on the msr then "or" some values on.
223 * _nmask_and_or_msr(nmask, value_to_or)
225 _GLOBAL(_nmask_and_or_msr)
226 mfmsr r0 /* Get current msr */
227 andc r0,r0,r3 /* And off the bits set in r3 (first parm) */
228 or r0,r0,r4 /* Or on the bits in r4 (second parm) */
229 SYNC /* Some chip revs have problems here... */
230 mtmsr r0 /* Update machine state */
237 * Do an IO access in real mode
255 * Do an IO access in real mode
272 #endif /* CONFIG_40x */
277 #ifndef CONFIG_FSL_BOOKE
282 #if defined(CONFIG_40x)
283 sync /* Flush to memory before changing mapping */
285 isync /* Flush shadow TLB */
286 #elif defined(CONFIG_44x)
290 /* Load high watermark */
291 lis r4,tlb_44x_hwater@ha
292 lwz r5,tlb_44x_hwater@l(r4)
294 1: tlbwe r3,r3,PPC44x_TLB_PAGEID
300 #elif defined(CONFIG_FSL_BOOKE)
301 /* Invalidate all entries in TLB0 */
304 /* Invalidate all entries in TLB1 */
310 #endif /* CONFIG_SMP */
311 #else /* !(CONFIG_40x || CONFIG_44x || CONFIG_FSL_BOOKE) */
312 #if defined(CONFIG_SMP)
313 rlwinm r8,r1,0,0,(31-THREAD_SHIFT)
318 rlwinm r0,r10,0,17,15 /* clear bit 16 (MSR_EE) */
319 rlwinm r0,r0,0,28,26 /* clear DR */
323 lis r9,mmu_hash_lock@h
324 ori r9,r9,mmu_hash_lock@l
336 stw r0,0(r9) /* clear mmu_hash_lock */
340 #else /* CONFIG_SMP */
344 #endif /* CONFIG_SMP */
345 #endif /* ! defined(CONFIG_40x) */
349 * Flush MMU TLB for a particular address
351 #ifndef CONFIG_FSL_BOOKE
355 #if defined(CONFIG_40x)
356 /* We run the search with interrupts disabled because we have to change
357 * the PID and I don't want to preempt when that happens.
368 /* There are only 64 TLB entries, so r3 < 64, which means bit 25 is clear.
369 * Since 25 is the V bit in the TLB_TAG, loading this value will invalidate
371 tlbwe r3, r3, TLB_TAG
375 #elif defined(CONFIG_44x)
377 rlwimi r5,r4,0,24,31 /* Set TID */
379 /* We have to run the search with interrupts disabled, even critical
380 * and debug interrupts (in fact the only critical exceptions we have
381 * are debug and machine check). Otherwise an interrupt which causes
382 * a TLB miss can clobber the MMUCR between the mtspr and the tlbsx. */
384 lis r6,(MSR_EE|MSR_CE|MSR_ME|MSR_DE)@ha
385 addi r6,r6,(MSR_EE|MSR_CE|MSR_ME|MSR_DE)@l
393 /* There are only 64 TLB entries, so r3 < 64,
394 * which means bit 22, is clear. Since 22 is
395 * the V bit in the TLB_PAGEID, loading this
396 * value will invalidate the TLB entry.
398 tlbwe r3, r3, PPC44x_TLB_PAGEID
401 #elif defined(CONFIG_FSL_BOOKE)
402 rlwinm r4, r3, 0, 0, 19
403 ori r5, r4, 0x08 /* TLBSEL = 1 */
407 #if defined(CONFIG_SMP)
409 #endif /* CONFIG_SMP */
410 #else /* !(CONFIG_40x || CONFIG_44x || CONFIG_FSL_BOOKE) */
411 #if defined(CONFIG_SMP)
412 rlwinm r8,r1,0,0,(31-THREAD_SHIFT)
417 rlwinm r0,r10,0,17,15 /* clear bit 16 (MSR_EE) */
418 rlwinm r0,r0,0,28,26 /* clear DR */
422 lis r9,mmu_hash_lock@h
423 ori r9,r9,mmu_hash_lock@l
435 stw r0,0(r9) /* clear mmu_hash_lock */
439 #else /* CONFIG_SMP */
442 #endif /* CONFIG_SMP */
443 #endif /* ! CONFIG_40x */
446 #if defined(CONFIG_FSL_BOOKE)
448 * Flush MMU TLB, but only on the local processor (no broadcast)
451 #define MMUCSR0_TLBFI (MMUCSR0_TLB0FI | MMUCSR0_TLB1FI | \
452 MMUCSR0_TLB2FI | MMUCSR0_TLB3FI)
453 li r3,(MMUCSR0_TLBFI)@l
454 mtspr SPRN_MMUCSR0, r3
456 mfspr r3,SPRN_MMUCSR0
457 andi. r3,r3,MMUCSR0_TLBFI@l
462 * Flush MMU TLB for a particular process id, but only on the local processor
466 /* we currently do an invalidate all since we don't have per pid invalidate */
467 li r3,(MMUCSR0_TLBFI)@l
468 mtspr SPRN_MMUCSR0, r3
470 mfspr r3,SPRN_MMUCSR0
471 andi. r3,r3,MMUCSR0_TLBFI@l
478 * Flush MMU TLB for a particular address, but only on the local processor
485 mtspr SPRN_MAS6,r4 /* assume AS=0 for now */
487 mfspr r4,SPRN_MAS1 /* check valid */
488 andis. r3,r4,MAS1_VALID@h
497 #endif /* CONFIG_FSL_BOOKE */
501 * Flush instruction cache.
502 * This is a no-op on the 601.
504 _GLOBAL(flush_instruction_cache)
505 #if defined(CONFIG_8xx)
508 mtspr SPRN_IC_CST, r5
509 #elif defined(CONFIG_4xx)
521 #elif CONFIG_FSL_BOOKE
524 ori r3,r3,L1CSR0_CFI|L1CSR0_CLFC
525 /* msync; isync recommended here */
529 END_FTR_SECTION_IFSET(CPU_FTR_UNIFIED_ID_CACHE)
531 ori r3,r3,L1CSR1_ICFI|L1CSR1_ICLFR
535 rlwinm r3,r3,16,16,31
537 beqlr /* for 601, do nothing */
538 /* 603/604 processor - use invalidate-all bit in HID0 */
542 #endif /* CONFIG_8xx/4xx */
547 * Write any modified data cache blocks out to memory
548 * and invalidate the corresponding instruction cache blocks.
549 * This is a no-op on the 601.
551 * flush_icache_range(unsigned long start, unsigned long stop)
553 _KPROBE(__flush_icache_range)
555 blr /* for 601, do nothing */
556 END_FTR_SECTION_IFSET(CPU_FTR_COHERENT_ICACHE)
557 li r5,L1_CACHE_BYTES-1
561 srwi. r4,r4,L1_CACHE_SHIFT
566 addi r3,r3,L1_CACHE_BYTES
568 sync /* wait for dcbst's to get to ram */
571 addi r6,r6,L1_CACHE_BYTES
573 sync /* additional sync needed on g4 */
577 * Write any modified data cache blocks out to memory.
578 * Does not invalidate the corresponding cache lines (especially for
579 * any corresponding instruction cache).
581 * clean_dcache_range(unsigned long start, unsigned long stop)
583 _GLOBAL(clean_dcache_range)
584 li r5,L1_CACHE_BYTES-1
588 srwi. r4,r4,L1_CACHE_SHIFT
593 addi r3,r3,L1_CACHE_BYTES
595 sync /* wait for dcbst's to get to ram */
599 * Write any modified data cache blocks out to memory and invalidate them.
600 * Does not invalidate the corresponding instruction cache blocks.
602 * flush_dcache_range(unsigned long start, unsigned long stop)
604 _GLOBAL(flush_dcache_range)
605 li r5,L1_CACHE_BYTES-1
609 srwi. r4,r4,L1_CACHE_SHIFT
614 addi r3,r3,L1_CACHE_BYTES
616 sync /* wait for dcbst's to get to ram */
620 * Like above, but invalidate the D-cache. This is used by the 8xx
621 * to invalidate the cache so the PPC core doesn't get stale data
622 * from the CPM (no cache snooping here :-).
624 * invalidate_dcache_range(unsigned long start, unsigned long stop)
626 _GLOBAL(invalidate_dcache_range)
627 li r5,L1_CACHE_BYTES-1
631 srwi. r4,r4,L1_CACHE_SHIFT
636 addi r3,r3,L1_CACHE_BYTES
638 sync /* wait for dcbi's to get to ram */
642 * Flush a particular page from the data cache to RAM.
643 * Note: this is necessary because the instruction cache does *not*
644 * snoop from the data cache.
645 * This is a no-op on the 601 which has a unified cache.
647 * void __flush_dcache_icache(void *page)
649 _GLOBAL(__flush_dcache_icache)
652 END_FTR_SECTION_IFSET(CPU_FTR_COHERENT_ICACHE)
653 rlwinm r3,r3,0,0,19 /* Get page base address */
654 li r4,4096/L1_CACHE_BYTES /* Number of lines in a page */
657 0: dcbst 0,r3 /* Write line to ram */
658 addi r3,r3,L1_CACHE_BYTES
662 /* We don't flush the icache on 44x. Those have a virtual icache
663 * and we don't have access to the virtual address here (it's
664 * not the page vaddr but where it's mapped in user space). The
665 * flushing of the icache on these is handled elsewhere, when
666 * a change in the address space occurs, before returning to
671 addi r6,r6,L1_CACHE_BYTES
675 #endif /* CONFIG_44x */
679 * Flush a particular page from the data cache to RAM, identified
680 * by its physical address. We turn off the MMU so we can just use
681 * the physical address (this may be a highmem page without a kernel
684 * void __flush_dcache_icache_phys(unsigned long physaddr)
686 _GLOBAL(__flush_dcache_icache_phys)
688 blr /* for 601, do nothing */
689 END_FTR_SECTION_IFSET(CPU_FTR_COHERENT_ICACHE)
691 rlwinm r0,r10,0,28,26 /* clear DR */
694 rlwinm r3,r3,0,0,19 /* Get page base address */
695 li r4,4096/L1_CACHE_BYTES /* Number of lines in a page */
698 0: dcbst 0,r3 /* Write line to ram */
699 addi r3,r3,L1_CACHE_BYTES
704 addi r6,r6,L1_CACHE_BYTES
707 mtmsr r10 /* restore DR */
712 * Clear pages using the dcbz instruction, which doesn't cause any
713 * memory traffic (except to write out any cache lines which get
714 * displaced). This only works on cacheable memory.
716 * void clear_pages(void *page, int order) ;
719 li r0,4096/L1_CACHE_BYTES
731 addi r3,r3,L1_CACHE_BYTES
736 * Copy a whole page. We use the dcbz instruction on the destination
737 * to reduce memory traffic (it eliminates the unnecessary reads of
738 * the destination into cache). This requires that the destination
741 #define COPY_16_BYTES \
756 /* don't use prefetch on 8xx */
757 li r0,4096/L1_CACHE_BYTES
763 #else /* not 8xx, we can prefetch */
766 #if MAX_COPY_PREFETCH > 1
767 li r0,MAX_COPY_PREFETCH
771 addi r11,r11,L1_CACHE_BYTES
773 #else /* MAX_COPY_PREFETCH == 1 */
775 li r11,L1_CACHE_BYTES+4
776 #endif /* MAX_COPY_PREFETCH */
777 li r0,4096/L1_CACHE_BYTES - MAX_COPY_PREFETCH
785 #if L1_CACHE_BYTES >= 32
787 #if L1_CACHE_BYTES >= 64
790 #if L1_CACHE_BYTES >= 128
800 crnot 4*cr0+eq,4*cr0+eq
801 li r0,MAX_COPY_PREFETCH
804 #endif /* CONFIG_8xx */
807 * void atomic_clear_mask(atomic_t mask, atomic_t *addr)
808 * void atomic_set_mask(atomic_t mask, atomic_t *addr);
810 _GLOBAL(atomic_clear_mask)
817 _GLOBAL(atomic_set_mask)
826 * Extended precision shifts.
828 * Updated to be valid for shift counts from 0 to 63 inclusive.
831 * R3/R4 has 64 bit value
835 * ashrdi3: arithmetic right shift (sign propagation)
836 * lshrdi3: logical right shift
837 * ashldi3: left shift
841 srw r4,r4,r5 # LSW = count > 31 ? 0 : LSW >> count
842 addi r7,r5,32 # could be xori, or addi with -32
843 slw r6,r3,r6 # t1 = count > 31 ? 0 : MSW << (32-count)
844 rlwinm r8,r7,0,32 # t3 = (count < 32) ? 32 : 0
845 sraw r7,r3,r7 # t2 = MSW >> (count-32)
846 or r4,r4,r6 # LSW |= t1
847 slw r7,r7,r8 # t2 = (count < 32) ? 0 : t2
848 sraw r3,r3,r5 # MSW = MSW >> count
849 or r4,r4,r7 # LSW |= t2
854 slw r3,r3,r5 # MSW = count > 31 ? 0 : MSW << count
855 addi r7,r5,32 # could be xori, or addi with -32
856 srw r6,r4,r6 # t1 = count > 31 ? 0 : LSW >> (32-count)
857 slw r7,r4,r7 # t2 = count < 32 ? 0 : LSW << (count-32)
858 or r3,r3,r6 # MSW |= t1
859 slw r4,r4,r5 # LSW = LSW << count
860 or r3,r3,r7 # MSW |= t2
865 srw r4,r4,r5 # LSW = count > 31 ? 0 : LSW >> count
866 addi r7,r5,32 # could be xori, or addi with -32
867 slw r6,r3,r6 # t1 = count > 31 ? 0 : MSW << (32-count)
868 srw r7,r3,r7 # t2 = count < 32 ? 0 : MSW >> (count-32)
869 or r4,r4,r6 # LSW |= t1
870 srw r3,r3,r5 # MSW = MSW >> count
871 or r4,r4,r7 # LSW |= t2
875 * 64-bit comparison: __ucmpdi2(u64 a, u64 b)
876 * Returns 0 if a < b, 1 if a == b, 2 if a > b.
896 * Create a kernel thread
897 * kernel_thread(fn, arg, flags)
899 _GLOBAL(kernel_thread)
903 mr r30,r3 /* function */
904 mr r31,r4 /* argument */
905 ori r3,r5,CLONE_VM /* flags */
906 oris r3,r3,CLONE_UNTRACED>>16
907 li r4,0 /* new sp (unused) */
910 bns+ 1f /* did system call indicate error? */
911 neg r3,r3 /* if so, make return code negative */
912 1: cmpwi 0,r3,0 /* parent or child? */
913 bne 2f /* return if parent */
914 li r0,0 /* make top-level stack frame */
916 mtlr r30 /* fn addr in lr */
917 mr r3,r31 /* load arg and call fn */
920 li r0,__NR_exit /* exit if function returns */
929 * This routine is just here to keep GCC happy - sigh...
936 * Must be relocatable PIC code callable as a C function.
938 .globl relocate_new_kernel
941 /* r4 = reboot_code_buffer */
942 /* r5 = start_address */
947 * Set Machine Status Register to a known status,
948 * switch the MMU off and jump to 1: in a single step.
952 ori r8, r8, MSR_RI|MSR_ME
954 addi r8, r4, 1f - relocate_new_kernel
960 /* from this point address translation is turned off */
961 /* and interrupts are disabled */
963 /* set a new stack at the bottom of our page... */
964 /* (not really needed now) */
965 addi r1, r4, KEXEC_CONTROL_PAGE_SIZE - 8 /* for LR Save+Back Chain */
969 li r6, 0 /* checksum */
973 0: /* top, read another word for the indirection page */
977 /* is it a destination page? (r8) */
978 rlwinm. r7, r0, 0, 31, 31 /* IND_DESTINATION (1<<0) */
981 rlwinm r8, r0, 0, 0, 19 /* clear kexec flags, page align */
984 2: /* is it an indirection page? (r3) */
985 rlwinm. r7, r0, 0, 30, 30 /* IND_INDIRECTION (1<<1) */
988 rlwinm r3, r0, 0, 0, 19 /* clear kexec flags, page align */
992 2: /* are we done? */
993 rlwinm. r7, r0, 0, 29, 29 /* IND_DONE (1<<2) */
997 2: /* is it a source page? (r9) */
998 rlwinm. r7, r0, 0, 28, 28 /* IND_SOURCE (1<<3) */
1001 rlwinm r9, r0, 0, 0, 19 /* clear kexec flags, page align */
1003 li r7, PAGE_SIZE / 4
1008 lwzu r0, 4(r9) /* do the copy */
1022 /* To be certain of avoiding problems with self-modifying code
1023 * execute a serializing instruction here.
1028 /* jump to the entry point, usually the setup routine */
1034 relocate_new_kernel_end:
1036 .globl relocate_new_kernel_size
1037 relocate_new_kernel_size:
1038 .long relocate_new_kernel_end - relocate_new_kernel