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)
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License
10 * as published by the Free Software Foundation; either version
11 * 2 of the License, or (at your option) any later version.
15 #include <linux/sys.h>
16 #include <asm/unistd.h>
17 #include <asm/errno.h>
18 #include <asm/processor.h>
20 #include <asm/cache.h>
21 #include <asm/cputable.h>
23 #include <asm/ppc_asm.h>
24 #include <asm/thread_info.h>
25 #include <asm/asm-offsets.h>
28 #define ISYNC_8xx isync
43 * Returns (address we're running at) - (address we were linked at)
44 * for use before the text and data are mapped to KERNELBASE.
57 * add_reloc_offset(x) returns x + reloc_offset().
59 _GLOBAL(add_reloc_offset)
71 * sub_reloc_offset(x) returns x - reloc_offset().
73 _GLOBAL(sub_reloc_offset)
85 * reloc_got2 runs through the .got2 section adding an offset
90 lis r7,__got2_start@ha
91 addi r7,r7,__got2_start@l
93 addi r8,r8,__got2_end@l
113 * call_setup_cpu - call the setup_cpu function for this cpu
114 * r3 = data offset, r24 = cpu number
116 * Setup function is called with:
118 * r4 = ptr to CPU spec (relocated)
120 _GLOBAL(call_setup_cpu)
121 addis r4,r3,cur_cpu_spec@ha
122 addi r4,r4,cur_cpu_spec@l
125 lwz r5,CPU_SPEC_SETUP(r4)
133 * complement mask on the msr then "or" some values on.
134 * _nmask_and_or_msr(nmask, value_to_or)
136 _GLOBAL(_nmask_and_or_msr)
137 mfmsr r0 /* Get current msr */
138 andc r0,r0,r3 /* And off the bits set in r3 (first parm) */
139 or r0,r0,r4 /* Or on the bits in r4 (second parm) */
140 SYNC /* Some chip revs have problems here... */
141 mtmsr r0 /* Update machine state */
150 #if defined(CONFIG_40x)
151 sync /* Flush to memory before changing mapping */
153 isync /* Flush shadow TLB */
154 #elif defined(CONFIG_44x)
158 /* Load high watermark */
159 lis r4,tlb_44x_hwater@ha
160 lwz r5,tlb_44x_hwater@l(r4)
162 1: tlbwe r3,r3,PPC44x_TLB_PAGEID
168 #elif defined(CONFIG_FSL_BOOKE)
169 /* Invalidate all entries in TLB0 */
172 /* Invalidate all entries in TLB1 */
175 /* Invalidate all entries in TLB2 */
178 /* Invalidate all entries in TLB3 */
184 #endif /* CONFIG_SMP */
185 #else /* !(CONFIG_40x || CONFIG_44x || CONFIG_FSL_BOOKE) */
186 #if defined(CONFIG_SMP)
192 rlwinm r0,r10,0,17,15 /* clear bit 16 (MSR_EE) */
193 rlwinm r0,r0,0,28,26 /* clear DR */
197 lis r9,mmu_hash_lock@h
198 ori r9,r9,mmu_hash_lock@l
210 stw r0,0(r9) /* clear mmu_hash_lock */
214 #else /* CONFIG_SMP */
218 #endif /* CONFIG_SMP */
219 #endif /* ! defined(CONFIG_40x) */
223 * Flush MMU TLB for a particular address
226 #if defined(CONFIG_40x)
230 /* There are only 64 TLB entries, so r3 < 64, which means bit 25 is clear.
231 * Since 25 is the V bit in the TLB_TAG, loading this value will invalidate
233 tlbwe r3, r3, TLB_TAG
236 #elif defined(CONFIG_44x)
238 mfspr r5,SPRN_PID /* Get PID */
239 rlwimi r4,r5,0,24,31 /* Set TID */
245 /* There are only 64 TLB entries, so r3 < 64,
246 * which means bit 22, is clear. Since 22 is
247 * the V bit in the TLB_PAGEID, loading this
248 * value will invalidate the TLB entry.
250 tlbwe r3, r3, PPC44x_TLB_PAGEID
253 #elif defined(CONFIG_FSL_BOOKE)
254 rlwinm r4, r3, 0, 0, 19
255 ori r5, r4, 0x08 /* TLBSEL = 1 */
256 ori r6, r4, 0x10 /* TLBSEL = 2 */
257 ori r7, r4, 0x18 /* TLBSEL = 3 */
263 #if defined(CONFIG_SMP)
265 #endif /* CONFIG_SMP */
266 #else /* !(CONFIG_40x || CONFIG_44x || CONFIG_FSL_BOOKE) */
267 #if defined(CONFIG_SMP)
273 rlwinm r0,r10,0,17,15 /* clear bit 16 (MSR_EE) */
274 rlwinm r0,r0,0,28,26 /* clear DR */
278 lis r9,mmu_hash_lock@h
279 ori r9,r9,mmu_hash_lock@l
291 stw r0,0(r9) /* clear mmu_hash_lock */
295 #else /* CONFIG_SMP */
298 #endif /* CONFIG_SMP */
299 #endif /* ! CONFIG_40x */
303 * Flush instruction cache.
304 * This is a no-op on the 601.
306 _GLOBAL(flush_instruction_cache)
307 #if defined(CONFIG_8xx)
310 mtspr SPRN_IC_CST, r5
311 #elif defined(CONFIG_4xx)
323 #elif CONFIG_FSL_BOOKE
326 ori r3,r3,L1CSR0_CFI|L1CSR0_CLFC
327 /* msync; isync recommended here */
331 END_FTR_SECTION_IFCLR(CPU_FTR_SPLIT_ID_CACHE)
333 ori r3,r3,L1CSR1_ICFI|L1CSR1_ICLFR
337 rlwinm r3,r3,16,16,31
339 beqlr /* for 601, do nothing */
340 /* 603/604 processor - use invalidate-all bit in HID0 */
344 #endif /* CONFIG_8xx/4xx */
349 * Write any modified data cache blocks out to memory
350 * and invalidate the corresponding instruction cache blocks.
351 * This is a no-op on the 601.
353 * __flush_icache_range(unsigned long start, unsigned long stop)
355 _GLOBAL(__flush_icache_range)
357 blr /* for 601, do nothing */
358 END_FTR_SECTION_IFCLR(CPU_FTR_SPLIT_ID_CACHE)
359 li r5,L1_CACHE_BYTES-1
363 srwi. r4,r4,L1_CACHE_SHIFT
368 addi r3,r3,L1_CACHE_BYTES
370 sync /* wait for dcbst's to get to ram */
373 addi r6,r6,L1_CACHE_BYTES
375 sync /* additional sync needed on g4 */
379 * Write any modified data cache blocks out to memory.
380 * Does not invalidate the corresponding cache lines (especially for
381 * any corresponding instruction cache).
383 * clean_dcache_range(unsigned long start, unsigned long stop)
385 _GLOBAL(clean_dcache_range)
386 li r5,L1_CACHE_BYTES-1
390 srwi. r4,r4,L1_CACHE_SHIFT
395 addi r3,r3,L1_CACHE_BYTES
397 sync /* wait for dcbst's to get to ram */
401 * Write any modified data cache blocks out to memory and invalidate them.
402 * Does not invalidate the corresponding instruction cache blocks.
404 * flush_dcache_range(unsigned long start, unsigned long stop)
406 _GLOBAL(flush_dcache_range)
407 li r5,L1_CACHE_BYTES-1
411 srwi. r4,r4,L1_CACHE_SHIFT
416 addi r3,r3,L1_CACHE_BYTES
418 sync /* wait for dcbst's to get to ram */
422 * Like above, but invalidate the D-cache. This is used by the 8xx
423 * to invalidate the cache so the PPC core doesn't get stale data
424 * from the CPM (no cache snooping here :-).
426 * invalidate_dcache_range(unsigned long start, unsigned long stop)
428 _GLOBAL(invalidate_dcache_range)
429 li r5,L1_CACHE_BYTES-1
433 srwi. r4,r4,L1_CACHE_SHIFT
438 addi r3,r3,L1_CACHE_BYTES
440 sync /* wait for dcbi's to get to ram */
443 #ifdef CONFIG_NOT_COHERENT_CACHE
445 * 40x cores have 8K or 16K dcache and 32 byte line size.
446 * 44x has a 32K dcache and 32 byte line size.
447 * 8xx has 1, 2, 4, 8K variants.
448 * For now, cover the worst case of the 44x.
449 * Must be called with external interrupts disabled.
451 #define CACHE_NWAYS 64
452 #define CACHE_NLINES 16
454 _GLOBAL(flush_dcache_all)
455 li r4, (2 * CACHE_NWAYS * CACHE_NLINES)
458 1: lwz r3, 0(r5) /* Load one word from every line */
459 addi r5, r5, L1_CACHE_BYTES
462 #endif /* CONFIG_NOT_COHERENT_CACHE */
465 * Flush a particular page from the data cache to RAM.
466 * Note: this is necessary because the instruction cache does *not*
467 * snoop from the data cache.
468 * This is a no-op on the 601 which has a unified cache.
470 * void __flush_dcache_icache(void *page)
472 _GLOBAL(__flush_dcache_icache)
474 blr /* for 601, do nothing */
475 END_FTR_SECTION_IFCLR(CPU_FTR_SPLIT_ID_CACHE)
476 rlwinm r3,r3,0,0,19 /* Get page base address */
477 li r4,4096/L1_CACHE_BYTES /* Number of lines in a page */
480 0: dcbst 0,r3 /* Write line to ram */
481 addi r3,r3,L1_CACHE_BYTES
486 addi r6,r6,L1_CACHE_BYTES
493 * Flush a particular page from the data cache to RAM, identified
494 * by its physical address. We turn off the MMU so we can just use
495 * the physical address (this may be a highmem page without a kernel
498 * void __flush_dcache_icache_phys(unsigned long physaddr)
500 _GLOBAL(__flush_dcache_icache_phys)
502 blr /* for 601, do nothing */
503 END_FTR_SECTION_IFCLR(CPU_FTR_SPLIT_ID_CACHE)
505 rlwinm r0,r10,0,28,26 /* clear DR */
508 rlwinm r3,r3,0,0,19 /* Get page base address */
509 li r4,4096/L1_CACHE_BYTES /* Number of lines in a page */
512 0: dcbst 0,r3 /* Write line to ram */
513 addi r3,r3,L1_CACHE_BYTES
518 addi r6,r6,L1_CACHE_BYTES
521 mtmsr r10 /* restore DR */
526 * Clear pages using the dcbz instruction, which doesn't cause any
527 * memory traffic (except to write out any cache lines which get
528 * displaced). This only works on cacheable memory.
530 * void clear_pages(void *page, int order) ;
533 li r0,4096/L1_CACHE_BYTES
545 addi r3,r3,L1_CACHE_BYTES
550 * Copy a whole page. We use the dcbz instruction on the destination
551 * to reduce memory traffic (it eliminates the unnecessary reads of
552 * the destination into cache). This requires that the destination
555 #define COPY_16_BYTES \
570 /* don't use prefetch on 8xx */
571 li r0,4096/L1_CACHE_BYTES
577 #else /* not 8xx, we can prefetch */
580 #if MAX_COPY_PREFETCH > 1
581 li r0,MAX_COPY_PREFETCH
585 addi r11,r11,L1_CACHE_BYTES
587 #else /* MAX_COPY_PREFETCH == 1 */
589 li r11,L1_CACHE_BYTES+4
590 #endif /* MAX_COPY_PREFETCH */
591 li r0,4096/L1_CACHE_BYTES - MAX_COPY_PREFETCH
599 #if L1_CACHE_BYTES >= 32
601 #if L1_CACHE_BYTES >= 64
604 #if L1_CACHE_BYTES >= 128
614 crnot 4*cr0+eq,4*cr0+eq
615 li r0,MAX_COPY_PREFETCH
618 #endif /* CONFIG_8xx */
621 * void atomic_clear_mask(atomic_t mask, atomic_t *addr)
622 * void atomic_set_mask(atomic_t mask, atomic_t *addr);
624 _GLOBAL(atomic_clear_mask)
631 _GLOBAL(atomic_set_mask)
640 * I/O string operations
642 * insb(port, buf, len)
643 * outsb(port, buf, len)
644 * insw(port, buf, len)
645 * outsw(port, buf, len)
646 * insl(port, buf, len)
647 * outsl(port, buf, len)
648 * insw_ns(port, buf, len)
649 * outsw_ns(port, buf, len)
650 * insl_ns(port, buf, len)
651 * outsl_ns(port, buf, len)
653 * The *_ns versions don't do byte-swapping.
667 .section __ex_table, "a"
688 .section __ex_table, "a"
709 .section __ex_table, "a"
730 .section __ex_table, "a"
751 .section __ex_table, "a"
772 .section __ex_table, "a"
782 * Extended precision shifts.
784 * Updated to be valid for shift counts from 0 to 63 inclusive.
787 * R3/R4 has 64 bit value
791 * ashrdi3: arithmetic right shift (sign propagation)
792 * lshrdi3: logical right shift
793 * ashldi3: left shift
797 srw r4,r4,r5 # LSW = count > 31 ? 0 : LSW >> count
798 addi r7,r5,32 # could be xori, or addi with -32
799 slw r6,r3,r6 # t1 = count > 31 ? 0 : MSW << (32-count)
800 rlwinm r8,r7,0,32 # t3 = (count < 32) ? 32 : 0
801 sraw r7,r3,r7 # t2 = MSW >> (count-32)
802 or r4,r4,r6 # LSW |= t1
803 slw r7,r7,r8 # t2 = (count < 32) ? 0 : t2
804 sraw r3,r3,r5 # MSW = MSW >> count
805 or r4,r4,r7 # LSW |= t2
810 slw r3,r3,r5 # MSW = count > 31 ? 0 : MSW << count
811 addi r7,r5,32 # could be xori, or addi with -32
812 srw r6,r4,r6 # t1 = count > 31 ? 0 : LSW >> (32-count)
813 slw r7,r4,r7 # t2 = count < 32 ? 0 : LSW << (count-32)
814 or r3,r3,r6 # MSW |= t1
815 slw r4,r4,r5 # LSW = LSW << count
816 or r3,r3,r7 # MSW |= t2
821 srw r4,r4,r5 # LSW = count > 31 ? 0 : LSW >> count
822 addi r7,r5,32 # could be xori, or addi with -32
823 slw r6,r3,r6 # t1 = count > 31 ? 0 : MSW << (32-count)
824 srw r7,r3,r7 # t2 = count < 32 ? 0 : MSW >> (count-32)
825 or r4,r4,r6 # LSW |= t1
826 srw r3,r3,r5 # MSW = MSW >> count
827 or r4,r4,r7 # LSW |= t2
837 mr r3,r1 /* Close enough */
841 * Create a kernel thread
842 * kernel_thread(fn, arg, flags)
844 _GLOBAL(kernel_thread)
848 mr r30,r3 /* function */
849 mr r31,r4 /* argument */
850 ori r3,r5,CLONE_VM /* flags */
851 oris r3,r3,CLONE_UNTRACED>>16
852 li r4,0 /* new sp (unused) */
855 cmpwi 0,r3,0 /* parent or child? */
856 bne 1f /* return if parent */
857 li r0,0 /* make top-level stack frame */
859 mtlr r30 /* fn addr in lr */
860 mr r3,r31 /* load arg and call fn */
863 li r0,__NR_exit /* exit if function returns */
871 _GLOBAL(kernel_execve)
879 * This routine is just here to keep GCC happy - sigh...