2 * linux/arch/arm/boot/compressed/head.S
4 * Copyright (C) 1996-2002 Russell King
5 * Copyright (C) 2004 Hyok S. Choi (MPU support)
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
11 #include <linux/linkage.h>
16 * Note that these macros must not contain any code which is not
17 * 100% relocatable. Any attempt to do so will result in a crash.
18 * Please select one of the following when turning on debugging.
22 #if defined(CONFIG_DEBUG_ICEDCC)
28 mcr p14, 0, \ch, c0, c5, 0
30 #elif defined(CONFIG_CPU_XSCALE)
34 mcr p14, 0, \ch, c8, c0, 0
40 mcr p14, 0, \ch, c1, c0, 0
46 #include <mach/debug-macro.S>
52 #if defined(CONFIG_ARCH_SA1100)
54 mov \rb, #0x80000000 @ physical base address
55 #ifdef CONFIG_DEBUG_LL_SER3
56 add \rb, \rb, #0x00050000 @ Ser3
58 add \rb, \rb, #0x00010000 @ Ser1
61 #elif defined(CONFIG_ARCH_S3C2410)
64 add \rb, \rb, #0x4000 * CONFIG_S3C_LOWLEVEL_UART_PORT
85 .macro debug_reloc_start
88 kphex r6, 8 /* processor id */
90 kphex r7, 8 /* architecture id */
91 #ifdef CONFIG_CPU_CP15
93 mrc p15, 0, r0, c1, c0
94 kphex r0, 8 /* control reg */
97 kphex r5, 8 /* decompressed kernel start */
99 kphex r9, 8 /* decompressed kernel end */
101 kphex r4, 8 /* kernel execution address */
106 .macro debug_reloc_end
108 kphex r5, 8 /* end of kernel */
111 bl memdump /* dump 256 bytes at start of kernel */
115 .section ".start", #alloc, #execinstr
117 * sort out different calling conventions
121 .type start,#function
127 .word 0x016f2818 @ Magic numbers to help the loader
128 .word start @ absolute load/run zImage address
129 .word _edata @ zImage end address
130 1: mov r7, r1 @ save architecture ID
131 mov r8, r2 @ save atags pointer
133 #ifndef __ARM_ARCH_2__
135 * Booting from Angel - need to enter SVC mode and disable
136 * FIQs/IRQs (numeric definitions from angel arm.h source).
137 * We only do this if we were in user mode on entry.
139 mrs r2, cpsr @ get current mode
140 tst r2, #3 @ not user?
142 mov r0, #0x17 @ angel_SWIreason_EnterSVC
143 ARM( swi 0x123456 ) @ angel_SWI_ARM
144 THUMB( svc 0xab ) @ angel_SWI_THUMB
146 mrs r2, cpsr @ turn off interrupts to
147 orr r2, r2, #0xc0 @ prevent angel from running
150 teqp pc, #0x0c000003 @ turn off interrupts
154 * Note that some cache flushing and other stuff may
155 * be needed here - is there an Angel SWI call for this?
159 * some architecture specific code can be inserted
160 * by the linker here, but it should preserve r7, r8, and r9.
165 ARM( ldmia r0, {r1, r2, r3, r4, r5, r6, ip, sp} )
166 THUMB( ldmia r0, {r1, r2, r3, r4, r5, r6, ip} )
167 THUMB( ldr sp, [r0, #28] )
168 subs r0, r0, r1 @ calculate the delta offset
170 @ if delta is zero, we are
171 beq not_relocated @ running at the address we
175 * We're running at a different address. We need to fix
176 * up various pointers:
177 * r5 - zImage base address
185 #ifndef CONFIG_ZBOOT_ROM
187 * If we're running fully PIC === CONFIG_ZBOOT_ROM = n,
188 * we need to fix up pointers into the BSS region.
198 * Relocate all entries in the GOT table.
200 1: ldr r1, [r6, #0] @ relocate entries in the GOT
201 add r1, r1, r0 @ table. This fixes up the
202 str r1, [r6], #4 @ C references.
208 * Relocate entries in the GOT table. We only relocate
209 * the entries that are outside the (relocated) BSS region.
211 1: ldr r1, [r6, #0] @ relocate entries in the GOT
212 cmp r1, r2 @ entry < bss_start ||
213 cmphs r3, r1 @ _end < entry
214 addlo r1, r1, r0 @ table. This fixes up the
215 str r1, [r6], #4 @ C references.
220 not_relocated: mov r0, #0
221 1: str r0, [r2], #4 @ clear bss
229 * The C runtime environment should now be setup
230 * sufficiently. Turn the cache on, set up some
231 * pointers, and start decompressing.
235 mov r1, sp @ malloc space above stack
236 add r2, sp, #0x10000 @ 64k max
239 * Check to see if we will overwrite ourselves.
240 * r4 = final kernel address
241 * r5 = start of this image
242 * r2 = end of malloc space (and therefore this image)
245 * r4 + image length <= r5 -> OK
249 sub r3, sp, r5 @ > compressed kernel size
250 add r0, r4, r3, lsl #2 @ allow for 4x expansion
254 mov r5, r2 @ decompress after malloc space
259 add r0, r0, #127 + 128 @ alignment + stack
260 bic r0, r0, #127 @ align the kernel length
262 * r0 = decompressed kernel length
264 * r4 = kernel execution address
265 * r5 = decompressed kernel start
267 * r7 = architecture ID
269 * r9-r12,r14 = corrupted
271 add r1, r5, r0 @ end of decompressed kernel
275 1: ldmia r2!, {r9 - r12, r14} @ copy relocation code
276 stmia r1!, {r9 - r12, r14}
277 ldmia r2!, {r9 - r12, r14}
278 stmia r1!, {r9 - r12, r14}
282 add sp, sp, #128 @ relocate the stack
285 ARM( add pc, r5, r0 ) @ call relocation code
286 THUMB( add r12, r5, r0 )
287 THUMB( mov pc, r12 ) @ call relocation code
290 * We're not in danger of overwriting ourselves. Do this the simple way.
292 * r4 = kernel execution address
293 * r7 = architecture ID
295 wont_overwrite: mov r0, r4
303 .word __bss_start @ r2
307 .word _got_start @ r6
309 .word user_stack+4096 @ sp
310 LC1: .word reloc_end - reloc_start
313 #ifdef CONFIG_ARCH_RPC
315 params: ldr r0, =params_phys
322 * Turn on the cache. We need to setup some page tables so that we
323 * can have both the I and D caches on.
325 * We place the page tables 16k down from the kernel execution address,
326 * and we hope that nothing else is using it. If we're using it, we
330 * r4 = kernel execution address
332 * r7 = architecture number
334 * r9 = run-time address of "start" (???)
336 * r1, r2, r3, r9, r10, r12 corrupted
337 * This routine must preserve:
341 cache_on: mov r3, #8 @ cache_on function
345 * Initialize the highest priority protection region, PR7
346 * to cover all 32bit address and cacheable and bufferable.
348 __armv4_mpu_cache_on:
349 mov r0, #0x3f @ 4G, the whole
350 mcr p15, 0, r0, c6, c7, 0 @ PR7 Area Setting
351 mcr p15, 0, r0, c6, c7, 1
354 mcr p15, 0, r0, c2, c0, 0 @ D-cache on
355 mcr p15, 0, r0, c2, c0, 1 @ I-cache on
356 mcr p15, 0, r0, c3, c0, 0 @ write-buffer on
359 mcr p15, 0, r0, c5, c0, 1 @ I-access permission
360 mcr p15, 0, r0, c5, c0, 0 @ D-access permission
363 mcr p15, 0, r0, c7, c10, 4 @ drain write buffer
364 mcr p15, 0, r0, c7, c5, 0 @ flush(inval) I-Cache
365 mcr p15, 0, r0, c7, c6, 0 @ flush(inval) D-Cache
366 mrc p15, 0, r0, c1, c0, 0 @ read control reg
367 @ ...I .... ..D. WC.M
368 orr r0, r0, #0x002d @ .... .... ..1. 11.1
369 orr r0, r0, #0x1000 @ ...1 .... .... ....
371 mcr p15, 0, r0, c1, c0, 0 @ write control reg
374 mcr p15, 0, r0, c7, c5, 0 @ flush(inval) I-Cache
375 mcr p15, 0, r0, c7, c6, 0 @ flush(inval) D-Cache
378 __armv3_mpu_cache_on:
379 mov r0, #0x3f @ 4G, the whole
380 mcr p15, 0, r0, c6, c7, 0 @ PR7 Area Setting
383 mcr p15, 0, r0, c2, c0, 0 @ cache on
384 mcr p15, 0, r0, c3, c0, 0 @ write-buffer on
387 mcr p15, 0, r0, c5, c0, 0 @ access permission
390 mcr p15, 0, r0, c7, c0, 0 @ invalidate whole cache v3
391 mrc p15, 0, r0, c1, c0, 0 @ read control reg
392 @ .... .... .... WC.M
393 orr r0, r0, #0x000d @ .... .... .... 11.1
395 mcr p15, 0, r0, c1, c0, 0 @ write control reg
397 mcr p15, 0, r0, c7, c0, 0 @ invalidate whole cache v3
400 __setup_mmu: sub r3, r4, #16384 @ Page directory size
401 bic r3, r3, #0xff @ Align the pointer
404 * Initialise the page tables, turning on the cacheable and bufferable
405 * bits for the RAM area only.
409 mov r9, r9, lsl #18 @ start of RAM
410 add r10, r9, #0x10000000 @ a reasonable RAM size
414 1: cmp r1, r9 @ if virt > start of RAM
415 orrhs r1, r1, #0x0c @ set cacheable, bufferable
416 cmp r1, r10 @ if virt > end of RAM
417 bichs r1, r1, #0x0c @ clear cacheable, bufferable
418 str r1, [r0], #4 @ 1:1 mapping
423 * If ever we are running from Flash, then we surely want the cache
424 * to be enabled also for our execution instance... We map 2MB of it
425 * so there is no map overlap problem for up to 1 MB compressed kernel.
426 * If the execution is in RAM then we would only be duplicating the above.
431 orr r1, r1, r2, lsl #20
432 add r0, r3, r2, lsl #2
439 __armv4_mmu_cache_on:
444 mcr p15, 0, r0, c7, c10, 4 @ drain write buffer
445 mcr p15, 0, r0, c8, c7, 0 @ flush I,D TLBs
446 mrc p15, 0, r0, c1, c0, 0 @ read control reg
447 orr r0, r0, #0x5000 @ I-cache enable, RR cache replacement
449 #ifdef CONFIG_CPU_ENDIAN_BE8
450 orr r0, r0, #1 << 25 @ big-endian page tables
452 bl __common_mmu_cache_on
454 mcr p15, 0, r0, c8, c7, 0 @ flush I,D TLBs
458 __armv7_mmu_cache_on:
461 mrc p15, 0, r11, c0, c1, 4 @ read ID_MMFR0
465 mcr p15, 0, r0, c7, c10, 4 @ drain write buffer
467 mcrne p15, 0, r0, c8, c7, 0 @ flush I,D TLBs
469 mrc p15, 0, r0, c1, c0, 0 @ read control reg
470 orr r0, r0, #0x5000 @ I-cache enable, RR cache replacement
471 orr r0, r0, #0x003c @ write buffer
473 #ifdef CONFIG_CPU_ENDIAN_BE8
474 orr r0, r0, #1 << 25 @ big-endian page tables
476 orrne r0, r0, #1 @ MMU enabled
478 mcrne p15, 0, r3, c2, c0, 0 @ load page table pointer
479 mcrne p15, 0, r1, c3, c0, 0 @ load domain access control
481 mcr p15, 0, r0, c1, c0, 0 @ load control register
482 mrc p15, 0, r0, c1, c0, 0 @ and read it back
484 mcr p15, 0, r0, c7, c5, 4 @ ISB
491 mcr p15, 0, r0, c7, c7, 0 @ Invalidate whole cache
492 mcr p15, 0, r0, c7, c10, 4 @ drain write buffer
493 mcr p15, 0, r0, c8, c7, 0 @ flush UTLB
494 mrc p15, 0, r0, c1, c0, 0 @ read control reg
495 orr r0, r0, #0x1000 @ I-cache enable
496 bl __common_mmu_cache_on
498 mcr p15, 0, r0, c8, c7, 0 @ flush UTLB
505 mcr p15, 0, r0, c7, c0, 0 @ invalidate whole cache v3
506 mcr p15, 0, r0, c5, c0, 0 @ invalidate whole TLB v3
508 bl __common_mmu_cache_on
510 mcr p15, 0, r0, c5, c0, 0 @ invalidate whole TLB v3
513 __common_mmu_cache_on:
514 #ifndef CONFIG_THUMB2_KERNEL
516 orr r0, r0, #0x000d @ Write buffer, mmu
519 mcr p15, 0, r3, c2, c0, 0 @ load page table pointer
520 mcr p15, 0, r1, c3, c0, 0 @ load domain access control
522 .align 5 @ cache line aligned
523 1: mcr p15, 0, r0, c1, c0, 0 @ load control register
524 mrc p15, 0, r0, c1, c0, 0 @ and read it back to
525 sub pc, lr, r0, lsr #32 @ properly flush pipeline
529 * All code following this line is relocatable. It is relocated by
530 * the above code to the end of the decompressed kernel image and
531 * executed there. During this time, we have no stacks.
533 * r0 = decompressed kernel length
535 * r4 = kernel execution address
536 * r5 = decompressed kernel start
538 * r7 = architecture ID
540 * r9-r12,r14 = corrupted
543 reloc_start: add r9, r5, r0
544 sub r9, r9, #128 @ do not copy the stack
549 ldmia r5!, {r0, r2, r3, r10 - r12, r14} @ relocate kernel
550 stmia r1!, {r0, r2, r3, r10 - r12, r14}
556 add sp, sp, #128 @ relocate the stack
559 call_kernel: bl cache_clean_flush
561 mov r0, #0 @ must be zero
562 mov r1, r7 @ restore architecture number
563 mov r2, r8 @ restore atags pointer
564 mov pc, r4 @ call kernel
567 * Here follow the relocatable cache support functions for the
568 * various processors. This is a generic hook for locating an
569 * entry and jumping to an instruction at the specified offset
570 * from the start of the block. Please note this is all position
580 call_cache_fn: adr r12, proc_types
581 #ifdef CONFIG_CPU_CP15
582 mrc p15, 0, r6, c0, c0 @ get processor ID
584 ldr r6, =CONFIG_PROCESSOR_ID
586 1: ldr r1, [r12, #0] @ get value
587 ldr r2, [r12, #4] @ get mask
588 eor r1, r1, r6 @ (real ^ match)
590 ARM( addeq pc, r12, r3 ) @ call cache function
591 THUMB( addeq r12, r3 )
592 THUMB( moveq pc, r12 ) @ call cache function
597 * Table for cache operations. This is basically:
600 * - 'cache on' method instruction
601 * - 'cache off' method instruction
602 * - 'cache flush' method instruction
604 * We match an entry using: ((real_id ^ match) & mask) == 0
606 * Writethrough caches generally only need 'on' and 'off'
607 * methods. Writeback caches _must_ have the flush method
611 .type proc_types,#object
613 .word 0x41560600 @ ARM6/610
615 W(b) __arm6_mmu_cache_off @ works, but slow
616 W(b) __arm6_mmu_cache_off
619 @ b __arm6_mmu_cache_on @ untested
620 @ b __arm6_mmu_cache_off
621 @ b __armv3_mmu_cache_flush
623 .word 0x00000000 @ old ARM ID
632 .word 0x41007000 @ ARM7/710
634 W(b) __arm7_mmu_cache_off
635 W(b) __arm7_mmu_cache_off
639 .word 0x41807200 @ ARM720T (writethrough)
641 W(b) __armv4_mmu_cache_on
642 W(b) __armv4_mmu_cache_off
646 .word 0x41007400 @ ARM74x
648 W(b) __armv3_mpu_cache_on
649 W(b) __armv3_mpu_cache_off
650 W(b) __armv3_mpu_cache_flush
652 .word 0x41009400 @ ARM94x
654 W(b) __armv4_mpu_cache_on
655 W(b) __armv4_mpu_cache_off
656 W(b) __armv4_mpu_cache_flush
658 .word 0x00007000 @ ARM7 IDs
667 @ Everything from here on will be the new ID system.
669 .word 0x4401a100 @ sa110 / sa1100
671 W(b) __armv4_mmu_cache_on
672 W(b) __armv4_mmu_cache_off
673 W(b) __armv4_mmu_cache_flush
675 .word 0x6901b110 @ sa1110
677 W(b) __armv4_mmu_cache_on
678 W(b) __armv4_mmu_cache_off
679 W(b) __armv4_mmu_cache_flush
682 .word 0xff0ffff0 @ PXA935
683 W(b) __armv4_mmu_cache_on
684 W(b) __armv4_mmu_cache_off
685 W(b) __armv4_mmu_cache_flush
687 .word 0x56158000 @ PXA168
689 W(b) __armv4_mmu_cache_on
690 W(b) __armv4_mmu_cache_off
691 W(b) __armv5tej_mmu_cache_flush
694 .word 0xff0ffff0 @ PXA935
695 W(b) __armv4_mmu_cache_on
696 W(b) __armv4_mmu_cache_off
697 W(b) __armv4_mmu_cache_flush
699 .word 0x56050000 @ Feroceon
701 W(b) __armv4_mmu_cache_on
702 W(b) __armv4_mmu_cache_off
703 W(b) __armv5tej_mmu_cache_flush
705 #ifdef CONFIG_CPU_FEROCEON_OLD_ID
706 /* this conflicts with the standard ARMv5TE entry */
707 .long 0x41009260 @ Old Feroceon
709 b __armv4_mmu_cache_on
710 b __armv4_mmu_cache_off
711 b __armv5tej_mmu_cache_flush
714 .word 0x66015261 @ FA526
716 W(b) __fa526_cache_on
717 W(b) __armv4_mmu_cache_off
718 W(b) __fa526_cache_flush
720 @ These match on the architecture ID
722 .word 0x00020000 @ ARMv4T
724 W(b) __armv4_mmu_cache_on
725 W(b) __armv4_mmu_cache_off
726 W(b) __armv4_mmu_cache_flush
728 .word 0x00050000 @ ARMv5TE
730 W(b) __armv4_mmu_cache_on
731 W(b) __armv4_mmu_cache_off
732 W(b) __armv4_mmu_cache_flush
734 .word 0x00060000 @ ARMv5TEJ
736 W(b) __armv4_mmu_cache_on
737 W(b) __armv4_mmu_cache_off
738 W(b) __armv4_mmu_cache_flush
740 .word 0x0007b000 @ ARMv6
742 W(b) __armv4_mmu_cache_on
743 W(b) __armv4_mmu_cache_off
744 W(b) __armv6_mmu_cache_flush
746 .word 0x560f5810 @ Marvell PJ4 ARMv6
748 W(b) __armv4_mmu_cache_on
749 W(b) __armv4_mmu_cache_off
750 W(b) __armv6_mmu_cache_flush
752 .word 0x000f0000 @ new CPU Id
754 W(b) __armv7_mmu_cache_on
755 W(b) __armv7_mmu_cache_off
756 W(b) __armv7_mmu_cache_flush
758 .word 0 @ unrecognised type
767 .size proc_types, . - proc_types
770 * Turn off the Cache and MMU. ARMv3 does not support
771 * reading the control register, but ARMv4 does.
773 * On entry, r6 = processor ID
774 * On exit, r0, r1, r2, r3, r12 corrupted
775 * This routine must preserve: r4, r6, r7
778 cache_off: mov r3, #12 @ cache_off function
781 __armv4_mpu_cache_off:
782 mrc p15, 0, r0, c1, c0
784 mcr p15, 0, r0, c1, c0 @ turn MPU and cache off
786 mcr p15, 0, r0, c7, c10, 4 @ drain write buffer
787 mcr p15, 0, r0, c7, c6, 0 @ flush D-Cache
788 mcr p15, 0, r0, c7, c5, 0 @ flush I-Cache
791 __armv3_mpu_cache_off:
792 mrc p15, 0, r0, c1, c0
794 mcr p15, 0, r0, c1, c0, 0 @ turn MPU and cache off
796 mcr p15, 0, r0, c7, c0, 0 @ invalidate whole cache v3
799 __armv4_mmu_cache_off:
801 mrc p15, 0, r0, c1, c0
803 mcr p15, 0, r0, c1, c0 @ turn MMU and cache off
805 mcr p15, 0, r0, c7, c7 @ invalidate whole cache v4
806 mcr p15, 0, r0, c8, c7 @ invalidate whole TLB v4
810 __armv7_mmu_cache_off:
811 mrc p15, 0, r0, c1, c0
817 mcr p15, 0, r0, c1, c0 @ turn MMU and cache off
819 bl __armv7_mmu_cache_flush
822 mcr p15, 0, r0, c8, c7, 0 @ invalidate whole TLB
824 mcr p15, 0, r0, c7, c5, 6 @ invalidate BTC
825 mcr p15, 0, r0, c7, c10, 4 @ DSB
826 mcr p15, 0, r0, c7, c5, 4 @ ISB
829 __arm6_mmu_cache_off:
830 mov r0, #0x00000030 @ ARM6 control reg.
831 b __armv3_mmu_cache_off
833 __arm7_mmu_cache_off:
834 mov r0, #0x00000070 @ ARM7 control reg.
835 b __armv3_mmu_cache_off
837 __armv3_mmu_cache_off:
838 mcr p15, 0, r0, c1, c0, 0 @ turn MMU and cache off
840 mcr p15, 0, r0, c7, c0, 0 @ invalidate whole cache v3
841 mcr p15, 0, r0, c5, c0, 0 @ invalidate whole TLB v3
845 * Clean and flush the cache to maintain consistency.
850 * r1, r2, r3, r11, r12 corrupted
851 * This routine must preserve:
859 __armv4_mpu_cache_flush:
862 mcr p15, 0, ip, c7, c6, 0 @ invalidate D cache
863 mov r1, #7 << 5 @ 8 segments
864 1: orr r3, r1, #63 << 26 @ 64 entries
865 2: mcr p15, 0, r3, c7, c14, 2 @ clean & invalidate D index
866 subs r3, r3, #1 << 26
867 bcs 2b @ entries 63 to 0
869 bcs 1b @ segments 7 to 0
872 mcrne p15, 0, ip, c7, c5, 0 @ invalidate I cache
873 mcr p15, 0, ip, c7, c10, 4 @ drain WB
878 mcr p15, 0, r1, c7, c14, 0 @ clean and invalidate D cache
879 mcr p15, 0, r1, c7, c5, 0 @ flush I cache
880 mcr p15, 0, r1, c7, c10, 4 @ drain WB
883 __armv6_mmu_cache_flush:
885 mcr p15, 0, r1, c7, c14, 0 @ clean+invalidate D
886 mcr p15, 0, r1, c7, c5, 0 @ invalidate I+BTB
887 mcr p15, 0, r1, c7, c15, 0 @ clean+invalidate unified
888 mcr p15, 0, r1, c7, c10, 4 @ drain WB
891 __armv7_mmu_cache_flush:
892 mrc p15, 0, r10, c0, c1, 5 @ read ID_MMFR1
893 tst r10, #0xf << 16 @ hierarchical cache (ARMv7)
896 mcr p15, 0, r10, c7, c14, 0 @ clean+invalidate D
899 mcr p15, 0, r10, c7, c10, 5 @ DMB
900 stmfd sp!, {r0-r7, r9-r11}
901 mrc p15, 1, r0, c0, c0, 1 @ read clidr
902 ands r3, r0, #0x7000000 @ extract loc from clidr
903 mov r3, r3, lsr #23 @ left align loc bit field
904 beq finished @ if loc is 0, then no need to clean
905 mov r10, #0 @ start clean at cache level 0
907 add r2, r10, r10, lsr #1 @ work out 3x current cache level
908 mov r1, r0, lsr r2 @ extract cache type bits from clidr
909 and r1, r1, #7 @ mask of the bits for current cache only
910 cmp r1, #2 @ see what cache we have at this level
911 blt skip @ skip if no cache, or just i-cache
912 mcr p15, 2, r10, c0, c0, 0 @ select current cache level in cssr
913 mcr p15, 0, r10, c7, c5, 4 @ isb to sych the new cssr&csidr
914 mrc p15, 1, r1, c0, c0, 0 @ read the new csidr
915 and r2, r1, #7 @ extract the length of the cache lines
916 add r2, r2, #4 @ add 4 (line length offset)
918 ands r4, r4, r1, lsr #3 @ find maximum number on the way size
919 clz r5, r4 @ find bit position of way size increment
921 ands r7, r7, r1, lsr #13 @ extract max number of the index size
923 mov r9, r4 @ create working copy of max way size
925 ARM( orr r11, r10, r9, lsl r5 ) @ factor way and cache number into r11
926 ARM( orr r11, r11, r7, lsl r2 ) @ factor index number into r11
927 THUMB( lsl r6, r9, r5 )
928 THUMB( orr r11, r10, r6 ) @ factor way and cache number into r11
929 THUMB( lsl r6, r7, r2 )
930 THUMB( orr r11, r11, r6 ) @ factor index number into r11
931 mcr p15, 0, r11, c7, c14, 2 @ clean & invalidate by set/way
932 subs r9, r9, #1 @ decrement the way
934 subs r7, r7, #1 @ decrement the index
937 add r10, r10, #2 @ increment cache number
941 ldmfd sp!, {r0-r7, r9-r11}
942 mov r10, #0 @ swith back to cache level 0
943 mcr p15, 2, r10, c0, c0, 0 @ select current cache level in cssr
945 mcr p15, 0, r10, c7, c10, 4 @ DSB
946 mcr p15, 0, r10, c7, c5, 0 @ invalidate I+BTB
947 mcr p15, 0, r10, c7, c10, 4 @ DSB
948 mcr p15, 0, r10, c7, c5, 4 @ ISB
951 __armv5tej_mmu_cache_flush:
952 1: mrc p15, 0, r15, c7, c14, 3 @ test,clean,invalidate D cache
954 mcr p15, 0, r0, c7, c5, 0 @ flush I cache
955 mcr p15, 0, r0, c7, c10, 4 @ drain WB
958 __armv4_mmu_cache_flush:
959 mov r2, #64*1024 @ default: 32K dcache size (*2)
960 mov r11, #32 @ default: 32 byte line size
961 mrc p15, 0, r3, c0, c0, 1 @ read cache type
962 teq r3, r6 @ cache ID register present?
967 mov r2, r2, lsl r1 @ base dcache size *2
968 tst r3, #1 << 14 @ test M bit
969 addne r2, r2, r2, lsr #1 @ +1/2 size if M == 1
973 mov r11, r11, lsl r3 @ cache line size in bytes
976 bic r1, r1, #63 @ align to longest cache line
979 ARM( ldr r3, [r1], r11 ) @ s/w flush D cache
980 THUMB( ldr r3, [r1] ) @ s/w flush D cache
981 THUMB( add r1, r1, r11 )
985 mcr p15, 0, r1, c7, c5, 0 @ flush I cache
986 mcr p15, 0, r1, c7, c6, 0 @ flush D cache
987 mcr p15, 0, r1, c7, c10, 4 @ drain WB
990 __armv3_mmu_cache_flush:
991 __armv3_mpu_cache_flush:
993 mcr p15, 0, r0, c7, c0, 0 @ invalidate whole cache v3
997 * Various debugging routines for printing hex characters and
998 * memory, which again must be relocatable.
1002 .type phexbuf,#object
1004 .size phexbuf, . - phexbuf
1006 phex: adr r3, phexbuf
1021 1: ldrb r2, [r0], #1
1040 memdump: mov r12, r0
1043 2: mov r0, r11, lsl #2
1051 ldr r0, [r12, r11, lsl #2]
1073 .section ".stack", "w"
1074 user_stack: .space 4096