blob: d3892efbbaa2b4864a8843cb56c1a24b6d91ee1c [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
Russell King52404d12012-05-10 09:48:34 +0100571#ifdef CONFIG_CPU_DCACHE_WRITETHROUGH
572#define CB_BITS 0x08
573#else
574#define CB_BITS 0x0c
575#endif
576
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577__setup_mmu: sub r3, r4, #16384 @ Page directory size
578 bic r3, r3, #0xff @ Align the pointer
579 bic r3, r3, #0x3f00
580/*
581 * Initialise the page tables, turning on the cacheable and bufferable
582 * bits for the RAM area only.
583 */
584 mov r0, r3
Russell Kingf4619022006-01-12 17:17:57 +0000585 mov r9, r0, lsr #18
586 mov r9, r9, lsl #18 @ start of RAM
587 add r10, r9, #0x10000000 @ a reasonable RAM size
Russell King52404d12012-05-10 09:48:34 +0100588 mov r1, #0x12 @ XN|U + section mapping
589 orr r1, r1, #3 << 10 @ AP=11
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 add r2, r3, #16384
Nicolas Pitre265d5e42006-01-18 22:38:51 +00005911: cmp r1, r9 @ if virt > start of RAM
Russell King52404d12012-05-10 09:48:34 +0100592 cmphs r10, r1 @ && end of RAM > virt
593 bic r1, r1, #0x1c @ clear XN|U + C + B
594 orrlo r1, r1, #0x10 @ Set XN|U for non-RAM
595 orrhs r1, r1, r6 @ set RAM section settings
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 str r1, [r0], #4 @ 1:1 mapping
597 add r1, r1, #1048576
598 teq r0, r2
599 bne 1b
600/*
601 * If ever we are running from Flash, then we surely want the cache
602 * to be enabled also for our execution instance... We map 2MB of it
603 * so there is no map overlap problem for up to 1 MB compressed kernel.
604 * If the execution is in RAM then we would only be duplicating the above.
605 */
Russell King52404d12012-05-10 09:48:34 +0100606 orr r1, r6, #0x04 @ ensure B is set for this
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 orr r1, r1, #3 << 10
Dave Martinbfa64c42010-11-29 19:43:26 +0100608 mov r2, pc
609 mov r2, r2, lsr #20
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 orr r1, r1, r2, lsl #20
611 add r0, r3, r2, lsl #2
612 str r1, [r0], #4
613 add r1, r1, #1048576
614 str r1, [r0]
615 mov pc, lr
Catalin Marinas93ed3972008-08-28 11:22:32 +0100616ENDPROC(__setup_mmu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617
Mark A. Greeraf3e4fd2011-04-01 15:41:26 +0100618__arm926ejs_mmu_cache_on:
619#ifdef CONFIG_CPU_DCACHE_WRITETHROUGH
620 mov r0, #4 @ put dcache in WT mode
621 mcr p15, 7, r0, c15, c0, 0
622#endif
623
Hyok S. Choic76b6b42006-03-24 09:53:18 +0000624__armv4_mmu_cache_on:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 mov r12, lr
Catalin Marinas8bdca0a2009-07-24 12:35:06 +0100626#ifdef CONFIG_MMU
Russell King52404d12012-05-10 09:48:34 +0100627 mov r6, #CB_BITS | 0x12 @ U
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 bl __setup_mmu
629 mov r0, #0
630 mcr p15, 0, r0, c7, c10, 4 @ drain write buffer
631 mcr p15, 0, r0, c8, c7, 0 @ flush I,D TLBs
632 mrc p15, 0, r0, c1, c0, 0 @ read control reg
633 orr r0, r0, #0x5000 @ I-cache enable, RR cache replacement
634 orr r0, r0, #0x0030
Catalin Marinas26584852009-05-30 14:00:18 +0100635#ifdef CONFIG_CPU_ENDIAN_BE8
636 orr r0, r0, #1 << 25 @ big-endian page tables
637#endif
Hyok S. Choic76b6b42006-03-24 09:53:18 +0000638 bl __common_mmu_cache_on
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 mov r0, #0
640 mcr p15, 0, r0, c8, c7, 0 @ flush I,D TLBs
Catalin Marinas8bdca0a2009-07-24 12:35:06 +0100641#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 mov pc, r12
643
Catalin Marinas7d09e852007-06-01 17:14:53 +0100644__armv7_mmu_cache_on:
645 mov r12, lr
Catalin Marinas8bdca0a2009-07-24 12:35:06 +0100646#ifdef CONFIG_MMU
Catalin Marinas7d09e852007-06-01 17:14:53 +0100647 mrc p15, 0, r11, c0, c1, 4 @ read ID_MMFR0
648 tst r11, #0xf @ VMSA
Russell King52404d12012-05-10 09:48:34 +0100649 movne r6, #CB_BITS | 0x02 @ !XN
Catalin Marinas7d09e852007-06-01 17:14:53 +0100650 blne __setup_mmu
651 mov r0, #0
652 mcr p15, 0, r0, c7, c10, 4 @ drain write buffer
653 tst r11, #0xf @ VMSA
654 mcrne p15, 0, r0, c8, c7, 0 @ flush I,D TLBs
Catalin Marinas8bdca0a2009-07-24 12:35:06 +0100655#endif
Catalin Marinas7d09e852007-06-01 17:14:53 +0100656 mrc p15, 0, r0, c1, c0, 0 @ read control reg
Matthew Leachdca2dd12012-09-11 17:56:57 +0100657 bic r0, r0, #1 << 28 @ clear SCTLR.TRE
Catalin Marinas7d09e852007-06-01 17:14:53 +0100658 orr r0, r0, #0x5000 @ I-cache enable, RR cache replacement
659 orr r0, r0, #0x003c @ write buffer
Catalin Marinas8bdca0a2009-07-24 12:35:06 +0100660#ifdef CONFIG_MMU
Catalin Marinas26584852009-05-30 14:00:18 +0100661#ifdef CONFIG_CPU_ENDIAN_BE8
662 orr r0, r0, #1 << 25 @ big-endian page tables
663#endif
Catalin Marinas7d09e852007-06-01 17:14:53 +0100664 orrne r0, r0, #1 @ MMU enabled
Russell King52404d12012-05-10 09:48:34 +0100665 movne r1, #0xfffffffd @ domain 0 = client
Catalin Marinas7d09e852007-06-01 17:14:53 +0100666 mcrne p15, 0, r3, c2, c0, 0 @ load page table pointer
667 mcrne p15, 0, r1, c3, c0, 0 @ load domain access control
Catalin Marinas8bdca0a2009-07-24 12:35:06 +0100668#endif
Will Deacond675d0b2011-11-22 17:30:28 +0000669 mcr p15, 0, r0, c7, c5, 4 @ ISB
Catalin Marinas7d09e852007-06-01 17:14:53 +0100670 mcr p15, 0, r0, c1, c0, 0 @ load control register
671 mrc p15, 0, r0, c1, c0, 0 @ and read it back
672 mov r0, #0
673 mcr p15, 0, r0, c7, c5, 4 @ ISB
674 mov pc, r12
675
Paulius Zaleckas28853ac2009-03-25 13:10:01 +0200676__fa526_cache_on:
677 mov r12, lr
Russell King52404d12012-05-10 09:48:34 +0100678 mov r6, #CB_BITS | 0x12 @ U
Paulius Zaleckas28853ac2009-03-25 13:10:01 +0200679 bl __setup_mmu
680 mov r0, #0
681 mcr p15, 0, r0, c7, c7, 0 @ Invalidate whole cache
682 mcr p15, 0, r0, c7, c10, 4 @ drain write buffer
683 mcr p15, 0, r0, c8, c7, 0 @ flush UTLB
684 mrc p15, 0, r0, c1, c0, 0 @ read control reg
685 orr r0, r0, #0x1000 @ I-cache enable
686 bl __common_mmu_cache_on
687 mov r0, #0
688 mcr p15, 0, r0, c8, c7, 0 @ flush UTLB
689 mov pc, r12
690
Hyok S. Choic76b6b42006-03-24 09:53:18 +0000691__arm6_mmu_cache_on:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 mov r12, lr
Russell King52404d12012-05-10 09:48:34 +0100693 mov r6, #CB_BITS | 0x12 @ U
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 bl __setup_mmu
695 mov r0, #0
696 mcr p15, 0, r0, c7, c0, 0 @ invalidate whole cache v3
697 mcr p15, 0, r0, c5, c0, 0 @ invalidate whole TLB v3
698 mov r0, #0x30
Hyok S. Choic76b6b42006-03-24 09:53:18 +0000699 bl __common_mmu_cache_on
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 mov r0, #0
701 mcr p15, 0, r0, c5, c0, 0 @ invalidate whole TLB v3
702 mov pc, r12
703
Hyok S. Choic76b6b42006-03-24 09:53:18 +0000704__common_mmu_cache_on:
Catalin Marinas0e056f22009-07-24 12:32:58 +0100705#ifndef CONFIG_THUMB2_KERNEL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706#ifndef DEBUG
707 orr r0, r0, #0x000d @ Write buffer, mmu
708#endif
709 mov r1, #-1
710 mcr p15, 0, r3, c2, c0, 0 @ load page table pointer
711 mcr p15, 0, r1, c3, c0, 0 @ load domain access control
Nicolas Pitre2dc76672006-07-01 21:29:32 +0100712 b 1f
713 .align 5 @ cache line aligned
7141: mcr p15, 0, r0, c1, c0, 0 @ load control register
715 mrc p15, 0, r0, c1, c0, 0 @ and read it back to
716 sub pc, lr, r0, lsr #32 @ properly flush pipeline
Catalin Marinas0e056f22009-07-24 12:32:58 +0100717#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718
Dave Martin946a1052011-06-14 14:20:44 +0100719#define PROC_ENTRY_SIZE (4*5)
720
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 * Here follow the relocatable cache support functions for the
723 * various processors. This is a generic hook for locating an
724 * entry and jumping to an instruction at the specified offset
725 * from the start of the block. Please note this is all position
726 * independent code.
727 *
728 * r1 = corrupted
729 * r2 = corrupted
730 * r3 = block offset
Russell King98e12b52010-02-25 23:56:38 +0000731 * r9 = corrupted
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732 * r12 = corrupted
733 */
734
735call_cache_fn: adr r12, proc_types
Hyok S. Choif12d0d72006-09-26 17:36:37 +0900736#ifdef CONFIG_CPU_CP15
Russell King98e12b52010-02-25 23:56:38 +0000737 mrc p15, 0, r9, c0, c0 @ get processor ID
Hyok S. Choif12d0d72006-09-26 17:36:37 +0900738#else
Russell King98e12b52010-02-25 23:56:38 +0000739 ldr r9, =CONFIG_PROCESSOR_ID
Hyok S. Choif12d0d72006-09-26 17:36:37 +0900740#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07007411: ldr r1, [r12, #0] @ get value
742 ldr r2, [r12, #4] @ get mask
Russell King98e12b52010-02-25 23:56:38 +0000743 eor r1, r1, r9 @ (real ^ match)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744 tst r1, r2 @ & mask
Catalin Marinas0e056f22009-07-24 12:32:58 +0100745 ARM( addeq pc, r12, r3 ) @ call cache function
746 THUMB( addeq r12, r3 )
747 THUMB( moveq pc, r12 ) @ call cache function
Dave Martin946a1052011-06-14 14:20:44 +0100748 add r12, r12, #PROC_ENTRY_SIZE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 b 1b
750
751/*
752 * Table for cache operations. This is basically:
753 * - CPU ID match
754 * - CPU ID mask
755 * - 'cache on' method instruction
756 * - 'cache off' method instruction
757 * - 'cache flush' method instruction
758 *
759 * We match an entry using: ((real_id ^ match) & mask) == 0
760 *
761 * Writethrough caches generally only need 'on' and 'off'
762 * methods. Writeback caches _must_ have the flush method
763 * defined.
764 */
Catalin Marinas88987ef2009-07-24 12:32:52 +0100765 .align 2
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 .type proc_types,#object
767proc_types:
768 .word 0x41560600 @ ARM6/610
769 .word 0xffffffe0
Catalin Marinas0e056f22009-07-24 12:32:58 +0100770 W(b) __arm6_mmu_cache_off @ works, but slow
771 W(b) __arm6_mmu_cache_off
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 mov pc, lr
Catalin Marinas0e056f22009-07-24 12:32:58 +0100773 THUMB( nop )
Hyok S. Choic76b6b42006-03-24 09:53:18 +0000774@ b __arm6_mmu_cache_on @ untested
775@ b __arm6_mmu_cache_off
776@ b __armv3_mmu_cache_flush
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777
Brian Swetlanded275aa2009-01-26 17:15:49 -0800778#if !defined(CONFIG_CPU_V7)
779 /* This collides with some V7 IDs, preventing correct detection */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 .word 0x00000000 @ old ARM ID
781 .word 0x0000f000
782 mov pc, lr
Catalin Marinas0e056f22009-07-24 12:32:58 +0100783 THUMB( nop )
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 mov pc, lr
Catalin Marinas0e056f22009-07-24 12:32:58 +0100787 THUMB( nop )
Brian Swetlanded275aa2009-01-26 17:15:49 -0800788#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789
790 .word 0x41007000 @ ARM7/710
791 .word 0xfff8fe00
Catalin Marinas0e056f22009-07-24 12:32:58 +0100792 W(b) __arm7_mmu_cache_off
793 W(b) __arm7_mmu_cache_off
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 mov pc, lr
Catalin Marinas0e056f22009-07-24 12:32:58 +0100795 THUMB( nop )
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796
797 .word 0x41807200 @ ARM720T (writethrough)
798 .word 0xffffff00
Catalin Marinas0e056f22009-07-24 12:32:58 +0100799 W(b) __armv4_mmu_cache_on
800 W(b) __armv4_mmu_cache_off
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 mov pc, lr
Catalin Marinas0e056f22009-07-24 12:32:58 +0100802 THUMB( nop )
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803
Hyok S. Choi10c2df62006-03-27 10:21:34 +0100804 .word 0x41007400 @ ARM74x
805 .word 0xff00ff00
Catalin Marinas0e056f22009-07-24 12:32:58 +0100806 W(b) __armv3_mpu_cache_on
807 W(b) __armv3_mpu_cache_off
808 W(b) __armv3_mpu_cache_flush
Hyok S. Choi10c2df62006-03-27 10:21:34 +0100809
810 .word 0x41009400 @ ARM94x
811 .word 0xff00ff00
Catalin Marinas0e056f22009-07-24 12:32:58 +0100812 W(b) __armv4_mpu_cache_on
813 W(b) __armv4_mpu_cache_off
814 W(b) __armv4_mpu_cache_flush
Hyok S. Choi10c2df62006-03-27 10:21:34 +0100815
Mark A. Greeraf3e4fd2011-04-01 15:41:26 +0100816 .word 0x41069260 @ ARM926EJ-S (v5TEJ)
817 .word 0xff0ffff0
Nicolas Pitre720c60e2011-06-09 05:05:27 +0100818 W(b) __arm926ejs_mmu_cache_on
819 W(b) __armv4_mmu_cache_off
820 W(b) __armv5tej_mmu_cache_flush
Mark A. Greeraf3e4fd2011-04-01 15:41:26 +0100821
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 .word 0x00007000 @ ARM7 IDs
823 .word 0x0000f000
824 mov pc, lr
Catalin Marinas0e056f22009-07-24 12:32:58 +0100825 THUMB( nop )
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 mov pc, lr
Catalin Marinas0e056f22009-07-24 12:32:58 +0100827 THUMB( nop )
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 mov pc, lr
Catalin Marinas0e056f22009-07-24 12:32:58 +0100829 THUMB( nop )
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830
831 @ Everything from here on will be the new ID system.
832
833 .word 0x4401a100 @ sa110 / sa1100
834 .word 0xffffffe0
Catalin Marinas0e056f22009-07-24 12:32:58 +0100835 W(b) __armv4_mmu_cache_on
836 W(b) __armv4_mmu_cache_off
837 W(b) __armv4_mmu_cache_flush
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838
839 .word 0x6901b110 @ sa1110
840 .word 0xfffffff0
Catalin Marinas0e056f22009-07-24 12:32:58 +0100841 W(b) __armv4_mmu_cache_on
842 W(b) __armv4_mmu_cache_off
843 W(b) __armv4_mmu_cache_flush
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844
Haojian Zhuang4157d312010-03-12 05:47:55 -0500845 .word 0x56056900
846 .word 0xffffff00 @ PXA9xx
Catalin Marinas0e056f22009-07-24 12:32:58 +0100847 W(b) __armv4_mmu_cache_on
848 W(b) __armv4_mmu_cache_off
849 W(b) __armv4_mmu_cache_flush
Eric Miao59c7bcd2008-11-29 21:42:39 +0800850
Eric Miao49cbe782009-01-20 14:15:18 +0800851 .word 0x56158000 @ PXA168
852 .word 0xfffff000
Catalin Marinas0e056f22009-07-24 12:32:58 +0100853 W(b) __armv4_mmu_cache_on
854 W(b) __armv4_mmu_cache_off
855 W(b) __armv5tej_mmu_cache_flush
Eric Miao49cbe782009-01-20 14:15:18 +0800856
Nicolas Pitre2e2023f2008-06-03 23:06:21 +0200857 .word 0x56050000 @ Feroceon
858 .word 0xff0f0000
Catalin Marinas0e056f22009-07-24 12:32:58 +0100859 W(b) __armv4_mmu_cache_on
860 W(b) __armv4_mmu_cache_off
861 W(b) __armv5tej_mmu_cache_flush
Nicolas Pitre3ebb5a22007-10-31 15:31:48 -0400862
Joonyoung Shim55879312009-06-16 20:05:57 +0900863#ifdef CONFIG_CPU_FEROCEON_OLD_ID
864 /* this conflicts with the standard ARMv5TE entry */
865 .long 0x41009260 @ Old Feroceon
866 .long 0xff00fff0
867 b __armv4_mmu_cache_on
868 b __armv4_mmu_cache_off
869 b __armv5tej_mmu_cache_flush
870#endif
871
Paulius Zaleckas28853ac2009-03-25 13:10:01 +0200872 .word 0x66015261 @ FA526
873 .word 0xff01fff1
Catalin Marinas0e056f22009-07-24 12:32:58 +0100874 W(b) __fa526_cache_on
875 W(b) __armv4_mmu_cache_off
876 W(b) __fa526_cache_flush
Paulius Zaleckas28853ac2009-03-25 13:10:01 +0200877
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878 @ These match on the architecture ID
879
880 .word 0x00020000 @ ARMv4T
881 .word 0x000f0000
Catalin Marinas0e056f22009-07-24 12:32:58 +0100882 W(b) __armv4_mmu_cache_on
883 W(b) __armv4_mmu_cache_off
884 W(b) __armv4_mmu_cache_flush
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885
886 .word 0x00050000 @ ARMv5TE
887 .word 0x000f0000
Catalin Marinas0e056f22009-07-24 12:32:58 +0100888 W(b) __armv4_mmu_cache_on
889 W(b) __armv4_mmu_cache_off
890 W(b) __armv4_mmu_cache_flush
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891
892 .word 0x00060000 @ ARMv5TEJ
893 .word 0x000f0000
Catalin Marinas0e056f22009-07-24 12:32:58 +0100894 W(b) __armv4_mmu_cache_on
895 W(b) __armv4_mmu_cache_off
Sascha Hauer75216852010-03-15 15:14:50 +0100896 W(b) __armv5tej_mmu_cache_flush
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897
Catalin Marinas45a7b9c2006-06-18 16:21:50 +0100898 .word 0x0007b000 @ ARMv6
Catalin Marinas7d09e852007-06-01 17:14:53 +0100899 .word 0x000ff000
Catalin Marinas0e056f22009-07-24 12:32:58 +0100900 W(b) __armv4_mmu_cache_on
901 W(b) __armv4_mmu_cache_off
902 W(b) __armv6_mmu_cache_flush
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903
Catalin Marinas7d09e852007-06-01 17:14:53 +0100904 .word 0x000f0000 @ new CPU Id
905 .word 0x000f0000
Catalin Marinas0e056f22009-07-24 12:32:58 +0100906 W(b) __armv7_mmu_cache_on
907 W(b) __armv7_mmu_cache_off
908 W(b) __armv7_mmu_cache_flush
Catalin Marinas7d09e852007-06-01 17:14:53 +0100909
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910 .word 0 @ unrecognised type
911 .word 0
912 mov pc, lr
Catalin Marinas0e056f22009-07-24 12:32:58 +0100913 THUMB( nop )
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914 mov pc, lr
Catalin Marinas0e056f22009-07-24 12:32:58 +0100915 THUMB( nop )
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916 mov pc, lr
Catalin Marinas0e056f22009-07-24 12:32:58 +0100917 THUMB( nop )
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918
919 .size proc_types, . - proc_types
920
Dave Martin946a1052011-06-14 14:20:44 +0100921 /*
922 * If you get a "non-constant expression in ".if" statement"
923 * error from the assembler on this line, check that you have
924 * not accidentally written a "b" instruction where you should
925 * have written W(b).
926 */
927 .if (. - proc_types) % PROC_ENTRY_SIZE != 0
928 .error "The size of one or more proc_types entries is wrong."
929 .endif
930
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931/*
932 * Turn off the Cache and MMU. ARMv3 does not support
933 * reading the control register, but ARMv4 does.
934 *
Uwe Kleine-König21b28412010-01-26 22:08:09 +0100935 * On exit,
936 * r0, r1, r2, r3, r9, r12 corrupted
937 * This routine must preserve:
Nicolas Pitre6d7d0ae2011-02-21 07:06:45 +0100938 * r4, r7, r8
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939 */
940 .align 5
941cache_off: mov r3, #12 @ cache_off function
942 b call_cache_fn
943
Hyok S. Choi10c2df62006-03-27 10:21:34 +0100944__armv4_mpu_cache_off:
945 mrc p15, 0, r0, c1, c0
946 bic r0, r0, #0x000d
947 mcr p15, 0, r0, c1, c0 @ turn MPU and cache off
948 mov r0, #0
949 mcr p15, 0, r0, c7, c10, 4 @ drain write buffer
950 mcr p15, 0, r0, c7, c6, 0 @ flush D-Cache
951 mcr p15, 0, r0, c7, c5, 0 @ flush I-Cache
952 mov pc, lr
953
954__armv3_mpu_cache_off:
955 mrc p15, 0, r0, c1, c0
956 bic r0, r0, #0x000d
957 mcr p15, 0, r0, c1, c0, 0 @ turn MPU and cache off
958 mov r0, #0
959 mcr p15, 0, r0, c7, c0, 0 @ invalidate whole cache v3
960 mov pc, lr
961
Hyok S. Choic76b6b42006-03-24 09:53:18 +0000962__armv4_mmu_cache_off:
Catalin Marinas8bdca0a2009-07-24 12:35:06 +0100963#ifdef CONFIG_MMU
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964 mrc p15, 0, r0, c1, c0
965 bic r0, r0, #0x000d
966 mcr p15, 0, r0, c1, c0 @ turn MMU and cache off
967 mov r0, #0
968 mcr p15, 0, r0, c7, c7 @ invalidate whole cache v4
969 mcr p15, 0, r0, c8, c7 @ invalidate whole TLB v4
Catalin Marinas8bdca0a2009-07-24 12:35:06 +0100970#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971 mov pc, lr
972
Catalin Marinas7d09e852007-06-01 17:14:53 +0100973__armv7_mmu_cache_off:
974 mrc p15, 0, r0, c1, c0
Catalin Marinas8bdca0a2009-07-24 12:35:06 +0100975#ifdef CONFIG_MMU
Catalin Marinas7d09e852007-06-01 17:14:53 +0100976 bic r0, r0, #0x000d
Catalin Marinas8bdca0a2009-07-24 12:35:06 +0100977#else
978 bic r0, r0, #0x000c
979#endif
Catalin Marinas7d09e852007-06-01 17:14:53 +0100980 mcr p15, 0, r0, c1, c0 @ turn MMU and cache off
981 mov r12, lr
982 bl __armv7_mmu_cache_flush
983 mov r0, #0
Catalin Marinas8bdca0a2009-07-24 12:35:06 +0100984#ifdef CONFIG_MMU
Catalin Marinas7d09e852007-06-01 17:14:53 +0100985 mcr p15, 0, r0, c8, c7, 0 @ invalidate whole TLB
Catalin Marinas8bdca0a2009-07-24 12:35:06 +0100986#endif
Catalin Marinasc30c2f92008-11-06 13:23:07 +0000987 mcr p15, 0, r0, c7, c5, 6 @ invalidate BTC
988 mcr p15, 0, r0, c7, c10, 4 @ DSB
989 mcr p15, 0, r0, c7, c5, 4 @ ISB
Catalin Marinas7d09e852007-06-01 17:14:53 +0100990 mov pc, r12
991
Hyok S. Choic76b6b42006-03-24 09:53:18 +0000992__arm6_mmu_cache_off:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993 mov r0, #0x00000030 @ ARM6 control reg.
Hyok S. Choic76b6b42006-03-24 09:53:18 +0000994 b __armv3_mmu_cache_off
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995
Hyok S. Choic76b6b42006-03-24 09:53:18 +0000996__arm7_mmu_cache_off:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997 mov r0, #0x00000070 @ ARM7 control reg.
Hyok S. Choic76b6b42006-03-24 09:53:18 +0000998 b __armv3_mmu_cache_off
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999
Hyok S. Choic76b6b42006-03-24 09:53:18 +00001000__armv3_mmu_cache_off:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001 mcr p15, 0, r0, c1, c0, 0 @ turn MMU and cache off
1002 mov r0, #0
1003 mcr p15, 0, r0, c7, c0, 0 @ invalidate whole cache v3
1004 mcr p15, 0, r0, c5, c0, 0 @ invalidate whole TLB v3
1005 mov pc, lr
1006
1007/*
1008 * Clean and flush the cache to maintain consistency.
1009 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010 * On exit,
Uwe Kleine-König21b28412010-01-26 22:08:09 +01001011 * r1, r2, r3, r9, r10, r11, r12 corrupted
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012 * This routine must preserve:
Nicolas Pitre6d7d0ae2011-02-21 07:06:45 +01001013 * r4, r6, r7, r8
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 */
1015 .align 5
1016cache_clean_flush:
1017 mov r3, #16
1018 b call_cache_fn
1019
Hyok S. Choi10c2df62006-03-27 10:21:34 +01001020__armv4_mpu_cache_flush:
1021 mov r2, #1
1022 mov r3, #0
1023 mcr p15, 0, ip, c7, c6, 0 @ invalidate D cache
1024 mov r1, #7 << 5 @ 8 segments
10251: orr r3, r1, #63 << 26 @ 64 entries
10262: mcr p15, 0, r3, c7, c14, 2 @ clean & invalidate D index
1027 subs r3, r3, #1 << 26
1028 bcs 2b @ entries 63 to 0
1029 subs r1, r1, #1 << 5
1030 bcs 1b @ segments 7 to 0
1031
1032 teq r2, #0
1033 mcrne p15, 0, ip, c7, c5, 0 @ invalidate I cache
1034 mcr p15, 0, ip, c7, c10, 4 @ drain WB
1035 mov pc, lr
1036
Paulius Zaleckas28853ac2009-03-25 13:10:01 +02001037__fa526_cache_flush:
1038 mov r1, #0
1039 mcr p15, 0, r1, c7, c14, 0 @ clean and invalidate D cache
1040 mcr p15, 0, r1, c7, c5, 0 @ flush I cache
1041 mcr p15, 0, r1, c7, c10, 4 @ drain WB
1042 mov pc, lr
Hyok S. Choi10c2df62006-03-27 10:21:34 +01001043
Hyok S. Choic76b6b42006-03-24 09:53:18 +00001044__armv6_mmu_cache_flush:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045 mov r1, #0
1046 mcr p15, 0, r1, c7, c14, 0 @ clean+invalidate D
1047 mcr p15, 0, r1, c7, c5, 0 @ invalidate I+BTB
1048 mcr p15, 0, r1, c7, c15, 0 @ clean+invalidate unified
1049 mcr p15, 0, r1, c7, c10, 4 @ drain WB
1050 mov pc, lr
1051
Catalin Marinas7d09e852007-06-01 17:14:53 +01001052__armv7_mmu_cache_flush:
1053 mrc p15, 0, r10, c0, c1, 5 @ read ID_MMFR1
1054 tst r10, #0xf << 16 @ hierarchical cache (ARMv7)
Catalin Marinas7d09e852007-06-01 17:14:53 +01001055 mov r10, #0
Catalin Marinasc30c2f92008-11-06 13:23:07 +00001056 beq hierarchical
Catalin Marinas7d09e852007-06-01 17:14:53 +01001057 mcr p15, 0, r10, c7, c14, 0 @ clean+invalidate D
1058 b iflush
1059hierarchical:
Catalin Marinasc30c2f92008-11-06 13:23:07 +00001060 mcr p15, 0, r10, c7, c10, 5 @ DMB
Catalin Marinas0e056f22009-07-24 12:32:58 +01001061 stmfd sp!, {r0-r7, r9-r11}
Catalin Marinas7d09e852007-06-01 17:14:53 +01001062 mrc p15, 1, r0, c0, c0, 1 @ read clidr
1063 ands r3, r0, #0x7000000 @ extract loc from clidr
1064 mov r3, r3, lsr #23 @ left align loc bit field
1065 beq finished @ if loc is 0, then no need to clean
1066 mov r10, #0 @ start clean at cache level 0
1067loop1:
1068 add r2, r10, r10, lsr #1 @ work out 3x current cache level
1069 mov r1, r0, lsr r2 @ extract cache type bits from clidr
1070 and r1, r1, #7 @ mask of the bits for current cache only
1071 cmp r1, #2 @ see what cache we have at this level
1072 blt skip @ skip if no cache, or just i-cache
1073 mcr p15, 2, r10, c0, c0, 0 @ select current cache level in cssr
1074 mcr p15, 0, r10, c7, c5, 4 @ isb to sych the new cssr&csidr
1075 mrc p15, 1, r1, c0, c0, 0 @ read the new csidr
1076 and r2, r1, #7 @ extract the length of the cache lines
1077 add r2, r2, #4 @ add 4 (line length offset)
1078 ldr r4, =0x3ff
1079 ands r4, r4, r1, lsr #3 @ find maximum number on the way size
Catalin Marinas000b5022008-10-03 11:09:10 +01001080 clz r5, r4 @ find bit position of way size increment
Catalin Marinas7d09e852007-06-01 17:14:53 +01001081 ldr r7, =0x7fff
1082 ands r7, r7, r1, lsr #13 @ extract max number of the index size
1083loop2:
1084 mov r9, r4 @ create working copy of max way size
1085loop3:
Catalin Marinas0e056f22009-07-24 12:32:58 +01001086 ARM( orr r11, r10, r9, lsl r5 ) @ factor way and cache number into r11
1087 ARM( orr r11, r11, r7, lsl r2 ) @ factor index number into r11
1088 THUMB( lsl r6, r9, r5 )
1089 THUMB( orr r11, r10, r6 ) @ factor way and cache number into r11
1090 THUMB( lsl r6, r7, r2 )
1091 THUMB( orr r11, r11, r6 ) @ factor index number into r11
Catalin Marinas7d09e852007-06-01 17:14:53 +01001092 mcr p15, 0, r11, c7, c14, 2 @ clean & invalidate by set/way
1093 subs r9, r9, #1 @ decrement the way
1094 bge loop3
1095 subs r7, r7, #1 @ decrement the index
1096 bge loop2
1097skip:
1098 add r10, r10, #2 @ increment cache number
1099 cmp r3, r10
1100 bgt loop1
1101finished:
Catalin Marinas0e056f22009-07-24 12:32:58 +01001102 ldmfd sp!, {r0-r7, r9-r11}
Catalin Marinas7d09e852007-06-01 17:14:53 +01001103 mov r10, #0 @ swith back to cache level 0
1104 mcr p15, 2, r10, c0, c0, 0 @ select current cache level in cssr
Catalin Marinas7d09e852007-06-01 17:14:53 +01001105iflush:
Catalin Marinasc30c2f92008-11-06 13:23:07 +00001106 mcr p15, 0, r10, c7, c10, 4 @ DSB
Catalin Marinas7d09e852007-06-01 17:14:53 +01001107 mcr p15, 0, r10, c7, c5, 0 @ invalidate I+BTB
Catalin Marinasc30c2f92008-11-06 13:23:07 +00001108 mcr p15, 0, r10, c7, c10, 4 @ DSB
1109 mcr p15, 0, r10, c7, c5, 4 @ ISB
Catalin Marinas7d09e852007-06-01 17:14:53 +01001110 mov pc, lr
1111
Nicolas Pitre15754bf2007-10-31 15:15:29 -04001112__armv5tej_mmu_cache_flush:
11131: mrc p15, 0, r15, c7, c14, 3 @ test,clean,invalidate D cache
1114 bne 1b
1115 mcr p15, 0, r0, c7, c5, 0 @ flush I cache
1116 mcr p15, 0, r0, c7, c10, 4 @ drain WB
1117 mov pc, lr
1118
Hyok S. Choic76b6b42006-03-24 09:53:18 +00001119__armv4_mmu_cache_flush:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120 mov r2, #64*1024 @ default: 32K dcache size (*2)
1121 mov r11, #32 @ default: 32 byte line size
1122 mrc p15, 0, r3, c0, c0, 1 @ read cache type
Russell King98e12b52010-02-25 23:56:38 +00001123 teq r3, r9 @ cache ID register present?
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124 beq no_cache_id
1125 mov r1, r3, lsr #18
1126 and r1, r1, #7
1127 mov r2, #1024
1128 mov r2, r2, lsl r1 @ base dcache size *2
1129 tst r3, #1 << 14 @ test M bit
1130 addne r2, r2, r2, lsr #1 @ +1/2 size if M == 1
1131 mov r3, r3, lsr #12
1132 and r3, r3, #3
1133 mov r11, #8
1134 mov r11, r11, lsl r3 @ cache line size in bytes
1135no_cache_id:
Catalin Marinas0e056f22009-07-24 12:32:58 +01001136 mov r1, pc
1137 bic r1, r1, #63 @ align to longest cache line
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138 add r2, r1, r2
Catalin Marinas0e056f22009-07-24 12:32:58 +010011391:
1140 ARM( ldr r3, [r1], r11 ) @ s/w flush D cache
1141 THUMB( ldr r3, [r1] ) @ s/w flush D cache
1142 THUMB( add r1, r1, r11 )
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143 teq r1, r2
1144 bne 1b
1145
1146 mcr p15, 0, r1, c7, c5, 0 @ flush I cache
1147 mcr p15, 0, r1, c7, c6, 0 @ flush D cache
1148 mcr p15, 0, r1, c7, c10, 4 @ drain WB
1149 mov pc, lr
1150
Hyok S. Choic76b6b42006-03-24 09:53:18 +00001151__armv3_mmu_cache_flush:
Hyok S. Choi10c2df62006-03-27 10:21:34 +01001152__armv3_mpu_cache_flush:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153 mov r1, #0
Uwe Kleine-König63fa7182010-01-26 22:18:09 +01001154 mcr p15, 0, r1, c7, c0, 0 @ invalidate whole cache v3
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155 mov pc, lr
1156
1157/*
1158 * Various debugging routines for printing hex characters and
1159 * memory, which again must be relocatable.
1160 */
1161#ifdef DEBUG
Catalin Marinas88987ef2009-07-24 12:32:52 +01001162 .align 2
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163 .type phexbuf,#object
1164phexbuf: .space 12
1165 .size phexbuf, . - phexbuf
1166
Uwe Kleine-Königbe6f9f02010-01-26 22:22:20 +01001167@ phex corrupts {r0, r1, r2, r3}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168phex: adr r3, phexbuf
1169 mov r2, #0
1170 strb r2, [r3, r1]
11711: subs r1, r1, #1
1172 movmi r0, r3
1173 bmi puts
1174 and r2, r0, #15
1175 mov r0, r0, lsr #4
1176 cmp r2, #10
1177 addge r2, r2, #7
1178 add r2, r2, #'0'
1179 strb r2, [r3, r1]
1180 b 1b
1181
Uwe Kleine-Königbe6f9f02010-01-26 22:22:20 +01001182@ puts corrupts {r0, r1, r2, r3}
Tony Lindgren4e6d4882010-02-01 23:26:53 +01001183puts: loadsp r3, r1
Linus Torvalds1da177e2005-04-16 15:20:36 -070011841: ldrb r2, [r0], #1
1185 teq r2, #0
1186 moveq pc, lr
Russell King5cd0c342005-05-03 12:18:46 +010011872: writeb r2, r3
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188 mov r1, #0x00020000
11893: subs r1, r1, #1
1190 bne 3b
1191 teq r2, #'\n'
1192 moveq r2, #'\r'
1193 beq 2b
1194 teq r0, #0
1195 bne 1b
1196 mov pc, lr
Uwe Kleine-Königbe6f9f02010-01-26 22:22:20 +01001197@ putc corrupts {r0, r1, r2, r3}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198putc:
1199 mov r2, r0
1200 mov r0, #0
Tony Lindgren4e6d4882010-02-01 23:26:53 +01001201 loadsp r3, r1
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202 b 2b
1203
Uwe Kleine-Königbe6f9f02010-01-26 22:22:20 +01001204@ memdump corrupts {r0, r1, r2, r3, r10, r11, r12, lr}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205memdump: mov r12, r0
1206 mov r10, lr
1207 mov r11, #0
12082: mov r0, r11, lsl #2
1209 add r0, r0, r12
1210 mov r1, #8
1211 bl phex
1212 mov r0, #':'
1213 bl putc
12141: mov r0, #' '
1215 bl putc
1216 ldr r0, [r12, r11, lsl #2]
1217 mov r1, #8
1218 bl phex
1219 and r0, r11, #7
1220 teq r0, #3
1221 moveq r0, #' '
1222 bleq putc
1223 and r0, r11, #7
1224 add r11, r11, #1
1225 teq r0, #7
1226 bne 1b
1227 mov r0, #'\n'
1228 bl putc
1229 cmp r11, #64
1230 blt 2b
1231 mov pc, r10
1232#endif
1233
Catalin Marinas92c83ff2007-06-22 14:27:50 +01001234 .ltorg
Nicolas Pitreadcc2592011-04-27 16:15:11 -04001235reloc_code_end:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236
1237 .align
Russell Kingb0c4d4e2010-11-22 12:00:59 +00001238 .section ".stack", "aw", %nobits
Nicolas Pitre8d7e4cc2011-04-27 14:54:39 -04001239.L_user_stack: .space 4096
1240.L_user_stack_end: