blob: 7c711ba614173d91d8c2fd6ff4ccb13980bb3109 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/arch/arm/boot/compressed/head.S
3 *
4 * Copyright (C) 1996-2002 Russell King
Hyok S. Choi10c2df62006-03-27 10:21:34 +01005 * Copyright (C) 2004 Hyok S. Choi (MPU support)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
10 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070011#include <linux/linkage.h>
Dave Martin424e5992012-02-10 18:07:07 -080012#include <asm/assembler.h>
Joachim Eastwoodc20611d2015-03-25 08:47:18 +010013#include <asm/v7m.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014
Roy Franz81a0bc32015-09-23 20:17:54 -070015#include "efi-header.S"
16
Joachim Eastwoodc20611d2015-03-25 08:47:18 +010017 AR_CLASS( .arch armv7-a )
18 M_CLASS( .arch armv7-m )
19
Linus Torvalds1da177e2005-04-16 15:20:36 -070020/*
21 * Debugging stuff
22 *
23 * Note that these macros must not contain any code which is not
24 * 100% relocatable. Any attempt to do so will result in a crash.
25 * Please select one of the following when turning on debugging.
26 */
27#ifdef DEBUG
Russell King5cd0c342005-05-03 12:18:46 +010028
Russell King5cd0c342005-05-03 12:18:46 +010029#if defined(CONFIG_DEBUG_ICEDCC)
Tony Lindgren7d95ded2006-09-20 13:03:34 +010030
Stephen Boyddfad5492011-03-23 22:46:15 +010031#if defined(CONFIG_CPU_V6) || defined(CONFIG_CPU_V6K) || defined(CONFIG_CPU_V7)
Tony Lindgren4e6d4882010-02-01 23:26:53 +010032 .macro loadsp, rb, tmp
Tony Lindgren7d95ded2006-09-20 13:03:34 +010033 .endm
34 .macro writeb, ch, rb
35 mcr p14, 0, \ch, c0, c5, 0
36 .endm
Jean-Christop PLAGNIOL-VILLARDc633c3c2009-02-25 04:20:40 +010037#elif defined(CONFIG_CPU_XSCALE)
Tony Lindgren4e6d4882010-02-01 23:26:53 +010038 .macro loadsp, rb, tmp
Jean-Christop PLAGNIOL-VILLARDc633c3c2009-02-25 04:20:40 +010039 .endm
40 .macro writeb, ch, rb
41 mcr p14, 0, \ch, c8, c0, 0
42 .endm
Tony Lindgren7d95ded2006-09-20 13:03:34 +010043#else
Tony Lindgren4e6d4882010-02-01 23:26:53 +010044 .macro loadsp, rb, tmp
Linus Torvalds1da177e2005-04-16 15:20:36 -070045 .endm
Russell King224b5be2005-11-16 14:59:51 +000046 .macro writeb, ch, rb
Uwe Kleine-König41a9e682007-12-13 09:31:34 +010047 mcr p14, 0, \ch, c1, c0, 0
Linus Torvalds1da177e2005-04-16 15:20:36 -070048 .endm
Tony Lindgren7d95ded2006-09-20 13:03:34 +010049#endif
50
Russell King5cd0c342005-05-03 12:18:46 +010051#else
Russell King224b5be2005-11-16 14:59:51 +000052
Shawn Guo4beba082012-12-11 07:06:37 +010053#include CONFIG_DEBUG_LL_INCLUDE
Russell King224b5be2005-11-16 14:59:51 +000054
Russell King5cd0c342005-05-03 12:18:46 +010055 .macro writeb, ch, rb
56 senduart \ch, \rb
57 .endm
58
Russell King224b5be2005-11-16 14:59:51 +000059#if defined(CONFIG_ARCH_SA1100)
Tony Lindgren4e6d4882010-02-01 23:26:53 +010060 .macro loadsp, rb, tmp
Linus Torvalds1da177e2005-04-16 15:20:36 -070061 mov \rb, #0x80000000 @ physical base address
Russell King224b5be2005-11-16 14:59:51 +000062#ifdef CONFIG_DEBUG_LL_SER3
Linus Torvalds1da177e2005-04-16 15:20:36 -070063 add \rb, \rb, #0x00050000 @ Ser3
Russell King224b5be2005-11-16 14:59:51 +000064#else
Linus Torvalds1da177e2005-04-16 15:20:36 -070065 add \rb, \rb, #0x00010000 @ Ser1
Russell King224b5be2005-11-16 14:59:51 +000066#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070067 .endm
Linus Torvalds1da177e2005-04-16 15:20:36 -070068#else
Tony Lindgren4e6d4882010-02-01 23:26:53 +010069 .macro loadsp, rb, tmp
70 addruart \rb, \tmp
Russell King224b5be2005-11-16 14:59:51 +000071 .endm
Linus Torvalds1da177e2005-04-16 15:20:36 -070072#endif
73#endif
Russell King5cd0c342005-05-03 12:18:46 +010074#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
76 .macro kputc,val
77 mov r0, \val
78 bl putc
79 .endm
80
81 .macro kphex,val,len
82 mov r0, \val
83 mov r1, #\len
84 bl phex
85 .endm
86
87 .macro debug_reloc_start
88#ifdef DEBUG
89 kputc #'\n'
90 kphex r6, 8 /* processor id */
91 kputc #':'
92 kphex r7, 8 /* architecture id */
Hyok S. Choif12d0d72006-09-26 17:36:37 +090093#ifdef CONFIG_CPU_CP15
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 kputc #':'
95 mrc p15, 0, r0, c1, c0
96 kphex r0, 8 /* control reg */
Hyok S. Choif12d0d72006-09-26 17:36:37 +090097#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 kputc #'\n'
99 kphex r5, 8 /* decompressed kernel start */
100 kputc #'-'
Russell Kingf4619022006-01-12 17:17:57 +0000101 kphex r9, 8 /* decompressed kernel end */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 kputc #'>'
103 kphex r4, 8 /* kernel execution address */
104 kputc #'\n'
105#endif
106 .endm
107
108 .macro debug_reloc_end
109#ifdef DEBUG
110 kphex r5, 8 /* end of kernel */
111 kputc #'\n'
112 mov r0, r4
113 bl memdump /* dump 256 bytes at start of kernel */
114#endif
115 .endm
116
117 .section ".start", #alloc, #execinstr
118/*
119 * sort out different calling conventions
120 */
121 .align
Joachim Eastwoodc20611d2015-03-25 08:47:18 +0100122 /*
123 * Always enter in ARM state for CPUs that support the ARM ISA.
124 * As of today (2014) that's exactly the members of the A and R
125 * classes.
126 */
127 AR_CLASS( .arm )
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128start:
129 .type start,#function
Nicolas Pitreb11fe382011-02-12 22:25:27 +0100130 .rept 7
Roy Franz81a0bc32015-09-23 20:17:54 -0700131 __nop
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 .endr
Nicolas Pitreb11fe382011-02-12 22:25:27 +0100133 ARM( mov r0, r0 )
134 ARM( b 1f )
Russell King14327c62015-04-21 14:17:25 +0100135 THUMB( badr r12, 1f )
Nicolas Pitreb11fe382011-02-12 22:25:27 +0100136 THUMB( bx r12 )
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137
Nicolas Pitre33656d52014-06-02 17:32:25 +0100138 .word _magic_sig @ Magic numbers to help the loader
139 .word _magic_start @ absolute load/run zImage address
140 .word _magic_end @ zImage end address
Nicolas Pitre9696fca2014-06-19 22:44:32 +0100141 .word 0x04030201 @ endianness flag
Nicolas Pitre33656d52014-06-02 17:32:25 +0100142
Dave Martin26e5ca92010-11-29 19:43:27 +0100143 THUMB( .thumb )
Roy Franz81a0bc32015-09-23 20:17:54 -07001441: __EFI_HEADER
145
Joachim Eastwoodc20611d2015-03-25 08:47:18 +0100146 ARM_BE8( setend be ) @ go BE8 if compiled for BE8
147 AR_CLASS( mrs r9, cpsr )
Dave Martin424e5992012-02-10 18:07:07 -0800148#ifdef CONFIG_ARM_VIRT_EXT
149 bl __hyp_stub_install @ get into SVC mode, reversibly
150#endif
151 mov r7, r1 @ save architecture ID
Russell Kingf4619022006-01-12 17:17:57 +0000152 mov r8, r2 @ save atags pointer
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153
Joachim Eastwoodc20611d2015-03-25 08:47:18 +0100154#ifndef CONFIG_CPU_V7M
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 /*
156 * Booting from Angel - need to enter SVC mode and disable
157 * FIQs/IRQs (numeric definitions from angel arm.h source).
158 * We only do this if we were in user mode on entry.
159 */
160 mrs r2, cpsr @ get current mode
161 tst r2, #3 @ not user?
162 bne not_angel
163 mov r0, #0x17 @ angel_SWIreason_EnterSVC
Catalin Marinas0e056f22009-07-24 12:32:58 +0100164 ARM( swi 0x123456 ) @ angel_SWI_ARM
165 THUMB( svc 0xab ) @ angel_SWI_THUMB
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166not_angel:
Dave Martin424e5992012-02-10 18:07:07 -0800167 safe_svcmode_maskall r0
168 msr spsr_cxsf, r9 @ Save the CPU boot mode in
169 @ SPSR
Joachim Eastwoodc20611d2015-03-25 08:47:18 +0100170#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 /*
172 * Note that some cache flushing and other stuff may
173 * be needed here - is there an Angel SWI call for this?
174 */
175
176 /*
177 * some architecture specific code can be inserted
Russell Kingf4619022006-01-12 17:17:57 +0000178 * by the linker here, but it should preserve r7, r8, and r9.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 */
180
181 .text
Nicolas Pitre6d7d0ae2011-02-21 07:06:45 +0100182
Eric Miaoe69edc792010-07-05 15:56:50 +0200183#ifdef CONFIG_AUTO_ZRELADDR
Russell King0a6a78b2015-03-26 09:41:33 +0000184 /*
185 * Find the start of physical memory. As we are executing
186 * without the MMU on, we are in the physical address space.
187 * We just need to get rid of any offset by aligning the
188 * address.
189 *
190 * This alignment is a balance between the requirements of
191 * different platforms - we have chosen 128MB to allow
192 * platforms which align the start of their physical memory
193 * to 128MB to use this feature, while allowing the zImage
194 * to be placed within the first 128MB of memory on other
195 * platforms. Increasing the alignment means we place
196 * stricter alignment requirements on the start of physical
197 * memory, but relaxing it means that we break people who
198 * are already placing their zImage in (eg) the top 64MB
199 * of this range.
200 */
Dave Martinbfa64c42010-11-29 19:43:26 +0100201 mov r4, pc
202 and r4, r4, #0xf8000000
Russell King0a6a78b2015-03-26 09:41:33 +0000203 /* Determine final kernel image address. */
Eric Miaoe69edc792010-07-05 15:56:50 +0200204 add r4, r4, #TEXT_OFFSET
205#else
Russell King9e84ed62010-09-09 22:39:41 +0100206 ldr r4, =zreladdr
Eric Miaoe69edc792010-07-05 15:56:50 +0200207#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208
Nicolas Pitre28748652013-06-06 05:13:48 +0100209 /*
210 * Set up a page table only if it won't overwrite ourself.
Masahiro Yamada7d579092015-01-20 03:44:26 +0100211 * That means r4 < pc || r4 - 16k page directory > &_end.
Nicolas Pitre28748652013-06-06 05:13:48 +0100212 * Given that r4 > &_end is most unfrequent, we add a rough
213 * additional 1MB of room for a possible appended DTB.
214 */
215 mov r0, pc
216 cmp r0, r4
217 ldrcc r0, LC0+32
218 addcc r0, r0, pc
219 cmpcc r4, r0
220 orrcc r4, r4, #1 @ remember we skipped cache_on
221 blcs cache_on
Nicolas Pitre6d7d0ae2011-02-21 07:06:45 +0100222
223restart: adr r0, LC0
Nicolas Pitre34cc1a82011-04-19 15:42:43 -0400224 ldmia r0, {r1, r2, r3, r6, r10, r11, r12}
Nicolas Pitreadcc2592011-04-27 16:15:11 -0400225 ldr sp, [r0, #28]
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226
227 /*
Nicolas Pitre6d7d0ae2011-02-21 07:06:45 +0100228 * We might be running at a different address. We need
229 * to fix up various pointers.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 */
Nicolas Pitre6d7d0ae2011-02-21 07:06:45 +0100231 sub r0, r0, r1 @ calculate the delta offset
Nicolas Pitre6d7d0ae2011-02-21 07:06:45 +0100232 add r6, r6, r0 @ _edata
Nicolas Pitre34cc1a82011-04-19 15:42:43 -0400233 add r10, r10, r0 @ inflated kernel size location
234
235 /*
236 * The kernel build system appends the size of the
237 * decompressed kernel at the end of the compressed data
238 * in little-endian form.
239 */
240 ldrb r9, [r10, #0]
241 ldrb lr, [r10, #1]
242 orr r9, r9, lr, lsl #8
243 ldrb lr, [r10, #2]
244 ldrb r10, [r10, #3]
245 orr r9, r9, lr, lsl #16
246 orr r9, r9, r10, lsl #24
Nicolas Pitre6d7d0ae2011-02-21 07:06:45 +0100247
248#ifndef CONFIG_ZBOOT_ROM
249 /* malloc space is above the relocated stack (64k max) */
250 add sp, sp, r0
251 add r10, sp, #0x10000
252#else
253 /*
254 * With ZBOOT_ROM the bss/stack is non relocatable,
255 * but someone could still run this code from RAM,
256 * in which case our reference is _edata.
257 */
258 mov r10, r6
259#endif
260
John Bonesioe2a6a3a2011-05-27 18:45:50 -0400261 mov r5, #0 @ init dtb size to 0
262#ifdef CONFIG_ARM_APPENDED_DTB
263/*
264 * r0 = delta
265 * r2 = BSS start
266 * r3 = BSS end
Nicolas Pitre28748652013-06-06 05:13:48 +0100267 * r4 = final kernel address (possibly with LSB set)
John Bonesioe2a6a3a2011-05-27 18:45:50 -0400268 * r5 = appended dtb size (still unknown)
269 * r6 = _edata
270 * r7 = architecture ID
271 * r8 = atags/device tree pointer
272 * r9 = size of decompressed image
273 * r10 = end of this image, including bss/stack/malloc space if non XIP
274 * r11 = GOT start
275 * r12 = GOT end
276 * sp = stack pointer
277 *
278 * if there are device trees (dtb) appended to zImage, advance r10 so that the
279 * dtb data will get relocated along with the kernel if necessary.
280 */
281
282 ldr lr, [r6, #0]
283#ifndef __ARMEB__
284 ldr r1, =0xedfe0dd0 @ sig is 0xd00dfeed big endian
285#else
286 ldr r1, =0xd00dfeed
287#endif
288 cmp lr, r1
289 bne dtb_check_done @ not found
290
Nicolas Pitreb90b9a32011-09-13 22:37:07 -0400291#ifdef CONFIG_ARM_ATAG_DTB_COMPAT
292 /*
293 * OK... Let's do some funky business here.
294 * If we do have a DTB appended to zImage, and we do have
295 * an ATAG list around, we want the later to be translated
Nicolas Pitrec2607f72015-01-27 16:10:42 +0100296 * and folded into the former here. No GOT fixup has occurred
297 * yet, but none of the code we're about to call uses any
298 * global variable.
Nicolas Pitreb90b9a32011-09-13 22:37:07 -0400299 */
Nicolas Pitrec2607f72015-01-27 16:10:42 +0100300
301 /* Get the initial DTB size */
302 ldr r5, [r6, #4]
303#ifndef __ARMEB__
304 /* convert to little endian */
305 eor r1, r5, r5, ror #16
306 bic r1, r1, #0x00ff0000
307 mov r5, r5, ror #8
308 eor r5, r5, r1, lsr #8
309#endif
310 /* 50% DTB growth should be good enough */
311 add r5, r5, r5, lsr #1
312 /* preserve 64-bit alignment */
313 add r5, r5, #7
314 bic r5, r5, #7
315 /* clamp to 32KB min and 1MB max */
316 cmp r5, #(1 << 15)
317 movlo r5, #(1 << 15)
318 cmp r5, #(1 << 20)
319 movhi r5, #(1 << 20)
320 /* temporarily relocate the stack past the DTB work space */
321 add sp, sp, r5
322
Nicolas Pitreb90b9a32011-09-13 22:37:07 -0400323 stmfd sp!, {r0-r3, ip, lr}
324 mov r0, r8
325 mov r1, r6
Nicolas Pitrec2607f72015-01-27 16:10:42 +0100326 mov r2, r5
Nicolas Pitreb90b9a32011-09-13 22:37:07 -0400327 bl atags_to_fdt
328
329 /*
330 * If returned value is 1, there is no ATAG at the location
331 * pointed by r8. Try the typical 0x100 offset from start
332 * of RAM and hope for the best.
333 */
334 cmp r0, #1
Nicolas Pitre531a6a92011-10-24 13:30:32 +0100335 sub r0, r4, #TEXT_OFFSET
Nicolas Pitre28748652013-06-06 05:13:48 +0100336 bic r0, r0, #1
Nicolas Pitre531a6a92011-10-24 13:30:32 +0100337 add r0, r0, #0x100
Nicolas Pitreb90b9a32011-09-13 22:37:07 -0400338 mov r1, r6
Nicolas Pitrec2607f72015-01-27 16:10:42 +0100339 mov r2, r5
Marc Zyngier9c5fd9e2012-04-11 14:52:55 +0100340 bleq atags_to_fdt
Nicolas Pitreb90b9a32011-09-13 22:37:07 -0400341
342 ldmfd sp!, {r0-r3, ip, lr}
Nicolas Pitrec2607f72015-01-27 16:10:42 +0100343 sub sp, sp, r5
Nicolas Pitreb90b9a32011-09-13 22:37:07 -0400344#endif
345
John Bonesioe2a6a3a2011-05-27 18:45:50 -0400346 mov r8, r6 @ use the appended device tree
347
Nicolas Pitre5ffb04f2011-06-12 01:07:33 -0400348 /*
349 * Make sure that the DTB doesn't end up in the final
350 * kernel's .bss area. To do so, we adjust the decompressed
351 * kernel size to compensate if that .bss size is larger
352 * than the relocated code.
353 */
354 ldr r5, =_kernel_bss_size
355 adr r1, wont_overwrite
356 sub r1, r6, r1
357 subs r1, r5, r1
358 addhi r9, r9, r1
359
Nicolas Pitrec2607f72015-01-27 16:10:42 +0100360 /* Get the current DTB size */
John Bonesioe2a6a3a2011-05-27 18:45:50 -0400361 ldr r5, [r6, #4]
362#ifndef __ARMEB__
363 /* convert r5 (dtb size) to little endian */
364 eor r1, r5, r5, ror #16
365 bic r1, r1, #0x00ff0000
366 mov r5, r5, ror #8
367 eor r5, r5, r1, lsr #8
368#endif
369
370 /* preserve 64-bit alignment */
371 add r5, r5, #7
372 bic r5, r5, #7
373
374 /* relocate some pointers past the appended dtb */
375 add r6, r6, r5
376 add r10, r10, r5
377 add sp, sp, r5
378dtb_check_done:
379#endif
380
Nicolas Pitre6d7d0ae2011-02-21 07:06:45 +0100381/*
382 * Check to see if we will overwrite ourselves.
Nicolas Pitre28748652013-06-06 05:13:48 +0100383 * r4 = final kernel address (possibly with LSB set)
Nicolas Pitre6d7d0ae2011-02-21 07:06:45 +0100384 * r9 = size of decompressed image
385 * r10 = end of this image, including bss/stack/malloc space if non XIP
386 * We basically want:
Nicolas Pitreea9df3b2011-04-21 22:52:06 -0400387 * r4 - 16k page directory >= r10 -> OK
Nicolas Pitre5ffb04f2011-06-12 01:07:33 -0400388 * r4 + image length <= address of wont_overwrite -> OK
Nicolas Pitre28748652013-06-06 05:13:48 +0100389 * Note: the possible LSB in r4 is harmless here.
Nicolas Pitre6d7d0ae2011-02-21 07:06:45 +0100390 */
Nicolas Pitreea9df3b2011-04-21 22:52:06 -0400391 add r10, r10, #16384
Nicolas Pitre6d7d0ae2011-02-21 07:06:45 +0100392 cmp r4, r10
393 bhs wont_overwrite
394 add r10, r4, r9
Nicolas Pitre5ffb04f2011-06-12 01:07:33 -0400395 adr r9, wont_overwrite
396 cmp r10, r9
Nicolas Pitre6d7d0ae2011-02-21 07:06:45 +0100397 bls wont_overwrite
398
399/*
400 * Relocate ourselves past the end of the decompressed kernel.
Nicolas Pitre6d7d0ae2011-02-21 07:06:45 +0100401 * r6 = _edata
402 * r10 = end of the decompressed kernel
403 * Because we always copy ahead, we need to do it from the end and go
404 * backward in case the source and destination overlap.
405 */
Nicolas Pitreadcc2592011-04-27 16:15:11 -0400406 /*
407 * Bump to the next 256-byte boundary with the size of
408 * the relocation code added. This avoids overwriting
409 * ourself when the offset is small.
410 */
411 add r10, r10, #((reloc_code_end - restart + 256) & ~255)
Nicolas Pitre6d7d0ae2011-02-21 07:06:45 +0100412 bic r10, r10, #255
413
Nicolas Pitreadcc2592011-04-27 16:15:11 -0400414 /* Get start of code we want to copy and align it down. */
415 adr r5, restart
416 bic r5, r5, #31
417
Dave Martin424e5992012-02-10 18:07:07 -0800418/* Relocate the hyp vector base if necessary */
419#ifdef CONFIG_ARM_VIRT_EXT
420 mrs r0, spsr
421 and r0, r0, #MODE_MASK
422 cmp r0, #HYP_MODE
423 bne 1f
424
Marc Zyngier4897e362017-04-03 19:38:02 +0100425 /*
426 * Compute the address of the hyp vectors after relocation.
427 * This requires some arithmetic since we cannot directly
428 * reference __hyp_stub_vectors in a PC-relative way.
429 * Call __hyp_set_vectors with the new address so that we
430 * can HVC again after the copy.
431 */
4320: adr r0, 0b
433 movw r1, #:lower16:__hyp_stub_vectors - 0b
434 movt r1, #:upper16:__hyp_stub_vectors - 0b
435 add r0, r0, r1
Dave Martin424e5992012-02-10 18:07:07 -0800436 sub r0, r0, r5
437 add r0, r0, r10
438 bl __hyp_set_vectors
4391:
440#endif
441
Nicolas Pitre6d7d0ae2011-02-21 07:06:45 +0100442 sub r9, r6, r5 @ size to copy
443 add r9, r9, #31 @ rounded up to a multiple
444 bic r9, r9, #31 @ ... of 32 bytes
445 add r6, r9, r5
446 add r9, r9, r10
447
4481: ldmdb r6!, {r0 - r3, r10 - r12, lr}
449 cmp r6, r5
450 stmdb r9!, {r0 - r3, r10 - r12, lr}
451 bhi 1b
452
453 /* Preserve offset to relocated code. */
454 sub r6, r9, r6
455
Tony Lindgren7c2527f2011-04-26 05:37:46 -0700456#ifndef CONFIG_ZBOOT_ROM
457 /* cache_clean_flush may use the stack, so relocate it */
458 add sp, sp, r6
459#endif
460
Will Deacon238962a2014-11-04 11:40:46 +0100461 bl cache_clean_flush
Nicolas Pitre6d7d0ae2011-02-21 07:06:45 +0100462
Russell King14327c62015-04-21 14:17:25 +0100463 badr r0, restart
Nicolas Pitre6d7d0ae2011-02-21 07:06:45 +0100464 add r0, r0, r6
465 mov pc, r0
466
467wont_overwrite:
468/*
469 * If delta is zero, we are running at the address we were linked at.
470 * r0 = delta
471 * r2 = BSS start
472 * r3 = BSS end
Nicolas Pitre28748652013-06-06 05:13:48 +0100473 * r4 = kernel execution address (possibly with LSB set)
John Bonesioe2a6a3a2011-05-27 18:45:50 -0400474 * r5 = appended dtb size (0 if not present)
Nicolas Pitre6d7d0ae2011-02-21 07:06:45 +0100475 * r7 = architecture ID
476 * r8 = atags pointer
477 * r11 = GOT start
478 * r12 = GOT end
479 * sp = stack pointer
480 */
John Bonesioe2a6a3a2011-05-27 18:45:50 -0400481 orrs r1, r0, r5
Nicolas Pitre6d7d0ae2011-02-21 07:06:45 +0100482 beq not_relocated
John Bonesioe2a6a3a2011-05-27 18:45:50 -0400483
Russell King98e12b52010-02-25 23:56:38 +0000484 add r11, r11, r0
Nicolas Pitre6d7d0ae2011-02-21 07:06:45 +0100485 add r12, r12, r0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486
487#ifndef CONFIG_ZBOOT_ROM
488 /*
489 * If we're running fully PIC === CONFIG_ZBOOT_ROM = n,
490 * we need to fix up pointers into the BSS region.
Nicolas Pitre6d7d0ae2011-02-21 07:06:45 +0100491 * Note that the stack pointer has already been fixed up.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 */
493 add r2, r2, r0
494 add r3, r3, r0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495
496 /*
497 * Relocate all entries in the GOT table.
John Bonesioe2a6a3a2011-05-27 18:45:50 -0400498 * Bump bss entries to _edata + dtb size
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 */
Russell King98e12b52010-02-25 23:56:38 +00005001: ldr r1, [r11, #0] @ relocate entries in the GOT
John Bonesioe2a6a3a2011-05-27 18:45:50 -0400501 add r1, r1, r0 @ This fixes up C references
502 cmp r1, r2 @ if entry >= bss_start &&
503 cmphs r3, r1 @ bss_end > entry
504 addhi r1, r1, r5 @ entry += dtb size
505 str r1, [r11], #4 @ next entry
Nicolas Pitre6d7d0ae2011-02-21 07:06:45 +0100506 cmp r11, r12
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 blo 1b
John Bonesioe2a6a3a2011-05-27 18:45:50 -0400508
509 /* bump our bss pointers too */
510 add r2, r2, r5
511 add r3, r3, r5
512
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513#else
514
515 /*
516 * Relocate entries in the GOT table. We only relocate
517 * the entries that are outside the (relocated) BSS region.
518 */
Russell King98e12b52010-02-25 23:56:38 +00005191: ldr r1, [r11, #0] @ relocate entries in the GOT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 cmp r1, r2 @ entry < bss_start ||
521 cmphs r3, r1 @ _end < entry
522 addlo r1, r1, r0 @ table. This fixes up the
Russell King98e12b52010-02-25 23:56:38 +0000523 str r1, [r11], #4 @ C references.
Nicolas Pitre6d7d0ae2011-02-21 07:06:45 +0100524 cmp r11, r12
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 blo 1b
526#endif
527
528not_relocated: mov r0, #0
5291: str r0, [r2], #4 @ clear bss
530 str r0, [r2], #4
531 str r0, [r2], #4
532 str r0, [r2], #4
533 cmp r2, r3
534 blo 1b
535
Nicolas Pitre28748652013-06-06 05:13:48 +0100536 /*
537 * Did we skip the cache setup earlier?
538 * That is indicated by the LSB in r4.
539 * Do it now if so.
540 */
541 tst r4, #1
542 bic r4, r4, #1
543 blne cache_on
544
Nicolas Pitre6d7d0ae2011-02-21 07:06:45 +0100545/*
546 * The C runtime environment should now be setup sufficiently.
547 * Set up some pointers, and start decompressing.
548 * r4 = kernel execution address
549 * r7 = architecture ID
550 * r8 = atags pointer
551 */
552 mov r0, r4
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 mov r1, sp @ malloc space above stack
554 add r2, sp, #0x10000 @ 64k max
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 mov r3, r7
556 bl decompress_kernel
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 bl cache_clean_flush
Nicolas Pitre6d7d0ae2011-02-21 07:06:45 +0100558 bl cache_off
Nicolas Pitre6d7d0ae2011-02-21 07:06:45 +0100559 mov r1, r7 @ restore architecture number
560 mov r2, r8 @ restore atags pointer
Dave Martin424e5992012-02-10 18:07:07 -0800561
562#ifdef CONFIG_ARM_VIRT_EXT
563 mrs r0, spsr @ Get saved CPU boot mode
564 and r0, r0, #MODE_MASK
565 cmp r0, #HYP_MODE @ if not booted in HYP mode...
566 bne __enter_kernel @ boot kernel directly
567
568 adr r12, .L__hyp_reentry_vectors_offset
569 ldr r0, [r12]
570 add r0, r0, r12
571
572 bl __hyp_set_vectors
573 __HVC(0) @ otherwise bounce to hyp mode
574
575 b . @ should never be reached
576
577 .align 2
578.L__hyp_reentry_vectors_offset: .long __hyp_reentry_vectors - .
579#else
580 b __enter_kernel
581#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582
Catalin Marinas88987ef2009-07-24 12:32:52 +0100583 .align 2
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 .type LC0, #object
585LC0: .word LC0 @ r1
586 .word __bss_start @ r2
587 .word _end @ r3
Nicolas Pitre6d7d0ae2011-02-21 07:06:45 +0100588 .word _edata @ r6
Nicolas Pitre34cc1a82011-04-19 15:42:43 -0400589 .word input_data_end - 4 @ r10 (inflated size location)
Russell King98e12b52010-02-25 23:56:38 +0000590 .word _got_start @ r11
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 .word _got_end @ ip
Nicolas Pitre8d7e4cc2011-04-27 14:54:39 -0400592 .word .L_user_stack_end @ sp
Nicolas Pitre28748652013-06-06 05:13:48 +0100593 .word _end - restart + 16384 + 1024*1024
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 .size LC0, . - LC0
595
596#ifdef CONFIG_ARCH_RPC
597 .globl params
Eric Miaodb7b2b42010-06-03 15:36:49 +0800598params: ldr r0, =0x10000100 @ params_phys for RPC
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 mov pc, lr
600 .ltorg
601 .align
602#endif
603
604/*
605 * Turn on the cache. We need to setup some page tables so that we
606 * can have both the I and D caches on.
607 *
608 * We place the page tables 16k down from the kernel execution address,
609 * and we hope that nothing else is using it. If we're using it, we
610 * will go pop!
611 *
612 * On entry,
613 * r4 = kernel execution address
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 * r7 = architecture number
Russell Kingf4619022006-01-12 17:17:57 +0000615 * r8 = atags pointer
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 * On exit,
Uwe Kleine-König21b28412010-01-26 22:08:09 +0100617 * r0, r1, r2, r3, r9, r10, r12 corrupted
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 * This routine must preserve:
Nicolas Pitre6d7d0ae2011-02-21 07:06:45 +0100619 * r4, r7, r8
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 */
621 .align 5
622cache_on: mov r3, #8 @ cache_on function
623 b call_cache_fn
624
Hyok S. Choi10c2df62006-03-27 10:21:34 +0100625/*
626 * Initialize the highest priority protection region, PR7
627 * to cover all 32bit address and cacheable and bufferable.
628 */
629__armv4_mpu_cache_on:
630 mov r0, #0x3f @ 4G, the whole
631 mcr p15, 0, r0, c6, c7, 0 @ PR7 Area Setting
632 mcr p15, 0, r0, c6, c7, 1
633
634 mov r0, #0x80 @ PR7
635 mcr p15, 0, r0, c2, c0, 0 @ D-cache on
636 mcr p15, 0, r0, c2, c0, 1 @ I-cache on
637 mcr p15, 0, r0, c3, c0, 0 @ write-buffer on
638
639 mov r0, #0xc000
640 mcr p15, 0, r0, c5, c0, 1 @ I-access permission
641 mcr p15, 0, r0, c5, c0, 0 @ D-access permission
642
643 mov r0, #0
644 mcr p15, 0, r0, c7, c10, 4 @ drain write buffer
645 mcr p15, 0, r0, c7, c5, 0 @ flush(inval) I-Cache
646 mcr p15, 0, r0, c7, c6, 0 @ flush(inval) D-Cache
647 mrc p15, 0, r0, c1, c0, 0 @ read control reg
648 @ ...I .... ..D. WC.M
649 orr r0, r0, #0x002d @ .... .... ..1. 11.1
650 orr r0, r0, #0x1000 @ ...1 .... .... ....
651
652 mcr p15, 0, r0, c1, c0, 0 @ write control reg
653
654 mov r0, #0
655 mcr p15, 0, r0, c7, c5, 0 @ flush(inval) I-Cache
656 mcr p15, 0, r0, c7, c6, 0 @ flush(inval) D-Cache
657 mov pc, lr
658
659__armv3_mpu_cache_on:
660 mov r0, #0x3f @ 4G, the whole
661 mcr p15, 0, r0, c6, c7, 0 @ PR7 Area Setting
662
663 mov r0, #0x80 @ PR7
664 mcr p15, 0, r0, c2, c0, 0 @ cache on
665 mcr p15, 0, r0, c3, c0, 0 @ write-buffer on
666
667 mov r0, #0xc000
668 mcr p15, 0, r0, c5, c0, 0 @ access permission
669
670 mov r0, #0
671 mcr p15, 0, r0, c7, c0, 0 @ invalidate whole cache v3
Uwe Kleine-König4a8d57a2010-01-26 22:14:23 +0100672 /*
673 * ?? ARMv3 MMU does not allow reading the control register,
674 * does this really work on ARMv3 MPU?
675 */
Hyok S. Choi10c2df62006-03-27 10:21:34 +0100676 mrc p15, 0, r0, c1, c0, 0 @ read control reg
677 @ .... .... .... WC.M
678 orr r0, r0, #0x000d @ .... .... .... 11.1
Uwe Kleine-König4a8d57a2010-01-26 22:14:23 +0100679 /* ?? this overwrites the value constructed above? */
Hyok S. Choi10c2df62006-03-27 10:21:34 +0100680 mov r0, #0
681 mcr p15, 0, r0, c1, c0, 0 @ write control reg
682
Uwe Kleine-König4a8d57a2010-01-26 22:14:23 +0100683 /* ?? invalidate for the second time? */
Hyok S. Choi10c2df62006-03-27 10:21:34 +0100684 mcr p15, 0, r0, c7, c0, 0 @ invalidate whole cache v3
685 mov pc, lr
686
Russell King1fdc08a2012-05-10 09:48:34 +0100687#ifdef CONFIG_CPU_DCACHE_WRITETHROUGH
688#define CB_BITS 0x08
689#else
690#define CB_BITS 0x0c
691#endif
692
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693__setup_mmu: sub r3, r4, #16384 @ Page directory size
694 bic r3, r3, #0xff @ Align the pointer
695 bic r3, r3, #0x3f00
696/*
697 * Initialise the page tables, turning on the cacheable and bufferable
698 * bits for the RAM area only.
699 */
700 mov r0, r3
Russell Kingf4619022006-01-12 17:17:57 +0000701 mov r9, r0, lsr #18
702 mov r9, r9, lsl #18 @ start of RAM
703 add r10, r9, #0x10000000 @ a reasonable RAM size
Russell King1fdc08a2012-05-10 09:48:34 +0100704 mov r1, #0x12 @ XN|U + section mapping
705 orr r1, r1, #3 << 10 @ AP=11
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 add r2, r3, #16384
Nicolas Pitre265d5e42006-01-18 22:38:51 +00007071: cmp r1, r9 @ if virt > start of RAM
Russell King1fdc08a2012-05-10 09:48:34 +0100708 cmphs r10, r1 @ && end of RAM > virt
709 bic r1, r1, #0x1c @ clear XN|U + C + B
710 orrlo r1, r1, #0x10 @ Set XN|U for non-RAM
711 orrhs r1, r1, r6 @ set RAM section settings
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 str r1, [r0], #4 @ 1:1 mapping
713 add r1, r1, #1048576
714 teq r0, r2
715 bne 1b
716/*
717 * If ever we are running from Flash, then we surely want the cache
718 * to be enabled also for our execution instance... We map 2MB of it
719 * so there is no map overlap problem for up to 1 MB compressed kernel.
720 * If the execution is in RAM then we would only be duplicating the above.
721 */
Russell King1fdc08a2012-05-10 09:48:34 +0100722 orr r1, r6, #0x04 @ ensure B is set for this
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 orr r1, r1, #3 << 10
Dave Martinbfa64c42010-11-29 19:43:26 +0100724 mov r2, pc
725 mov r2, r2, lsr #20
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 orr r1, r1, r2, lsl #20
727 add r0, r3, r2, lsl #2
728 str r1, [r0], #4
729 add r1, r1, #1048576
730 str r1, [r0]
731 mov pc, lr
Catalin Marinas93ed3972008-08-28 11:22:32 +0100732ENDPROC(__setup_mmu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733
Dave Martin50101922012-11-22 12:50:43 +0100734@ Enable unaligned access on v6, to allow better code generation
735@ for the decompressor C code:
736__armv6_mmu_cache_on:
737 mrc p15, 0, r0, c1, c0, 0 @ read SCTLR
738 bic r0, r0, #2 @ A (no unaligned access fault)
739 orr r0, r0, #1 << 22 @ U (v6 unaligned access model)
740 mcr p15, 0, r0, c1, c0, 0 @ write SCTLR
741 b __armv4_mmu_cache_on
742
Mark A. Greeraf3e4fd2011-04-01 15:41:26 +0100743__arm926ejs_mmu_cache_on:
744#ifdef CONFIG_CPU_DCACHE_WRITETHROUGH
745 mov r0, #4 @ put dcache in WT mode
746 mcr p15, 7, r0, c15, c0, 0
747#endif
748
Hyok S. Choic76b6b42006-03-24 09:53:18 +0000749__armv4_mmu_cache_on:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 mov r12, lr
Catalin Marinas8bdca0a2009-07-24 12:35:06 +0100751#ifdef CONFIG_MMU
Russell King1fdc08a2012-05-10 09:48:34 +0100752 mov r6, #CB_BITS | 0x12 @ U
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 bl __setup_mmu
754 mov r0, #0
755 mcr p15, 0, r0, c7, c10, 4 @ drain write buffer
756 mcr p15, 0, r0, c8, c7, 0 @ flush I,D TLBs
757 mrc p15, 0, r0, c1, c0, 0 @ read control reg
758 orr r0, r0, #0x5000 @ I-cache enable, RR cache replacement
759 orr r0, r0, #0x0030
Ben Dooks457c2402013-02-12 18:59:57 +0000760 ARM_BE8( orr r0, r0, #1 << 25 ) @ big-endian page tables
Hyok S. Choic76b6b42006-03-24 09:53:18 +0000761 bl __common_mmu_cache_on
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 mov r0, #0
763 mcr p15, 0, r0, c8, c7, 0 @ flush I,D TLBs
Catalin Marinas8bdca0a2009-07-24 12:35:06 +0100764#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 mov pc, r12
766
Catalin Marinas7d09e852007-06-01 17:14:53 +0100767__armv7_mmu_cache_on:
768 mov r12, lr
Catalin Marinas8bdca0a2009-07-24 12:35:06 +0100769#ifdef CONFIG_MMU
Catalin Marinas7d09e852007-06-01 17:14:53 +0100770 mrc p15, 0, r11, c0, c1, 4 @ read ID_MMFR0
771 tst r11, #0xf @ VMSA
Russell King1fdc08a2012-05-10 09:48:34 +0100772 movne r6, #CB_BITS | 0x02 @ !XN
Catalin Marinas7d09e852007-06-01 17:14:53 +0100773 blne __setup_mmu
774 mov r0, #0
775 mcr p15, 0, r0, c7, c10, 4 @ drain write buffer
776 tst r11, #0xf @ VMSA
777 mcrne p15, 0, r0, c8, c7, 0 @ flush I,D TLBs
Catalin Marinas8bdca0a2009-07-24 12:35:06 +0100778#endif
Catalin Marinas7d09e852007-06-01 17:14:53 +0100779 mrc p15, 0, r0, c1, c0, 0 @ read control reg
Matthew Leache1e5b7e2012-09-11 17:56:57 +0100780 bic r0, r0, #1 << 28 @ clear SCTLR.TRE
Catalin Marinas7d09e852007-06-01 17:14:53 +0100781 orr r0, r0, #0x5000 @ I-cache enable, RR cache replacement
782 orr r0, r0, #0x003c @ write buffer
Dave Martin50101922012-11-22 12:50:43 +0100783 bic r0, r0, #2 @ A (no unaligned access fault)
784 orr r0, r0, #1 << 22 @ U (v6 unaligned access model)
785 @ (needed for ARM1176)
Catalin Marinas8bdca0a2009-07-24 12:35:06 +0100786#ifdef CONFIG_MMU
Ben Dooks457c2402013-02-12 18:59:57 +0000787 ARM_BE8( orr r0, r0, #1 << 25 ) @ big-endian page tables
Will Deacondbece452012-08-24 15:20:59 +0100788 mrcne p15, 0, r6, c2, c0, 2 @ read ttb control reg
Catalin Marinas7d09e852007-06-01 17:14:53 +0100789 orrne r0, r0, #1 @ MMU enabled
Russell King1fdc08a2012-05-10 09:48:34 +0100790 movne r1, #0xfffffffd @ domain 0 = client
Will Deacondbece452012-08-24 15:20:59 +0100791 bic r6, r6, #1 << 31 @ 32-bit translation system
Srinivas Ramana117e5e92016-09-30 15:03:31 +0100792 bic r6, r6, #(7 << 0) | (1 << 4) @ use only ttbr0
Catalin Marinas7d09e852007-06-01 17:14:53 +0100793 mcrne p15, 0, r3, c2, c0, 0 @ load page table pointer
794 mcrne p15, 0, r1, c3, c0, 0 @ load domain access control
Will Deacondbece452012-08-24 15:20:59 +0100795 mcrne p15, 0, r6, c2, c0, 2 @ load ttb control
Catalin Marinas8bdca0a2009-07-24 12:35:06 +0100796#endif
Will Deacond675d0b2011-11-22 17:30:28 +0000797 mcr p15, 0, r0, c7, c5, 4 @ ISB
Catalin Marinas7d09e852007-06-01 17:14:53 +0100798 mcr p15, 0, r0, c1, c0, 0 @ load control register
799 mrc p15, 0, r0, c1, c0, 0 @ and read it back
800 mov r0, #0
801 mcr p15, 0, r0, c7, c5, 4 @ ISB
802 mov pc, r12
803
Paulius Zaleckas28853ac2009-03-25 13:10:01 +0200804__fa526_cache_on:
805 mov r12, lr
Russell King1fdc08a2012-05-10 09:48:34 +0100806 mov r6, #CB_BITS | 0x12 @ U
Paulius Zaleckas28853ac2009-03-25 13:10:01 +0200807 bl __setup_mmu
808 mov r0, #0
809 mcr p15, 0, r0, c7, c7, 0 @ Invalidate whole cache
810 mcr p15, 0, r0, c7, c10, 4 @ drain write buffer
811 mcr p15, 0, r0, c8, c7, 0 @ flush UTLB
812 mrc p15, 0, r0, c1, c0, 0 @ read control reg
813 orr r0, r0, #0x1000 @ I-cache enable
814 bl __common_mmu_cache_on
815 mov r0, #0
816 mcr p15, 0, r0, c8, c7, 0 @ flush UTLB
817 mov pc, r12
818
Hyok S. Choic76b6b42006-03-24 09:53:18 +0000819__common_mmu_cache_on:
Catalin Marinas0e056f22009-07-24 12:32:58 +0100820#ifndef CONFIG_THUMB2_KERNEL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821#ifndef DEBUG
822 orr r0, r0, #0x000d @ Write buffer, mmu
823#endif
824 mov r1, #-1
825 mcr p15, 0, r3, c2, c0, 0 @ load page table pointer
826 mcr p15, 0, r1, c3, c0, 0 @ load domain access control
Nicolas Pitre2dc76672006-07-01 21:29:32 +0100827 b 1f
828 .align 5 @ cache line aligned
8291: mcr p15, 0, r0, c1, c0, 0 @ load control register
830 mrc p15, 0, r0, c1, c0, 0 @ and read it back to
831 sub pc, lr, r0, lsr #32 @ properly flush pipeline
Catalin Marinas0e056f22009-07-24 12:32:58 +0100832#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833
Dave Martin946a1052011-06-14 14:20:44 +0100834#define PROC_ENTRY_SIZE (4*5)
835
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 * Here follow the relocatable cache support functions for the
838 * various processors. This is a generic hook for locating an
839 * entry and jumping to an instruction at the specified offset
840 * from the start of the block. Please note this is all position
841 * independent code.
842 *
843 * r1 = corrupted
844 * r2 = corrupted
845 * r3 = block offset
Russell King98e12b52010-02-25 23:56:38 +0000846 * r9 = corrupted
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 * r12 = corrupted
848 */
849
850call_cache_fn: adr r12, proc_types
Hyok S. Choif12d0d72006-09-26 17:36:37 +0900851#ifdef CONFIG_CPU_CP15
Russell King98e12b52010-02-25 23:56:38 +0000852 mrc p15, 0, r9, c0, c0 @ get processor ID
Joachim Eastwoodc20611d2015-03-25 08:47:18 +0100853#elif defined(CONFIG_CPU_V7M)
854 /*
855 * On v7-M the processor id is located in the V7M_SCB_CPUID
856 * register, but as cache handling is IMPLEMENTATION DEFINED on
857 * v7-M (if existant at all) we just return early here.
858 * If V7M_SCB_CPUID were used the cpu ID functions (i.e.
859 * __armv7_mmu_cache_{on,off,flush}) would be selected which
860 * use cp15 registers that are not implemented on v7-M.
861 */
862 bx lr
Hyok S. Choif12d0d72006-09-26 17:36:37 +0900863#else
Russell King98e12b52010-02-25 23:56:38 +0000864 ldr r9, =CONFIG_PROCESSOR_ID
Hyok S. Choif12d0d72006-09-26 17:36:37 +0900865#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07008661: ldr r1, [r12, #0] @ get value
867 ldr r2, [r12, #4] @ get mask
Russell King98e12b52010-02-25 23:56:38 +0000868 eor r1, r1, r9 @ (real ^ match)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 tst r1, r2 @ & mask
Catalin Marinas0e056f22009-07-24 12:32:58 +0100870 ARM( addeq pc, r12, r3 ) @ call cache function
871 THUMB( addeq r12, r3 )
872 THUMB( moveq pc, r12 ) @ call cache function
Dave Martin946a1052011-06-14 14:20:44 +0100873 add r12, r12, #PROC_ENTRY_SIZE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 b 1b
875
876/*
877 * Table for cache operations. This is basically:
878 * - CPU ID match
879 * - CPU ID mask
880 * - 'cache on' method instruction
881 * - 'cache off' method instruction
882 * - 'cache flush' method instruction
883 *
884 * We match an entry using: ((real_id ^ match) & mask) == 0
885 *
886 * Writethrough caches generally only need 'on' and 'off'
887 * methods. Writeback caches _must_ have the flush method
888 * defined.
889 */
Catalin Marinas88987ef2009-07-24 12:32:52 +0100890 .align 2
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 .type proc_types,#object
892proc_types:
Marc Cced2a3b2013-06-05 22:02:23 +0100893 .word 0x41000000 @ old ARM ID
894 .word 0xff00f000
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895 mov pc, lr
Catalin Marinas0e056f22009-07-24 12:32:58 +0100896 THUMB( nop )
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897 mov pc, lr
Catalin Marinas0e056f22009-07-24 12:32:58 +0100898 THUMB( nop )
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899 mov pc, lr
Catalin Marinas0e056f22009-07-24 12:32:58 +0100900 THUMB( nop )
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901
902 .word 0x41007000 @ ARM7/710
903 .word 0xfff8fe00
Russell King4cdfc2e2012-05-09 15:18:19 +0100904 mov pc, lr
905 THUMB( nop )
906 mov pc, lr
907 THUMB( nop )
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908 mov pc, lr
Catalin Marinas0e056f22009-07-24 12:32:58 +0100909 THUMB( nop )
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910
911 .word 0x41807200 @ ARM720T (writethrough)
912 .word 0xffffff00
Catalin Marinas0e056f22009-07-24 12:32:58 +0100913 W(b) __armv4_mmu_cache_on
914 W(b) __armv4_mmu_cache_off
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915 mov pc, lr
Catalin Marinas0e056f22009-07-24 12:32:58 +0100916 THUMB( nop )
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917
Hyok S. Choi10c2df62006-03-27 10:21:34 +0100918 .word 0x41007400 @ ARM74x
919 .word 0xff00ff00
Catalin Marinas0e056f22009-07-24 12:32:58 +0100920 W(b) __armv3_mpu_cache_on
921 W(b) __armv3_mpu_cache_off
922 W(b) __armv3_mpu_cache_flush
Hyok S. Choi10c2df62006-03-27 10:21:34 +0100923
924 .word 0x41009400 @ ARM94x
925 .word 0xff00ff00
Catalin Marinas0e056f22009-07-24 12:32:58 +0100926 W(b) __armv4_mpu_cache_on
927 W(b) __armv4_mpu_cache_off
928 W(b) __armv4_mpu_cache_flush
Hyok S. Choi10c2df62006-03-27 10:21:34 +0100929
Mark A. Greeraf3e4fd2011-04-01 15:41:26 +0100930 .word 0x41069260 @ ARM926EJ-S (v5TEJ)
931 .word 0xff0ffff0
Nicolas Pitre720c60e2011-06-09 05:05:27 +0100932 W(b) __arm926ejs_mmu_cache_on
933 W(b) __armv4_mmu_cache_off
934 W(b) __armv5tej_mmu_cache_flush
Mark A. Greeraf3e4fd2011-04-01 15:41:26 +0100935
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 .word 0x00007000 @ ARM7 IDs
937 .word 0x0000f000
938 mov pc, lr
Catalin Marinas0e056f22009-07-24 12:32:58 +0100939 THUMB( nop )
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 mov pc, lr
Catalin Marinas0e056f22009-07-24 12:32:58 +0100941 THUMB( nop )
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942 mov pc, lr
Catalin Marinas0e056f22009-07-24 12:32:58 +0100943 THUMB( nop )
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944
945 @ Everything from here on will be the new ID system.
946
947 .word 0x4401a100 @ sa110 / sa1100
948 .word 0xffffffe0
Catalin Marinas0e056f22009-07-24 12:32:58 +0100949 W(b) __armv4_mmu_cache_on
950 W(b) __armv4_mmu_cache_off
951 W(b) __armv4_mmu_cache_flush
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952
953 .word 0x6901b110 @ sa1110
954 .word 0xfffffff0
Catalin Marinas0e056f22009-07-24 12:32:58 +0100955 W(b) __armv4_mmu_cache_on
956 W(b) __armv4_mmu_cache_off
957 W(b) __armv4_mmu_cache_flush
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958
Haojian Zhuang4157d312010-03-12 05:47:55 -0500959 .word 0x56056900
960 .word 0xffffff00 @ PXA9xx
Catalin Marinas0e056f22009-07-24 12:32:58 +0100961 W(b) __armv4_mmu_cache_on
962 W(b) __armv4_mmu_cache_off
963 W(b) __armv4_mmu_cache_flush
Eric Miao59c7bcd2008-11-29 21:42:39 +0800964
Eric Miao49cbe782009-01-20 14:15:18 +0800965 .word 0x56158000 @ PXA168
966 .word 0xfffff000
Catalin Marinas0e056f22009-07-24 12:32:58 +0100967 W(b) __armv4_mmu_cache_on
968 W(b) __armv4_mmu_cache_off
969 W(b) __armv5tej_mmu_cache_flush
Eric Miao49cbe782009-01-20 14:15:18 +0800970
Nicolas Pitre2e2023f2008-06-03 23:06:21 +0200971 .word 0x56050000 @ Feroceon
972 .word 0xff0f0000
Catalin Marinas0e056f22009-07-24 12:32:58 +0100973 W(b) __armv4_mmu_cache_on
974 W(b) __armv4_mmu_cache_off
975 W(b) __armv5tej_mmu_cache_flush
Nicolas Pitre3ebb5a22007-10-31 15:31:48 -0400976
Joonyoung Shim55879312009-06-16 20:05:57 +0900977#ifdef CONFIG_CPU_FEROCEON_OLD_ID
978 /* this conflicts with the standard ARMv5TE entry */
979 .long 0x41009260 @ Old Feroceon
980 .long 0xff00fff0
981 b __armv4_mmu_cache_on
982 b __armv4_mmu_cache_off
983 b __armv5tej_mmu_cache_flush
984#endif
985
Paulius Zaleckas28853ac2009-03-25 13:10:01 +0200986 .word 0x66015261 @ FA526
987 .word 0xff01fff1
Catalin Marinas0e056f22009-07-24 12:32:58 +0100988 W(b) __fa526_cache_on
989 W(b) __armv4_mmu_cache_off
990 W(b) __fa526_cache_flush
Paulius Zaleckas28853ac2009-03-25 13:10:01 +0200991
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992 @ These match on the architecture ID
993
994 .word 0x00020000 @ ARMv4T
995 .word 0x000f0000
Catalin Marinas0e056f22009-07-24 12:32:58 +0100996 W(b) __armv4_mmu_cache_on
997 W(b) __armv4_mmu_cache_off
998 W(b) __armv4_mmu_cache_flush
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999
1000 .word 0x00050000 @ ARMv5TE
1001 .word 0x000f0000
Catalin Marinas0e056f22009-07-24 12:32:58 +01001002 W(b) __armv4_mmu_cache_on
1003 W(b) __armv4_mmu_cache_off
1004 W(b) __armv4_mmu_cache_flush
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005
1006 .word 0x00060000 @ ARMv5TEJ
1007 .word 0x000f0000
Catalin Marinas0e056f22009-07-24 12:32:58 +01001008 W(b) __armv4_mmu_cache_on
1009 W(b) __armv4_mmu_cache_off
Sascha Hauer75216852010-03-15 15:14:50 +01001010 W(b) __armv5tej_mmu_cache_flush
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011
Catalin Marinas45a7b9c2006-06-18 16:21:50 +01001012 .word 0x0007b000 @ ARMv6
Catalin Marinas7d09e852007-06-01 17:14:53 +01001013 .word 0x000ff000
Dave Martin50101922012-11-22 12:50:43 +01001014 W(b) __armv6_mmu_cache_on
Catalin Marinas0e056f22009-07-24 12:32:58 +01001015 W(b) __armv4_mmu_cache_off
1016 W(b) __armv6_mmu_cache_flush
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017
Catalin Marinas7d09e852007-06-01 17:14:53 +01001018 .word 0x000f0000 @ new CPU Id
1019 .word 0x000f0000
Catalin Marinas0e056f22009-07-24 12:32:58 +01001020 W(b) __armv7_mmu_cache_on
1021 W(b) __armv7_mmu_cache_off
1022 W(b) __armv7_mmu_cache_flush
Catalin Marinas7d09e852007-06-01 17:14:53 +01001023
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024 .word 0 @ unrecognised type
1025 .word 0
1026 mov pc, lr
Catalin Marinas0e056f22009-07-24 12:32:58 +01001027 THUMB( nop )
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028 mov pc, lr
Catalin Marinas0e056f22009-07-24 12:32:58 +01001029 THUMB( nop )
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030 mov pc, lr
Catalin Marinas0e056f22009-07-24 12:32:58 +01001031 THUMB( nop )
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032
1033 .size proc_types, . - proc_types
1034
Dave Martin946a1052011-06-14 14:20:44 +01001035 /*
1036 * If you get a "non-constant expression in ".if" statement"
1037 * error from the assembler on this line, check that you have
1038 * not accidentally written a "b" instruction where you should
1039 * have written W(b).
1040 */
1041 .if (. - proc_types) % PROC_ENTRY_SIZE != 0
1042 .error "The size of one or more proc_types entries is wrong."
1043 .endif
1044
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045/*
1046 * Turn off the Cache and MMU. ARMv3 does not support
1047 * reading the control register, but ARMv4 does.
1048 *
Uwe Kleine-König21b28412010-01-26 22:08:09 +01001049 * On exit,
1050 * r0, r1, r2, r3, r9, r12 corrupted
1051 * This routine must preserve:
Nicolas Pitre6d7d0ae2011-02-21 07:06:45 +01001052 * r4, r7, r8
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053 */
1054 .align 5
1055cache_off: mov r3, #12 @ cache_off function
1056 b call_cache_fn
1057
Hyok S. Choi10c2df62006-03-27 10:21:34 +01001058__armv4_mpu_cache_off:
1059 mrc p15, 0, r0, c1, c0
1060 bic r0, r0, #0x000d
1061 mcr p15, 0, r0, c1, c0 @ turn MPU and cache off
1062 mov r0, #0
1063 mcr p15, 0, r0, c7, c10, 4 @ drain write buffer
1064 mcr p15, 0, r0, c7, c6, 0 @ flush D-Cache
1065 mcr p15, 0, r0, c7, c5, 0 @ flush I-Cache
1066 mov pc, lr
1067
1068__armv3_mpu_cache_off:
1069 mrc p15, 0, r0, c1, c0
1070 bic r0, r0, #0x000d
1071 mcr p15, 0, r0, c1, c0, 0 @ turn MPU and cache off
1072 mov r0, #0
1073 mcr p15, 0, r0, c7, c0, 0 @ invalidate whole cache v3
1074 mov pc, lr
1075
Hyok S. Choic76b6b42006-03-24 09:53:18 +00001076__armv4_mmu_cache_off:
Catalin Marinas8bdca0a2009-07-24 12:35:06 +01001077#ifdef CONFIG_MMU
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078 mrc p15, 0, r0, c1, c0
1079 bic r0, r0, #0x000d
1080 mcr p15, 0, r0, c1, c0 @ turn MMU and cache off
1081 mov r0, #0
1082 mcr p15, 0, r0, c7, c7 @ invalidate whole cache v4
1083 mcr p15, 0, r0, c8, c7 @ invalidate whole TLB v4
Catalin Marinas8bdca0a2009-07-24 12:35:06 +01001084#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085 mov pc, lr
1086
Catalin Marinas7d09e852007-06-01 17:14:53 +01001087__armv7_mmu_cache_off:
1088 mrc p15, 0, r0, c1, c0
Catalin Marinas8bdca0a2009-07-24 12:35:06 +01001089#ifdef CONFIG_MMU
Catalin Marinas7d09e852007-06-01 17:14:53 +01001090 bic r0, r0, #0x000d
Catalin Marinas8bdca0a2009-07-24 12:35:06 +01001091#else
1092 bic r0, r0, #0x000c
1093#endif
Catalin Marinas7d09e852007-06-01 17:14:53 +01001094 mcr p15, 0, r0, c1, c0 @ turn MMU and cache off
1095 mov r12, lr
1096 bl __armv7_mmu_cache_flush
1097 mov r0, #0
Catalin Marinas8bdca0a2009-07-24 12:35:06 +01001098#ifdef CONFIG_MMU
Catalin Marinas7d09e852007-06-01 17:14:53 +01001099 mcr p15, 0, r0, c8, c7, 0 @ invalidate whole TLB
Catalin Marinas8bdca0a2009-07-24 12:35:06 +01001100#endif
Catalin Marinasc30c2f92008-11-06 13:23:07 +00001101 mcr p15, 0, r0, c7, c5, 6 @ invalidate BTC
1102 mcr p15, 0, r0, c7, c10, 4 @ DSB
1103 mcr p15, 0, r0, c7, c5, 4 @ ISB
Catalin Marinas7d09e852007-06-01 17:14:53 +01001104 mov pc, r12
1105
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106/*
1107 * Clean and flush the cache to maintain consistency.
1108 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109 * On exit,
Uwe Kleine-König21b28412010-01-26 22:08:09 +01001110 * r1, r2, r3, r9, r10, r11, r12 corrupted
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111 * This routine must preserve:
Nicolas Pitre6d7d0ae2011-02-21 07:06:45 +01001112 * r4, r6, r7, r8
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113 */
1114 .align 5
1115cache_clean_flush:
1116 mov r3, #16
1117 b call_cache_fn
1118
Hyok S. Choi10c2df62006-03-27 10:21:34 +01001119__armv4_mpu_cache_flush:
Will Deacon238962a2014-11-04 11:40:46 +01001120 tst r4, #1
1121 movne pc, lr
Hyok S. Choi10c2df62006-03-27 10:21:34 +01001122 mov r2, #1
1123 mov r3, #0
1124 mcr p15, 0, ip, c7, c6, 0 @ invalidate D cache
1125 mov r1, #7 << 5 @ 8 segments
11261: orr r3, r1, #63 << 26 @ 64 entries
11272: mcr p15, 0, r3, c7, c14, 2 @ clean & invalidate D index
1128 subs r3, r3, #1 << 26
1129 bcs 2b @ entries 63 to 0
1130 subs r1, r1, #1 << 5
1131 bcs 1b @ segments 7 to 0
1132
1133 teq r2, #0
1134 mcrne p15, 0, ip, c7, c5, 0 @ invalidate I cache
1135 mcr p15, 0, ip, c7, c10, 4 @ drain WB
1136 mov pc, lr
1137
Paulius Zaleckas28853ac2009-03-25 13:10:01 +02001138__fa526_cache_flush:
Will Deacon238962a2014-11-04 11:40:46 +01001139 tst r4, #1
1140 movne pc, lr
Paulius Zaleckas28853ac2009-03-25 13:10:01 +02001141 mov r1, #0
1142 mcr p15, 0, r1, c7, c14, 0 @ clean and invalidate D cache
1143 mcr p15, 0, r1, c7, c5, 0 @ flush I cache
1144 mcr p15, 0, r1, c7, c10, 4 @ drain WB
1145 mov pc, lr
Hyok S. Choi10c2df62006-03-27 10:21:34 +01001146
Hyok S. Choic76b6b42006-03-24 09:53:18 +00001147__armv6_mmu_cache_flush:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148 mov r1, #0
Will Deacon238962a2014-11-04 11:40:46 +01001149 tst r4, #1
1150 mcreq p15, 0, r1, c7, c14, 0 @ clean+invalidate D
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151 mcr p15, 0, r1, c7, c5, 0 @ invalidate I+BTB
Will Deacon238962a2014-11-04 11:40:46 +01001152 mcreq p15, 0, r1, c7, c15, 0 @ clean+invalidate unified
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153 mcr p15, 0, r1, c7, c10, 4 @ drain WB
1154 mov pc, lr
1155
Catalin Marinas7d09e852007-06-01 17:14:53 +01001156__armv7_mmu_cache_flush:
Will Deacon238962a2014-11-04 11:40:46 +01001157 tst r4, #1
1158 bne iflush
Catalin Marinas7d09e852007-06-01 17:14:53 +01001159 mrc p15, 0, r10, c0, c1, 5 @ read ID_MMFR1
1160 tst r10, #0xf << 16 @ hierarchical cache (ARMv7)
Catalin Marinas7d09e852007-06-01 17:14:53 +01001161 mov r10, #0
Catalin Marinasc30c2f92008-11-06 13:23:07 +00001162 beq hierarchical
Catalin Marinas7d09e852007-06-01 17:14:53 +01001163 mcr p15, 0, r10, c7, c14, 0 @ clean+invalidate D
1164 b iflush
1165hierarchical:
Catalin Marinasc30c2f92008-11-06 13:23:07 +00001166 mcr p15, 0, r10, c7, c10, 5 @ DMB
Catalin Marinas0e056f22009-07-24 12:32:58 +01001167 stmfd sp!, {r0-r7, r9-r11}
Catalin Marinas7d09e852007-06-01 17:14:53 +01001168 mrc p15, 1, r0, c0, c0, 1 @ read clidr
1169 ands r3, r0, #0x7000000 @ extract loc from clidr
1170 mov r3, r3, lsr #23 @ left align loc bit field
1171 beq finished @ if loc is 0, then no need to clean
1172 mov r10, #0 @ start clean at cache level 0
1173loop1:
1174 add r2, r10, r10, lsr #1 @ work out 3x current cache level
1175 mov r1, r0, lsr r2 @ extract cache type bits from clidr
1176 and r1, r1, #7 @ mask of the bits for current cache only
1177 cmp r1, #2 @ see what cache we have at this level
1178 blt skip @ skip if no cache, or just i-cache
1179 mcr p15, 2, r10, c0, c0, 0 @ select current cache level in cssr
1180 mcr p15, 0, r10, c7, c5, 4 @ isb to sych the new cssr&csidr
1181 mrc p15, 1, r1, c0, c0, 0 @ read the new csidr
1182 and r2, r1, #7 @ extract the length of the cache lines
1183 add r2, r2, #4 @ add 4 (line length offset)
1184 ldr r4, =0x3ff
1185 ands r4, r4, r1, lsr #3 @ find maximum number on the way size
Catalin Marinas000b5022008-10-03 11:09:10 +01001186 clz r5, r4 @ find bit position of way size increment
Catalin Marinas7d09e852007-06-01 17:14:53 +01001187 ldr r7, =0x7fff
1188 ands r7, r7, r1, lsr #13 @ extract max number of the index size
1189loop2:
1190 mov r9, r4 @ create working copy of max way size
1191loop3:
Catalin Marinas0e056f22009-07-24 12:32:58 +01001192 ARM( orr r11, r10, r9, lsl r5 ) @ factor way and cache number into r11
1193 ARM( orr r11, r11, r7, lsl r2 ) @ factor index number into r11
1194 THUMB( lsl r6, r9, r5 )
1195 THUMB( orr r11, r10, r6 ) @ factor way and cache number into r11
1196 THUMB( lsl r6, r7, r2 )
1197 THUMB( orr r11, r11, r6 ) @ factor index number into r11
Catalin Marinas7d09e852007-06-01 17:14:53 +01001198 mcr p15, 0, r11, c7, c14, 2 @ clean & invalidate by set/way
1199 subs r9, r9, #1 @ decrement the way
1200 bge loop3
1201 subs r7, r7, #1 @ decrement the index
1202 bge loop2
1203skip:
1204 add r10, r10, #2 @ increment cache number
1205 cmp r3, r10
1206 bgt loop1
1207finished:
Catalin Marinas0e056f22009-07-24 12:32:58 +01001208 ldmfd sp!, {r0-r7, r9-r11}
Masahiro Yamada08a7e622017-02-27 14:28:41 -08001209 mov r10, #0 @ switch back to cache level 0
Catalin Marinas7d09e852007-06-01 17:14:53 +01001210 mcr p15, 2, r10, c0, c0, 0 @ select current cache level in cssr
Catalin Marinas7d09e852007-06-01 17:14:53 +01001211iflush:
Catalin Marinasc30c2f92008-11-06 13:23:07 +00001212 mcr p15, 0, r10, c7, c10, 4 @ DSB
Catalin Marinas7d09e852007-06-01 17:14:53 +01001213 mcr p15, 0, r10, c7, c5, 0 @ invalidate I+BTB
Catalin Marinasc30c2f92008-11-06 13:23:07 +00001214 mcr p15, 0, r10, c7, c10, 4 @ DSB
1215 mcr p15, 0, r10, c7, c5, 4 @ ISB
Catalin Marinas7d09e852007-06-01 17:14:53 +01001216 mov pc, lr
1217
Nicolas Pitre15754bf2007-10-31 15:15:29 -04001218__armv5tej_mmu_cache_flush:
Will Deacon238962a2014-11-04 11:40:46 +01001219 tst r4, #1
1220 movne pc, lr
Nicolas Pitre15754bf2007-10-31 15:15:29 -040012211: mrc p15, 0, r15, c7, c14, 3 @ test,clean,invalidate D cache
1222 bne 1b
1223 mcr p15, 0, r0, c7, c5, 0 @ flush I cache
1224 mcr p15, 0, r0, c7, c10, 4 @ drain WB
1225 mov pc, lr
1226
Hyok S. Choic76b6b42006-03-24 09:53:18 +00001227__armv4_mmu_cache_flush:
Will Deacon238962a2014-11-04 11:40:46 +01001228 tst r4, #1
1229 movne pc, lr
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230 mov r2, #64*1024 @ default: 32K dcache size (*2)
1231 mov r11, #32 @ default: 32 byte line size
1232 mrc p15, 0, r3, c0, c0, 1 @ read cache type
Russell King98e12b52010-02-25 23:56:38 +00001233 teq r3, r9 @ cache ID register present?
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234 beq no_cache_id
1235 mov r1, r3, lsr #18
1236 and r1, r1, #7
1237 mov r2, #1024
1238 mov r2, r2, lsl r1 @ base dcache size *2
1239 tst r3, #1 << 14 @ test M bit
1240 addne r2, r2, r2, lsr #1 @ +1/2 size if M == 1
1241 mov r3, r3, lsr #12
1242 and r3, r3, #3
1243 mov r11, #8
1244 mov r11, r11, lsl r3 @ cache line size in bytes
1245no_cache_id:
Catalin Marinas0e056f22009-07-24 12:32:58 +01001246 mov r1, pc
1247 bic r1, r1, #63 @ align to longest cache line
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248 add r2, r1, r2
Catalin Marinas0e056f22009-07-24 12:32:58 +010012491:
1250 ARM( ldr r3, [r1], r11 ) @ s/w flush D cache
1251 THUMB( ldr r3, [r1] ) @ s/w flush D cache
1252 THUMB( add r1, r1, r11 )
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253 teq r1, r2
1254 bne 1b
1255
1256 mcr p15, 0, r1, c7, c5, 0 @ flush I cache
1257 mcr p15, 0, r1, c7, c6, 0 @ flush D cache
1258 mcr p15, 0, r1, c7, c10, 4 @ drain WB
1259 mov pc, lr
1260
Hyok S. Choic76b6b42006-03-24 09:53:18 +00001261__armv3_mmu_cache_flush:
Hyok S. Choi10c2df62006-03-27 10:21:34 +01001262__armv3_mpu_cache_flush:
Will Deacon238962a2014-11-04 11:40:46 +01001263 tst r4, #1
1264 movne pc, lr
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265 mov r1, #0
Uwe Kleine-König63fa7182010-01-26 22:18:09 +01001266 mcr p15, 0, r1, c7, c0, 0 @ invalidate whole cache v3
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267 mov pc, lr
1268
1269/*
1270 * Various debugging routines for printing hex characters and
1271 * memory, which again must be relocatable.
1272 */
1273#ifdef DEBUG
Catalin Marinas88987ef2009-07-24 12:32:52 +01001274 .align 2
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275 .type phexbuf,#object
1276phexbuf: .space 12
1277 .size phexbuf, . - phexbuf
1278
Uwe Kleine-Königbe6f9f02010-01-26 22:22:20 +01001279@ phex corrupts {r0, r1, r2, r3}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280phex: adr r3, phexbuf
1281 mov r2, #0
1282 strb r2, [r3, r1]
12831: subs r1, r1, #1
1284 movmi r0, r3
1285 bmi puts
1286 and r2, r0, #15
1287 mov r0, r0, lsr #4
1288 cmp r2, #10
1289 addge r2, r2, #7
1290 add r2, r2, #'0'
1291 strb r2, [r3, r1]
1292 b 1b
1293
Uwe Kleine-Königbe6f9f02010-01-26 22:22:20 +01001294@ puts corrupts {r0, r1, r2, r3}
Tony Lindgren4e6d4882010-02-01 23:26:53 +01001295puts: loadsp r3, r1
Linus Torvalds1da177e2005-04-16 15:20:36 -070012961: ldrb r2, [r0], #1
1297 teq r2, #0
1298 moveq pc, lr
Russell King5cd0c342005-05-03 12:18:46 +010012992: writeb r2, r3
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300 mov r1, #0x00020000
13013: subs r1, r1, #1
1302 bne 3b
1303 teq r2, #'\n'
1304 moveq r2, #'\r'
1305 beq 2b
1306 teq r0, #0
1307 bne 1b
1308 mov pc, lr
Uwe Kleine-Königbe6f9f02010-01-26 22:22:20 +01001309@ putc corrupts {r0, r1, r2, r3}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310putc:
1311 mov r2, r0
1312 mov r0, #0
Tony Lindgren4e6d4882010-02-01 23:26:53 +01001313 loadsp r3, r1
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314 b 2b
1315
Uwe Kleine-Königbe6f9f02010-01-26 22:22:20 +01001316@ memdump corrupts {r0, r1, r2, r3, r10, r11, r12, lr}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317memdump: mov r12, r0
1318 mov r10, lr
1319 mov r11, #0
13202: mov r0, r11, lsl #2
1321 add r0, r0, r12
1322 mov r1, #8
1323 bl phex
1324 mov r0, #':'
1325 bl putc
13261: mov r0, #' '
1327 bl putc
1328 ldr r0, [r12, r11, lsl #2]
1329 mov r1, #8
1330 bl phex
1331 and r0, r11, #7
1332 teq r0, #3
1333 moveq r0, #' '
1334 bleq putc
1335 and r0, r11, #7
1336 add r11, r11, #1
1337 teq r0, #7
1338 bne 1b
1339 mov r0, #'\n'
1340 bl putc
1341 cmp r11, #64
1342 blt 2b
1343 mov pc, r10
1344#endif
1345
Catalin Marinas92c83ff12007-06-22 14:27:50 +01001346 .ltorg
Dave Martin424e5992012-02-10 18:07:07 -08001347
1348#ifdef CONFIG_ARM_VIRT_EXT
1349.align 5
1350__hyp_reentry_vectors:
1351 W(b) . @ reset
1352 W(b) . @ undef
1353 W(b) . @ svc
1354 W(b) . @ pabort
1355 W(b) . @ dabort
1356 W(b) __enter_kernel @ hyp
1357 W(b) . @ irq
1358 W(b) . @ fiq
1359#endif /* CONFIG_ARM_VIRT_EXT */
1360
1361__enter_kernel:
1362 mov r0, #0 @ must be 0
Joachim Eastwoodc20611d2015-03-25 08:47:18 +01001363 ARM( mov pc, r4 ) @ call kernel
1364 M_CLASS( add r4, r4, #1 ) @ enter in Thumb mode for M class
1365 THUMB( bx r4 ) @ entry point is always ARM for A/R classes
Dave Martin424e5992012-02-10 18:07:07 -08001366
Nicolas Pitreadcc2592011-04-27 16:15:11 -04001367reloc_code_end:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368
Roy Franz81a0bc32015-09-23 20:17:54 -07001369#ifdef CONFIG_EFI_STUB
1370 .align 2
1371_start: .long start - .
1372
1373ENTRY(efi_stub_entry)
1374 @ allocate space on stack for passing current zImage address
1375 @ and for the EFI stub to return of new entry point of
1376 @ zImage, as EFI stub may copy the kernel. Pointer address
1377 @ is passed in r2. r0 and r1 are passed through from the
1378 @ EFI firmware to efi_entry
1379 adr ip, _start
1380 ldr r3, [ip]
1381 add r3, r3, ip
1382 stmfd sp!, {r3, lr}
1383 mov r2, sp @ pass zImage address in r2
1384 bl efi_entry
1385
1386 @ Check for error return from EFI stub. r0 has FDT address
1387 @ or error code.
1388 cmn r0, #1
1389 beq efi_load_fail
1390
1391 @ Preserve return value of efi_entry() in r4
1392 mov r4, r0
1393 bl cache_clean_flush
1394 bl cache_off
1395
1396 @ Set parameters for booting zImage according to boot protocol
1397 @ put FDT address in r2, it was returned by efi_entry()
1398 @ r1 is the machine type, and r0 needs to be 0
1399 mov r0, #0
1400 mov r1, #0xFFFFFFFF
1401 mov r2, r4
1402
1403 @ Branch to (possibly) relocated zImage that is in [sp]
1404 ldr lr, [sp]
1405 ldr ip, =start_offset
1406 add lr, lr, ip
1407 mov pc, lr @ no mode switch
1408
1409efi_load_fail:
1410 @ Return EFI_LOAD_ERROR to EFI firmware on error.
1411 ldr r0, =0x80000001
1412 ldmfd sp!, {ip, pc}
1413ENDPROC(efi_stub_entry)
1414#endif
1415
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416 .align
Russell Kingb0c4d4e2010-11-22 12:00:59 +00001417 .section ".stack", "aw", %nobits
Nicolas Pitre8d7e4cc2011-04-27 14:54:39 -04001418.L_user_stack: .space 4096
1419.L_user_stack_end: