blob: fe4d9c3ad761c8dfaadce6e214d709417947f396 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/arch/arm/boot/compressed/head.S
3 *
4 * Copyright (C) 1996-2002 Russell King
Hyok S. Choi10c2df62006-03-27 10:21:34 +01005 * Copyright (C) 2004 Hyok S. Choi (MPU support)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 *
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 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070011#include <linux/linkage.h>
Dave Martin424e5992012-02-10 18:07:07 -080012#include <asm/assembler.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013
14/*
15 * Debugging stuff
16 *
17 * Note that these macros must not contain any code which is not
18 * 100% relocatable. Any attempt to do so will result in a crash.
19 * Please select one of the following when turning on debugging.
20 */
21#ifdef DEBUG
Russell King5cd0c342005-05-03 12:18:46 +010022
Russell King5cd0c342005-05-03 12:18:46 +010023#if defined(CONFIG_DEBUG_ICEDCC)
Tony Lindgren7d95ded2006-09-20 13:03:34 +010024
Stephen Boyddfad5492011-03-23 22:46:15 +010025#if defined(CONFIG_CPU_V6) || defined(CONFIG_CPU_V6K) || defined(CONFIG_CPU_V7)
Tony Lindgren4e6d4882010-02-01 23:26:53 +010026 .macro loadsp, rb, tmp
Tony Lindgren7d95ded2006-09-20 13:03:34 +010027 .endm
28 .macro writeb, ch, rb
29 mcr p14, 0, \ch, c0, c5, 0
30 .endm
Jean-Christop PLAGNIOL-VILLARDc633c3c2009-02-25 04:20:40 +010031#elif defined(CONFIG_CPU_XSCALE)
Tony Lindgren4e6d4882010-02-01 23:26:53 +010032 .macro loadsp, rb, tmp
Jean-Christop PLAGNIOL-VILLARDc633c3c2009-02-25 04:20:40 +010033 .endm
34 .macro writeb, ch, rb
35 mcr p14, 0, \ch, c8, c0, 0
36 .endm
Tony Lindgren7d95ded2006-09-20 13:03:34 +010037#else
Tony Lindgren4e6d4882010-02-01 23:26:53 +010038 .macro loadsp, rb, tmp
Linus Torvalds1da177e2005-04-16 15:20:36 -070039 .endm
Russell King224b5be2005-11-16 14:59:51 +000040 .macro writeb, ch, rb
Uwe Kleine-König41a9e682007-12-13 09:31:34 +010041 mcr p14, 0, \ch, c1, c0, 0
Linus Torvalds1da177e2005-04-16 15:20:36 -070042 .endm
Tony Lindgren7d95ded2006-09-20 13:03:34 +010043#endif
44
Russell King5cd0c342005-05-03 12:18:46 +010045#else
Russell King224b5be2005-11-16 14:59:51 +000046
Shawn Guo4beba082012-12-11 07:06:37 +010047#include CONFIG_DEBUG_LL_INCLUDE
Russell King224b5be2005-11-16 14:59:51 +000048
Russell King5cd0c342005-05-03 12:18:46 +010049 .macro writeb, ch, rb
50 senduart \ch, \rb
51 .endm
52
Russell King224b5be2005-11-16 14:59:51 +000053#if defined(CONFIG_ARCH_SA1100)
Tony Lindgren4e6d4882010-02-01 23:26:53 +010054 .macro loadsp, rb, tmp
Linus Torvalds1da177e2005-04-16 15:20:36 -070055 mov \rb, #0x80000000 @ physical base address
Russell King224b5be2005-11-16 14:59:51 +000056#ifdef CONFIG_DEBUG_LL_SER3
Linus Torvalds1da177e2005-04-16 15:20:36 -070057 add \rb, \rb, #0x00050000 @ Ser3
Russell King224b5be2005-11-16 14:59:51 +000058#else
Linus Torvalds1da177e2005-04-16 15:20:36 -070059 add \rb, \rb, #0x00010000 @ Ser1
Russell King224b5be2005-11-16 14:59:51 +000060#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070061 .endm
Kukjin Kimb130d5c2012-02-03 14:29:23 +090062#elif defined(CONFIG_ARCH_S3C24XX)
Tony Lindgren4e6d4882010-02-01 23:26:53 +010063 .macro loadsp, rb, tmp
Linus Torvalds1da177e2005-04-16 15:20:36 -070064 mov \rb, #0x50000000
Ben Dooksc7657842007-07-22 16:11:20 +010065 add \rb, \rb, #0x4000 * CONFIG_S3C_LOWLEVEL_UART_PORT
Linus Torvalds1da177e2005-04-16 15:20:36 -070066 .endm
Linus Torvalds1da177e2005-04-16 15:20:36 -070067#else
Tony Lindgren4e6d4882010-02-01 23:26:53 +010068 .macro loadsp, rb, tmp
69 addruart \rb, \tmp
Russell King224b5be2005-11-16 14:59:51 +000070 .endm
Linus Torvalds1da177e2005-04-16 15:20:36 -070071#endif
72#endif
Russell King5cd0c342005-05-03 12:18:46 +010073#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070074
75 .macro kputc,val
76 mov r0, \val
77 bl putc
78 .endm
79
80 .macro kphex,val,len
81 mov r0, \val
82 mov r1, #\len
83 bl phex
84 .endm
85
86 .macro debug_reloc_start
87#ifdef DEBUG
88 kputc #'\n'
89 kphex r6, 8 /* processor id */
90 kputc #':'
91 kphex r7, 8 /* architecture id */
Hyok S. Choif12d0d72006-09-26 17:36:37 +090092#ifdef CONFIG_CPU_CP15
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 kputc #':'
94 mrc p15, 0, r0, c1, c0
95 kphex r0, 8 /* control reg */
Hyok S. Choif12d0d72006-09-26 17:36:37 +090096#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 kputc #'\n'
98 kphex r5, 8 /* decompressed kernel start */
99 kputc #'-'
Russell Kingf4619022006-01-12 17:17:57 +0000100 kphex r9, 8 /* decompressed kernel end */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 kputc #'>'
102 kphex r4, 8 /* kernel execution address */
103 kputc #'\n'
104#endif
105 .endm
106
107 .macro debug_reloc_end
108#ifdef DEBUG
109 kphex r5, 8 /* end of kernel */
110 kputc #'\n'
111 mov r0, r4
112 bl memdump /* dump 256 bytes at start of kernel */
113#endif
114 .endm
115
116 .section ".start", #alloc, #execinstr
117/*
118 * sort out different calling conventions
119 */
120 .align
Dave Martin26e5ca92010-11-29 19:43:27 +0100121 .arm @ Always enter in ARM state
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122start:
123 .type start,#function
Nicolas Pitreb11fe382011-02-12 22:25:27 +0100124 .rept 7
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 mov r0, r0
126 .endr
Nicolas Pitreb11fe382011-02-12 22:25:27 +0100127 ARM( mov r0, r0 )
128 ARM( b 1f )
129 THUMB( adr r12, BSYM(1f) )
130 THUMB( bx r12 )
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 .word 0x016f2818 @ Magic numbers to help the loader
133 .word start @ absolute load/run zImage address
134 .word _edata @ zImage end address
Dave Martin26e5ca92010-11-29 19:43:27 +0100135 THUMB( .thumb )
Dave Martin424e5992012-02-10 18:07:07 -08001361:
137 mrs r9, cpsr
138#ifdef CONFIG_ARM_VIRT_EXT
139 bl __hyp_stub_install @ get into SVC mode, reversibly
140#endif
141 mov r7, r1 @ save architecture ID
Russell Kingf4619022006-01-12 17:17:57 +0000142 mov r8, r2 @ save atags pointer
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143
144#ifndef __ARM_ARCH_2__
145 /*
146 * Booting from Angel - need to enter SVC mode and disable
147 * FIQs/IRQs (numeric definitions from angel arm.h source).
148 * We only do this if we were in user mode on entry.
149 */
150 mrs r2, cpsr @ get current mode
151 tst r2, #3 @ not user?
152 bne not_angel
153 mov r0, #0x17 @ angel_SWIreason_EnterSVC
Catalin Marinas0e056f22009-07-24 12:32:58 +0100154 ARM( swi 0x123456 ) @ angel_SWI_ARM
155 THUMB( svc 0xab ) @ angel_SWI_THUMB
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156not_angel:
Dave Martin424e5992012-02-10 18:07:07 -0800157 safe_svcmode_maskall r0
158 msr spsr_cxsf, r9 @ Save the CPU boot mode in
159 @ SPSR
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160#else
161 teqp pc, #0x0c000003 @ turn off interrupts
162#endif
163
164 /*
165 * Note that some cache flushing and other stuff may
166 * be needed here - is there an Angel SWI call for this?
167 */
168
169 /*
170 * some architecture specific code can be inserted
Russell Kingf4619022006-01-12 17:17:57 +0000171 * by the linker here, but it should preserve r7, r8, and r9.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 */
173
174 .text
Nicolas Pitre6d7d0ae2011-02-21 07:06:45 +0100175
Eric Miaoe69edc792010-07-05 15:56:50 +0200176#ifdef CONFIG_AUTO_ZRELADDR
177 @ determine final kernel image address
Dave Martinbfa64c42010-11-29 19:43:26 +0100178 mov r4, pc
179 and r4, r4, #0xf8000000
Eric Miaoe69edc792010-07-05 15:56:50 +0200180 add r4, r4, #TEXT_OFFSET
181#else
Russell King9e84ed62010-09-09 22:39:41 +0100182 ldr r4, =zreladdr
Eric Miaoe69edc792010-07-05 15:56:50 +0200183#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184
Nicolas Pitre6d7d0ae2011-02-21 07:06:45 +0100185 bl cache_on
186
187restart: adr r0, LC0
Nicolas Pitre34cc1a82011-04-19 15:42:43 -0400188 ldmia r0, {r1, r2, r3, r6, r10, r11, r12}
Nicolas Pitreadcc2592011-04-27 16:15:11 -0400189 ldr sp, [r0, #28]
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190
191 /*
Nicolas Pitre6d7d0ae2011-02-21 07:06:45 +0100192 * We might be running at a different address. We need
193 * to fix up various pointers.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 */
Nicolas Pitre6d7d0ae2011-02-21 07:06:45 +0100195 sub r0, r0, r1 @ calculate the delta offset
Nicolas Pitre6d7d0ae2011-02-21 07:06:45 +0100196 add r6, r6, r0 @ _edata
Nicolas Pitre34cc1a82011-04-19 15:42:43 -0400197 add r10, r10, r0 @ inflated kernel size location
198
199 /*
200 * The kernel build system appends the size of the
201 * decompressed kernel at the end of the compressed data
202 * in little-endian form.
203 */
204 ldrb r9, [r10, #0]
205 ldrb lr, [r10, #1]
206 orr r9, r9, lr, lsl #8
207 ldrb lr, [r10, #2]
208 ldrb r10, [r10, #3]
209 orr r9, r9, lr, lsl #16
210 orr r9, r9, r10, lsl #24
Nicolas Pitre6d7d0ae2011-02-21 07:06:45 +0100211
212#ifndef CONFIG_ZBOOT_ROM
213 /* malloc space is above the relocated stack (64k max) */
214 add sp, sp, r0
215 add r10, sp, #0x10000
216#else
217 /*
218 * With ZBOOT_ROM the bss/stack is non relocatable,
219 * but someone could still run this code from RAM,
220 * in which case our reference is _edata.
221 */
222 mov r10, r6
223#endif
224
John Bonesioe2a6a3a2011-05-27 18:45:50 -0400225 mov r5, #0 @ init dtb size to 0
226#ifdef CONFIG_ARM_APPENDED_DTB
227/*
228 * r0 = delta
229 * r2 = BSS start
230 * r3 = BSS end
231 * r4 = final kernel address
232 * r5 = appended dtb size (still unknown)
233 * r6 = _edata
234 * r7 = architecture ID
235 * r8 = atags/device tree pointer
236 * r9 = size of decompressed image
237 * r10 = end of this image, including bss/stack/malloc space if non XIP
238 * r11 = GOT start
239 * r12 = GOT end
240 * sp = stack pointer
241 *
242 * if there are device trees (dtb) appended to zImage, advance r10 so that the
243 * dtb data will get relocated along with the kernel if necessary.
244 */
245
246 ldr lr, [r6, #0]
247#ifndef __ARMEB__
248 ldr r1, =0xedfe0dd0 @ sig is 0xd00dfeed big endian
249#else
250 ldr r1, =0xd00dfeed
251#endif
252 cmp lr, r1
253 bne dtb_check_done @ not found
254
Nicolas Pitreb90b9a32011-09-13 22:37:07 -0400255#ifdef CONFIG_ARM_ATAG_DTB_COMPAT
256 /*
257 * OK... Let's do some funky business here.
258 * If we do have a DTB appended to zImage, and we do have
259 * an ATAG list around, we want the later to be translated
260 * and folded into the former here. To be on the safe side,
261 * let's temporarily move the stack away into the malloc
262 * area. No GOT fixup has occurred yet, but none of the
263 * code we're about to call uses any global variable.
264 */
265 add sp, sp, #0x10000
266 stmfd sp!, {r0-r3, ip, lr}
267 mov r0, r8
268 mov r1, r6
269 sub r2, sp, r6
270 bl atags_to_fdt
271
272 /*
273 * If returned value is 1, there is no ATAG at the location
274 * pointed by r8. Try the typical 0x100 offset from start
275 * of RAM and hope for the best.
276 */
277 cmp r0, #1
Nicolas Pitre531a6a92011-10-24 13:30:32 +0100278 sub r0, r4, #TEXT_OFFSET
279 add r0, r0, #0x100
Nicolas Pitreb90b9a32011-09-13 22:37:07 -0400280 mov r1, r6
281 sub r2, sp, r6
Marc Zyngier9c5fd9e2012-04-11 14:52:55 +0100282 bleq atags_to_fdt
Nicolas Pitreb90b9a32011-09-13 22:37:07 -0400283
284 ldmfd sp!, {r0-r3, ip, lr}
285 sub sp, sp, #0x10000
286#endif
287
John Bonesioe2a6a3a2011-05-27 18:45:50 -0400288 mov r8, r6 @ use the appended device tree
289
Nicolas Pitre5ffb04f2011-06-12 01:07:33 -0400290 /*
291 * Make sure that the DTB doesn't end up in the final
292 * kernel's .bss area. To do so, we adjust the decompressed
293 * kernel size to compensate if that .bss size is larger
294 * than the relocated code.
295 */
296 ldr r5, =_kernel_bss_size
297 adr r1, wont_overwrite
298 sub r1, r6, r1
299 subs r1, r5, r1
300 addhi r9, r9, r1
301
John Bonesioe2a6a3a2011-05-27 18:45:50 -0400302 /* Get the dtb's size */
303 ldr r5, [r6, #4]
304#ifndef __ARMEB__
305 /* convert r5 (dtb size) to little endian */
306 eor r1, r5, r5, ror #16
307 bic r1, r1, #0x00ff0000
308 mov r5, r5, ror #8
309 eor r5, r5, r1, lsr #8
310#endif
311
312 /* preserve 64-bit alignment */
313 add r5, r5, #7
314 bic r5, r5, #7
315
316 /* relocate some pointers past the appended dtb */
317 add r6, r6, r5
318 add r10, r10, r5
319 add sp, sp, r5
320dtb_check_done:
321#endif
322
Nicolas Pitre6d7d0ae2011-02-21 07:06:45 +0100323/*
324 * Check to see if we will overwrite ourselves.
325 * r4 = final kernel address
Nicolas Pitre6d7d0ae2011-02-21 07:06:45 +0100326 * r9 = size of decompressed image
327 * r10 = end of this image, including bss/stack/malloc space if non XIP
328 * We basically want:
Nicolas Pitreea9df3b2011-04-21 22:52:06 -0400329 * r4 - 16k page directory >= r10 -> OK
Nicolas Pitre5ffb04f2011-06-12 01:07:33 -0400330 * r4 + image length <= address of wont_overwrite -> OK
Nicolas Pitre6d7d0ae2011-02-21 07:06:45 +0100331 */
Nicolas Pitreea9df3b2011-04-21 22:52:06 -0400332 add r10, r10, #16384
Nicolas Pitre6d7d0ae2011-02-21 07:06:45 +0100333 cmp r4, r10
334 bhs wont_overwrite
335 add r10, r4, r9
Nicolas Pitre5ffb04f2011-06-12 01:07:33 -0400336 adr r9, wont_overwrite
337 cmp r10, r9
Nicolas Pitre6d7d0ae2011-02-21 07:06:45 +0100338 bls wont_overwrite
339
340/*
341 * Relocate ourselves past the end of the decompressed kernel.
Nicolas Pitre6d7d0ae2011-02-21 07:06:45 +0100342 * r6 = _edata
343 * r10 = end of the decompressed kernel
344 * Because we always copy ahead, we need to do it from the end and go
345 * backward in case the source and destination overlap.
346 */
Nicolas Pitreadcc2592011-04-27 16:15:11 -0400347 /*
348 * Bump to the next 256-byte boundary with the size of
349 * the relocation code added. This avoids overwriting
350 * ourself when the offset is small.
351 */
352 add r10, r10, #((reloc_code_end - restart + 256) & ~255)
Nicolas Pitre6d7d0ae2011-02-21 07:06:45 +0100353 bic r10, r10, #255
354
Nicolas Pitreadcc2592011-04-27 16:15:11 -0400355 /* Get start of code we want to copy and align it down. */
356 adr r5, restart
357 bic r5, r5, #31
358
Dave Martin424e5992012-02-10 18:07:07 -0800359/* Relocate the hyp vector base if necessary */
360#ifdef CONFIG_ARM_VIRT_EXT
361 mrs r0, spsr
362 and r0, r0, #MODE_MASK
363 cmp r0, #HYP_MODE
364 bne 1f
365
366 bl __hyp_get_vectors
367 sub r0, r0, r5
368 add r0, r0, r10
369 bl __hyp_set_vectors
3701:
371#endif
372
Nicolas Pitre6d7d0ae2011-02-21 07:06:45 +0100373 sub r9, r6, r5 @ size to copy
374 add r9, r9, #31 @ rounded up to a multiple
375 bic r9, r9, #31 @ ... of 32 bytes
376 add r6, r9, r5
377 add r9, r9, r10
378
3791: ldmdb r6!, {r0 - r3, r10 - r12, lr}
380 cmp r6, r5
381 stmdb r9!, {r0 - r3, r10 - r12, lr}
382 bhi 1b
383
384 /* Preserve offset to relocated code. */
385 sub r6, r9, r6
386
Tony Lindgren7c2527f2011-04-26 05:37:46 -0700387#ifndef CONFIG_ZBOOT_ROM
388 /* cache_clean_flush may use the stack, so relocate it */
389 add sp, sp, r6
390#endif
391
Nicolas Pitre6d7d0ae2011-02-21 07:06:45 +0100392 bl cache_clean_flush
393
394 adr r0, BSYM(restart)
395 add r0, r0, r6
396 mov pc, r0
397
398wont_overwrite:
399/*
400 * If delta is zero, we are running at the address we were linked at.
401 * r0 = delta
402 * r2 = BSS start
403 * r3 = BSS end
404 * r4 = kernel execution address
John Bonesioe2a6a3a2011-05-27 18:45:50 -0400405 * r5 = appended dtb size (0 if not present)
Nicolas Pitre6d7d0ae2011-02-21 07:06:45 +0100406 * r7 = architecture ID
407 * r8 = atags pointer
408 * r11 = GOT start
409 * r12 = GOT end
410 * sp = stack pointer
411 */
John Bonesioe2a6a3a2011-05-27 18:45:50 -0400412 orrs r1, r0, r5
Nicolas Pitre6d7d0ae2011-02-21 07:06:45 +0100413 beq not_relocated
John Bonesioe2a6a3a2011-05-27 18:45:50 -0400414
Russell King98e12b52010-02-25 23:56:38 +0000415 add r11, r11, r0
Nicolas Pitre6d7d0ae2011-02-21 07:06:45 +0100416 add r12, r12, r0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417
418#ifndef CONFIG_ZBOOT_ROM
419 /*
420 * If we're running fully PIC === CONFIG_ZBOOT_ROM = n,
421 * we need to fix up pointers into the BSS region.
Nicolas Pitre6d7d0ae2011-02-21 07:06:45 +0100422 * Note that the stack pointer has already been fixed up.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 */
424 add r2, r2, r0
425 add r3, r3, r0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426
427 /*
428 * Relocate all entries in the GOT table.
John Bonesioe2a6a3a2011-05-27 18:45:50 -0400429 * Bump bss entries to _edata + dtb size
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 */
Russell King98e12b52010-02-25 23:56:38 +00004311: ldr r1, [r11, #0] @ relocate entries in the GOT
John Bonesioe2a6a3a2011-05-27 18:45:50 -0400432 add r1, r1, r0 @ This fixes up C references
433 cmp r1, r2 @ if entry >= bss_start &&
434 cmphs r3, r1 @ bss_end > entry
435 addhi r1, r1, r5 @ entry += dtb size
436 str r1, [r11], #4 @ next entry
Nicolas Pitre6d7d0ae2011-02-21 07:06:45 +0100437 cmp r11, r12
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 blo 1b
John Bonesioe2a6a3a2011-05-27 18:45:50 -0400439
440 /* bump our bss pointers too */
441 add r2, r2, r5
442 add r3, r3, r5
443
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444#else
445
446 /*
447 * Relocate entries in the GOT table. We only relocate
448 * the entries that are outside the (relocated) BSS region.
449 */
Russell King98e12b52010-02-25 23:56:38 +00004501: ldr r1, [r11, #0] @ relocate entries in the GOT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 cmp r1, r2 @ entry < bss_start ||
452 cmphs r3, r1 @ _end < entry
453 addlo r1, r1, r0 @ table. This fixes up the
Russell King98e12b52010-02-25 23:56:38 +0000454 str r1, [r11], #4 @ C references.
Nicolas Pitre6d7d0ae2011-02-21 07:06:45 +0100455 cmp r11, r12
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 blo 1b
457#endif
458
459not_relocated: mov r0, #0
4601: str r0, [r2], #4 @ clear bss
461 str r0, [r2], #4
462 str r0, [r2], #4
463 str r0, [r2], #4
464 cmp r2, r3
465 blo 1b
466
Nicolas Pitre6d7d0ae2011-02-21 07:06:45 +0100467/*
468 * The C runtime environment should now be setup sufficiently.
469 * Set up some pointers, and start decompressing.
470 * r4 = kernel execution address
471 * r7 = architecture ID
472 * r8 = atags pointer
473 */
474 mov r0, r4
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 mov r1, sp @ malloc space above stack
476 add r2, sp, #0x10000 @ 64k max
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 mov r3, r7
478 bl decompress_kernel
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 bl cache_clean_flush
Nicolas Pitre6d7d0ae2011-02-21 07:06:45 +0100480 bl cache_off
Nicolas Pitre6d7d0ae2011-02-21 07:06:45 +0100481 mov r1, r7 @ restore architecture number
482 mov r2, r8 @ restore atags pointer
Dave Martin424e5992012-02-10 18:07:07 -0800483
484#ifdef CONFIG_ARM_VIRT_EXT
485 mrs r0, spsr @ Get saved CPU boot mode
486 and r0, r0, #MODE_MASK
487 cmp r0, #HYP_MODE @ if not booted in HYP mode...
488 bne __enter_kernel @ boot kernel directly
489
490 adr r12, .L__hyp_reentry_vectors_offset
491 ldr r0, [r12]
492 add r0, r0, r12
493
494 bl __hyp_set_vectors
495 __HVC(0) @ otherwise bounce to hyp mode
496
497 b . @ should never be reached
498
499 .align 2
500.L__hyp_reentry_vectors_offset: .long __hyp_reentry_vectors - .
501#else
502 b __enter_kernel
503#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504
Catalin Marinas88987ef2009-07-24 12:32:52 +0100505 .align 2
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 .type LC0, #object
507LC0: .word LC0 @ r1
508 .word __bss_start @ r2
509 .word _end @ r3
Nicolas Pitre6d7d0ae2011-02-21 07:06:45 +0100510 .word _edata @ r6
Nicolas Pitre34cc1a82011-04-19 15:42:43 -0400511 .word input_data_end - 4 @ r10 (inflated size location)
Russell King98e12b52010-02-25 23:56:38 +0000512 .word _got_start @ r11
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 .word _got_end @ ip
Nicolas Pitre8d7e4cc2011-04-27 14:54:39 -0400514 .word .L_user_stack_end @ sp
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 .size LC0, . - LC0
516
517#ifdef CONFIG_ARCH_RPC
518 .globl params
Eric Miaodb7b2b42010-06-03 15:36:49 +0800519params: ldr r0, =0x10000100 @ params_phys for RPC
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 mov pc, lr
521 .ltorg
522 .align
523#endif
524
525/*
526 * Turn on the cache. We need to setup some page tables so that we
527 * can have both the I and D caches on.
528 *
529 * We place the page tables 16k down from the kernel execution address,
530 * and we hope that nothing else is using it. If we're using it, we
531 * will go pop!
532 *
533 * On entry,
534 * r4 = kernel execution address
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 * r7 = architecture number
Russell Kingf4619022006-01-12 17:17:57 +0000536 * r8 = atags pointer
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 * On exit,
Uwe Kleine-König21b28412010-01-26 22:08:09 +0100538 * r0, r1, r2, r3, r9, r10, r12 corrupted
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 * This routine must preserve:
Nicolas Pitre6d7d0ae2011-02-21 07:06:45 +0100540 * r4, r7, r8
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 */
542 .align 5
543cache_on: mov r3, #8 @ cache_on function
544 b call_cache_fn
545
Hyok S. Choi10c2df62006-03-27 10:21:34 +0100546/*
547 * Initialize the highest priority protection region, PR7
548 * to cover all 32bit address and cacheable and bufferable.
549 */
550__armv4_mpu_cache_on:
551 mov r0, #0x3f @ 4G, the whole
552 mcr p15, 0, r0, c6, c7, 0 @ PR7 Area Setting
553 mcr p15, 0, r0, c6, c7, 1
554
555 mov r0, #0x80 @ PR7
556 mcr p15, 0, r0, c2, c0, 0 @ D-cache on
557 mcr p15, 0, r0, c2, c0, 1 @ I-cache on
558 mcr p15, 0, r0, c3, c0, 0 @ write-buffer on
559
560 mov r0, #0xc000
561 mcr p15, 0, r0, c5, c0, 1 @ I-access permission
562 mcr p15, 0, r0, c5, c0, 0 @ D-access permission
563
564 mov r0, #0
565 mcr p15, 0, r0, c7, c10, 4 @ drain write buffer
566 mcr p15, 0, r0, c7, c5, 0 @ flush(inval) I-Cache
567 mcr p15, 0, r0, c7, c6, 0 @ flush(inval) D-Cache
568 mrc p15, 0, r0, c1, c0, 0 @ read control reg
569 @ ...I .... ..D. WC.M
570 orr r0, r0, #0x002d @ .... .... ..1. 11.1
571 orr r0, r0, #0x1000 @ ...1 .... .... ....
572
573 mcr p15, 0, r0, c1, c0, 0 @ write control reg
574
575 mov r0, #0
576 mcr p15, 0, r0, c7, c5, 0 @ flush(inval) I-Cache
577 mcr p15, 0, r0, c7, c6, 0 @ flush(inval) D-Cache
578 mov pc, lr
579
580__armv3_mpu_cache_on:
581 mov r0, #0x3f @ 4G, the whole
582 mcr p15, 0, r0, c6, c7, 0 @ PR7 Area Setting
583
584 mov r0, #0x80 @ PR7
585 mcr p15, 0, r0, c2, c0, 0 @ cache on
586 mcr p15, 0, r0, c3, c0, 0 @ write-buffer on
587
588 mov r0, #0xc000
589 mcr p15, 0, r0, c5, c0, 0 @ access permission
590
591 mov r0, #0
592 mcr p15, 0, r0, c7, c0, 0 @ invalidate whole cache v3
Uwe Kleine-König4a8d57a2010-01-26 22:14:23 +0100593 /*
594 * ?? ARMv3 MMU does not allow reading the control register,
595 * does this really work on ARMv3 MPU?
596 */
Hyok S. Choi10c2df62006-03-27 10:21:34 +0100597 mrc p15, 0, r0, c1, c0, 0 @ read control reg
598 @ .... .... .... WC.M
599 orr r0, r0, #0x000d @ .... .... .... 11.1
Uwe Kleine-König4a8d57a2010-01-26 22:14:23 +0100600 /* ?? this overwrites the value constructed above? */
Hyok S. Choi10c2df62006-03-27 10:21:34 +0100601 mov r0, #0
602 mcr p15, 0, r0, c1, c0, 0 @ write control reg
603
Uwe Kleine-König4a8d57a2010-01-26 22:14:23 +0100604 /* ?? invalidate for the second time? */
Hyok S. Choi10c2df62006-03-27 10:21:34 +0100605 mcr p15, 0, r0, c7, c0, 0 @ invalidate whole cache v3
606 mov pc, lr
607
Russell King1fdc08a2012-05-10 09:48:34 +0100608#ifdef CONFIG_CPU_DCACHE_WRITETHROUGH
609#define CB_BITS 0x08
610#else
611#define CB_BITS 0x0c
612#endif
613
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614__setup_mmu: sub r3, r4, #16384 @ Page directory size
615 bic r3, r3, #0xff @ Align the pointer
616 bic r3, r3, #0x3f00
617/*
618 * Initialise the page tables, turning on the cacheable and bufferable
619 * bits for the RAM area only.
620 */
621 mov r0, r3
Russell Kingf4619022006-01-12 17:17:57 +0000622 mov r9, r0, lsr #18
623 mov r9, r9, lsl #18 @ start of RAM
624 add r10, r9, #0x10000000 @ a reasonable RAM size
Russell King1fdc08a2012-05-10 09:48:34 +0100625 mov r1, #0x12 @ XN|U + section mapping
626 orr r1, r1, #3 << 10 @ AP=11
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 add r2, r3, #16384
Nicolas Pitre265d5e42006-01-18 22:38:51 +00006281: cmp r1, r9 @ if virt > start of RAM
Russell King1fdc08a2012-05-10 09:48:34 +0100629 cmphs r10, r1 @ && end of RAM > virt
630 bic r1, r1, #0x1c @ clear XN|U + C + B
631 orrlo r1, r1, #0x10 @ Set XN|U for non-RAM
632 orrhs r1, r1, r6 @ set RAM section settings
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 str r1, [r0], #4 @ 1:1 mapping
634 add r1, r1, #1048576
635 teq r0, r2
636 bne 1b
637/*
638 * If ever we are running from Flash, then we surely want the cache
639 * to be enabled also for our execution instance... We map 2MB of it
640 * so there is no map overlap problem for up to 1 MB compressed kernel.
641 * If the execution is in RAM then we would only be duplicating the above.
642 */
Russell King1fdc08a2012-05-10 09:48:34 +0100643 orr r1, r6, #0x04 @ ensure B is set for this
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 orr r1, r1, #3 << 10
Dave Martinbfa64c42010-11-29 19:43:26 +0100645 mov r2, pc
646 mov r2, r2, lsr #20
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 orr r1, r1, r2, lsl #20
648 add r0, r3, r2, lsl #2
649 str r1, [r0], #4
650 add r1, r1, #1048576
651 str r1, [r0]
652 mov pc, lr
Catalin Marinas93ed3972008-08-28 11:22:32 +0100653ENDPROC(__setup_mmu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654
Dave Martin50101922012-11-22 12:50:43 +0100655@ Enable unaligned access on v6, to allow better code generation
656@ for the decompressor C code:
657__armv6_mmu_cache_on:
658 mrc p15, 0, r0, c1, c0, 0 @ read SCTLR
659 bic r0, r0, #2 @ A (no unaligned access fault)
660 orr r0, r0, #1 << 22 @ U (v6 unaligned access model)
661 mcr p15, 0, r0, c1, c0, 0 @ write SCTLR
662 b __armv4_mmu_cache_on
663
Mark A. Greeraf3e4fd2011-04-01 15:41:26 +0100664__arm926ejs_mmu_cache_on:
665#ifdef CONFIG_CPU_DCACHE_WRITETHROUGH
666 mov r0, #4 @ put dcache in WT mode
667 mcr p15, 7, r0, c15, c0, 0
668#endif
669
Hyok S. Choic76b6b42006-03-24 09:53:18 +0000670__armv4_mmu_cache_on:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 mov r12, lr
Catalin Marinas8bdca0a2009-07-24 12:35:06 +0100672#ifdef CONFIG_MMU
Russell King1fdc08a2012-05-10 09:48:34 +0100673 mov r6, #CB_BITS | 0x12 @ U
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 bl __setup_mmu
675 mov r0, #0
676 mcr p15, 0, r0, c7, c10, 4 @ drain write buffer
677 mcr p15, 0, r0, c8, c7, 0 @ flush I,D TLBs
678 mrc p15, 0, r0, c1, c0, 0 @ read control reg
679 orr r0, r0, #0x5000 @ I-cache enable, RR cache replacement
680 orr r0, r0, #0x0030
Catalin Marinas26584852009-05-30 14:00:18 +0100681#ifdef CONFIG_CPU_ENDIAN_BE8
682 orr r0, r0, #1 << 25 @ big-endian page tables
683#endif
Hyok S. Choic76b6b42006-03-24 09:53:18 +0000684 bl __common_mmu_cache_on
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 mov r0, #0
686 mcr p15, 0, r0, c8, c7, 0 @ flush I,D TLBs
Catalin Marinas8bdca0a2009-07-24 12:35:06 +0100687#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 mov pc, r12
689
Catalin Marinas7d09e852007-06-01 17:14:53 +0100690__armv7_mmu_cache_on:
691 mov r12, lr
Catalin Marinas8bdca0a2009-07-24 12:35:06 +0100692#ifdef CONFIG_MMU
Catalin Marinas7d09e852007-06-01 17:14:53 +0100693 mrc p15, 0, r11, c0, c1, 4 @ read ID_MMFR0
694 tst r11, #0xf @ VMSA
Russell King1fdc08a2012-05-10 09:48:34 +0100695 movne r6, #CB_BITS | 0x02 @ !XN
Catalin Marinas7d09e852007-06-01 17:14:53 +0100696 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
Catalin Marinas8bdca0a2009-07-24 12:35:06 +0100701#endif
Catalin Marinas7d09e852007-06-01 17:14:53 +0100702 mrc p15, 0, r0, c1, c0, 0 @ read control reg
Matthew Leache1e5b7e2012-09-11 17:56:57 +0100703 bic r0, r0, #1 << 28 @ clear SCTLR.TRE
Catalin Marinas7d09e852007-06-01 17:14:53 +0100704 orr r0, r0, #0x5000 @ I-cache enable, RR cache replacement
705 orr r0, r0, #0x003c @ write buffer
Dave Martin50101922012-11-22 12:50:43 +0100706 bic r0, r0, #2 @ A (no unaligned access fault)
707 orr r0, r0, #1 << 22 @ U (v6 unaligned access model)
708 @ (needed for ARM1176)
Catalin Marinas8bdca0a2009-07-24 12:35:06 +0100709#ifdef CONFIG_MMU
Catalin Marinas26584852009-05-30 14:00:18 +0100710#ifdef CONFIG_CPU_ENDIAN_BE8
711 orr r0, r0, #1 << 25 @ big-endian page tables
712#endif
Will Deacondbece452012-08-24 15:20:59 +0100713 mrcne p15, 0, r6, c2, c0, 2 @ read ttb control reg
Catalin Marinas7d09e852007-06-01 17:14:53 +0100714 orrne r0, r0, #1 @ MMU enabled
Russell King1fdc08a2012-05-10 09:48:34 +0100715 movne r1, #0xfffffffd @ domain 0 = client
Will Deacondbece452012-08-24 15:20:59 +0100716 bic r6, r6, #1 << 31 @ 32-bit translation system
717 bic r6, r6, #3 << 0 @ use only ttbr0
Catalin Marinas7d09e852007-06-01 17:14:53 +0100718 mcrne p15, 0, r3, c2, c0, 0 @ load page table pointer
719 mcrne p15, 0, r1, c3, c0, 0 @ load domain access control
Will Deacondbece452012-08-24 15:20:59 +0100720 mcrne p15, 0, r6, c2, c0, 2 @ load ttb control
Catalin Marinas8bdca0a2009-07-24 12:35:06 +0100721#endif
Will Deacond675d0b2011-11-22 17:30:28 +0000722 mcr p15, 0, r0, c7, c5, 4 @ ISB
Catalin Marinas7d09e852007-06-01 17:14:53 +0100723 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
Paulius Zaleckas28853ac2009-03-25 13:10:01 +0200729__fa526_cache_on:
730 mov r12, lr
Russell King1fdc08a2012-05-10 09:48:34 +0100731 mov r6, #CB_BITS | 0x12 @ U
Paulius Zaleckas28853ac2009-03-25 13:10:01 +0200732 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
Hyok S. Choic76b6b42006-03-24 09:53:18 +0000744__common_mmu_cache_on:
Catalin Marinas0e056f22009-07-24 12:32:58 +0100745#ifndef CONFIG_THUMB2_KERNEL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746#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
Nicolas Pitre2dc76672006-07-01 21:29:32 +0100752 b 1f
753 .align 5 @ cache line aligned
7541: 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
Catalin Marinas0e056f22009-07-24 12:32:58 +0100757#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758
Dave Martin946a1052011-06-14 14:20:44 +0100759#define PROC_ENTRY_SIZE (4*5)
760
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 * 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
Russell King98e12b52010-02-25 23:56:38 +0000771 * r9 = corrupted
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 * r12 = corrupted
773 */
774
775call_cache_fn: adr r12, proc_types
Hyok S. Choif12d0d72006-09-26 17:36:37 +0900776#ifdef CONFIG_CPU_CP15
Russell King98e12b52010-02-25 23:56:38 +0000777 mrc p15, 0, r9, c0, c0 @ get processor ID
Hyok S. Choif12d0d72006-09-26 17:36:37 +0900778#else
Russell King98e12b52010-02-25 23:56:38 +0000779 ldr r9, =CONFIG_PROCESSOR_ID
Hyok S. Choif12d0d72006-09-26 17:36:37 +0900780#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07007811: ldr r1, [r12, #0] @ get value
782 ldr r2, [r12, #4] @ get mask
Russell King98e12b52010-02-25 23:56:38 +0000783 eor r1, r1, r9 @ (real ^ match)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 tst r1, r2 @ & mask
Catalin Marinas0e056f22009-07-24 12:32:58 +0100785 ARM( addeq pc, r12, r3 ) @ call cache function
786 THUMB( addeq r12, r3 )
787 THUMB( moveq pc, r12 ) @ call cache function
Dave Martin946a1052011-06-14 14:20:44 +0100788 add r12, r12, #PROC_ENTRY_SIZE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 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 */
Catalin Marinas88987ef2009-07-24 12:32:52 +0100805 .align 2
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 .type proc_types,#object
807proc_types:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 .word 0x00000000 @ old ARM ID
809 .word 0x0000f000
810 mov pc, lr
Catalin Marinas0e056f22009-07-24 12:32:58 +0100811 THUMB( nop )
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 mov pc, lr
Catalin Marinas0e056f22009-07-24 12:32:58 +0100813 THUMB( nop )
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 mov pc, lr
Catalin Marinas0e056f22009-07-24 12:32:58 +0100815 THUMB( nop )
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816
817 .word 0x41007000 @ ARM7/710
818 .word 0xfff8fe00
Russell King4cdfc2e2012-05-09 15:18:19 +0100819 mov pc, lr
820 THUMB( nop )
821 mov pc, lr
822 THUMB( nop )
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823 mov pc, lr
Catalin Marinas0e056f22009-07-24 12:32:58 +0100824 THUMB( nop )
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825
826 .word 0x41807200 @ ARM720T (writethrough)
827 .word 0xffffff00
Catalin Marinas0e056f22009-07-24 12:32:58 +0100828 W(b) __armv4_mmu_cache_on
829 W(b) __armv4_mmu_cache_off
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830 mov pc, lr
Catalin Marinas0e056f22009-07-24 12:32:58 +0100831 THUMB( nop )
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832
Hyok S. Choi10c2df62006-03-27 10:21:34 +0100833 .word 0x41007400 @ ARM74x
834 .word 0xff00ff00
Catalin Marinas0e056f22009-07-24 12:32:58 +0100835 W(b) __armv3_mpu_cache_on
836 W(b) __armv3_mpu_cache_off
837 W(b) __armv3_mpu_cache_flush
Hyok S. Choi10c2df62006-03-27 10:21:34 +0100838
839 .word 0x41009400 @ ARM94x
840 .word 0xff00ff00
Catalin Marinas0e056f22009-07-24 12:32:58 +0100841 W(b) __armv4_mpu_cache_on
842 W(b) __armv4_mpu_cache_off
843 W(b) __armv4_mpu_cache_flush
Hyok S. Choi10c2df62006-03-27 10:21:34 +0100844
Mark A. Greeraf3e4fd2011-04-01 15:41:26 +0100845 .word 0x41069260 @ ARM926EJ-S (v5TEJ)
846 .word 0xff0ffff0
Nicolas Pitre720c60e2011-06-09 05:05:27 +0100847 W(b) __arm926ejs_mmu_cache_on
848 W(b) __armv4_mmu_cache_off
849 W(b) __armv5tej_mmu_cache_flush
Mark A. Greeraf3e4fd2011-04-01 15:41:26 +0100850
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851 .word 0x00007000 @ ARM7 IDs
852 .word 0x0000f000
853 mov pc, lr
Catalin Marinas0e056f22009-07-24 12:32:58 +0100854 THUMB( nop )
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 mov pc, lr
Catalin Marinas0e056f22009-07-24 12:32:58 +0100856 THUMB( nop )
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 mov pc, lr
Catalin Marinas0e056f22009-07-24 12:32:58 +0100858 THUMB( nop )
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859
860 @ Everything from here on will be the new ID system.
861
862 .word 0x4401a100 @ sa110 / sa1100
863 .word 0xffffffe0
Catalin Marinas0e056f22009-07-24 12:32:58 +0100864 W(b) __armv4_mmu_cache_on
865 W(b) __armv4_mmu_cache_off
866 W(b) __armv4_mmu_cache_flush
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867
868 .word 0x6901b110 @ sa1110
869 .word 0xfffffff0
Catalin Marinas0e056f22009-07-24 12:32:58 +0100870 W(b) __armv4_mmu_cache_on
871 W(b) __armv4_mmu_cache_off
872 W(b) __armv4_mmu_cache_flush
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873
Haojian Zhuang4157d312010-03-12 05:47:55 -0500874 .word 0x56056900
875 .word 0xffffff00 @ PXA9xx
Catalin Marinas0e056f22009-07-24 12:32:58 +0100876 W(b) __armv4_mmu_cache_on
877 W(b) __armv4_mmu_cache_off
878 W(b) __armv4_mmu_cache_flush
Eric Miao59c7bcd2008-11-29 21:42:39 +0800879
Eric Miao49cbe782009-01-20 14:15:18 +0800880 .word 0x56158000 @ PXA168
881 .word 0xfffff000
Catalin Marinas0e056f22009-07-24 12:32:58 +0100882 W(b) __armv4_mmu_cache_on
883 W(b) __armv4_mmu_cache_off
884 W(b) __armv5tej_mmu_cache_flush
Eric Miao49cbe782009-01-20 14:15:18 +0800885
Nicolas Pitre2e2023f2008-06-03 23:06:21 +0200886 .word 0x56050000 @ Feroceon
887 .word 0xff0f0000
Catalin Marinas0e056f22009-07-24 12:32:58 +0100888 W(b) __armv4_mmu_cache_on
889 W(b) __armv4_mmu_cache_off
890 W(b) __armv5tej_mmu_cache_flush
Nicolas Pitre3ebb5a22007-10-31 15:31:48 -0400891
Joonyoung Shim55879312009-06-16 20:05:57 +0900892#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
Paulius Zaleckas28853ac2009-03-25 13:10:01 +0200901 .word 0x66015261 @ FA526
902 .word 0xff01fff1
Catalin Marinas0e056f22009-07-24 12:32:58 +0100903 W(b) __fa526_cache_on
904 W(b) __armv4_mmu_cache_off
905 W(b) __fa526_cache_flush
Paulius Zaleckas28853ac2009-03-25 13:10:01 +0200906
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907 @ These match on the architecture ID
908
909 .word 0x00020000 @ ARMv4T
910 .word 0x000f0000
Catalin Marinas0e056f22009-07-24 12:32:58 +0100911 W(b) __armv4_mmu_cache_on
912 W(b) __armv4_mmu_cache_off
913 W(b) __armv4_mmu_cache_flush
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914
915 .word 0x00050000 @ ARMv5TE
916 .word 0x000f0000
Catalin Marinas0e056f22009-07-24 12:32:58 +0100917 W(b) __armv4_mmu_cache_on
918 W(b) __armv4_mmu_cache_off
919 W(b) __armv4_mmu_cache_flush
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920
921 .word 0x00060000 @ ARMv5TEJ
922 .word 0x000f0000
Catalin Marinas0e056f22009-07-24 12:32:58 +0100923 W(b) __armv4_mmu_cache_on
924 W(b) __armv4_mmu_cache_off
Sascha Hauer75216852010-03-15 15:14:50 +0100925 W(b) __armv5tej_mmu_cache_flush
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926
Catalin Marinas45a7b9c2006-06-18 16:21:50 +0100927 .word 0x0007b000 @ ARMv6
Catalin Marinas7d09e852007-06-01 17:14:53 +0100928 .word 0x000ff000
Dave Martin50101922012-11-22 12:50:43 +0100929 W(b) __armv6_mmu_cache_on
Catalin Marinas0e056f22009-07-24 12:32:58 +0100930 W(b) __armv4_mmu_cache_off
931 W(b) __armv6_mmu_cache_flush
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932
Catalin Marinas7d09e852007-06-01 17:14:53 +0100933 .word 0x000f0000 @ new CPU Id
934 .word 0x000f0000
Catalin Marinas0e056f22009-07-24 12:32:58 +0100935 W(b) __armv7_mmu_cache_on
936 W(b) __armv7_mmu_cache_off
937 W(b) __armv7_mmu_cache_flush
Catalin Marinas7d09e852007-06-01 17:14:53 +0100938
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939 .word 0 @ unrecognised type
940 .word 0
941 mov pc, lr
Catalin Marinas0e056f22009-07-24 12:32:58 +0100942 THUMB( nop )
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943 mov pc, lr
Catalin Marinas0e056f22009-07-24 12:32:58 +0100944 THUMB( nop )
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945 mov pc, lr
Catalin Marinas0e056f22009-07-24 12:32:58 +0100946 THUMB( nop )
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947
948 .size proc_types, . - proc_types
949
Dave Martin946a1052011-06-14 14:20:44 +0100950 /*
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
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960/*
961 * Turn off the Cache and MMU. ARMv3 does not support
962 * reading the control register, but ARMv4 does.
963 *
Uwe Kleine-König21b28412010-01-26 22:08:09 +0100964 * On exit,
965 * r0, r1, r2, r3, r9, r12 corrupted
966 * This routine must preserve:
Nicolas Pitre6d7d0ae2011-02-21 07:06:45 +0100967 * r4, r7, r8
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968 */
969 .align 5
970cache_off: mov r3, #12 @ cache_off function
971 b call_cache_fn
972
Hyok S. Choi10c2df62006-03-27 10:21:34 +0100973__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
Hyok S. Choic76b6b42006-03-24 09:53:18 +0000991__armv4_mmu_cache_off:
Catalin Marinas8bdca0a2009-07-24 12:35:06 +0100992#ifdef CONFIG_MMU
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993 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
Catalin Marinas8bdca0a2009-07-24 12:35:06 +0100999#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000 mov pc, lr
1001
Catalin Marinas7d09e852007-06-01 17:14:53 +01001002__armv7_mmu_cache_off:
1003 mrc p15, 0, r0, c1, c0
Catalin Marinas8bdca0a2009-07-24 12:35:06 +01001004#ifdef CONFIG_MMU
Catalin Marinas7d09e852007-06-01 17:14:53 +01001005 bic r0, r0, #0x000d
Catalin Marinas8bdca0a2009-07-24 12:35:06 +01001006#else
1007 bic r0, r0, #0x000c
1008#endif
Catalin Marinas7d09e852007-06-01 17:14:53 +01001009 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
Catalin Marinas8bdca0a2009-07-24 12:35:06 +01001013#ifdef CONFIG_MMU
Catalin Marinas7d09e852007-06-01 17:14:53 +01001014 mcr p15, 0, r0, c8, c7, 0 @ invalidate whole TLB
Catalin Marinas8bdca0a2009-07-24 12:35:06 +01001015#endif
Catalin Marinasc30c2f92008-11-06 13:23:07 +00001016 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
Catalin Marinas7d09e852007-06-01 17:14:53 +01001019 mov pc, r12
1020
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021/*
1022 * Clean and flush the cache to maintain consistency.
1023 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024 * On exit,
Uwe Kleine-König21b28412010-01-26 22:08:09 +01001025 * r1, r2, r3, r9, r10, r11, r12 corrupted
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026 * This routine must preserve:
Nicolas Pitre6d7d0ae2011-02-21 07:06:45 +01001027 * r4, r6, r7, r8
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028 */
1029 .align 5
1030cache_clean_flush:
1031 mov r3, #16
1032 b call_cache_fn
1033
Hyok S. Choi10c2df62006-03-27 10:21:34 +01001034__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
10391: orr r3, r1, #63 << 26 @ 64 entries
10402: 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
Paulius Zaleckas28853ac2009-03-25 13:10:01 +02001051__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
Hyok S. Choi10c2df62006-03-27 10:21:34 +01001057
Hyok S. Choic76b6b42006-03-24 09:53:18 +00001058__armv6_mmu_cache_flush:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059 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
Catalin Marinas7d09e852007-06-01 17:14:53 +01001066__armv7_mmu_cache_flush:
1067 mrc p15, 0, r10, c0, c1, 5 @ read ID_MMFR1
1068 tst r10, #0xf << 16 @ hierarchical cache (ARMv7)
Catalin Marinas7d09e852007-06-01 17:14:53 +01001069 mov r10, #0
Catalin Marinasc30c2f92008-11-06 13:23:07 +00001070 beq hierarchical
Catalin Marinas7d09e852007-06-01 17:14:53 +01001071 mcr p15, 0, r10, c7, c14, 0 @ clean+invalidate D
1072 b iflush
1073hierarchical:
Catalin Marinasc30c2f92008-11-06 13:23:07 +00001074 mcr p15, 0, r10, c7, c10, 5 @ DMB
Catalin Marinas0e056f22009-07-24 12:32:58 +01001075 stmfd sp!, {r0-r7, r9-r11}
Catalin Marinas7d09e852007-06-01 17:14:53 +01001076 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
1081loop1:
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
Catalin Marinas000b5022008-10-03 11:09:10 +01001094 clz r5, r4 @ find bit position of way size increment
Catalin Marinas7d09e852007-06-01 17:14:53 +01001095 ldr r7, =0x7fff
1096 ands r7, r7, r1, lsr #13 @ extract max number of the index size
1097loop2:
1098 mov r9, r4 @ create working copy of max way size
1099loop3:
Catalin Marinas0e056f22009-07-24 12:32:58 +01001100 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
Catalin Marinas7d09e852007-06-01 17:14:53 +01001106 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
1111skip:
1112 add r10, r10, #2 @ increment cache number
1113 cmp r3, r10
1114 bgt loop1
1115finished:
Catalin Marinas0e056f22009-07-24 12:32:58 +01001116 ldmfd sp!, {r0-r7, r9-r11}
Catalin Marinas7d09e852007-06-01 17:14:53 +01001117 mov r10, #0 @ swith back to cache level 0
1118 mcr p15, 2, r10, c0, c0, 0 @ select current cache level in cssr
Catalin Marinas7d09e852007-06-01 17:14:53 +01001119iflush:
Catalin Marinasc30c2f92008-11-06 13:23:07 +00001120 mcr p15, 0, r10, c7, c10, 4 @ DSB
Catalin Marinas7d09e852007-06-01 17:14:53 +01001121 mcr p15, 0, r10, c7, c5, 0 @ invalidate I+BTB
Catalin Marinasc30c2f92008-11-06 13:23:07 +00001122 mcr p15, 0, r10, c7, c10, 4 @ DSB
1123 mcr p15, 0, r10, c7, c5, 4 @ ISB
Catalin Marinas7d09e852007-06-01 17:14:53 +01001124 mov pc, lr
1125
Nicolas Pitre15754bf2007-10-31 15:15:29 -04001126__armv5tej_mmu_cache_flush:
11271: 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
Hyok S. Choic76b6b42006-03-24 09:53:18 +00001133__armv4_mmu_cache_flush:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134 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
Russell King98e12b52010-02-25 23:56:38 +00001137 teq r3, r9 @ cache ID register present?
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138 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
1149no_cache_id:
Catalin Marinas0e056f22009-07-24 12:32:58 +01001150 mov r1, pc
1151 bic r1, r1, #63 @ align to longest cache line
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152 add r2, r1, r2
Catalin Marinas0e056f22009-07-24 12:32:58 +010011531:
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 )
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157 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
Hyok S. Choic76b6b42006-03-24 09:53:18 +00001165__armv3_mmu_cache_flush:
Hyok S. Choi10c2df62006-03-27 10:21:34 +01001166__armv3_mpu_cache_flush:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167 mov r1, #0
Uwe Kleine-König63fa7182010-01-26 22:18:09 +01001168 mcr p15, 0, r1, c7, c0, 0 @ invalidate whole cache v3
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169 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
Catalin Marinas88987ef2009-07-24 12:32:52 +01001176 .align 2
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177 .type phexbuf,#object
1178phexbuf: .space 12
1179 .size phexbuf, . - phexbuf
1180
Uwe Kleine-Königbe6f9f02010-01-26 22:22:20 +01001181@ phex corrupts {r0, r1, r2, r3}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182phex: adr r3, phexbuf
1183 mov r2, #0
1184 strb r2, [r3, r1]
11851: 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
Uwe Kleine-Königbe6f9f02010-01-26 22:22:20 +01001196@ puts corrupts {r0, r1, r2, r3}
Tony Lindgren4e6d4882010-02-01 23:26:53 +01001197puts: loadsp r3, r1
Linus Torvalds1da177e2005-04-16 15:20:36 -070011981: ldrb r2, [r0], #1
1199 teq r2, #0
1200 moveq pc, lr
Russell King5cd0c342005-05-03 12:18:46 +010012012: writeb r2, r3
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202 mov r1, #0x00020000
12033: 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
Uwe Kleine-Königbe6f9f02010-01-26 22:22:20 +01001211@ putc corrupts {r0, r1, r2, r3}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212putc:
1213 mov r2, r0
1214 mov r0, #0
Tony Lindgren4e6d4882010-02-01 23:26:53 +01001215 loadsp r3, r1
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216 b 2b
1217
Uwe Kleine-Königbe6f9f02010-01-26 22:22:20 +01001218@ memdump corrupts {r0, r1, r2, r3, r10, r11, r12, lr}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219memdump: mov r12, r0
1220 mov r10, lr
1221 mov r11, #0
12222: mov r0, r11, lsl #2
1223 add r0, r0, r12
1224 mov r1, #8
1225 bl phex
1226 mov r0, #':'
1227 bl putc
12281: 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
Catalin Marinas92c83ff12007-06-22 14:27:50 +01001248 .ltorg
Dave Martin424e5992012-02-10 18:07:07 -08001249
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
Nicolas Pitreadcc2592011-04-27 16:15:11 -04001268reloc_code_end:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269
1270 .align
Russell Kingb0c4d4e2010-11-22 12:00:59 +00001271 .section ".stack", "aw", %nobits
Nicolas Pitre8d7e4cc2011-04-27 14:54:39 -04001272.L_user_stack: .space 4096
1273.L_user_stack_end: