Merge branch 'linux-linaro-lsk-v3.10' into linux-linaro-lsk-v3.10-android
[firefly-linux-kernel-4.4.55.git] / arch / arm / boot / compressed / head.S
1 /*
2  *  linux/arch/arm/boot/compressed/head.S
3  *
4  *  Copyright (C) 1996-2002 Russell King
5  *  Copyright (C) 2004 Hyok S. Choi (MPU support)
6  *
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.
10  */
11 #include <linux/linkage.h>
12 #include <asm/assembler.h>
13
14         .arch   armv7-a
15 /*
16  * Debugging stuff
17  *
18  * Note that these macros must not contain any code which is not
19  * 100% relocatable.  Any attempt to do so will result in a crash.
20  * Please select one of the following when turning on debugging.
21  */
22 #ifdef DEBUG
23
24 #if defined(CONFIG_DEBUG_ICEDCC)
25
26 #if defined(CONFIG_CPU_V6) || defined(CONFIG_CPU_V6K) || defined(CONFIG_CPU_V7)
27                 .macro  loadsp, rb, tmp
28                 .endm
29                 .macro  writeb, ch, rb
30                 mcr     p14, 0, \ch, c0, c5, 0
31                 .endm
32 #elif defined(CONFIG_CPU_XSCALE)
33                 .macro  loadsp, rb, tmp
34                 .endm
35                 .macro  writeb, ch, rb
36                 mcr     p14, 0, \ch, c8, c0, 0
37                 .endm
38 #else
39                 .macro  loadsp, rb, tmp
40                 .endm
41                 .macro  writeb, ch, rb
42                 mcr     p14, 0, \ch, c1, c0, 0
43                 .endm
44 #endif
45
46 #else
47
48 #include CONFIG_DEBUG_LL_INCLUDE
49
50                 .macro  writeb, ch, rb
51                 senduart \ch, \rb
52                 .endm
53
54 #if defined(CONFIG_ARCH_SA1100)
55                 .macro  loadsp, rb, tmp
56                 mov     \rb, #0x80000000        @ physical base address
57 #ifdef CONFIG_DEBUG_LL_SER3
58                 add     \rb, \rb, #0x00050000   @ Ser3
59 #else
60                 add     \rb, \rb, #0x00010000   @ Ser1
61 #endif
62                 .endm
63 #elif defined(CONFIG_ARCH_S3C24XX)
64                 .macro loadsp, rb, tmp
65                 mov     \rb, #0x50000000
66                 add     \rb, \rb, #0x4000 * CONFIG_S3C_LOWLEVEL_UART_PORT
67                 .endm
68 #else
69                 .macro  loadsp, rb, tmp
70                 addruart \rb, \tmp
71                 .endm
72 #endif
73 #endif
74 #endif
75
76                 .macro  kputc,val
77                 mov     r0, \val
78                 bl      putc
79                 .endm
80
81                 .macro  kphex,val,len
82                 mov     r0, \val
83                 mov     r1, #\len
84                 bl      phex
85                 .endm
86
87                 .macro  debug_reloc_start
88 #ifdef DEBUG
89                 kputc   #'\n'
90                 kphex   r6, 8           /* processor id */
91                 kputc   #':'
92                 kphex   r7, 8           /* architecture id */
93 #ifdef CONFIG_CPU_CP15
94                 kputc   #':'
95                 mrc     p15, 0, r0, c1, c0
96                 kphex   r0, 8           /* control reg */
97 #endif
98                 kputc   #'\n'
99                 kphex   r5, 8           /* decompressed kernel start */
100                 kputc   #'-'
101                 kphex   r9, 8           /* decompressed kernel end  */
102                 kputc   #'>'
103                 kphex   r4, 8           /* kernel execution address */
104                 kputc   #'\n'
105 #endif
106                 .endm
107
108                 .macro  debug_reloc_end
109 #ifdef DEBUG
110                 kphex   r5, 8           /* end of kernel */
111                 kputc   #'\n'
112                 mov     r0, r4
113                 bl      memdump         /* dump 256 bytes at start of kernel */
114 #endif
115                 .endm
116
117                 .section ".start", #alloc, #execinstr
118 /*
119  * sort out different calling conventions
120  */
121                 .align
122                 .arm                            @ Always enter in ARM state
123 start:
124                 .type   start,#function
125                 .rept   7
126                 mov     r0, r0
127                 .endr
128    ARM(         mov     r0, r0          )
129    ARM(         b       1f              )
130  THUMB(         adr     r12, BSYM(1f)   )
131  THUMB(         bx      r12             )
132
133                 .word   0x016f2818              @ Magic numbers to help the loader
134                 .word   start                   @ absolute load/run zImage address
135                 .word   _edata                  @ zImage end address
136  THUMB(         .thumb                  )
137 1:
138  ARM_BE8(       setend  be )                    @ go BE8 if compiled for BE8
139                 mrs     r9, cpsr
140 #ifdef CONFIG_ARM_VIRT_EXT
141                 bl      __hyp_stub_install      @ get into SVC mode, reversibly
142 #endif
143                 mov     r7, r1                  @ save architecture ID
144                 mov     r8, r2                  @ save atags pointer
145
146 #ifndef __ARM_ARCH_2__
147                 /*
148                  * Booting from Angel - need to enter SVC mode and disable
149                  * FIQs/IRQs (numeric definitions from angel arm.h source).
150                  * We only do this if we were in user mode on entry.
151                  */
152                 mrs     r2, cpsr                @ get current mode
153                 tst     r2, #3                  @ not user?
154                 bne     not_angel
155                 mov     r0, #0x17               @ angel_SWIreason_EnterSVC
156  ARM(           swi     0x123456        )       @ angel_SWI_ARM
157  THUMB(         svc     0xab            )       @ angel_SWI_THUMB
158 not_angel:
159                 safe_svcmode_maskall r0
160                 msr     spsr_cxsf, r9           @ Save the CPU boot mode in
161                                                 @ SPSR
162 #else
163                 teqp    pc, #0x0c000003         @ turn off interrupts
164 #endif
165
166                 /*
167                  * Note that some cache flushing and other stuff may
168                  * be needed here - is there an Angel SWI call for this?
169                  */
170
171                 /*
172                  * some architecture specific code can be inserted
173                  * by the linker here, but it should preserve r7, r8, and r9.
174                  */
175
176                 .text
177
178 #ifdef CONFIG_AUTO_ZRELADDR
179                 @ determine final kernel image address
180                 mov     r4, pc
181                 and     r4, r4, #0xf8000000
182                 add     r4, r4, #TEXT_OFFSET
183 #else
184                 ldr     r4, =zreladdr
185 #endif
186
187                 bl      cache_on
188
189 restart:        adr     r0, LC0
190                 ldmia   r0, {r1, r2, r3, r6, r10, r11, r12}
191                 ldr     sp, [r0, #28]
192
193                 /*
194                  * We might be running at a different address.  We need
195                  * to fix up various pointers.
196                  */
197                 sub     r0, r0, r1              @ calculate the delta offset
198                 add     r6, r6, r0              @ _edata
199                 add     r10, r10, r0            @ inflated kernel size location
200
201                 /*
202                  * The kernel build system appends the size of the
203                  * decompressed kernel at the end of the compressed data
204                  * in little-endian form.
205                  */
206                 ldrb    r9, [r10, #0]
207                 ldrb    lr, [r10, #1]
208                 orr     r9, r9, lr, lsl #8
209                 ldrb    lr, [r10, #2]
210                 ldrb    r10, [r10, #3]
211                 orr     r9, r9, lr, lsl #16
212                 orr     r9, r9, r10, lsl #24
213
214 #ifndef CONFIG_ZBOOT_ROM
215                 /* malloc space is above the relocated stack (64k max) */
216                 add     sp, sp, r0
217                 add     r10, sp, #0x10000
218 #else
219                 /*
220                  * With ZBOOT_ROM the bss/stack is non relocatable,
221                  * but someone could still run this code from RAM,
222                  * in which case our reference is _edata.
223                  */
224                 mov     r10, r6
225 #endif
226
227                 mov     r5, #0                  @ init dtb size to 0
228 #ifdef CONFIG_ARM_APPENDED_DTB
229 /*
230  *   r0  = delta
231  *   r2  = BSS start
232  *   r3  = BSS end
233  *   r4  = final kernel address
234  *   r5  = appended dtb size (still unknown)
235  *   r6  = _edata
236  *   r7  = architecture ID
237  *   r8  = atags/device tree pointer
238  *   r9  = size of decompressed image
239  *   r10 = end of this image, including  bss/stack/malloc space if non XIP
240  *   r11 = GOT start
241  *   r12 = GOT end
242  *   sp  = stack pointer
243  *
244  * if there are device trees (dtb) appended to zImage, advance r10 so that the
245  * dtb data will get relocated along with the kernel if necessary.
246  */
247
248                 ldr     lr, [r6, #0]
249 #ifndef __ARMEB__
250                 ldr     r1, =0xedfe0dd0         @ sig is 0xd00dfeed big endian
251 #else
252                 ldr     r1, =0xd00dfeed
253 #endif
254                 cmp     lr, r1
255                 bne     dtb_check_done          @ not found
256
257 #ifdef CONFIG_ARM_ATAG_DTB_COMPAT
258                 /*
259                  * OK... Let's do some funky business here.
260                  * If we do have a DTB appended to zImage, and we do have
261                  * an ATAG list around, we want the later to be translated
262                  * and folded into the former here.  To be on the safe side,
263                  * let's temporarily move  the stack away into the malloc
264                  * area.  No GOT fixup has occurred yet, but none of the
265                  * code we're about to call uses any global variable.
266                 */
267                 add     sp, sp, #0x10000
268                 stmfd   sp!, {r0-r3, ip, lr}
269                 mov     r0, r8
270                 mov     r1, r6
271                 sub     r2, sp, r6
272                 bl      atags_to_fdt
273
274                 /*
275                  * If returned value is 1, there is no ATAG at the location
276                  * pointed by r8.  Try the typical 0x100 offset from start
277                  * of RAM and hope for the best.
278                  */
279                 cmp     r0, #1
280                 sub     r0, r4, #TEXT_OFFSET
281                 add     r0, r0, #0x100
282                 mov     r1, r6
283                 sub     r2, sp, r6
284                 bleq    atags_to_fdt
285
286                 ldmfd   sp!, {r0-r3, ip, lr}
287                 sub     sp, sp, #0x10000
288 #endif
289
290                 mov     r8, r6                  @ use the appended device tree
291
292                 /*
293                  * Make sure that the DTB doesn't end up in the final
294                  * kernel's .bss area. To do so, we adjust the decompressed
295                  * kernel size to compensate if that .bss size is larger
296                  * than the relocated code.
297                  */
298                 ldr     r5, =_kernel_bss_size
299                 adr     r1, wont_overwrite
300                 sub     r1, r6, r1
301                 subs    r1, r5, r1
302                 addhi   r9, r9, r1
303
304                 /* Get the dtb's size */
305                 ldr     r5, [r6, #4]
306 #ifndef __ARMEB__
307                 /* convert r5 (dtb size) to little endian */
308                 eor     r1, r5, r5, ror #16
309                 bic     r1, r1, #0x00ff0000
310                 mov     r5, r5, ror #8
311                 eor     r5, r5, r1, lsr #8
312 #endif
313
314                 /* preserve 64-bit alignment */
315                 add     r5, r5, #7
316                 bic     r5, r5, #7
317
318                 /* relocate some pointers past the appended dtb */
319                 add     r6, r6, r5
320                 add     r10, r10, r5
321                 add     sp, sp, r5
322 dtb_check_done:
323 #endif
324
325 /*
326  * Check to see if we will overwrite ourselves.
327  *   r4  = final kernel address
328  *   r9  = size of decompressed image
329  *   r10 = end of this image, including  bss/stack/malloc space if non XIP
330  * We basically want:
331  *   r4 - 16k page directory >= r10 -> OK
332  *   r4 + image length <= address of wont_overwrite -> OK
333  */
334                 add     r10, r10, #16384
335                 cmp     r4, r10
336                 bhs     wont_overwrite
337                 add     r10, r4, r9
338                 adr     r9, wont_overwrite
339                 cmp     r10, r9
340                 bls     wont_overwrite
341
342 /*
343  * Relocate ourselves past the end of the decompressed kernel.
344  *   r6  = _edata
345  *   r10 = end of the decompressed kernel
346  * Because we always copy ahead, we need to do it from the end and go
347  * backward in case the source and destination overlap.
348  */
349                 /*
350                  * Bump to the next 256-byte boundary with the size of
351                  * the relocation code added. This avoids overwriting
352                  * ourself when the offset is small.
353                  */
354                 add     r10, r10, #((reloc_code_end - restart + 256) & ~255)
355                 bic     r10, r10, #255
356
357                 /* Get start of code we want to copy and align it down. */
358                 adr     r5, restart
359                 bic     r5, r5, #31
360
361 /* Relocate the hyp vector base if necessary */
362 #ifdef CONFIG_ARM_VIRT_EXT
363                 mrs     r0, spsr
364                 and     r0, r0, #MODE_MASK
365                 cmp     r0, #HYP_MODE
366                 bne     1f
367
368                 bl      __hyp_get_vectors
369                 sub     r0, r0, r5
370                 add     r0, r0, r10
371                 bl      __hyp_set_vectors
372 1:
373 #endif
374
375                 sub     r9, r6, r5              @ size to copy
376                 add     r9, r9, #31             @ rounded up to a multiple
377                 bic     r9, r9, #31             @ ... of 32 bytes
378                 add     r6, r9, r5
379                 add     r9, r9, r10
380
381 1:              ldmdb   r6!, {r0 - r3, r10 - r12, lr}
382                 cmp     r6, r5
383                 stmdb   r9!, {r0 - r3, r10 - r12, lr}
384                 bhi     1b
385
386                 /* Preserve offset to relocated code. */
387                 sub     r6, r9, r6
388
389 #ifndef CONFIG_ZBOOT_ROM
390                 /* cache_clean_flush may use the stack, so relocate it */
391                 add     sp, sp, r6
392 #endif
393
394                 bl      cache_clean_flush
395
396                 adr     r0, BSYM(restart)
397                 add     r0, r0, r6
398                 mov     pc, r0
399
400 wont_overwrite:
401 /*
402  * If delta is zero, we are running at the address we were linked at.
403  *   r0  = delta
404  *   r2  = BSS start
405  *   r3  = BSS end
406  *   r4  = kernel execution address
407  *   r5  = appended dtb size (0 if not present)
408  *   r7  = architecture ID
409  *   r8  = atags pointer
410  *   r11 = GOT start
411  *   r12 = GOT end
412  *   sp  = stack pointer
413  */
414                 orrs    r1, r0, r5
415                 beq     not_relocated
416
417                 add     r11, r11, r0
418                 add     r12, r12, r0
419
420 #ifndef CONFIG_ZBOOT_ROM
421                 /*
422                  * If we're running fully PIC === CONFIG_ZBOOT_ROM = n,
423                  * we need to fix up pointers into the BSS region.
424                  * Note that the stack pointer has already been fixed up.
425                  */
426                 add     r2, r2, r0
427                 add     r3, r3, r0
428
429                 /*
430                  * Relocate all entries in the GOT table.
431                  * Bump bss entries to _edata + dtb size
432                  */
433 1:              ldr     r1, [r11, #0]           @ relocate entries in the GOT
434                 add     r1, r1, r0              @ This fixes up C references
435                 cmp     r1, r2                  @ if entry >= bss_start &&
436                 cmphs   r3, r1                  @       bss_end > entry
437                 addhi   r1, r1, r5              @    entry += dtb size
438                 str     r1, [r11], #4           @ next entry
439                 cmp     r11, r12
440                 blo     1b
441
442                 /* bump our bss pointers too */
443                 add     r2, r2, r5
444                 add     r3, r3, r5
445
446 #else
447
448                 /*
449                  * Relocate entries in the GOT table.  We only relocate
450                  * the entries that are outside the (relocated) BSS region.
451                  */
452 1:              ldr     r1, [r11, #0]           @ relocate entries in the GOT
453                 cmp     r1, r2                  @ entry < bss_start ||
454                 cmphs   r3, r1                  @ _end < entry
455                 addlo   r1, r1, r0              @ table.  This fixes up the
456                 str     r1, [r11], #4           @ C references.
457                 cmp     r11, r12
458                 blo     1b
459 #endif
460
461 not_relocated:  mov     r0, #0
462 1:              str     r0, [r2], #4            @ clear bss
463                 str     r0, [r2], #4
464                 str     r0, [r2], #4
465                 str     r0, [r2], #4
466                 cmp     r2, r3
467                 blo     1b
468
469 /*
470  * The C runtime environment should now be setup sufficiently.
471  * Set up some pointers, and start decompressing.
472  *   r4  = kernel execution address
473  *   r7  = architecture ID
474  *   r8  = atags pointer
475  */
476                 mov     r0, r4
477                 mov     r1, sp                  @ malloc space above stack
478                 add     r2, sp, #0x10000        @ 64k max
479                 mov     r3, r7
480                 bl      decompress_kernel
481                 bl      cache_clean_flush
482                 bl      cache_off
483                 mov     r1, r7                  @ restore architecture number
484                 mov     r2, r8                  @ restore atags pointer
485
486 #ifdef CONFIG_ARM_VIRT_EXT
487                 mrs     r0, spsr                @ Get saved CPU boot mode
488                 and     r0, r0, #MODE_MASK
489                 cmp     r0, #HYP_MODE           @ if not booted in HYP mode...
490                 bne     __enter_kernel          @ boot kernel directly
491
492                 adr     r12, .L__hyp_reentry_vectors_offset
493                 ldr     r0, [r12]
494                 add     r0, r0, r12
495
496                 bl      __hyp_set_vectors
497                 __HVC(0)                        @ otherwise bounce to hyp mode
498
499                 b       .                       @ should never be reached
500
501                 .align  2
502 .L__hyp_reentry_vectors_offset: .long   __hyp_reentry_vectors - .
503 #else
504                 b       __enter_kernel
505 #endif
506
507                 .align  2
508                 .type   LC0, #object
509 LC0:            .word   LC0                     @ r1
510                 .word   __bss_start             @ r2
511                 .word   _end                    @ r3
512                 .word   _edata                  @ r6
513                 .word   input_data_end - 4      @ r10 (inflated size location)
514                 .word   _got_start              @ r11
515                 .word   _got_end                @ ip
516                 .word   .L_user_stack_end       @ sp
517                 .size   LC0, . - LC0
518
519 #ifdef CONFIG_ARCH_RPC
520                 .globl  params
521 params:         ldr     r0, =0x10000100         @ params_phys for RPC
522                 mov     pc, lr
523                 .ltorg
524                 .align
525 #endif
526
527 /*
528  * Turn on the cache.  We need to setup some page tables so that we
529  * can have both the I and D caches on.
530  *
531  * We place the page tables 16k down from the kernel execution address,
532  * and we hope that nothing else is using it.  If we're using it, we
533  * will go pop!
534  *
535  * On entry,
536  *  r4 = kernel execution address
537  *  r7 = architecture number
538  *  r8 = atags pointer
539  * On exit,
540  *  r0, r1, r2, r3, r9, r10, r12 corrupted
541  * This routine must preserve:
542  *  r4, r7, r8
543  */
544                 .align  5
545 cache_on:       mov     r3, #8                  @ cache_on function
546                 b       call_cache_fn
547
548 /*
549  * Initialize the highest priority protection region, PR7
550  * to cover all 32bit address and cacheable and bufferable.
551  */
552 __armv4_mpu_cache_on:
553                 mov     r0, #0x3f               @ 4G, the whole
554                 mcr     p15, 0, r0, c6, c7, 0   @ PR7 Area Setting
555                 mcr     p15, 0, r0, c6, c7, 1
556
557                 mov     r0, #0x80               @ PR7
558                 mcr     p15, 0, r0, c2, c0, 0   @ D-cache on
559                 mcr     p15, 0, r0, c2, c0, 1   @ I-cache on
560                 mcr     p15, 0, r0, c3, c0, 0   @ write-buffer on
561
562                 mov     r0, #0xc000
563                 mcr     p15, 0, r0, c5, c0, 1   @ I-access permission
564                 mcr     p15, 0, r0, c5, c0, 0   @ D-access permission
565
566                 mov     r0, #0
567                 mcr     p15, 0, r0, c7, c10, 4  @ drain write buffer
568                 mcr     p15, 0, r0, c7, c5, 0   @ flush(inval) I-Cache
569                 mcr     p15, 0, r0, c7, c6, 0   @ flush(inval) D-Cache
570                 mrc     p15, 0, r0, c1, c0, 0   @ read control reg
571                                                 @ ...I .... ..D. WC.M
572                 orr     r0, r0, #0x002d         @ .... .... ..1. 11.1
573                 orr     r0, r0, #0x1000         @ ...1 .... .... ....
574
575                 mcr     p15, 0, r0, c1, c0, 0   @ write control reg
576
577                 mov     r0, #0
578                 mcr     p15, 0, r0, c7, c5, 0   @ flush(inval) I-Cache
579                 mcr     p15, 0, r0, c7, c6, 0   @ flush(inval) D-Cache
580                 mov     pc, lr
581
582 __armv3_mpu_cache_on:
583                 mov     r0, #0x3f               @ 4G, the whole
584                 mcr     p15, 0, r0, c6, c7, 0   @ PR7 Area Setting
585
586                 mov     r0, #0x80               @ PR7
587                 mcr     p15, 0, r0, c2, c0, 0   @ cache on
588                 mcr     p15, 0, r0, c3, c0, 0   @ write-buffer on
589
590                 mov     r0, #0xc000
591                 mcr     p15, 0, r0, c5, c0, 0   @ access permission
592
593                 mov     r0, #0
594                 mcr     p15, 0, r0, c7, c0, 0   @ invalidate whole cache v3
595                 /*
596                  * ?? ARMv3 MMU does not allow reading the control register,
597                  * does this really work on ARMv3 MPU?
598                  */
599                 mrc     p15, 0, r0, c1, c0, 0   @ read control reg
600                                                 @ .... .... .... WC.M
601                 orr     r0, r0, #0x000d         @ .... .... .... 11.1
602                 /* ?? this overwrites the value constructed above? */
603                 mov     r0, #0
604                 mcr     p15, 0, r0, c1, c0, 0   @ write control reg
605
606                 /* ?? invalidate for the second time? */
607                 mcr     p15, 0, r0, c7, c0, 0   @ invalidate whole cache v3
608                 mov     pc, lr
609
610 #ifdef CONFIG_CPU_DCACHE_WRITETHROUGH
611 #define CB_BITS 0x08
612 #else
613 #define CB_BITS 0x0c
614 #endif
615
616 __setup_mmu:    sub     r3, r4, #16384          @ Page directory size
617                 bic     r3, r3, #0xff           @ Align the pointer
618                 bic     r3, r3, #0x3f00
619 /*
620  * Initialise the page tables, turning on the cacheable and bufferable
621  * bits for the RAM area only.
622  */
623                 mov     r0, r3
624                 mov     r9, r0, lsr #18
625                 mov     r9, r9, lsl #18         @ start of RAM
626                 add     r10, r9, #0x10000000    @ a reasonable RAM size
627                 mov     r1, #0x12               @ XN|U + section mapping
628                 orr     r1, r1, #3 << 10        @ AP=11
629                 add     r2, r3, #16384
630 1:              cmp     r1, r9                  @ if virt > start of RAM
631                 cmphs   r10, r1                 @   && end of RAM > virt
632                 bic     r1, r1, #0x1c           @ clear XN|U + C + B
633                 orrlo   r1, r1, #0x10           @ Set XN|U for non-RAM
634                 orrhs   r1, r1, r6              @ set RAM section settings
635                 str     r1, [r0], #4            @ 1:1 mapping
636                 add     r1, r1, #1048576
637                 teq     r0, r2
638                 bne     1b
639 /*
640  * If ever we are running from Flash, then we surely want the cache
641  * to be enabled also for our execution instance...  We map 2MB of it
642  * so there is no map overlap problem for up to 1 MB compressed kernel.
643  * If the execution is in RAM then we would only be duplicating the above.
644  */
645                 orr     r1, r6, #0x04           @ ensure B is set for this
646                 orr     r1, r1, #3 << 10
647                 mov     r2, pc
648                 mov     r2, r2, lsr #20
649                 orr     r1, r1, r2, lsl #20
650                 add     r0, r3, r2, lsl #2
651                 str     r1, [r0], #4
652                 add     r1, r1, #1048576
653                 str     r1, [r0]
654                 mov     pc, lr
655 ENDPROC(__setup_mmu)
656
657 @ Enable unaligned access on v6, to allow better code generation
658 @ for the decompressor C code:
659 __armv6_mmu_cache_on:
660                 mrc     p15, 0, r0, c1, c0, 0   @ read SCTLR
661                 bic     r0, r0, #2              @ A (no unaligned access fault)
662                 orr     r0, r0, #1 << 22        @ U (v6 unaligned access model)
663                 mcr     p15, 0, r0, c1, c0, 0   @ write SCTLR
664                 b       __armv4_mmu_cache_on
665
666 __arm926ejs_mmu_cache_on:
667 #ifdef CONFIG_CPU_DCACHE_WRITETHROUGH
668                 mov     r0, #4                  @ put dcache in WT mode
669                 mcr     p15, 7, r0, c15, c0, 0
670 #endif
671
672 __armv4_mmu_cache_on:
673                 mov     r12, lr
674 #ifdef CONFIG_MMU
675                 mov     r6, #CB_BITS | 0x12     @ U
676                 bl      __setup_mmu
677                 mov     r0, #0
678                 mcr     p15, 0, r0, c7, c10, 4  @ drain write buffer
679                 mcr     p15, 0, r0, c8, c7, 0   @ flush I,D TLBs
680                 mrc     p15, 0, r0, c1, c0, 0   @ read control reg
681                 orr     r0, r0, #0x5000         @ I-cache enable, RR cache replacement
682                 orr     r0, r0, #0x0030
683  ARM_BE8(       orr     r0, r0, #1 << 25 )      @ big-endian page tables
684                 bl      __common_mmu_cache_on
685                 mov     r0, #0
686                 mcr     p15, 0, r0, c8, c7, 0   @ flush I,D TLBs
687 #endif
688                 mov     pc, r12
689
690 __armv7_mmu_cache_on:
691                 mov     r12, lr
692 #ifdef CONFIG_MMU
693                 mrc     p15, 0, r11, c0, c1, 4  @ read ID_MMFR0
694                 tst     r11, #0xf               @ VMSA
695                 movne   r6, #CB_BITS | 0x02     @ !XN
696                 blne    __setup_mmu
697                 mov     r0, #0
698                 mcr     p15, 0, r0, c7, c10, 4  @ drain write buffer
699                 tst     r11, #0xf               @ VMSA
700                 mcrne   p15, 0, r0, c8, c7, 0   @ flush I,D TLBs
701 #endif
702                 mrc     p15, 0, r0, c1, c0, 0   @ read control reg
703                 bic     r0, r0, #1 << 28        @ clear SCTLR.TRE
704                 orr     r0, r0, #0x5000         @ I-cache enable, RR cache replacement
705                 orr     r0, r0, #0x003c         @ write buffer
706                 bic     r0, r0, #2              @ A (no unaligned access fault)
707                 orr     r0, r0, #1 << 22        @ U (v6 unaligned access model)
708                                                 @ (needed for ARM1176)
709 #ifdef CONFIG_MMU
710  ARM_BE8(       orr     r0, r0, #1 << 25 )      @ big-endian page tables
711                 mrcne   p15, 0, r6, c2, c0, 2   @ read ttb control reg
712                 orrne   r0, r0, #1              @ MMU enabled
713                 movne   r1, #0xfffffffd         @ domain 0 = client
714                 bic     r6, r6, #1 << 31        @ 32-bit translation system
715                 bic     r6, r6, #3 << 0         @ use only ttbr0
716                 mcrne   p15, 0, r3, c2, c0, 0   @ load page table pointer
717                 mcrne   p15, 0, r0, c8, c7, 0   @ flush I,D TLBs
718                 mcr     p15, 0, r0, c7, c5, 4   @ ISB
719                 mcrne   p15, 0, r1, c3, c0, 0   @ load domain access control
720                 mcrne   p15, 0, r6, c2, c0, 2   @ load ttb control
721 #endif
722                 mcr     p15, 0, r0, c7, c5, 4   @ ISB
723                 mcr     p15, 0, r0, c1, c0, 0   @ load control register
724                 mrc     p15, 0, r0, c1, c0, 0   @ and read it back
725                 mov     r0, #0
726                 mcr     p15, 0, r0, c7, c5, 4   @ ISB
727                 mov     pc, r12
728
729 __fa526_cache_on:
730                 mov     r12, lr
731                 mov     r6, #CB_BITS | 0x12     @ U
732                 bl      __setup_mmu
733                 mov     r0, #0
734                 mcr     p15, 0, r0, c7, c7, 0   @ Invalidate whole cache
735                 mcr     p15, 0, r0, c7, c10, 4  @ drain write buffer
736                 mcr     p15, 0, r0, c8, c7, 0   @ flush UTLB
737                 mrc     p15, 0, r0, c1, c0, 0   @ read control reg
738                 orr     r0, r0, #0x1000         @ I-cache enable
739                 bl      __common_mmu_cache_on
740                 mov     r0, #0
741                 mcr     p15, 0, r0, c8, c7, 0   @ flush UTLB
742                 mov     pc, r12
743
744 __common_mmu_cache_on:
745 #ifndef CONFIG_THUMB2_KERNEL
746 #ifndef DEBUG
747                 orr     r0, r0, #0x000d         @ Write buffer, mmu
748 #endif
749                 mov     r1, #-1
750                 mcr     p15, 0, r3, c2, c0, 0   @ load page table pointer
751                 mcr     p15, 0, r1, c3, c0, 0   @ load domain access control
752                 b       1f
753                 .align  5                       @ cache line aligned
754 1:              mcr     p15, 0, r0, c1, c0, 0   @ load control register
755                 mrc     p15, 0, r0, c1, c0, 0   @ and read it back to
756                 sub     pc, lr, r0, lsr #32     @ properly flush pipeline
757 #endif
758
759 #define PROC_ENTRY_SIZE (4*5)
760
761 /*
762  * Here follow the relocatable cache support functions for the
763  * various processors.  This is a generic hook for locating an
764  * entry and jumping to an instruction at the specified offset
765  * from the start of the block.  Please note this is all position
766  * independent code.
767  *
768  *  r1  = corrupted
769  *  r2  = corrupted
770  *  r3  = block offset
771  *  r9  = corrupted
772  *  r12 = corrupted
773  */
774
775 call_cache_fn:  adr     r12, proc_types
776 #ifdef CONFIG_CPU_CP15
777                 mrc     p15, 0, r9, c0, c0      @ get processor ID
778 #else
779                 ldr     r9, =CONFIG_PROCESSOR_ID
780 #endif
781 1:              ldr     r1, [r12, #0]           @ get value
782                 ldr     r2, [r12, #4]           @ get mask
783                 eor     r1, r1, r9              @ (real ^ match)
784                 tst     r1, r2                  @       & mask
785  ARM(           addeq   pc, r12, r3             ) @ call cache function
786  THUMB(         addeq   r12, r3                 )
787  THUMB(         moveq   pc, r12                 ) @ call cache function
788                 add     r12, r12, #PROC_ENTRY_SIZE
789                 b       1b
790
791 /*
792  * Table for cache operations.  This is basically:
793  *   - CPU ID match
794  *   - CPU ID mask
795  *   - 'cache on' method instruction
796  *   - 'cache off' method instruction
797  *   - 'cache flush' method instruction
798  *
799  * We match an entry using: ((real_id ^ match) & mask) == 0
800  *
801  * Writethrough caches generally only need 'on' and 'off'
802  * methods.  Writeback caches _must_ have the flush method
803  * defined.
804  */
805                 .align  2
806                 .type   proc_types,#object
807 proc_types:
808                 .word   0x41000000              @ old ARM ID
809                 .word   0xff00f000
810                 mov     pc, lr
811  THUMB(         nop                             )
812                 mov     pc, lr
813  THUMB(         nop                             )
814                 mov     pc, lr
815  THUMB(         nop                             )
816
817                 .word   0x41007000              @ ARM7/710
818                 .word   0xfff8fe00
819                 mov     pc, lr
820  THUMB(         nop                             )
821                 mov     pc, lr
822  THUMB(         nop                             )
823                 mov     pc, lr
824  THUMB(         nop                             )
825
826                 .word   0x41807200              @ ARM720T (writethrough)
827                 .word   0xffffff00
828                 W(b)    __armv4_mmu_cache_on
829                 W(b)    __armv4_mmu_cache_off
830                 mov     pc, lr
831  THUMB(         nop                             )
832
833                 .word   0x41007400              @ ARM74x
834                 .word   0xff00ff00
835                 W(b)    __armv3_mpu_cache_on
836                 W(b)    __armv3_mpu_cache_off
837                 W(b)    __armv3_mpu_cache_flush
838                 
839                 .word   0x41009400              @ ARM94x
840                 .word   0xff00ff00
841                 W(b)    __armv4_mpu_cache_on
842                 W(b)    __armv4_mpu_cache_off
843                 W(b)    __armv4_mpu_cache_flush
844
845                 .word   0x41069260              @ ARM926EJ-S (v5TEJ)
846                 .word   0xff0ffff0
847                 W(b)    __arm926ejs_mmu_cache_on
848                 W(b)    __armv4_mmu_cache_off
849                 W(b)    __armv5tej_mmu_cache_flush
850
851                 .word   0x00007000              @ ARM7 IDs
852                 .word   0x0000f000
853                 mov     pc, lr
854  THUMB(         nop                             )
855                 mov     pc, lr
856  THUMB(         nop                             )
857                 mov     pc, lr
858  THUMB(         nop                             )
859
860                 @ Everything from here on will be the new ID system.
861
862                 .word   0x4401a100              @ sa110 / sa1100
863                 .word   0xffffffe0
864                 W(b)    __armv4_mmu_cache_on
865                 W(b)    __armv4_mmu_cache_off
866                 W(b)    __armv4_mmu_cache_flush
867
868                 .word   0x6901b110              @ sa1110
869                 .word   0xfffffff0
870                 W(b)    __armv4_mmu_cache_on
871                 W(b)    __armv4_mmu_cache_off
872                 W(b)    __armv4_mmu_cache_flush
873
874                 .word   0x56056900
875                 .word   0xffffff00              @ PXA9xx
876                 W(b)    __armv4_mmu_cache_on
877                 W(b)    __armv4_mmu_cache_off
878                 W(b)    __armv4_mmu_cache_flush
879
880                 .word   0x56158000              @ PXA168
881                 .word   0xfffff000
882                 W(b)    __armv4_mmu_cache_on
883                 W(b)    __armv4_mmu_cache_off
884                 W(b)    __armv5tej_mmu_cache_flush
885
886                 .word   0x56050000              @ Feroceon
887                 .word   0xff0f0000
888                 W(b)    __armv4_mmu_cache_on
889                 W(b)    __armv4_mmu_cache_off
890                 W(b)    __armv5tej_mmu_cache_flush
891
892 #ifdef CONFIG_CPU_FEROCEON_OLD_ID
893                 /* this conflicts with the standard ARMv5TE entry */
894                 .long   0x41009260              @ Old Feroceon
895                 .long   0xff00fff0
896                 b       __armv4_mmu_cache_on
897                 b       __armv4_mmu_cache_off
898                 b       __armv5tej_mmu_cache_flush
899 #endif
900
901                 .word   0x66015261              @ FA526
902                 .word   0xff01fff1
903                 W(b)    __fa526_cache_on
904                 W(b)    __armv4_mmu_cache_off
905                 W(b)    __fa526_cache_flush
906
907                 @ These match on the architecture ID
908
909                 .word   0x00020000              @ ARMv4T
910                 .word   0x000f0000
911                 W(b)    __armv4_mmu_cache_on
912                 W(b)    __armv4_mmu_cache_off
913                 W(b)    __armv4_mmu_cache_flush
914
915                 .word   0x00050000              @ ARMv5TE
916                 .word   0x000f0000
917                 W(b)    __armv4_mmu_cache_on
918                 W(b)    __armv4_mmu_cache_off
919                 W(b)    __armv4_mmu_cache_flush
920
921                 .word   0x00060000              @ ARMv5TEJ
922                 .word   0x000f0000
923                 W(b)    __armv4_mmu_cache_on
924                 W(b)    __armv4_mmu_cache_off
925                 W(b)    __armv5tej_mmu_cache_flush
926
927                 .word   0x0007b000              @ ARMv6
928                 .word   0x000ff000
929                 W(b)    __armv6_mmu_cache_on
930                 W(b)    __armv4_mmu_cache_off
931                 W(b)    __armv6_mmu_cache_flush
932
933                 .word   0x000f0000              @ new CPU Id
934                 .word   0x000f0000
935                 W(b)    __armv7_mmu_cache_on
936                 W(b)    __armv7_mmu_cache_off
937                 W(b)    __armv7_mmu_cache_flush
938
939                 .word   0                       @ unrecognised type
940                 .word   0
941                 mov     pc, lr
942  THUMB(         nop                             )
943                 mov     pc, lr
944  THUMB(         nop                             )
945                 mov     pc, lr
946  THUMB(         nop                             )
947
948                 .size   proc_types, . - proc_types
949
950                 /*
951                  * If you get a "non-constant expression in ".if" statement"
952                  * error from the assembler on this line, check that you have
953                  * not accidentally written a "b" instruction where you should
954                  * have written W(b).
955                  */
956                 .if (. - proc_types) % PROC_ENTRY_SIZE != 0
957                 .error "The size of one or more proc_types entries is wrong."
958                 .endif
959
960 /*
961  * Turn off the Cache and MMU.  ARMv3 does not support
962  * reading the control register, but ARMv4 does.
963  *
964  * On exit,
965  *  r0, r1, r2, r3, r9, r12 corrupted
966  * This routine must preserve:
967  *  r4, r7, r8
968  */
969                 .align  5
970 cache_off:      mov     r3, #12                 @ cache_off function
971                 b       call_cache_fn
972
973 __armv4_mpu_cache_off:
974                 mrc     p15, 0, r0, c1, c0
975                 bic     r0, r0, #0x000d
976                 mcr     p15, 0, r0, c1, c0      @ turn MPU and cache off
977                 mov     r0, #0
978                 mcr     p15, 0, r0, c7, c10, 4  @ drain write buffer
979                 mcr     p15, 0, r0, c7, c6, 0   @ flush D-Cache
980                 mcr     p15, 0, r0, c7, c5, 0   @ flush I-Cache
981                 mov     pc, lr
982
983 __armv3_mpu_cache_off:
984                 mrc     p15, 0, r0, c1, c0
985                 bic     r0, r0, #0x000d
986                 mcr     p15, 0, r0, c1, c0, 0   @ turn MPU and cache off
987                 mov     r0, #0
988                 mcr     p15, 0, r0, c7, c0, 0   @ invalidate whole cache v3
989                 mov     pc, lr
990
991 __armv4_mmu_cache_off:
992 #ifdef CONFIG_MMU
993                 mrc     p15, 0, r0, c1, c0
994                 bic     r0, r0, #0x000d
995                 mcr     p15, 0, r0, c1, c0      @ turn MMU and cache off
996                 mov     r0, #0
997                 mcr     p15, 0, r0, c7, c7      @ invalidate whole cache v4
998                 mcr     p15, 0, r0, c8, c7      @ invalidate whole TLB v4
999 #endif
1000                 mov     pc, lr
1001
1002 __armv7_mmu_cache_off:
1003                 mrc     p15, 0, r0, c1, c0
1004 #ifdef CONFIG_MMU
1005                 bic     r0, r0, #0x000d
1006 #else
1007                 bic     r0, r0, #0x000c
1008 #endif
1009                 mcr     p15, 0, r0, c1, c0      @ turn MMU and cache off
1010                 mov     r12, lr
1011                 bl      __armv7_mmu_cache_flush
1012                 mov     r0, #0
1013 #ifdef CONFIG_MMU
1014                 mcr     p15, 0, r0, c8, c7, 0   @ invalidate whole TLB
1015 #endif
1016                 mcr     p15, 0, r0, c7, c5, 6   @ invalidate BTC
1017                 mcr     p15, 0, r0, c7, c10, 4  @ DSB
1018                 mcr     p15, 0, r0, c7, c5, 4   @ ISB
1019                 mov     pc, r12
1020
1021 /*
1022  * Clean and flush the cache to maintain consistency.
1023  *
1024  * On exit,
1025  *  r1, r2, r3, r9, r10, r11, r12 corrupted
1026  * This routine must preserve:
1027  *  r4, r6, r7, r8
1028  */
1029                 .align  5
1030 cache_clean_flush:
1031                 mov     r3, #16
1032                 b       call_cache_fn
1033
1034 __armv4_mpu_cache_flush:
1035                 mov     r2, #1
1036                 mov     r3, #0
1037                 mcr     p15, 0, ip, c7, c6, 0   @ invalidate D cache
1038                 mov     r1, #7 << 5             @ 8 segments
1039 1:              orr     r3, r1, #63 << 26       @ 64 entries
1040 2:              mcr     p15, 0, r3, c7, c14, 2  @ clean & invalidate D index
1041                 subs    r3, r3, #1 << 26
1042                 bcs     2b                      @ entries 63 to 0
1043                 subs    r1, r1, #1 << 5
1044                 bcs     1b                      @ segments 7 to 0
1045
1046                 teq     r2, #0
1047                 mcrne   p15, 0, ip, c7, c5, 0   @ invalidate I cache
1048                 mcr     p15, 0, ip, c7, c10, 4  @ drain WB
1049                 mov     pc, lr
1050                 
1051 __fa526_cache_flush:
1052                 mov     r1, #0
1053                 mcr     p15, 0, r1, c7, c14, 0  @ clean and invalidate D cache
1054                 mcr     p15, 0, r1, c7, c5, 0   @ flush I cache
1055                 mcr     p15, 0, r1, c7, c10, 4  @ drain WB
1056                 mov     pc, lr
1057
1058 __armv6_mmu_cache_flush:
1059                 mov     r1, #0
1060                 mcr     p15, 0, r1, c7, c14, 0  @ clean+invalidate D
1061                 mcr     p15, 0, r1, c7, c5, 0   @ invalidate I+BTB
1062                 mcr     p15, 0, r1, c7, c15, 0  @ clean+invalidate unified
1063                 mcr     p15, 0, r1, c7, c10, 4  @ drain WB
1064                 mov     pc, lr
1065
1066 __armv7_mmu_cache_flush:
1067                 mrc     p15, 0, r10, c0, c1, 5  @ read ID_MMFR1
1068                 tst     r10, #0xf << 16         @ hierarchical cache (ARMv7)
1069                 mov     r10, #0
1070                 beq     hierarchical
1071                 mcr     p15, 0, r10, c7, c14, 0 @ clean+invalidate D
1072                 b       iflush
1073 hierarchical:
1074                 mcr     p15, 0, r10, c7, c10, 5 @ DMB
1075                 stmfd   sp!, {r0-r7, r9-r11}
1076                 mrc     p15, 1, r0, c0, c0, 1   @ read clidr
1077                 ands    r3, r0, #0x7000000      @ extract loc from clidr
1078                 mov     r3, r3, lsr #23         @ left align loc bit field
1079                 beq     finished                @ if loc is 0, then no need to clean
1080                 mov     r10, #0                 @ start clean at cache level 0
1081 loop1:
1082                 add     r2, r10, r10, lsr #1    @ work out 3x current cache level
1083                 mov     r1, r0, lsr r2          @ extract cache type bits from clidr
1084                 and     r1, r1, #7              @ mask of the bits for current cache only
1085                 cmp     r1, #2                  @ see what cache we have at this level
1086                 blt     skip                    @ skip if no cache, or just i-cache
1087                 mcr     p15, 2, r10, c0, c0, 0  @ select current cache level in cssr
1088                 mcr     p15, 0, r10, c7, c5, 4  @ isb to sych the new cssr&csidr
1089                 mrc     p15, 1, r1, c0, c0, 0   @ read the new csidr
1090                 and     r2, r1, #7              @ extract the length of the cache lines
1091                 add     r2, r2, #4              @ add 4 (line length offset)
1092                 ldr     r4, =0x3ff
1093                 ands    r4, r4, r1, lsr #3      @ find maximum number on the way size
1094                 clz     r5, r4                  @ find bit position of way size increment
1095                 ldr     r7, =0x7fff
1096                 ands    r7, r7, r1, lsr #13     @ extract max number of the index size
1097 loop2:
1098                 mov     r9, r4                  @ create working copy of max way size
1099 loop3:
1100  ARM(           orr     r11, r10, r9, lsl r5    ) @ factor way and cache number into r11
1101  ARM(           orr     r11, r11, r7, lsl r2    ) @ factor index number into r11
1102  THUMB(         lsl     r6, r9, r5              )
1103  THUMB(         orr     r11, r10, r6            ) @ factor way and cache number into r11
1104  THUMB(         lsl     r6, r7, r2              )
1105  THUMB(         orr     r11, r11, r6            ) @ factor index number into r11
1106                 mcr     p15, 0, r11, c7, c14, 2 @ clean & invalidate by set/way
1107                 subs    r9, r9, #1              @ decrement the way
1108                 bge     loop3
1109                 subs    r7, r7, #1              @ decrement the index
1110                 bge     loop2
1111 skip:
1112                 add     r10, r10, #2            @ increment cache number
1113                 cmp     r3, r10
1114                 bgt     loop1
1115 finished:
1116                 ldmfd   sp!, {r0-r7, r9-r11}
1117                 mov     r10, #0                 @ swith back to cache level 0
1118                 mcr     p15, 2, r10, c0, c0, 0  @ select current cache level in cssr
1119 iflush:
1120                 mcr     p15, 0, r10, c7, c10, 4 @ DSB
1121                 mcr     p15, 0, r10, c7, c5, 0  @ invalidate I+BTB
1122                 mcr     p15, 0, r10, c7, c10, 4 @ DSB
1123                 mcr     p15, 0, r10, c7, c5, 4  @ ISB
1124                 mov     pc, lr
1125
1126 __armv5tej_mmu_cache_flush:
1127 1:              mrc     p15, 0, r15, c7, c14, 3 @ test,clean,invalidate D cache
1128                 bne     1b
1129                 mcr     p15, 0, r0, c7, c5, 0   @ flush I cache
1130                 mcr     p15, 0, r0, c7, c10, 4  @ drain WB
1131                 mov     pc, lr
1132
1133 __armv4_mmu_cache_flush:
1134                 mov     r2, #64*1024            @ default: 32K dcache size (*2)
1135                 mov     r11, #32                @ default: 32 byte line size
1136                 mrc     p15, 0, r3, c0, c0, 1   @ read cache type
1137                 teq     r3, r9                  @ cache ID register present?
1138                 beq     no_cache_id
1139                 mov     r1, r3, lsr #18
1140                 and     r1, r1, #7
1141                 mov     r2, #1024
1142                 mov     r2, r2, lsl r1          @ base dcache size *2
1143                 tst     r3, #1 << 14            @ test M bit
1144                 addne   r2, r2, r2, lsr #1      @ +1/2 size if M == 1
1145                 mov     r3, r3, lsr #12
1146                 and     r3, r3, #3
1147                 mov     r11, #8
1148                 mov     r11, r11, lsl r3        @ cache line size in bytes
1149 no_cache_id:
1150                 mov     r1, pc
1151                 bic     r1, r1, #63             @ align to longest cache line
1152                 add     r2, r1, r2
1153 1:
1154  ARM(           ldr     r3, [r1], r11           ) @ s/w flush D cache
1155  THUMB(         ldr     r3, [r1]                ) @ s/w flush D cache
1156  THUMB(         add     r1, r1, r11             )
1157                 teq     r1, r2
1158                 bne     1b
1159
1160                 mcr     p15, 0, r1, c7, c5, 0   @ flush I cache
1161                 mcr     p15, 0, r1, c7, c6, 0   @ flush D cache
1162                 mcr     p15, 0, r1, c7, c10, 4  @ drain WB
1163                 mov     pc, lr
1164
1165 __armv3_mmu_cache_flush:
1166 __armv3_mpu_cache_flush:
1167                 mov     r1, #0
1168                 mcr     p15, 0, r1, c7, c0, 0   @ invalidate whole cache v3
1169                 mov     pc, lr
1170
1171 /*
1172  * Various debugging routines for printing hex characters and
1173  * memory, which again must be relocatable.
1174  */
1175 #ifdef DEBUG
1176                 .align  2
1177                 .type   phexbuf,#object
1178 phexbuf:        .space  12
1179                 .size   phexbuf, . - phexbuf
1180
1181 @ phex corrupts {r0, r1, r2, r3}
1182 phex:           adr     r3, phexbuf
1183                 mov     r2, #0
1184                 strb    r2, [r3, r1]
1185 1:              subs    r1, r1, #1
1186                 movmi   r0, r3
1187                 bmi     puts
1188                 and     r2, r0, #15
1189                 mov     r0, r0, lsr #4
1190                 cmp     r2, #10
1191                 addge   r2, r2, #7
1192                 add     r2, r2, #'0'
1193                 strb    r2, [r3, r1]
1194                 b       1b
1195
1196 @ puts corrupts {r0, r1, r2, r3}
1197 puts:           loadsp  r3, r1
1198 1:              ldrb    r2, [r0], #1
1199                 teq     r2, #0
1200                 moveq   pc, lr
1201 2:              writeb  r2, r3
1202                 mov     r1, #0x00020000
1203 3:              subs    r1, r1, #1
1204                 bne     3b
1205                 teq     r2, #'\n'
1206                 moveq   r2, #'\r'
1207                 beq     2b
1208                 teq     r0, #0
1209                 bne     1b
1210                 mov     pc, lr
1211 @ putc corrupts {r0, r1, r2, r3}
1212 putc:
1213                 mov     r2, r0
1214                 mov     r0, #0
1215                 loadsp  r3, r1
1216                 b       2b
1217
1218 @ memdump corrupts {r0, r1, r2, r3, r10, r11, r12, lr}
1219 memdump:        mov     r12, r0
1220                 mov     r10, lr
1221                 mov     r11, #0
1222 2:              mov     r0, r11, lsl #2
1223                 add     r0, r0, r12
1224                 mov     r1, #8
1225                 bl      phex
1226                 mov     r0, #':'
1227                 bl      putc
1228 1:              mov     r0, #' '
1229                 bl      putc
1230                 ldr     r0, [r12, r11, lsl #2]
1231                 mov     r1, #8
1232                 bl      phex
1233                 and     r0, r11, #7
1234                 teq     r0, #3
1235                 moveq   r0, #' '
1236                 bleq    putc
1237                 and     r0, r11, #7
1238                 add     r11, r11, #1
1239                 teq     r0, #7
1240                 bne     1b
1241                 mov     r0, #'\n'
1242                 bl      putc
1243                 cmp     r11, #64
1244                 blt     2b
1245                 mov     pc, r10
1246 #endif
1247
1248                 .ltorg
1249
1250 #ifdef CONFIG_ARM_VIRT_EXT
1251 .align 5
1252 __hyp_reentry_vectors:
1253                 W(b)    .                       @ reset
1254                 W(b)    .                       @ undef
1255                 W(b)    .                       @ svc
1256                 W(b)    .                       @ pabort
1257                 W(b)    .                       @ dabort
1258                 W(b)    __enter_kernel          @ hyp
1259                 W(b)    .                       @ irq
1260                 W(b)    .                       @ fiq
1261 #endif /* CONFIG_ARM_VIRT_EXT */
1262
1263 __enter_kernel:
1264                 mov     r0, #0                  @ must be 0
1265  ARM(           mov     pc, r4  )               @ call kernel
1266  THUMB(         bx      r4      )               @ entry point is always ARM
1267
1268 reloc_code_end:
1269
1270                 .align
1271                 .section ".stack", "aw", %nobits
1272 .L_user_stack:  .space  4096
1273 .L_user_stack_end: