blob: 2b844dad5e931aab94ddd50a0509f06046cf82f6 [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>
12
Arnd Bergmanncbac9bd2013-05-31 22:50:47 +010013 .arch armv7-a
Linus Torvalds1da177e2005-04-16 15:20:36 -070014/*
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
Russell Kinga09e64f2008-08-05 16:14:15 +010047#include <mach/debug-macro.S>
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 )
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361: mov r7, r1 @ save architecture ID
Russell Kingf4619022006-01-12 17:17:57 +0000137 mov r8, r2 @ save atags pointer
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138
139#ifndef __ARM_ARCH_2__
140 /*
141 * Booting from Angel - need to enter SVC mode and disable
142 * FIQs/IRQs (numeric definitions from angel arm.h source).
143 * We only do this if we were in user mode on entry.
144 */
145 mrs r2, cpsr @ get current mode
146 tst r2, #3 @ not user?
147 bne not_angel
148 mov r0, #0x17 @ angel_SWIreason_EnterSVC
Catalin Marinas0e056f22009-07-24 12:32:58 +0100149 ARM( swi 0x123456 ) @ angel_SWI_ARM
150 THUMB( svc 0xab ) @ angel_SWI_THUMB
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151not_angel:
152 mrs r2, cpsr @ turn off interrupts to
153 orr r2, r2, #0xc0 @ prevent angel from running
154 msr cpsr_c, r2
155#else
156 teqp pc, #0x0c000003 @ turn off interrupts
157#endif
158
159 /*
160 * Note that some cache flushing and other stuff may
161 * be needed here - is there an Angel SWI call for this?
162 */
163
164 /*
165 * some architecture specific code can be inserted
Russell Kingf4619022006-01-12 17:17:57 +0000166 * by the linker here, but it should preserve r7, r8, and r9.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 */
168
169 .text
Nicolas Pitre6d7d0ae2011-02-21 07:06:45 +0100170
Eric Miaoe69edc792010-07-05 15:56:50 +0200171#ifdef CONFIG_AUTO_ZRELADDR
172 @ determine final kernel image address
Dave Martinbfa64c42010-11-29 19:43:26 +0100173 mov r4, pc
174 and r4, r4, #0xf8000000
Eric Miaoe69edc792010-07-05 15:56:50 +0200175 add r4, r4, #TEXT_OFFSET
176#else
Russell King9e84ed62010-09-09 22:39:41 +0100177 ldr r4, =zreladdr
Eric Miaoe69edc792010-07-05 15:56:50 +0200178#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179
Nicolas Pitre6d7d0ae2011-02-21 07:06:45 +0100180 bl cache_on
181
182restart: adr r0, LC0
Nicolas Pitre34cc1a82011-04-19 15:42:43 -0400183 ldmia r0, {r1, r2, r3, r6, r10, r11, r12}
Nicolas Pitreadcc2592011-04-27 16:15:11 -0400184 ldr sp, [r0, #28]
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185
186 /*
Nicolas Pitre6d7d0ae2011-02-21 07:06:45 +0100187 * We might be running at a different address. We need
188 * to fix up various pointers.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 */
Nicolas Pitre6d7d0ae2011-02-21 07:06:45 +0100190 sub r0, r0, r1 @ calculate the delta offset
Nicolas Pitre6d7d0ae2011-02-21 07:06:45 +0100191 add r6, r6, r0 @ _edata
Nicolas Pitre34cc1a82011-04-19 15:42:43 -0400192 add r10, r10, r0 @ inflated kernel size location
193
194 /*
195 * The kernel build system appends the size of the
196 * decompressed kernel at the end of the compressed data
197 * in little-endian form.
198 */
199 ldrb r9, [r10, #0]
200 ldrb lr, [r10, #1]
201 orr r9, r9, lr, lsl #8
202 ldrb lr, [r10, #2]
203 ldrb r10, [r10, #3]
204 orr r9, r9, lr, lsl #16
205 orr r9, r9, r10, lsl #24
Nicolas Pitre6d7d0ae2011-02-21 07:06:45 +0100206
207#ifndef CONFIG_ZBOOT_ROM
208 /* malloc space is above the relocated stack (64k max) */
209 add sp, sp, r0
210 add r10, sp, #0x10000
211#else
212 /*
213 * With ZBOOT_ROM the bss/stack is non relocatable,
214 * but someone could still run this code from RAM,
215 * in which case our reference is _edata.
216 */
217 mov r10, r6
218#endif
219
John Bonesioe2a6a3a2011-05-27 18:45:50 -0400220 mov r5, #0 @ init dtb size to 0
221#ifdef CONFIG_ARM_APPENDED_DTB
222/*
223 * r0 = delta
224 * r2 = BSS start
225 * r3 = BSS end
226 * r4 = final kernel address
227 * r5 = appended dtb size (still unknown)
228 * r6 = _edata
229 * r7 = architecture ID
230 * r8 = atags/device tree pointer
231 * r9 = size of decompressed image
232 * r10 = end of this image, including bss/stack/malloc space if non XIP
233 * r11 = GOT start
234 * r12 = GOT end
235 * sp = stack pointer
236 *
237 * if there are device trees (dtb) appended to zImage, advance r10 so that the
238 * dtb data will get relocated along with the kernel if necessary.
239 */
240
241 ldr lr, [r6, #0]
242#ifndef __ARMEB__
243 ldr r1, =0xedfe0dd0 @ sig is 0xd00dfeed big endian
244#else
245 ldr r1, =0xd00dfeed
246#endif
247 cmp lr, r1
248 bne dtb_check_done @ not found
249
Nicolas Pitreb90b9a32011-09-13 22:37:07 -0400250#ifdef CONFIG_ARM_ATAG_DTB_COMPAT
251 /*
252 * OK... Let's do some funky business here.
253 * If we do have a DTB appended to zImage, and we do have
254 * an ATAG list around, we want the later to be translated
255 * and folded into the former here. To be on the safe side,
256 * let's temporarily move the stack away into the malloc
257 * area. No GOT fixup has occurred yet, but none of the
258 * code we're about to call uses any global variable.
259 */
260 add sp, sp, #0x10000
261 stmfd sp!, {r0-r3, ip, lr}
262 mov r0, r8
263 mov r1, r6
264 sub r2, sp, r6
265 bl atags_to_fdt
266
267 /*
268 * If returned value is 1, there is no ATAG at the location
269 * pointed by r8. Try the typical 0x100 offset from start
270 * of RAM and hope for the best.
271 */
272 cmp r0, #1
Nicolas Pitre531a6a92011-10-24 13:30:32 +0100273 sub r0, r4, #TEXT_OFFSET
274 add r0, r0, #0x100
Nicolas Pitreb90b9a32011-09-13 22:37:07 -0400275 mov r1, r6
276 sub r2, sp, r6
Marc Zyngier9c5fd9e2012-04-11 14:52:55 +0100277 bleq atags_to_fdt
Nicolas Pitreb90b9a32011-09-13 22:37:07 -0400278
279 ldmfd sp!, {r0-r3, ip, lr}
280 sub sp, sp, #0x10000
281#endif
282
John Bonesioe2a6a3a2011-05-27 18:45:50 -0400283 mov r8, r6 @ use the appended device tree
284
Nicolas Pitre5ffb04f2011-06-12 01:07:33 -0400285 /*
286 * Make sure that the DTB doesn't end up in the final
287 * kernel's .bss area. To do so, we adjust the decompressed
288 * kernel size to compensate if that .bss size is larger
289 * than the relocated code.
290 */
291 ldr r5, =_kernel_bss_size
292 adr r1, wont_overwrite
293 sub r1, r6, r1
294 subs r1, r5, r1
295 addhi r9, r9, r1
296
John Bonesioe2a6a3a2011-05-27 18:45:50 -0400297 /* Get the dtb's size */
298 ldr r5, [r6, #4]
299#ifndef __ARMEB__
300 /* convert r5 (dtb size) to little endian */
301 eor r1, r5, r5, ror #16
302 bic r1, r1, #0x00ff0000
303 mov r5, r5, ror #8
304 eor r5, r5, r1, lsr #8
305#endif
306
307 /* preserve 64-bit alignment */
308 add r5, r5, #7
309 bic r5, r5, #7
310
311 /* relocate some pointers past the appended dtb */
312 add r6, r6, r5
313 add r10, r10, r5
314 add sp, sp, r5
315dtb_check_done:
316#endif
317
Nicolas Pitre6d7d0ae2011-02-21 07:06:45 +0100318/*
319 * Check to see if we will overwrite ourselves.
320 * r4 = final kernel address
Nicolas Pitre6d7d0ae2011-02-21 07:06:45 +0100321 * r9 = size of decompressed image
322 * r10 = end of this image, including bss/stack/malloc space if non XIP
323 * We basically want:
Nicolas Pitreea9df3b2011-04-21 22:52:06 -0400324 * r4 - 16k page directory >= r10 -> OK
Nicolas Pitre5ffb04f2011-06-12 01:07:33 -0400325 * r4 + image length <= address of wont_overwrite -> OK
Nicolas Pitre6d7d0ae2011-02-21 07:06:45 +0100326 */
Nicolas Pitreea9df3b2011-04-21 22:52:06 -0400327 add r10, r10, #16384
Nicolas Pitre6d7d0ae2011-02-21 07:06:45 +0100328 cmp r4, r10
329 bhs wont_overwrite
330 add r10, r4, r9
Nicolas Pitre5ffb04f2011-06-12 01:07:33 -0400331 adr r9, wont_overwrite
332 cmp r10, r9
Nicolas Pitre6d7d0ae2011-02-21 07:06:45 +0100333 bls wont_overwrite
334
335/*
336 * Relocate ourselves past the end of the decompressed kernel.
Nicolas Pitre6d7d0ae2011-02-21 07:06:45 +0100337 * r6 = _edata
338 * r10 = end of the decompressed kernel
339 * Because we always copy ahead, we need to do it from the end and go
340 * backward in case the source and destination overlap.
341 */
Nicolas Pitreadcc2592011-04-27 16:15:11 -0400342 /*
343 * Bump to the next 256-byte boundary with the size of
344 * the relocation code added. This avoids overwriting
345 * ourself when the offset is small.
346 */
347 add r10, r10, #((reloc_code_end - restart + 256) & ~255)
Nicolas Pitre6d7d0ae2011-02-21 07:06:45 +0100348 bic r10, r10, #255
349
Nicolas Pitreadcc2592011-04-27 16:15:11 -0400350 /* Get start of code we want to copy and align it down. */
351 adr r5, restart
352 bic r5, r5, #31
353
Nicolas Pitre6d7d0ae2011-02-21 07:06:45 +0100354 sub r9, r6, r5 @ size to copy
355 add r9, r9, #31 @ rounded up to a multiple
356 bic r9, r9, #31 @ ... of 32 bytes
357 add r6, r9, r5
358 add r9, r9, r10
359
3601: ldmdb r6!, {r0 - r3, r10 - r12, lr}
361 cmp r6, r5
362 stmdb r9!, {r0 - r3, r10 - r12, lr}
363 bhi 1b
364
365 /* Preserve offset to relocated code. */
366 sub r6, r9, r6
367
Tony Lindgren7c2527f2011-04-26 05:37:46 -0700368#ifndef CONFIG_ZBOOT_ROM
369 /* cache_clean_flush may use the stack, so relocate it */
370 add sp, sp, r6
371#endif
372
Nicolas Pitre6d7d0ae2011-02-21 07:06:45 +0100373 bl cache_clean_flush
374
375 adr r0, BSYM(restart)
376 add r0, r0, r6
377 mov pc, r0
378
379wont_overwrite:
380/*
381 * If delta is zero, we are running at the address we were linked at.
382 * r0 = delta
383 * r2 = BSS start
384 * r3 = BSS end
385 * r4 = kernel execution address
John Bonesioe2a6a3a2011-05-27 18:45:50 -0400386 * r5 = appended dtb size (0 if not present)
Nicolas Pitre6d7d0ae2011-02-21 07:06:45 +0100387 * r7 = architecture ID
388 * r8 = atags pointer
389 * r11 = GOT start
390 * r12 = GOT end
391 * sp = stack pointer
392 */
John Bonesioe2a6a3a2011-05-27 18:45:50 -0400393 orrs r1, r0, r5
Nicolas Pitre6d7d0ae2011-02-21 07:06:45 +0100394 beq not_relocated
John Bonesioe2a6a3a2011-05-27 18:45:50 -0400395
Russell King98e12b52010-02-25 23:56:38 +0000396 add r11, r11, r0
Nicolas Pitre6d7d0ae2011-02-21 07:06:45 +0100397 add r12, r12, r0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398
399#ifndef CONFIG_ZBOOT_ROM
400 /*
401 * If we're running fully PIC === CONFIG_ZBOOT_ROM = n,
402 * we need to fix up pointers into the BSS region.
Nicolas Pitre6d7d0ae2011-02-21 07:06:45 +0100403 * Note that the stack pointer has already been fixed up.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 */
405 add r2, r2, r0
406 add r3, r3, r0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407
408 /*
409 * Relocate all entries in the GOT table.
John Bonesioe2a6a3a2011-05-27 18:45:50 -0400410 * Bump bss entries to _edata + dtb size
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 */
Russell King98e12b52010-02-25 23:56:38 +00004121: ldr r1, [r11, #0] @ relocate entries in the GOT
John Bonesioe2a6a3a2011-05-27 18:45:50 -0400413 add r1, r1, r0 @ This fixes up C references
414 cmp r1, r2 @ if entry >= bss_start &&
415 cmphs r3, r1 @ bss_end > entry
416 addhi r1, r1, r5 @ entry += dtb size
417 str r1, [r11], #4 @ next entry
Nicolas Pitre6d7d0ae2011-02-21 07:06:45 +0100418 cmp r11, r12
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 blo 1b
John Bonesioe2a6a3a2011-05-27 18:45:50 -0400420
421 /* bump our bss pointers too */
422 add r2, r2, r5
423 add r3, r3, r5
424
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425#else
426
427 /*
428 * Relocate entries in the GOT table. We only relocate
429 * the entries that are outside the (relocated) BSS region.
430 */
Russell King98e12b52010-02-25 23:56:38 +00004311: ldr r1, [r11, #0] @ relocate entries in the GOT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 cmp r1, r2 @ entry < bss_start ||
433 cmphs r3, r1 @ _end < entry
434 addlo r1, r1, r0 @ table. This fixes up the
Russell King98e12b52010-02-25 23:56:38 +0000435 str r1, [r11], #4 @ C references.
Nicolas Pitre6d7d0ae2011-02-21 07:06:45 +0100436 cmp r11, r12
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 blo 1b
438#endif
439
440not_relocated: mov r0, #0
4411: str r0, [r2], #4 @ clear bss
442 str r0, [r2], #4
443 str r0, [r2], #4
444 str r0, [r2], #4
445 cmp r2, r3
446 blo 1b
447
Nicolas Pitre6d7d0ae2011-02-21 07:06:45 +0100448/*
449 * The C runtime environment should now be setup sufficiently.
450 * Set up some pointers, and start decompressing.
451 * r4 = kernel execution address
452 * r7 = architecture ID
453 * r8 = atags pointer
454 */
455 mov r0, r4
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 mov r1, sp @ malloc space above stack
457 add r2, sp, #0x10000 @ 64k max
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 mov r3, r7
459 bl decompress_kernel
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 bl cache_clean_flush
Nicolas Pitre6d7d0ae2011-02-21 07:06:45 +0100461 bl cache_off
462 mov r0, #0 @ must be zero
463 mov r1, r7 @ restore architecture number
464 mov r2, r8 @ restore atags pointer
Dave Martin540b5732011-07-13 15:53:30 +0100465 ARM( mov pc, r4 ) @ call kernel
466 THUMB( bx r4 ) @ entry point is always ARM
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467
Catalin Marinas88987ef2009-07-24 12:32:52 +0100468 .align 2
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 .type LC0, #object
470LC0: .word LC0 @ r1
471 .word __bss_start @ r2
472 .word _end @ r3
Nicolas Pitre6d7d0ae2011-02-21 07:06:45 +0100473 .word _edata @ r6
Nicolas Pitre34cc1a82011-04-19 15:42:43 -0400474 .word input_data_end - 4 @ r10 (inflated size location)
Russell King98e12b52010-02-25 23:56:38 +0000475 .word _got_start @ r11
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 .word _got_end @ ip
Nicolas Pitre8d7e4cc2011-04-27 14:54:39 -0400477 .word .L_user_stack_end @ sp
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 .size LC0, . - LC0
479
480#ifdef CONFIG_ARCH_RPC
481 .globl params
Eric Miaodb7b2b42010-06-03 15:36:49 +0800482params: ldr r0, =0x10000100 @ params_phys for RPC
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 mov pc, lr
484 .ltorg
485 .align
486#endif
487
488/*
489 * Turn on the cache. We need to setup some page tables so that we
490 * can have both the I and D caches on.
491 *
492 * We place the page tables 16k down from the kernel execution address,
493 * and we hope that nothing else is using it. If we're using it, we
494 * will go pop!
495 *
496 * On entry,
497 * r4 = kernel execution address
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 * r7 = architecture number
Russell Kingf4619022006-01-12 17:17:57 +0000499 * r8 = atags pointer
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 * On exit,
Uwe Kleine-König21b28412010-01-26 22:08:09 +0100501 * r0, r1, r2, r3, r9, r10, r12 corrupted
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 * This routine must preserve:
Nicolas Pitre6d7d0ae2011-02-21 07:06:45 +0100503 * r4, r7, r8
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 */
505 .align 5
506cache_on: mov r3, #8 @ cache_on function
507 b call_cache_fn
508
Hyok S. Choi10c2df62006-03-27 10:21:34 +0100509/*
510 * Initialize the highest priority protection region, PR7
511 * to cover all 32bit address and cacheable and bufferable.
512 */
513__armv4_mpu_cache_on:
514 mov r0, #0x3f @ 4G, the whole
515 mcr p15, 0, r0, c6, c7, 0 @ PR7 Area Setting
516 mcr p15, 0, r0, c6, c7, 1
517
518 mov r0, #0x80 @ PR7
519 mcr p15, 0, r0, c2, c0, 0 @ D-cache on
520 mcr p15, 0, r0, c2, c0, 1 @ I-cache on
521 mcr p15, 0, r0, c3, c0, 0 @ write-buffer on
522
523 mov r0, #0xc000
524 mcr p15, 0, r0, c5, c0, 1 @ I-access permission
525 mcr p15, 0, r0, c5, c0, 0 @ D-access permission
526
527 mov r0, #0
528 mcr p15, 0, r0, c7, c10, 4 @ drain write buffer
529 mcr p15, 0, r0, c7, c5, 0 @ flush(inval) I-Cache
530 mcr p15, 0, r0, c7, c6, 0 @ flush(inval) D-Cache
531 mrc p15, 0, r0, c1, c0, 0 @ read control reg
532 @ ...I .... ..D. WC.M
533 orr r0, r0, #0x002d @ .... .... ..1. 11.1
534 orr r0, r0, #0x1000 @ ...1 .... .... ....
535
536 mcr p15, 0, r0, c1, c0, 0 @ write control reg
537
538 mov r0, #0
539 mcr p15, 0, r0, c7, c5, 0 @ flush(inval) I-Cache
540 mcr p15, 0, r0, c7, c6, 0 @ flush(inval) D-Cache
541 mov pc, lr
542
543__armv3_mpu_cache_on:
544 mov r0, #0x3f @ 4G, the whole
545 mcr p15, 0, r0, c6, c7, 0 @ PR7 Area Setting
546
547 mov r0, #0x80 @ PR7
548 mcr p15, 0, r0, c2, c0, 0 @ cache on
549 mcr p15, 0, r0, c3, c0, 0 @ write-buffer on
550
551 mov r0, #0xc000
552 mcr p15, 0, r0, c5, c0, 0 @ access permission
553
554 mov r0, #0
555 mcr p15, 0, r0, c7, c0, 0 @ invalidate whole cache v3
Uwe Kleine-König4a8d57a2010-01-26 22:14:23 +0100556 /*
557 * ?? ARMv3 MMU does not allow reading the control register,
558 * does this really work on ARMv3 MPU?
559 */
Hyok S. Choi10c2df62006-03-27 10:21:34 +0100560 mrc p15, 0, r0, c1, c0, 0 @ read control reg
561 @ .... .... .... WC.M
562 orr r0, r0, #0x000d @ .... .... .... 11.1
Uwe Kleine-König4a8d57a2010-01-26 22:14:23 +0100563 /* ?? this overwrites the value constructed above? */
Hyok S. Choi10c2df62006-03-27 10:21:34 +0100564 mov r0, #0
565 mcr p15, 0, r0, c1, c0, 0 @ write control reg
566
Uwe Kleine-König4a8d57a2010-01-26 22:14:23 +0100567 /* ?? invalidate for the second time? */
Hyok S. Choi10c2df62006-03-27 10:21:34 +0100568 mcr p15, 0, r0, c7, c0, 0 @ invalidate whole cache v3
569 mov pc, lr
570
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571__setup_mmu: sub r3, r4, #16384 @ Page directory size
572 bic r3, r3, #0xff @ Align the pointer
573 bic r3, r3, #0x3f00
574/*
575 * Initialise the page tables, turning on the cacheable and bufferable
576 * bits for the RAM area only.
577 */
578 mov r0, r3
Russell Kingf4619022006-01-12 17:17:57 +0000579 mov r9, r0, lsr #18
580 mov r9, r9, lsl #18 @ start of RAM
581 add r10, r9, #0x10000000 @ a reasonable RAM size
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 mov r1, #0x12
583 orr r1, r1, #3 << 10
584 add r2, r3, #16384
Nicolas Pitre265d5e42006-01-18 22:38:51 +00005851: cmp r1, r9 @ if virt > start of RAM
Mark A. Greeraf3e4fd2011-04-01 15:41:26 +0100586#ifdef CONFIG_CPU_DCACHE_WRITETHROUGH
587 orrhs r1, r1, #0x08 @ set cacheable
588#else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 orrhs r1, r1, #0x0c @ set cacheable, bufferable
Mark A. Greeraf3e4fd2011-04-01 15:41:26 +0100590#endif
Russell Kingf4619022006-01-12 17:17:57 +0000591 cmp r1, r10 @ if virt > end of RAM
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 bichs r1, r1, #0x0c @ clear cacheable, bufferable
593 str r1, [r0], #4 @ 1:1 mapping
594 add r1, r1, #1048576
595 teq r0, r2
596 bne 1b
597/*
598 * If ever we are running from Flash, then we surely want the cache
599 * to be enabled also for our execution instance... We map 2MB of it
600 * so there is no map overlap problem for up to 1 MB compressed kernel.
601 * If the execution is in RAM then we would only be duplicating the above.
602 */
603 mov r1, #0x1e
604 orr r1, r1, #3 << 10
Dave Martinbfa64c42010-11-29 19:43:26 +0100605 mov r2, pc
606 mov r2, r2, lsr #20
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 orr r1, r1, r2, lsl #20
608 add r0, r3, r2, lsl #2
609 str r1, [r0], #4
610 add r1, r1, #1048576
611 str r1, [r0]
612 mov pc, lr
Catalin Marinas93ed3972008-08-28 11:22:32 +0100613ENDPROC(__setup_mmu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614
Mark A. Greeraf3e4fd2011-04-01 15:41:26 +0100615__arm926ejs_mmu_cache_on:
616#ifdef CONFIG_CPU_DCACHE_WRITETHROUGH
617 mov r0, #4 @ put dcache in WT mode
618 mcr p15, 7, r0, c15, c0, 0
619#endif
620
Hyok S. Choic76b6b42006-03-24 09:53:18 +0000621__armv4_mmu_cache_on:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 mov r12, lr
Catalin Marinas8bdca0a2009-07-24 12:35:06 +0100623#ifdef CONFIG_MMU
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 bl __setup_mmu
625 mov r0, #0
626 mcr p15, 0, r0, c7, c10, 4 @ drain write buffer
627 mcr p15, 0, r0, c8, c7, 0 @ flush I,D TLBs
628 mrc p15, 0, r0, c1, c0, 0 @ read control reg
629 orr r0, r0, #0x5000 @ I-cache enable, RR cache replacement
630 orr r0, r0, #0x0030
Catalin Marinas26584852009-05-30 14:00:18 +0100631#ifdef CONFIG_CPU_ENDIAN_BE8
632 orr r0, r0, #1 << 25 @ big-endian page tables
633#endif
Hyok S. Choic76b6b42006-03-24 09:53:18 +0000634 bl __common_mmu_cache_on
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 mov r0, #0
636 mcr p15, 0, r0, c8, c7, 0 @ flush I,D TLBs
Catalin Marinas8bdca0a2009-07-24 12:35:06 +0100637#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 mov pc, r12
639
Catalin Marinas7d09e852007-06-01 17:14:53 +0100640__armv7_mmu_cache_on:
641 mov r12, lr
Catalin Marinas8bdca0a2009-07-24 12:35:06 +0100642#ifdef CONFIG_MMU
Catalin Marinas7d09e852007-06-01 17:14:53 +0100643 mrc p15, 0, r11, c0, c1, 4 @ read ID_MMFR0
644 tst r11, #0xf @ VMSA
645 blne __setup_mmu
646 mov r0, #0
647 mcr p15, 0, r0, c7, c10, 4 @ drain write buffer
648 tst r11, #0xf @ VMSA
649 mcrne p15, 0, r0, c8, c7, 0 @ flush I,D TLBs
Catalin Marinas8bdca0a2009-07-24 12:35:06 +0100650#endif
Catalin Marinas7d09e852007-06-01 17:14:53 +0100651 mrc p15, 0, r0, c1, c0, 0 @ read control reg
Matthew Leachdca2dd12012-09-11 17:56:57 +0100652 bic r0, r0, #1 << 28 @ clear SCTLR.TRE
Catalin Marinas7d09e852007-06-01 17:14:53 +0100653 orr r0, r0, #0x5000 @ I-cache enable, RR cache replacement
654 orr r0, r0, #0x003c @ write buffer
Catalin Marinas8bdca0a2009-07-24 12:35:06 +0100655#ifdef CONFIG_MMU
Catalin Marinas26584852009-05-30 14:00:18 +0100656#ifdef CONFIG_CPU_ENDIAN_BE8
657 orr r0, r0, #1 << 25 @ big-endian page tables
658#endif
Catalin Marinas7d09e852007-06-01 17:14:53 +0100659 orrne r0, r0, #1 @ MMU enabled
660 movne r1, #-1
661 mcrne p15, 0, r3, c2, c0, 0 @ load page table pointer
662 mcrne p15, 0, r1, c3, c0, 0 @ load domain access control
Catalin Marinas8bdca0a2009-07-24 12:35:06 +0100663#endif
Will Deacond675d0b2011-11-22 17:30:28 +0000664 mcr p15, 0, r0, c7, c5, 4 @ ISB
Catalin Marinas7d09e852007-06-01 17:14:53 +0100665 mcr p15, 0, r0, c1, c0, 0 @ load control register
666 mrc p15, 0, r0, c1, c0, 0 @ and read it back
667 mov r0, #0
668 mcr p15, 0, r0, c7, c5, 4 @ ISB
669 mov pc, r12
670
Paulius Zaleckas28853ac2009-03-25 13:10:01 +0200671__fa526_cache_on:
672 mov r12, lr
673 bl __setup_mmu
674 mov r0, #0
675 mcr p15, 0, r0, c7, c7, 0 @ Invalidate whole cache
676 mcr p15, 0, r0, c7, c10, 4 @ drain write buffer
677 mcr p15, 0, r0, c8, c7, 0 @ flush UTLB
678 mrc p15, 0, r0, c1, c0, 0 @ read control reg
679 orr r0, r0, #0x1000 @ I-cache enable
680 bl __common_mmu_cache_on
681 mov r0, #0
682 mcr p15, 0, r0, c8, c7, 0 @ flush UTLB
683 mov pc, r12
684
Hyok S. Choic76b6b42006-03-24 09:53:18 +0000685__arm6_mmu_cache_on:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 mov r12, lr
687 bl __setup_mmu
688 mov r0, #0
689 mcr p15, 0, r0, c7, c0, 0 @ invalidate whole cache v3
690 mcr p15, 0, r0, c5, c0, 0 @ invalidate whole TLB v3
691 mov r0, #0x30
Hyok S. Choic76b6b42006-03-24 09:53:18 +0000692 bl __common_mmu_cache_on
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 mov r0, #0
694 mcr p15, 0, r0, c5, c0, 0 @ invalidate whole TLB v3
695 mov pc, r12
696
Hyok S. Choic76b6b42006-03-24 09:53:18 +0000697__common_mmu_cache_on:
Catalin Marinas0e056f22009-07-24 12:32:58 +0100698#ifndef CONFIG_THUMB2_KERNEL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699#ifndef DEBUG
700 orr r0, r0, #0x000d @ Write buffer, mmu
701#endif
702 mov r1, #-1
703 mcr p15, 0, r3, c2, c0, 0 @ load page table pointer
704 mcr p15, 0, r1, c3, c0, 0 @ load domain access control
Nicolas Pitre2dc76672006-07-01 21:29:32 +0100705 b 1f
706 .align 5 @ cache line aligned
7071: mcr p15, 0, r0, c1, c0, 0 @ load control register
708 mrc p15, 0, r0, c1, c0, 0 @ and read it back to
709 sub pc, lr, r0, lsr #32 @ properly flush pipeline
Catalin Marinas0e056f22009-07-24 12:32:58 +0100710#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711
Dave Martin946a1052011-06-14 14:20:44 +0100712#define PROC_ENTRY_SIZE (4*5)
713
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 * Here follow the relocatable cache support functions for the
716 * various processors. This is a generic hook for locating an
717 * entry and jumping to an instruction at the specified offset
718 * from the start of the block. Please note this is all position
719 * independent code.
720 *
721 * r1 = corrupted
722 * r2 = corrupted
723 * r3 = block offset
Russell King98e12b52010-02-25 23:56:38 +0000724 * r9 = corrupted
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 * r12 = corrupted
726 */
727
728call_cache_fn: adr r12, proc_types
Hyok S. Choif12d0d72006-09-26 17:36:37 +0900729#ifdef CONFIG_CPU_CP15
Russell King98e12b52010-02-25 23:56:38 +0000730 mrc p15, 0, r9, c0, c0 @ get processor ID
Hyok S. Choif12d0d72006-09-26 17:36:37 +0900731#else
Russell King98e12b52010-02-25 23:56:38 +0000732 ldr r9, =CONFIG_PROCESSOR_ID
Hyok S. Choif12d0d72006-09-26 17:36:37 +0900733#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07007341: ldr r1, [r12, #0] @ get value
735 ldr r2, [r12, #4] @ get mask
Russell King98e12b52010-02-25 23:56:38 +0000736 eor r1, r1, r9 @ (real ^ match)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 tst r1, r2 @ & mask
Catalin Marinas0e056f22009-07-24 12:32:58 +0100738 ARM( addeq pc, r12, r3 ) @ call cache function
739 THUMB( addeq r12, r3 )
740 THUMB( moveq pc, r12 ) @ call cache function
Dave Martin946a1052011-06-14 14:20:44 +0100741 add r12, r12, #PROC_ENTRY_SIZE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 b 1b
743
744/*
745 * Table for cache operations. This is basically:
746 * - CPU ID match
747 * - CPU ID mask
748 * - 'cache on' method instruction
749 * - 'cache off' method instruction
750 * - 'cache flush' method instruction
751 *
752 * We match an entry using: ((real_id ^ match) & mask) == 0
753 *
754 * Writethrough caches generally only need 'on' and 'off'
755 * methods. Writeback caches _must_ have the flush method
756 * defined.
757 */
Catalin Marinas88987ef2009-07-24 12:32:52 +0100758 .align 2
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 .type proc_types,#object
760proc_types:
761 .word 0x41560600 @ ARM6/610
762 .word 0xffffffe0
Catalin Marinas0e056f22009-07-24 12:32:58 +0100763 W(b) __arm6_mmu_cache_off @ works, but slow
764 W(b) __arm6_mmu_cache_off
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 mov pc, lr
Catalin Marinas0e056f22009-07-24 12:32:58 +0100766 THUMB( nop )
Hyok S. Choic76b6b42006-03-24 09:53:18 +0000767@ b __arm6_mmu_cache_on @ untested
768@ b __arm6_mmu_cache_off
769@ b __armv3_mmu_cache_flush
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770
771 .word 0x00000000 @ old ARM ID
772 .word 0x0000f000
773 mov pc, lr
Catalin Marinas0e056f22009-07-24 12:32:58 +0100774 THUMB( nop )
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 mov pc, lr
Catalin Marinas0e056f22009-07-24 12:32:58 +0100776 THUMB( nop )
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 mov pc, lr
Catalin Marinas0e056f22009-07-24 12:32:58 +0100778 THUMB( nop )
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779
780 .word 0x41007000 @ ARM7/710
781 .word 0xfff8fe00
Catalin Marinas0e056f22009-07-24 12:32:58 +0100782 W(b) __arm7_mmu_cache_off
783 W(b) __arm7_mmu_cache_off
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 mov pc, lr
Catalin Marinas0e056f22009-07-24 12:32:58 +0100785 THUMB( nop )
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786
787 .word 0x41807200 @ ARM720T (writethrough)
788 .word 0xffffff00
Catalin Marinas0e056f22009-07-24 12:32:58 +0100789 W(b) __armv4_mmu_cache_on
790 W(b) __armv4_mmu_cache_off
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 mov pc, lr
Catalin Marinas0e056f22009-07-24 12:32:58 +0100792 THUMB( nop )
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793
Hyok S. Choi10c2df62006-03-27 10:21:34 +0100794 .word 0x41007400 @ ARM74x
795 .word 0xff00ff00
Catalin Marinas0e056f22009-07-24 12:32:58 +0100796 W(b) __armv3_mpu_cache_on
797 W(b) __armv3_mpu_cache_off
798 W(b) __armv3_mpu_cache_flush
Hyok S. Choi10c2df62006-03-27 10:21:34 +0100799
800 .word 0x41009400 @ ARM94x
801 .word 0xff00ff00
Catalin Marinas0e056f22009-07-24 12:32:58 +0100802 W(b) __armv4_mpu_cache_on
803 W(b) __armv4_mpu_cache_off
804 W(b) __armv4_mpu_cache_flush
Hyok S. Choi10c2df62006-03-27 10:21:34 +0100805
Mark A. Greeraf3e4fd2011-04-01 15:41:26 +0100806 .word 0x41069260 @ ARM926EJ-S (v5TEJ)
807 .word 0xff0ffff0
Nicolas Pitre720c60e2011-06-09 05:05:27 +0100808 W(b) __arm926ejs_mmu_cache_on
809 W(b) __armv4_mmu_cache_off
810 W(b) __armv5tej_mmu_cache_flush
Mark A. Greeraf3e4fd2011-04-01 15:41:26 +0100811
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 .word 0x00007000 @ ARM7 IDs
813 .word 0x0000f000
814 mov pc, lr
Catalin Marinas0e056f22009-07-24 12:32:58 +0100815 THUMB( nop )
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 mov pc, lr
Catalin Marinas0e056f22009-07-24 12:32:58 +0100817 THUMB( nop )
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818 mov pc, lr
Catalin Marinas0e056f22009-07-24 12:32:58 +0100819 THUMB( nop )
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820
821 @ Everything from here on will be the new ID system.
822
823 .word 0x4401a100 @ sa110 / sa1100
824 .word 0xffffffe0
Catalin Marinas0e056f22009-07-24 12:32:58 +0100825 W(b) __armv4_mmu_cache_on
826 W(b) __armv4_mmu_cache_off
827 W(b) __armv4_mmu_cache_flush
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828
829 .word 0x6901b110 @ sa1110
830 .word 0xfffffff0
Catalin Marinas0e056f22009-07-24 12:32:58 +0100831 W(b) __armv4_mmu_cache_on
832 W(b) __armv4_mmu_cache_off
833 W(b) __armv4_mmu_cache_flush
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834
Haojian Zhuang4157d312010-03-12 05:47:55 -0500835 .word 0x56056900
836 .word 0xffffff00 @ PXA9xx
Catalin Marinas0e056f22009-07-24 12:32:58 +0100837 W(b) __armv4_mmu_cache_on
838 W(b) __armv4_mmu_cache_off
839 W(b) __armv4_mmu_cache_flush
Eric Miao59c7bcd2008-11-29 21:42:39 +0800840
Eric Miao49cbe782009-01-20 14:15:18 +0800841 .word 0x56158000 @ PXA168
842 .word 0xfffff000
Catalin Marinas0e056f22009-07-24 12:32:58 +0100843 W(b) __armv4_mmu_cache_on
844 W(b) __armv4_mmu_cache_off
845 W(b) __armv5tej_mmu_cache_flush
Eric Miao49cbe782009-01-20 14:15:18 +0800846
Nicolas Pitre2e2023f2008-06-03 23:06:21 +0200847 .word 0x56050000 @ Feroceon
848 .word 0xff0f0000
Catalin Marinas0e056f22009-07-24 12:32:58 +0100849 W(b) __armv4_mmu_cache_on
850 W(b) __armv4_mmu_cache_off
851 W(b) __armv5tej_mmu_cache_flush
Nicolas Pitre3ebb5a22007-10-31 15:31:48 -0400852
Joonyoung Shim55879312009-06-16 20:05:57 +0900853#ifdef CONFIG_CPU_FEROCEON_OLD_ID
854 /* this conflicts with the standard ARMv5TE entry */
855 .long 0x41009260 @ Old Feroceon
856 .long 0xff00fff0
857 b __armv4_mmu_cache_on
858 b __armv4_mmu_cache_off
859 b __armv5tej_mmu_cache_flush
860#endif
861
Paulius Zaleckas28853ac2009-03-25 13:10:01 +0200862 .word 0x66015261 @ FA526
863 .word 0xff01fff1
Catalin Marinas0e056f22009-07-24 12:32:58 +0100864 W(b) __fa526_cache_on
865 W(b) __armv4_mmu_cache_off
866 W(b) __fa526_cache_flush
Paulius Zaleckas28853ac2009-03-25 13:10:01 +0200867
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 @ These match on the architecture ID
869
870 .word 0x00020000 @ ARMv4T
871 .word 0x000f0000
Catalin Marinas0e056f22009-07-24 12:32:58 +0100872 W(b) __armv4_mmu_cache_on
873 W(b) __armv4_mmu_cache_off
874 W(b) __armv4_mmu_cache_flush
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875
876 .word 0x00050000 @ ARMv5TE
877 .word 0x000f0000
Catalin Marinas0e056f22009-07-24 12:32:58 +0100878 W(b) __armv4_mmu_cache_on
879 W(b) __armv4_mmu_cache_off
880 W(b) __armv4_mmu_cache_flush
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881
882 .word 0x00060000 @ ARMv5TEJ
883 .word 0x000f0000
Catalin Marinas0e056f22009-07-24 12:32:58 +0100884 W(b) __armv4_mmu_cache_on
885 W(b) __armv4_mmu_cache_off
Sascha Hauer75216852010-03-15 15:14:50 +0100886 W(b) __armv5tej_mmu_cache_flush
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887
Catalin Marinas45a7b9c2006-06-18 16:21:50 +0100888 .word 0x0007b000 @ ARMv6
Catalin Marinas7d09e852007-06-01 17:14:53 +0100889 .word 0x000ff000
Catalin Marinas0e056f22009-07-24 12:32:58 +0100890 W(b) __armv4_mmu_cache_on
891 W(b) __armv4_mmu_cache_off
892 W(b) __armv6_mmu_cache_flush
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893
Catalin Marinas7d09e852007-06-01 17:14:53 +0100894 .word 0x000f0000 @ new CPU Id
895 .word 0x000f0000
Catalin Marinas0e056f22009-07-24 12:32:58 +0100896 W(b) __armv7_mmu_cache_on
897 W(b) __armv7_mmu_cache_off
898 W(b) __armv7_mmu_cache_flush
Catalin Marinas7d09e852007-06-01 17:14:53 +0100899
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 .word 0 @ unrecognised type
901 .word 0
902 mov pc, lr
Catalin Marinas0e056f22009-07-24 12:32:58 +0100903 THUMB( nop )
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904 mov pc, lr
Catalin Marinas0e056f22009-07-24 12:32:58 +0100905 THUMB( nop )
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906 mov pc, lr
Catalin Marinas0e056f22009-07-24 12:32:58 +0100907 THUMB( nop )
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908
909 .size proc_types, . - proc_types
910
Dave Martin946a1052011-06-14 14:20:44 +0100911 /*
912 * If you get a "non-constant expression in ".if" statement"
913 * error from the assembler on this line, check that you have
914 * not accidentally written a "b" instruction where you should
915 * have written W(b).
916 */
917 .if (. - proc_types) % PROC_ENTRY_SIZE != 0
918 .error "The size of one or more proc_types entries is wrong."
919 .endif
920
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921/*
922 * Turn off the Cache and MMU. ARMv3 does not support
923 * reading the control register, but ARMv4 does.
924 *
Uwe Kleine-König21b28412010-01-26 22:08:09 +0100925 * On exit,
926 * r0, r1, r2, r3, r9, r12 corrupted
927 * This routine must preserve:
Nicolas Pitre6d7d0ae2011-02-21 07:06:45 +0100928 * r4, r7, r8
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929 */
930 .align 5
931cache_off: mov r3, #12 @ cache_off function
932 b call_cache_fn
933
Hyok S. Choi10c2df62006-03-27 10:21:34 +0100934__armv4_mpu_cache_off:
935 mrc p15, 0, r0, c1, c0
936 bic r0, r0, #0x000d
937 mcr p15, 0, r0, c1, c0 @ turn MPU and cache off
938 mov r0, #0
939 mcr p15, 0, r0, c7, c10, 4 @ drain write buffer
940 mcr p15, 0, r0, c7, c6, 0 @ flush D-Cache
941 mcr p15, 0, r0, c7, c5, 0 @ flush I-Cache
942 mov pc, lr
943
944__armv3_mpu_cache_off:
945 mrc p15, 0, r0, c1, c0
946 bic r0, r0, #0x000d
947 mcr p15, 0, r0, c1, c0, 0 @ turn MPU and cache off
948 mov r0, #0
949 mcr p15, 0, r0, c7, c0, 0 @ invalidate whole cache v3
950 mov pc, lr
951
Hyok S. Choic76b6b42006-03-24 09:53:18 +0000952__armv4_mmu_cache_off:
Catalin Marinas8bdca0a2009-07-24 12:35:06 +0100953#ifdef CONFIG_MMU
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954 mrc p15, 0, r0, c1, c0
955 bic r0, r0, #0x000d
956 mcr p15, 0, r0, c1, c0 @ turn MMU and cache off
957 mov r0, #0
958 mcr p15, 0, r0, c7, c7 @ invalidate whole cache v4
959 mcr p15, 0, r0, c8, c7 @ invalidate whole TLB v4
Catalin Marinas8bdca0a2009-07-24 12:35:06 +0100960#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961 mov pc, lr
962
Catalin Marinas7d09e852007-06-01 17:14:53 +0100963__armv7_mmu_cache_off:
964 mrc p15, 0, r0, c1, c0
Catalin Marinas8bdca0a2009-07-24 12:35:06 +0100965#ifdef CONFIG_MMU
Catalin Marinas7d09e852007-06-01 17:14:53 +0100966 bic r0, r0, #0x000d
Catalin Marinas8bdca0a2009-07-24 12:35:06 +0100967#else
968 bic r0, r0, #0x000c
969#endif
Catalin Marinas7d09e852007-06-01 17:14:53 +0100970 mcr p15, 0, r0, c1, c0 @ turn MMU and cache off
971 mov r12, lr
972 bl __armv7_mmu_cache_flush
973 mov r0, #0
Catalin Marinas8bdca0a2009-07-24 12:35:06 +0100974#ifdef CONFIG_MMU
Catalin Marinas7d09e852007-06-01 17:14:53 +0100975 mcr p15, 0, r0, c8, c7, 0 @ invalidate whole TLB
Catalin Marinas8bdca0a2009-07-24 12:35:06 +0100976#endif
Catalin Marinasc30c2f92008-11-06 13:23:07 +0000977 mcr p15, 0, r0, c7, c5, 6 @ invalidate BTC
978 mcr p15, 0, r0, c7, c10, 4 @ DSB
979 mcr p15, 0, r0, c7, c5, 4 @ ISB
Catalin Marinas7d09e852007-06-01 17:14:53 +0100980 mov pc, r12
981
Hyok S. Choic76b6b42006-03-24 09:53:18 +0000982__arm6_mmu_cache_off:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983 mov r0, #0x00000030 @ ARM6 control reg.
Hyok S. Choic76b6b42006-03-24 09:53:18 +0000984 b __armv3_mmu_cache_off
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985
Hyok S. Choic76b6b42006-03-24 09:53:18 +0000986__arm7_mmu_cache_off:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 mov r0, #0x00000070 @ ARM7 control reg.
Hyok S. Choic76b6b42006-03-24 09:53:18 +0000988 b __armv3_mmu_cache_off
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989
Hyok S. Choic76b6b42006-03-24 09:53:18 +0000990__armv3_mmu_cache_off:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991 mcr p15, 0, r0, c1, c0, 0 @ turn MMU and cache off
992 mov r0, #0
993 mcr p15, 0, r0, c7, c0, 0 @ invalidate whole cache v3
994 mcr p15, 0, r0, c5, c0, 0 @ invalidate whole TLB v3
995 mov pc, lr
996
997/*
998 * Clean and flush the cache to maintain consistency.
999 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000 * On exit,
Uwe Kleine-König21b28412010-01-26 22:08:09 +01001001 * r1, r2, r3, r9, r10, r11, r12 corrupted
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002 * This routine must preserve:
Nicolas Pitre6d7d0ae2011-02-21 07:06:45 +01001003 * r4, r6, r7, r8
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004 */
1005 .align 5
1006cache_clean_flush:
1007 mov r3, #16
1008 b call_cache_fn
1009
Hyok S. Choi10c2df62006-03-27 10:21:34 +01001010__armv4_mpu_cache_flush:
1011 mov r2, #1
1012 mov r3, #0
1013 mcr p15, 0, ip, c7, c6, 0 @ invalidate D cache
1014 mov r1, #7 << 5 @ 8 segments
10151: orr r3, r1, #63 << 26 @ 64 entries
10162: mcr p15, 0, r3, c7, c14, 2 @ clean & invalidate D index
1017 subs r3, r3, #1 << 26
1018 bcs 2b @ entries 63 to 0
1019 subs r1, r1, #1 << 5
1020 bcs 1b @ segments 7 to 0
1021
1022 teq r2, #0
1023 mcrne p15, 0, ip, c7, c5, 0 @ invalidate I cache
1024 mcr p15, 0, ip, c7, c10, 4 @ drain WB
1025 mov pc, lr
1026
Paulius Zaleckas28853ac2009-03-25 13:10:01 +02001027__fa526_cache_flush:
1028 mov r1, #0
1029 mcr p15, 0, r1, c7, c14, 0 @ clean and invalidate D cache
1030 mcr p15, 0, r1, c7, c5, 0 @ flush I cache
1031 mcr p15, 0, r1, c7, c10, 4 @ drain WB
1032 mov pc, lr
Hyok S. Choi10c2df62006-03-27 10:21:34 +01001033
Hyok S. Choic76b6b42006-03-24 09:53:18 +00001034__armv6_mmu_cache_flush:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035 mov r1, #0
1036 mcr p15, 0, r1, c7, c14, 0 @ clean+invalidate D
1037 mcr p15, 0, r1, c7, c5, 0 @ invalidate I+BTB
1038 mcr p15, 0, r1, c7, c15, 0 @ clean+invalidate unified
1039 mcr p15, 0, r1, c7, c10, 4 @ drain WB
1040 mov pc, lr
1041
Catalin Marinas7d09e852007-06-01 17:14:53 +01001042__armv7_mmu_cache_flush:
1043 mrc p15, 0, r10, c0, c1, 5 @ read ID_MMFR1
1044 tst r10, #0xf << 16 @ hierarchical cache (ARMv7)
Catalin Marinas7d09e852007-06-01 17:14:53 +01001045 mov r10, #0
Catalin Marinasc30c2f92008-11-06 13:23:07 +00001046 beq hierarchical
Catalin Marinas7d09e852007-06-01 17:14:53 +01001047 mcr p15, 0, r10, c7, c14, 0 @ clean+invalidate D
1048 b iflush
1049hierarchical:
Catalin Marinasc30c2f92008-11-06 13:23:07 +00001050 mcr p15, 0, r10, c7, c10, 5 @ DMB
Catalin Marinas0e056f22009-07-24 12:32:58 +01001051 stmfd sp!, {r0-r7, r9-r11}
Catalin Marinas7d09e852007-06-01 17:14:53 +01001052 mrc p15, 1, r0, c0, c0, 1 @ read clidr
1053 ands r3, r0, #0x7000000 @ extract loc from clidr
1054 mov r3, r3, lsr #23 @ left align loc bit field
1055 beq finished @ if loc is 0, then no need to clean
1056 mov r10, #0 @ start clean at cache level 0
1057loop1:
1058 add r2, r10, r10, lsr #1 @ work out 3x current cache level
1059 mov r1, r0, lsr r2 @ extract cache type bits from clidr
1060 and r1, r1, #7 @ mask of the bits for current cache only
1061 cmp r1, #2 @ see what cache we have at this level
1062 blt skip @ skip if no cache, or just i-cache
1063 mcr p15, 2, r10, c0, c0, 0 @ select current cache level in cssr
1064 mcr p15, 0, r10, c7, c5, 4 @ isb to sych the new cssr&csidr
1065 mrc p15, 1, r1, c0, c0, 0 @ read the new csidr
1066 and r2, r1, #7 @ extract the length of the cache lines
1067 add r2, r2, #4 @ add 4 (line length offset)
1068 ldr r4, =0x3ff
1069 ands r4, r4, r1, lsr #3 @ find maximum number on the way size
Catalin Marinas000b5022008-10-03 11:09:10 +01001070 clz r5, r4 @ find bit position of way size increment
Catalin Marinas7d09e852007-06-01 17:14:53 +01001071 ldr r7, =0x7fff
1072 ands r7, r7, r1, lsr #13 @ extract max number of the index size
1073loop2:
1074 mov r9, r4 @ create working copy of max way size
1075loop3:
Catalin Marinas0e056f22009-07-24 12:32:58 +01001076 ARM( orr r11, r10, r9, lsl r5 ) @ factor way and cache number into r11
1077 ARM( orr r11, r11, r7, lsl r2 ) @ factor index number into r11
1078 THUMB( lsl r6, r9, r5 )
1079 THUMB( orr r11, r10, r6 ) @ factor way and cache number into r11
1080 THUMB( lsl r6, r7, r2 )
1081 THUMB( orr r11, r11, r6 ) @ factor index number into r11
Catalin Marinas7d09e852007-06-01 17:14:53 +01001082 mcr p15, 0, r11, c7, c14, 2 @ clean & invalidate by set/way
1083 subs r9, r9, #1 @ decrement the way
1084 bge loop3
1085 subs r7, r7, #1 @ decrement the index
1086 bge loop2
1087skip:
1088 add r10, r10, #2 @ increment cache number
1089 cmp r3, r10
1090 bgt loop1
1091finished:
Catalin Marinas0e056f22009-07-24 12:32:58 +01001092 ldmfd sp!, {r0-r7, r9-r11}
Catalin Marinas7d09e852007-06-01 17:14:53 +01001093 mov r10, #0 @ swith back to cache level 0
1094 mcr p15, 2, r10, c0, c0, 0 @ select current cache level in cssr
Catalin Marinas7d09e852007-06-01 17:14:53 +01001095iflush:
Catalin Marinasc30c2f92008-11-06 13:23:07 +00001096 mcr p15, 0, r10, c7, c10, 4 @ DSB
Catalin Marinas7d09e852007-06-01 17:14:53 +01001097 mcr p15, 0, r10, c7, c5, 0 @ invalidate I+BTB
Catalin Marinasc30c2f92008-11-06 13:23:07 +00001098 mcr p15, 0, r10, c7, c10, 4 @ DSB
1099 mcr p15, 0, r10, c7, c5, 4 @ ISB
Catalin Marinas7d09e852007-06-01 17:14:53 +01001100 mov pc, lr
1101
Nicolas Pitre15754bf2007-10-31 15:15:29 -04001102__armv5tej_mmu_cache_flush:
11031: mrc p15, 0, r15, c7, c14, 3 @ test,clean,invalidate D cache
1104 bne 1b
1105 mcr p15, 0, r0, c7, c5, 0 @ flush I cache
1106 mcr p15, 0, r0, c7, c10, 4 @ drain WB
1107 mov pc, lr
1108
Hyok S. Choic76b6b42006-03-24 09:53:18 +00001109__armv4_mmu_cache_flush:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110 mov r2, #64*1024 @ default: 32K dcache size (*2)
1111 mov r11, #32 @ default: 32 byte line size
1112 mrc p15, 0, r3, c0, c0, 1 @ read cache type
Russell King98e12b52010-02-25 23:56:38 +00001113 teq r3, r9 @ cache ID register present?
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114 beq no_cache_id
1115 mov r1, r3, lsr #18
1116 and r1, r1, #7
1117 mov r2, #1024
1118 mov r2, r2, lsl r1 @ base dcache size *2
1119 tst r3, #1 << 14 @ test M bit
1120 addne r2, r2, r2, lsr #1 @ +1/2 size if M == 1
1121 mov r3, r3, lsr #12
1122 and r3, r3, #3
1123 mov r11, #8
1124 mov r11, r11, lsl r3 @ cache line size in bytes
1125no_cache_id:
Catalin Marinas0e056f22009-07-24 12:32:58 +01001126 mov r1, pc
1127 bic r1, r1, #63 @ align to longest cache line
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128 add r2, r1, r2
Catalin Marinas0e056f22009-07-24 12:32:58 +010011291:
1130 ARM( ldr r3, [r1], r11 ) @ s/w flush D cache
1131 THUMB( ldr r3, [r1] ) @ s/w flush D cache
1132 THUMB( add r1, r1, r11 )
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133 teq r1, r2
1134 bne 1b
1135
1136 mcr p15, 0, r1, c7, c5, 0 @ flush I cache
1137 mcr p15, 0, r1, c7, c6, 0 @ flush D cache
1138 mcr p15, 0, r1, c7, c10, 4 @ drain WB
1139 mov pc, lr
1140
Hyok S. Choic76b6b42006-03-24 09:53:18 +00001141__armv3_mmu_cache_flush:
Hyok S. Choi10c2df62006-03-27 10:21:34 +01001142__armv3_mpu_cache_flush:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143 mov r1, #0
Uwe Kleine-König63fa7182010-01-26 22:18:09 +01001144 mcr p15, 0, r1, c7, c0, 0 @ invalidate whole cache v3
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145 mov pc, lr
1146
1147/*
1148 * Various debugging routines for printing hex characters and
1149 * memory, which again must be relocatable.
1150 */
1151#ifdef DEBUG
Catalin Marinas88987ef2009-07-24 12:32:52 +01001152 .align 2
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153 .type phexbuf,#object
1154phexbuf: .space 12
1155 .size phexbuf, . - phexbuf
1156
Uwe Kleine-Königbe6f9f02010-01-26 22:22:20 +01001157@ phex corrupts {r0, r1, r2, r3}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158phex: adr r3, phexbuf
1159 mov r2, #0
1160 strb r2, [r3, r1]
11611: subs r1, r1, #1
1162 movmi r0, r3
1163 bmi puts
1164 and r2, r0, #15
1165 mov r0, r0, lsr #4
1166 cmp r2, #10
1167 addge r2, r2, #7
1168 add r2, r2, #'0'
1169 strb r2, [r3, r1]
1170 b 1b
1171
Uwe Kleine-Königbe6f9f02010-01-26 22:22:20 +01001172@ puts corrupts {r0, r1, r2, r3}
Tony Lindgren4e6d4882010-02-01 23:26:53 +01001173puts: loadsp r3, r1
Linus Torvalds1da177e2005-04-16 15:20:36 -070011741: ldrb r2, [r0], #1
1175 teq r2, #0
1176 moveq pc, lr
Russell King5cd0c342005-05-03 12:18:46 +010011772: writeb r2, r3
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178 mov r1, #0x00020000
11793: subs r1, r1, #1
1180 bne 3b
1181 teq r2, #'\n'
1182 moveq r2, #'\r'
1183 beq 2b
1184 teq r0, #0
1185 bne 1b
1186 mov pc, lr
Uwe Kleine-Königbe6f9f02010-01-26 22:22:20 +01001187@ putc corrupts {r0, r1, r2, r3}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188putc:
1189 mov r2, r0
1190 mov r0, #0
Tony Lindgren4e6d4882010-02-01 23:26:53 +01001191 loadsp r3, r1
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192 b 2b
1193
Uwe Kleine-Königbe6f9f02010-01-26 22:22:20 +01001194@ memdump corrupts {r0, r1, r2, r3, r10, r11, r12, lr}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195memdump: mov r12, r0
1196 mov r10, lr
1197 mov r11, #0
11982: mov r0, r11, lsl #2
1199 add r0, r0, r12
1200 mov r1, #8
1201 bl phex
1202 mov r0, #':'
1203 bl putc
12041: mov r0, #' '
1205 bl putc
1206 ldr r0, [r12, r11, lsl #2]
1207 mov r1, #8
1208 bl phex
1209 and r0, r11, #7
1210 teq r0, #3
1211 moveq r0, #' '
1212 bleq putc
1213 and r0, r11, #7
1214 add r11, r11, #1
1215 teq r0, #7
1216 bne 1b
1217 mov r0, #'\n'
1218 bl putc
1219 cmp r11, #64
1220 blt 2b
1221 mov pc, r10
1222#endif
1223
Catalin Marinas92c83ff2007-06-22 14:27:50 +01001224 .ltorg
Nicolas Pitreadcc2592011-04-27 16:15:11 -04001225reloc_code_end:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226
1227 .align
Russell Kingb0c4d4e2010-11-22 12:00:59 +00001228 .section ".stack", "aw", %nobits
Nicolas Pitre8d7e4cc2011-04-27 14:54:39 -04001229.L_user_stack: .space 4096
1230.L_user_stack_end: