blob: 51fc9fb6dc2c64b5b75925caf87ba8b62263825e [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 King5cd0c3442005-05-03 12:18:46 +010028
Russell King5cd0c3442005-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 King5cd0c3442005-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 King5cd0c3442005-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 King5cd0c3442005-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
425 bl __hyp_get_vectors
426 sub r0, r0, r5
427 add r0, r0, r10
428 bl __hyp_set_vectors
4291:
430#endif
431
Nicolas Pitre6d7d0ae2011-02-21 07:06:45 +0100432 sub r9, r6, r5 @ size to copy
433 add r9, r9, #31 @ rounded up to a multiple
434 bic r9, r9, #31 @ ... of 32 bytes
435 add r6, r9, r5
436 add r9, r9, r10
437
4381: ldmdb r6!, {r0 - r3, r10 - r12, lr}
439 cmp r6, r5
440 stmdb r9!, {r0 - r3, r10 - r12, lr}
441 bhi 1b
442
443 /* Preserve offset to relocated code. */
444 sub r6, r9, r6
445
Tony Lindgren7c2527f2011-04-26 05:37:46 -0700446#ifndef CONFIG_ZBOOT_ROM
447 /* cache_clean_flush may use the stack, so relocate it */
448 add sp, sp, r6
449#endif
450
Will Deacon238962a2014-11-04 11:40:46 +0100451 bl cache_clean_flush
Nicolas Pitre6d7d0ae2011-02-21 07:06:45 +0100452
Russell King14327c62015-04-21 14:17:25 +0100453 badr r0, restart
Nicolas Pitre6d7d0ae2011-02-21 07:06:45 +0100454 add r0, r0, r6
455 mov pc, r0
456
457wont_overwrite:
458/*
459 * If delta is zero, we are running at the address we were linked at.
460 * r0 = delta
461 * r2 = BSS start
462 * r3 = BSS end
Nicolas Pitre28748652013-06-06 05:13:48 +0100463 * r4 = kernel execution address (possibly with LSB set)
John Bonesioe2a6a3a2011-05-27 18:45:50 -0400464 * r5 = appended dtb size (0 if not present)
Nicolas Pitre6d7d0ae2011-02-21 07:06:45 +0100465 * r7 = architecture ID
466 * r8 = atags pointer
467 * r11 = GOT start
468 * r12 = GOT end
469 * sp = stack pointer
470 */
John Bonesioe2a6a3a2011-05-27 18:45:50 -0400471 orrs r1, r0, r5
Nicolas Pitre6d7d0ae2011-02-21 07:06:45 +0100472 beq not_relocated
John Bonesioe2a6a3a2011-05-27 18:45:50 -0400473
Russell King98e12b52010-02-25 23:56:38 +0000474 add r11, r11, r0
Nicolas Pitre6d7d0ae2011-02-21 07:06:45 +0100475 add r12, r12, r0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476
477#ifndef CONFIG_ZBOOT_ROM
478 /*
479 * If we're running fully PIC === CONFIG_ZBOOT_ROM = n,
480 * we need to fix up pointers into the BSS region.
Nicolas Pitre6d7d0ae2011-02-21 07:06:45 +0100481 * Note that the stack pointer has already been fixed up.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 */
483 add r2, r2, r0
484 add r3, r3, r0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485
486 /*
487 * Relocate all entries in the GOT table.
John Bonesioe2a6a3a2011-05-27 18:45:50 -0400488 * Bump bss entries to _edata + dtb size
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 */
Russell King98e12b52010-02-25 23:56:38 +00004901: ldr r1, [r11, #0] @ relocate entries in the GOT
John Bonesioe2a6a3a2011-05-27 18:45:50 -0400491 add r1, r1, r0 @ This fixes up C references
492 cmp r1, r2 @ if entry >= bss_start &&
493 cmphs r3, r1 @ bss_end > entry
494 addhi r1, r1, r5 @ entry += dtb size
495 str r1, [r11], #4 @ next entry
Nicolas Pitre6d7d0ae2011-02-21 07:06:45 +0100496 cmp r11, r12
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 blo 1b
John Bonesioe2a6a3a2011-05-27 18:45:50 -0400498
499 /* bump our bss pointers too */
500 add r2, r2, r5
501 add r3, r3, r5
502
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503#else
504
505 /*
506 * Relocate entries in the GOT table. We only relocate
507 * the entries that are outside the (relocated) BSS region.
508 */
Russell King98e12b52010-02-25 23:56:38 +00005091: ldr r1, [r11, #0] @ relocate entries in the GOT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 cmp r1, r2 @ entry < bss_start ||
511 cmphs r3, r1 @ _end < entry
512 addlo r1, r1, r0 @ table. This fixes up the
Russell King98e12b52010-02-25 23:56:38 +0000513 str r1, [r11], #4 @ C references.
Nicolas Pitre6d7d0ae2011-02-21 07:06:45 +0100514 cmp r11, r12
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 blo 1b
516#endif
517
518not_relocated: mov r0, #0
5191: str r0, [r2], #4 @ clear bss
520 str r0, [r2], #4
521 str r0, [r2], #4
522 str r0, [r2], #4
523 cmp r2, r3
524 blo 1b
525
Nicolas Pitre28748652013-06-06 05:13:48 +0100526 /*
527 * Did we skip the cache setup earlier?
528 * That is indicated by the LSB in r4.
529 * Do it now if so.
530 */
531 tst r4, #1
532 bic r4, r4, #1
533 blne cache_on
534
Nicolas Pitre6d7d0ae2011-02-21 07:06:45 +0100535/*
536 * The C runtime environment should now be setup sufficiently.
537 * Set up some pointers, and start decompressing.
538 * r4 = kernel execution address
539 * r7 = architecture ID
540 * r8 = atags pointer
541 */
542 mov r0, r4
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 mov r1, sp @ malloc space above stack
544 add r2, sp, #0x10000 @ 64k max
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 mov r3, r7
546 bl decompress_kernel
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 bl cache_clean_flush
Nicolas Pitre6d7d0ae2011-02-21 07:06:45 +0100548 bl cache_off
Nicolas Pitre6d7d0ae2011-02-21 07:06:45 +0100549 mov r1, r7 @ restore architecture number
550 mov r2, r8 @ restore atags pointer
Dave Martin424e5992012-02-10 18:07:07 -0800551
552#ifdef CONFIG_ARM_VIRT_EXT
553 mrs r0, spsr @ Get saved CPU boot mode
554 and r0, r0, #MODE_MASK
555 cmp r0, #HYP_MODE @ if not booted in HYP mode...
556 bne __enter_kernel @ boot kernel directly
557
558 adr r12, .L__hyp_reentry_vectors_offset
559 ldr r0, [r12]
560 add r0, r0, r12
561
562 bl __hyp_set_vectors
563 __HVC(0) @ otherwise bounce to hyp mode
564
565 b . @ should never be reached
566
567 .align 2
568.L__hyp_reentry_vectors_offset: .long __hyp_reentry_vectors - .
569#else
570 b __enter_kernel
571#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572
Catalin Marinas88987ef2009-07-24 12:32:52 +0100573 .align 2
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 .type LC0, #object
575LC0: .word LC0 @ r1
576 .word __bss_start @ r2
577 .word _end @ r3
Nicolas Pitre6d7d0ae2011-02-21 07:06:45 +0100578 .word _edata @ r6
Nicolas Pitre34cc1a82011-04-19 15:42:43 -0400579 .word input_data_end - 4 @ r10 (inflated size location)
Russell King98e12b52010-02-25 23:56:38 +0000580 .word _got_start @ r11
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 .word _got_end @ ip
Nicolas Pitre8d7e4cc2011-04-27 14:54:39 -0400582 .word .L_user_stack_end @ sp
Nicolas Pitre28748652013-06-06 05:13:48 +0100583 .word _end - restart + 16384 + 1024*1024
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 .size LC0, . - LC0
585
586#ifdef CONFIG_ARCH_RPC
587 .globl params
Eric Miaodb7b2b42010-06-03 15:36:49 +0800588params: ldr r0, =0x10000100 @ params_phys for RPC
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 mov pc, lr
590 .ltorg
591 .align
592#endif
593
594/*
595 * Turn on the cache. We need to setup some page tables so that we
596 * can have both the I and D caches on.
597 *
598 * We place the page tables 16k down from the kernel execution address,
599 * and we hope that nothing else is using it. If we're using it, we
600 * will go pop!
601 *
602 * On entry,
603 * r4 = kernel execution address
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 * r7 = architecture number
Russell Kingf4619022006-01-12 17:17:57 +0000605 * r8 = atags pointer
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 * On exit,
Uwe Kleine-König21b28412010-01-26 22:08:09 +0100607 * r0, r1, r2, r3, r9, r10, r12 corrupted
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 * This routine must preserve:
Nicolas Pitre6d7d0ae2011-02-21 07:06:45 +0100609 * r4, r7, r8
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 */
611 .align 5
612cache_on: mov r3, #8 @ cache_on function
613 b call_cache_fn
614
Hyok S. Choi10c2df62006-03-27 10:21:34 +0100615/*
616 * Initialize the highest priority protection region, PR7
617 * to cover all 32bit address and cacheable and bufferable.
618 */
619__armv4_mpu_cache_on:
620 mov r0, #0x3f @ 4G, the whole
621 mcr p15, 0, r0, c6, c7, 0 @ PR7 Area Setting
622 mcr p15, 0, r0, c6, c7, 1
623
624 mov r0, #0x80 @ PR7
625 mcr p15, 0, r0, c2, c0, 0 @ D-cache on
626 mcr p15, 0, r0, c2, c0, 1 @ I-cache on
627 mcr p15, 0, r0, c3, c0, 0 @ write-buffer on
628
629 mov r0, #0xc000
630 mcr p15, 0, r0, c5, c0, 1 @ I-access permission
631 mcr p15, 0, r0, c5, c0, 0 @ D-access permission
632
633 mov r0, #0
634 mcr p15, 0, r0, c7, c10, 4 @ drain write buffer
635 mcr p15, 0, r0, c7, c5, 0 @ flush(inval) I-Cache
636 mcr p15, 0, r0, c7, c6, 0 @ flush(inval) D-Cache
637 mrc p15, 0, r0, c1, c0, 0 @ read control reg
638 @ ...I .... ..D. WC.M
639 orr r0, r0, #0x002d @ .... .... ..1. 11.1
640 orr r0, r0, #0x1000 @ ...1 .... .... ....
641
642 mcr p15, 0, r0, c1, c0, 0 @ write control reg
643
644 mov r0, #0
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 mov pc, lr
648
649__armv3_mpu_cache_on:
650 mov r0, #0x3f @ 4G, the whole
651 mcr p15, 0, r0, c6, c7, 0 @ PR7 Area Setting
652
653 mov r0, #0x80 @ PR7
654 mcr p15, 0, r0, c2, c0, 0 @ cache on
655 mcr p15, 0, r0, c3, c0, 0 @ write-buffer on
656
657 mov r0, #0xc000
658 mcr p15, 0, r0, c5, c0, 0 @ access permission
659
660 mov r0, #0
661 mcr p15, 0, r0, c7, c0, 0 @ invalidate whole cache v3
Uwe Kleine-König4a8d57a2010-01-26 22:14:23 +0100662 /*
663 * ?? ARMv3 MMU does not allow reading the control register,
664 * does this really work on ARMv3 MPU?
665 */
Hyok S. Choi10c2df62006-03-27 10:21:34 +0100666 mrc p15, 0, r0, c1, c0, 0 @ read control reg
667 @ .... .... .... WC.M
668 orr r0, r0, #0x000d @ .... .... .... 11.1
Uwe Kleine-König4a8d57a2010-01-26 22:14:23 +0100669 /* ?? this overwrites the value constructed above? */
Hyok S. Choi10c2df62006-03-27 10:21:34 +0100670 mov r0, #0
671 mcr p15, 0, r0, c1, c0, 0 @ write control reg
672
Uwe Kleine-König4a8d57a2010-01-26 22:14:23 +0100673 /* ?? invalidate for the second time? */
Hyok S. Choi10c2df62006-03-27 10:21:34 +0100674 mcr p15, 0, r0, c7, c0, 0 @ invalidate whole cache v3
675 mov pc, lr
676
Russell King1fdc08a2012-05-10 09:48:34 +0100677#ifdef CONFIG_CPU_DCACHE_WRITETHROUGH
678#define CB_BITS 0x08
679#else
680#define CB_BITS 0x0c
681#endif
682
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683__setup_mmu: sub r3, r4, #16384 @ Page directory size
684 bic r3, r3, #0xff @ Align the pointer
685 bic r3, r3, #0x3f00
686/*
687 * Initialise the page tables, turning on the cacheable and bufferable
688 * bits for the RAM area only.
689 */
690 mov r0, r3
Russell Kingf4619022006-01-12 17:17:57 +0000691 mov r9, r0, lsr #18
692 mov r9, r9, lsl #18 @ start of RAM
693 add r10, r9, #0x10000000 @ a reasonable RAM size
Russell King1fdc08a2012-05-10 09:48:34 +0100694 mov r1, #0x12 @ XN|U + section mapping
695 orr r1, r1, #3 << 10 @ AP=11
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 add r2, r3, #16384
Nicolas Pitre265d5e42006-01-18 22:38:51 +00006971: cmp r1, r9 @ if virt > start of RAM
Russell King1fdc08a2012-05-10 09:48:34 +0100698 cmphs r10, r1 @ && end of RAM > virt
699 bic r1, r1, #0x1c @ clear XN|U + C + B
700 orrlo r1, r1, #0x10 @ Set XN|U for non-RAM
701 orrhs r1, r1, r6 @ set RAM section settings
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 str r1, [r0], #4 @ 1:1 mapping
703 add r1, r1, #1048576
704 teq r0, r2
705 bne 1b
706/*
707 * If ever we are running from Flash, then we surely want the cache
708 * to be enabled also for our execution instance... We map 2MB of it
709 * so there is no map overlap problem for up to 1 MB compressed kernel.
710 * If the execution is in RAM then we would only be duplicating the above.
711 */
Russell King1fdc08a2012-05-10 09:48:34 +0100712 orr r1, r6, #0x04 @ ensure B is set for this
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 orr r1, r1, #3 << 10
Dave Martinbfa64c42010-11-29 19:43:26 +0100714 mov r2, pc
715 mov r2, r2, lsr #20
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 orr r1, r1, r2, lsl #20
717 add r0, r3, r2, lsl #2
718 str r1, [r0], #4
719 add r1, r1, #1048576
720 str r1, [r0]
721 mov pc, lr
Catalin Marinas93ed3972008-08-28 11:22:32 +0100722ENDPROC(__setup_mmu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723
Dave Martin50101922012-11-22 12:50:43 +0100724@ Enable unaligned access on v6, to allow better code generation
725@ for the decompressor C code:
726__armv6_mmu_cache_on:
727 mrc p15, 0, r0, c1, c0, 0 @ read SCTLR
728 bic r0, r0, #2 @ A (no unaligned access fault)
729 orr r0, r0, #1 << 22 @ U (v6 unaligned access model)
730 mcr p15, 0, r0, c1, c0, 0 @ write SCTLR
731 b __armv4_mmu_cache_on
732
Mark A. Greeraf3e4fd2011-04-01 15:41:26 +0100733__arm926ejs_mmu_cache_on:
734#ifdef CONFIG_CPU_DCACHE_WRITETHROUGH
735 mov r0, #4 @ put dcache in WT mode
736 mcr p15, 7, r0, c15, c0, 0
737#endif
738
Hyok S. Choic76b6b42006-03-24 09:53:18 +0000739__armv4_mmu_cache_on:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 mov r12, lr
Catalin Marinas8bdca0a2009-07-24 12:35:06 +0100741#ifdef CONFIG_MMU
Russell King1fdc08a2012-05-10 09:48:34 +0100742 mov r6, #CB_BITS | 0x12 @ U
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 bl __setup_mmu
744 mov r0, #0
745 mcr p15, 0, r0, c7, c10, 4 @ drain write buffer
746 mcr p15, 0, r0, c8, c7, 0 @ flush I,D TLBs
747 mrc p15, 0, r0, c1, c0, 0 @ read control reg
748 orr r0, r0, #0x5000 @ I-cache enable, RR cache replacement
749 orr r0, r0, #0x0030
Ben Dooks457c2402013-02-12 18:59:57 +0000750 ARM_BE8( orr r0, r0, #1 << 25 ) @ big-endian page tables
Hyok S. Choic76b6b42006-03-24 09:53:18 +0000751 bl __common_mmu_cache_on
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 mov r0, #0
753 mcr p15, 0, r0, c8, c7, 0 @ flush I,D TLBs
Catalin Marinas8bdca0a2009-07-24 12:35:06 +0100754#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 mov pc, r12
756
Catalin Marinas7d09e852007-06-01 17:14:53 +0100757__armv7_mmu_cache_on:
758 mov r12, lr
Catalin Marinas8bdca0a2009-07-24 12:35:06 +0100759#ifdef CONFIG_MMU
Catalin Marinas7d09e852007-06-01 17:14:53 +0100760 mrc p15, 0, r11, c0, c1, 4 @ read ID_MMFR0
761 tst r11, #0xf @ VMSA
Russell King1fdc08a2012-05-10 09:48:34 +0100762 movne r6, #CB_BITS | 0x02 @ !XN
Catalin Marinas7d09e852007-06-01 17:14:53 +0100763 blne __setup_mmu
764 mov r0, #0
765 mcr p15, 0, r0, c7, c10, 4 @ drain write buffer
766 tst r11, #0xf @ VMSA
767 mcrne p15, 0, r0, c8, c7, 0 @ flush I,D TLBs
Catalin Marinas8bdca0a2009-07-24 12:35:06 +0100768#endif
Catalin Marinas7d09e852007-06-01 17:14:53 +0100769 mrc p15, 0, r0, c1, c0, 0 @ read control reg
Matthew Leache1e5b7e2012-09-11 17:56:57 +0100770 bic r0, r0, #1 << 28 @ clear SCTLR.TRE
Catalin Marinas7d09e852007-06-01 17:14:53 +0100771 orr r0, r0, #0x5000 @ I-cache enable, RR cache replacement
772 orr r0, r0, #0x003c @ write buffer
Dave Martin50101922012-11-22 12:50:43 +0100773 bic r0, r0, #2 @ A (no unaligned access fault)
774 orr r0, r0, #1 << 22 @ U (v6 unaligned access model)
775 @ (needed for ARM1176)
Catalin Marinas8bdca0a2009-07-24 12:35:06 +0100776#ifdef CONFIG_MMU
Ben Dooks457c2402013-02-12 18:59:57 +0000777 ARM_BE8( orr r0, r0, #1 << 25 ) @ big-endian page tables
Will Deacondbece452012-08-24 15:20:59 +0100778 mrcne p15, 0, r6, c2, c0, 2 @ read ttb control reg
Catalin Marinas7d09e852007-06-01 17:14:53 +0100779 orrne r0, r0, #1 @ MMU enabled
Russell King1fdc08a2012-05-10 09:48:34 +0100780 movne r1, #0xfffffffd @ domain 0 = client
Will Deacondbece452012-08-24 15:20:59 +0100781 bic r6, r6, #1 << 31 @ 32-bit translation system
Srinivas Ramana117e5e92016-09-30 15:03:31 +0100782 bic r6, r6, #(7 << 0) | (1 << 4) @ use only ttbr0
Catalin Marinas7d09e852007-06-01 17:14:53 +0100783 mcrne p15, 0, r3, c2, c0, 0 @ load page table pointer
Arve Hjønnevågba01a662012-11-30 17:05:40 -0800784 mcrne p15, 0, r0, c8, c7, 0 @ flush I,D TLBs
785 mcr p15, 0, r0, c7, c5, 4 @ ISB
Catalin Marinas7d09e852007-06-01 17:14:53 +0100786 mcrne p15, 0, r1, c3, c0, 0 @ load domain access control
Will Deacondbece452012-08-24 15:20:59 +0100787 mcrne p15, 0, r6, c2, c0, 2 @ load ttb control
Catalin Marinas8bdca0a2009-07-24 12:35:06 +0100788#endif
Will Deacond675d0b2011-11-22 17:30:28 +0000789 mcr p15, 0, r0, c7, c5, 4 @ ISB
Catalin Marinas7d09e852007-06-01 17:14:53 +0100790 mcr p15, 0, r0, c1, c0, 0 @ load control register
791 mrc p15, 0, r0, c1, c0, 0 @ and read it back
792 mov r0, #0
793 mcr p15, 0, r0, c7, c5, 4 @ ISB
794 mov pc, r12
795
Paulius Zaleckas28853ac2009-03-25 13:10:01 +0200796__fa526_cache_on:
797 mov r12, lr
Russell King1fdc08a2012-05-10 09:48:34 +0100798 mov r6, #CB_BITS | 0x12 @ U
Paulius Zaleckas28853ac2009-03-25 13:10:01 +0200799 bl __setup_mmu
800 mov r0, #0
801 mcr p15, 0, r0, c7, c7, 0 @ Invalidate whole cache
802 mcr p15, 0, r0, c7, c10, 4 @ drain write buffer
803 mcr p15, 0, r0, c8, c7, 0 @ flush UTLB
804 mrc p15, 0, r0, c1, c0, 0 @ read control reg
805 orr r0, r0, #0x1000 @ I-cache enable
806 bl __common_mmu_cache_on
807 mov r0, #0
808 mcr p15, 0, r0, c8, c7, 0 @ flush UTLB
809 mov pc, r12
810
Hyok S. Choic76b6b42006-03-24 09:53:18 +0000811__common_mmu_cache_on:
Catalin Marinas0e056f22009-07-24 12:32:58 +0100812#ifndef CONFIG_THUMB2_KERNEL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813#ifndef DEBUG
814 orr r0, r0, #0x000d @ Write buffer, mmu
815#endif
816 mov r1, #-1
817 mcr p15, 0, r3, c2, c0, 0 @ load page table pointer
818 mcr p15, 0, r1, c3, c0, 0 @ load domain access control
Nicolas Pitre2dc76672006-07-01 21:29:32 +0100819 b 1f
820 .align 5 @ cache line aligned
8211: mcr p15, 0, r0, c1, c0, 0 @ load control register
822 mrc p15, 0, r0, c1, c0, 0 @ and read it back to
823 sub pc, lr, r0, lsr #32 @ properly flush pipeline
Catalin Marinas0e056f22009-07-24 12:32:58 +0100824#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825
Dave Martin946a1052011-06-14 14:20:44 +0100826#define PROC_ENTRY_SIZE (4*5)
827
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829 * Here follow the relocatable cache support functions for the
830 * various processors. This is a generic hook for locating an
831 * entry and jumping to an instruction at the specified offset
832 * from the start of the block. Please note this is all position
833 * independent code.
834 *
835 * r1 = corrupted
836 * r2 = corrupted
837 * r3 = block offset
Russell King98e12b52010-02-25 23:56:38 +0000838 * r9 = corrupted
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 * r12 = corrupted
840 */
841
842call_cache_fn: adr r12, proc_types
Hyok S. Choif12d0d72006-09-26 17:36:37 +0900843#ifdef CONFIG_CPU_CP15
Russell King98e12b52010-02-25 23:56:38 +0000844 mrc p15, 0, r9, c0, c0 @ get processor ID
Joachim Eastwoodc20611d2015-03-25 08:47:18 +0100845#elif defined(CONFIG_CPU_V7M)
846 /*
847 * On v7-M the processor id is located in the V7M_SCB_CPUID
848 * register, but as cache handling is IMPLEMENTATION DEFINED on
849 * v7-M (if existant at all) we just return early here.
850 * If V7M_SCB_CPUID were used the cpu ID functions (i.e.
851 * __armv7_mmu_cache_{on,off,flush}) would be selected which
852 * use cp15 registers that are not implemented on v7-M.
853 */
854 bx lr
Hyok S. Choif12d0d72006-09-26 17:36:37 +0900855#else
Russell King98e12b52010-02-25 23:56:38 +0000856 ldr r9, =CONFIG_PROCESSOR_ID
Hyok S. Choif12d0d72006-09-26 17:36:37 +0900857#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07008581: ldr r1, [r12, #0] @ get value
859 ldr r2, [r12, #4] @ get mask
Russell King98e12b52010-02-25 23:56:38 +0000860 eor r1, r1, r9 @ (real ^ match)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861 tst r1, r2 @ & mask
Catalin Marinas0e056f22009-07-24 12:32:58 +0100862 ARM( addeq pc, r12, r3 ) @ call cache function
863 THUMB( addeq r12, r3 )
864 THUMB( moveq pc, r12 ) @ call cache function
Dave Martin946a1052011-06-14 14:20:44 +0100865 add r12, r12, #PROC_ENTRY_SIZE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 b 1b
867
868/*
869 * Table for cache operations. This is basically:
870 * - CPU ID match
871 * - CPU ID mask
872 * - 'cache on' method instruction
873 * - 'cache off' method instruction
874 * - 'cache flush' method instruction
875 *
876 * We match an entry using: ((real_id ^ match) & mask) == 0
877 *
878 * Writethrough caches generally only need 'on' and 'off'
879 * methods. Writeback caches _must_ have the flush method
880 * defined.
881 */
Catalin Marinas88987ef2009-07-24 12:32:52 +0100882 .align 2
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 .type proc_types,#object
884proc_types:
Marc Cced2a3b2013-06-05 22:02:23 +0100885 .word 0x41000000 @ old ARM ID
886 .word 0xff00f000
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 mov pc, lr
Catalin Marinas0e056f22009-07-24 12:32:58 +0100888 THUMB( nop )
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889 mov pc, lr
Catalin Marinas0e056f22009-07-24 12:32:58 +0100890 THUMB( nop )
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 mov pc, lr
Catalin Marinas0e056f22009-07-24 12:32:58 +0100892 THUMB( nop )
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893
894 .word 0x41007000 @ ARM7/710
895 .word 0xfff8fe00
Russell King4cdfc2e2012-05-09 15:18:19 +0100896 mov pc, lr
897 THUMB( nop )
898 mov pc, lr
899 THUMB( nop )
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 mov pc, lr
Catalin Marinas0e056f22009-07-24 12:32:58 +0100901 THUMB( nop )
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902
903 .word 0x41807200 @ ARM720T (writethrough)
904 .word 0xffffff00
Catalin Marinas0e056f22009-07-24 12:32:58 +0100905 W(b) __armv4_mmu_cache_on
906 W(b) __armv4_mmu_cache_off
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907 mov pc, lr
Catalin Marinas0e056f22009-07-24 12:32:58 +0100908 THUMB( nop )
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909
Hyok S. Choi10c2df62006-03-27 10:21:34 +0100910 .word 0x41007400 @ ARM74x
911 .word 0xff00ff00
Catalin Marinas0e056f22009-07-24 12:32:58 +0100912 W(b) __armv3_mpu_cache_on
913 W(b) __armv3_mpu_cache_off
914 W(b) __armv3_mpu_cache_flush
Hyok S. Choi10c2df62006-03-27 10:21:34 +0100915
916 .word 0x41009400 @ ARM94x
917 .word 0xff00ff00
Catalin Marinas0e056f22009-07-24 12:32:58 +0100918 W(b) __armv4_mpu_cache_on
919 W(b) __armv4_mpu_cache_off
920 W(b) __armv4_mpu_cache_flush
Hyok S. Choi10c2df62006-03-27 10:21:34 +0100921
Mark A. Greeraf3e4fd2011-04-01 15:41:26 +0100922 .word 0x41069260 @ ARM926EJ-S (v5TEJ)
923 .word 0xff0ffff0
Nicolas Pitre720c60e2011-06-09 05:05:27 +0100924 W(b) __arm926ejs_mmu_cache_on
925 W(b) __armv4_mmu_cache_off
926 W(b) __armv5tej_mmu_cache_flush
Mark A. Greeraf3e4fd2011-04-01 15:41:26 +0100927
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928 .word 0x00007000 @ ARM7 IDs
929 .word 0x0000f000
930 mov pc, lr
Catalin Marinas0e056f22009-07-24 12:32:58 +0100931 THUMB( nop )
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932 mov pc, lr
Catalin Marinas0e056f22009-07-24 12:32:58 +0100933 THUMB( nop )
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934 mov pc, lr
Catalin Marinas0e056f22009-07-24 12:32:58 +0100935 THUMB( nop )
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936
937 @ Everything from here on will be the new ID system.
938
939 .word 0x4401a100 @ sa110 / sa1100
940 .word 0xffffffe0
Catalin Marinas0e056f22009-07-24 12:32:58 +0100941 W(b) __armv4_mmu_cache_on
942 W(b) __armv4_mmu_cache_off
943 W(b) __armv4_mmu_cache_flush
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944
945 .word 0x6901b110 @ sa1110
946 .word 0xfffffff0
Catalin Marinas0e056f22009-07-24 12:32:58 +0100947 W(b) __armv4_mmu_cache_on
948 W(b) __armv4_mmu_cache_off
949 W(b) __armv4_mmu_cache_flush
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950
Haojian Zhuang4157d312010-03-12 05:47:55 -0500951 .word 0x56056900
952 .word 0xffffff00 @ PXA9xx
Catalin Marinas0e056f22009-07-24 12:32:58 +0100953 W(b) __armv4_mmu_cache_on
954 W(b) __armv4_mmu_cache_off
955 W(b) __armv4_mmu_cache_flush
Eric Miao59c7bcd2008-11-29 21:42:39 +0800956
Eric Miao49cbe782009-01-20 14:15:18 +0800957 .word 0x56158000 @ PXA168
958 .word 0xfffff000
Catalin Marinas0e056f22009-07-24 12:32:58 +0100959 W(b) __armv4_mmu_cache_on
960 W(b) __armv4_mmu_cache_off
961 W(b) __armv5tej_mmu_cache_flush
Eric Miao49cbe782009-01-20 14:15:18 +0800962
Nicolas Pitre2e2023f2008-06-03 23:06:21 +0200963 .word 0x56050000 @ Feroceon
964 .word 0xff0f0000
Catalin Marinas0e056f22009-07-24 12:32:58 +0100965 W(b) __armv4_mmu_cache_on
966 W(b) __armv4_mmu_cache_off
967 W(b) __armv5tej_mmu_cache_flush
Nicolas Pitre3ebb5a22007-10-31 15:31:48 -0400968
Joonyoung Shim55879312009-06-16 20:05:57 +0900969#ifdef CONFIG_CPU_FEROCEON_OLD_ID
970 /* this conflicts with the standard ARMv5TE entry */
971 .long 0x41009260 @ Old Feroceon
972 .long 0xff00fff0
973 b __armv4_mmu_cache_on
974 b __armv4_mmu_cache_off
975 b __armv5tej_mmu_cache_flush
976#endif
977
Paulius Zaleckas28853ac2009-03-25 13:10:01 +0200978 .word 0x66015261 @ FA526
979 .word 0xff01fff1
Catalin Marinas0e056f22009-07-24 12:32:58 +0100980 W(b) __fa526_cache_on
981 W(b) __armv4_mmu_cache_off
982 W(b) __fa526_cache_flush
Paulius Zaleckas28853ac2009-03-25 13:10:01 +0200983
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984 @ These match on the architecture ID
985
986 .word 0x00020000 @ ARMv4T
987 .word 0x000f0000
Catalin Marinas0e056f22009-07-24 12:32:58 +0100988 W(b) __armv4_mmu_cache_on
989 W(b) __armv4_mmu_cache_off
990 W(b) __armv4_mmu_cache_flush
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991
992 .word 0x00050000 @ ARMv5TE
993 .word 0x000f0000
Catalin Marinas0e056f22009-07-24 12:32:58 +0100994 W(b) __armv4_mmu_cache_on
995 W(b) __armv4_mmu_cache_off
996 W(b) __armv4_mmu_cache_flush
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997
998 .word 0x00060000 @ ARMv5TEJ
999 .word 0x000f0000
Catalin Marinas0e056f22009-07-24 12:32:58 +01001000 W(b) __armv4_mmu_cache_on
1001 W(b) __armv4_mmu_cache_off
Sascha Hauer75216852010-03-15 15:14:50 +01001002 W(b) __armv5tej_mmu_cache_flush
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003
Catalin Marinas45a7b9c2006-06-18 16:21:50 +01001004 .word 0x0007b000 @ ARMv6
Catalin Marinas7d09e852007-06-01 17:14:53 +01001005 .word 0x000ff000
Dave Martin50101922012-11-22 12:50:43 +01001006 W(b) __armv6_mmu_cache_on
Catalin Marinas0e056f22009-07-24 12:32:58 +01001007 W(b) __armv4_mmu_cache_off
1008 W(b) __armv6_mmu_cache_flush
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009
Catalin Marinas7d09e852007-06-01 17:14:53 +01001010 .word 0x000f0000 @ new CPU Id
1011 .word 0x000f0000
Catalin Marinas0e056f22009-07-24 12:32:58 +01001012 W(b) __armv7_mmu_cache_on
1013 W(b) __armv7_mmu_cache_off
1014 W(b) __armv7_mmu_cache_flush
Catalin Marinas7d09e852007-06-01 17:14:53 +01001015
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016 .word 0 @ unrecognised type
1017 .word 0
1018 mov pc, lr
Catalin Marinas0e056f22009-07-24 12:32:58 +01001019 THUMB( nop )
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020 mov pc, lr
Catalin Marinas0e056f22009-07-24 12:32:58 +01001021 THUMB( nop )
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 mov pc, lr
Catalin Marinas0e056f22009-07-24 12:32:58 +01001023 THUMB( nop )
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024
1025 .size proc_types, . - proc_types
1026
Dave Martin946a1052011-06-14 14:20:44 +01001027 /*
1028 * If you get a "non-constant expression in ".if" statement"
1029 * error from the assembler on this line, check that you have
1030 * not accidentally written a "b" instruction where you should
1031 * have written W(b).
1032 */
1033 .if (. - proc_types) % PROC_ENTRY_SIZE != 0
1034 .error "The size of one or more proc_types entries is wrong."
1035 .endif
1036
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037/*
1038 * Turn off the Cache and MMU. ARMv3 does not support
1039 * reading the control register, but ARMv4 does.
1040 *
Uwe Kleine-König21b28412010-01-26 22:08:09 +01001041 * On exit,
1042 * r0, r1, r2, r3, r9, r12 corrupted
1043 * This routine must preserve:
Nicolas Pitre6d7d0ae2011-02-21 07:06:45 +01001044 * r4, r7, r8
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045 */
1046 .align 5
1047cache_off: mov r3, #12 @ cache_off function
1048 b call_cache_fn
1049
Hyok S. Choi10c2df62006-03-27 10:21:34 +01001050__armv4_mpu_cache_off:
1051 mrc p15, 0, r0, c1, c0
1052 bic r0, r0, #0x000d
1053 mcr p15, 0, r0, c1, c0 @ turn MPU and cache off
1054 mov r0, #0
1055 mcr p15, 0, r0, c7, c10, 4 @ drain write buffer
1056 mcr p15, 0, r0, c7, c6, 0 @ flush D-Cache
1057 mcr p15, 0, r0, c7, c5, 0 @ flush I-Cache
1058 mov pc, lr
1059
1060__armv3_mpu_cache_off:
1061 mrc p15, 0, r0, c1, c0
1062 bic r0, r0, #0x000d
1063 mcr p15, 0, r0, c1, c0, 0 @ turn MPU and cache off
1064 mov r0, #0
1065 mcr p15, 0, r0, c7, c0, 0 @ invalidate whole cache v3
1066 mov pc, lr
1067
Hyok S. Choic76b6b42006-03-24 09:53:18 +00001068__armv4_mmu_cache_off:
Catalin Marinas8bdca0a2009-07-24 12:35:06 +01001069#ifdef CONFIG_MMU
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070 mrc p15, 0, r0, c1, c0
1071 bic r0, r0, #0x000d
1072 mcr p15, 0, r0, c1, c0 @ turn MMU and cache off
1073 mov r0, #0
1074 mcr p15, 0, r0, c7, c7 @ invalidate whole cache v4
1075 mcr p15, 0, r0, c8, c7 @ invalidate whole TLB v4
Catalin Marinas8bdca0a2009-07-24 12:35:06 +01001076#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077 mov pc, lr
1078
Catalin Marinas7d09e852007-06-01 17:14:53 +01001079__armv7_mmu_cache_off:
1080 mrc p15, 0, r0, c1, c0
Catalin Marinas8bdca0a2009-07-24 12:35:06 +01001081#ifdef CONFIG_MMU
Catalin Marinas7d09e852007-06-01 17:14:53 +01001082 bic r0, r0, #0x000d
Catalin Marinas8bdca0a2009-07-24 12:35:06 +01001083#else
1084 bic r0, r0, #0x000c
1085#endif
Catalin Marinas7d09e852007-06-01 17:14:53 +01001086 mcr p15, 0, r0, c1, c0 @ turn MMU and cache off
1087 mov r12, lr
1088 bl __armv7_mmu_cache_flush
1089 mov r0, #0
Catalin Marinas8bdca0a2009-07-24 12:35:06 +01001090#ifdef CONFIG_MMU
Catalin Marinas7d09e852007-06-01 17:14:53 +01001091 mcr p15, 0, r0, c8, c7, 0 @ invalidate whole TLB
Catalin Marinas8bdca0a2009-07-24 12:35:06 +01001092#endif
Catalin Marinasc30c2f92008-11-06 13:23:07 +00001093 mcr p15, 0, r0, c7, c5, 6 @ invalidate BTC
1094 mcr p15, 0, r0, c7, c10, 4 @ DSB
1095 mcr p15, 0, r0, c7, c5, 4 @ ISB
Catalin Marinas7d09e852007-06-01 17:14:53 +01001096 mov pc, r12
1097
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098/*
1099 * Clean and flush the cache to maintain consistency.
1100 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101 * On exit,
Uwe Kleine-König21b28412010-01-26 22:08:09 +01001102 * r1, r2, r3, r9, r10, r11, r12 corrupted
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103 * This routine must preserve:
Nicolas Pitre6d7d0ae2011-02-21 07:06:45 +01001104 * r4, r6, r7, r8
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105 */
1106 .align 5
1107cache_clean_flush:
1108 mov r3, #16
1109 b call_cache_fn
1110
Hyok S. Choi10c2df62006-03-27 10:21:34 +01001111__armv4_mpu_cache_flush:
Will Deacon238962a2014-11-04 11:40:46 +01001112 tst r4, #1
1113 movne pc, lr
Hyok S. Choi10c2df62006-03-27 10:21:34 +01001114 mov r2, #1
1115 mov r3, #0
1116 mcr p15, 0, ip, c7, c6, 0 @ invalidate D cache
1117 mov r1, #7 << 5 @ 8 segments
11181: orr r3, r1, #63 << 26 @ 64 entries
11192: mcr p15, 0, r3, c7, c14, 2 @ clean & invalidate D index
1120 subs r3, r3, #1 << 26
1121 bcs 2b @ entries 63 to 0
1122 subs r1, r1, #1 << 5
1123 bcs 1b @ segments 7 to 0
1124
1125 teq r2, #0
1126 mcrne p15, 0, ip, c7, c5, 0 @ invalidate I cache
1127 mcr p15, 0, ip, c7, c10, 4 @ drain WB
1128 mov pc, lr
1129
Paulius Zaleckas28853ac2009-03-25 13:10:01 +02001130__fa526_cache_flush:
Will Deacon238962a2014-11-04 11:40:46 +01001131 tst r4, #1
1132 movne pc, lr
Paulius Zaleckas28853ac2009-03-25 13:10:01 +02001133 mov r1, #0
1134 mcr p15, 0, r1, c7, c14, 0 @ clean and invalidate D cache
1135 mcr p15, 0, r1, c7, c5, 0 @ flush I cache
1136 mcr p15, 0, r1, c7, c10, 4 @ drain WB
1137 mov pc, lr
Hyok S. Choi10c2df62006-03-27 10:21:34 +01001138
Hyok S. Choic76b6b42006-03-24 09:53:18 +00001139__armv6_mmu_cache_flush:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140 mov r1, #0
Will Deacon238962a2014-11-04 11:40:46 +01001141 tst r4, #1
1142 mcreq p15, 0, r1, c7, c14, 0 @ clean+invalidate D
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143 mcr p15, 0, r1, c7, c5, 0 @ invalidate I+BTB
Will Deacon238962a2014-11-04 11:40:46 +01001144 mcreq p15, 0, r1, c7, c15, 0 @ clean+invalidate unified
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145 mcr p15, 0, r1, c7, c10, 4 @ drain WB
1146 mov pc, lr
1147
Catalin Marinas7d09e852007-06-01 17:14:53 +01001148__armv7_mmu_cache_flush:
Will Deacon238962a2014-11-04 11:40:46 +01001149 tst r4, #1
1150 bne iflush
Catalin Marinas7d09e852007-06-01 17:14:53 +01001151 mrc p15, 0, r10, c0, c1, 5 @ read ID_MMFR1
1152 tst r10, #0xf << 16 @ hierarchical cache (ARMv7)
Catalin Marinas7d09e852007-06-01 17:14:53 +01001153 mov r10, #0
Catalin Marinasc30c2f92008-11-06 13:23:07 +00001154 beq hierarchical
Catalin Marinas7d09e852007-06-01 17:14:53 +01001155 mcr p15, 0, r10, c7, c14, 0 @ clean+invalidate D
1156 b iflush
1157hierarchical:
Catalin Marinasc30c2f92008-11-06 13:23:07 +00001158 mcr p15, 0, r10, c7, c10, 5 @ DMB
Catalin Marinas0e056f22009-07-24 12:32:58 +01001159 stmfd sp!, {r0-r7, r9-r11}
Catalin Marinas7d09e852007-06-01 17:14:53 +01001160 mrc p15, 1, r0, c0, c0, 1 @ read clidr
1161 ands r3, r0, #0x7000000 @ extract loc from clidr
1162 mov r3, r3, lsr #23 @ left align loc bit field
1163 beq finished @ if loc is 0, then no need to clean
1164 mov r10, #0 @ start clean at cache level 0
1165loop1:
1166 add r2, r10, r10, lsr #1 @ work out 3x current cache level
1167 mov r1, r0, lsr r2 @ extract cache type bits from clidr
1168 and r1, r1, #7 @ mask of the bits for current cache only
1169 cmp r1, #2 @ see what cache we have at this level
1170 blt skip @ skip if no cache, or just i-cache
1171 mcr p15, 2, r10, c0, c0, 0 @ select current cache level in cssr
1172 mcr p15, 0, r10, c7, c5, 4 @ isb to sych the new cssr&csidr
1173 mrc p15, 1, r1, c0, c0, 0 @ read the new csidr
1174 and r2, r1, #7 @ extract the length of the cache lines
1175 add r2, r2, #4 @ add 4 (line length offset)
1176 ldr r4, =0x3ff
1177 ands r4, r4, r1, lsr #3 @ find maximum number on the way size
Catalin Marinas000b5022008-10-03 11:09:10 +01001178 clz r5, r4 @ find bit position of way size increment
Catalin Marinas7d09e852007-06-01 17:14:53 +01001179 ldr r7, =0x7fff
1180 ands r7, r7, r1, lsr #13 @ extract max number of the index size
1181loop2:
1182 mov r9, r4 @ create working copy of max way size
1183loop3:
Catalin Marinas0e056f22009-07-24 12:32:58 +01001184 ARM( orr r11, r10, r9, lsl r5 ) @ factor way and cache number into r11
1185 ARM( orr r11, r11, r7, lsl r2 ) @ factor index number into r11
1186 THUMB( lsl r6, r9, r5 )
1187 THUMB( orr r11, r10, r6 ) @ factor way and cache number into r11
1188 THUMB( lsl r6, r7, r2 )
1189 THUMB( orr r11, r11, r6 ) @ factor index number into r11
Catalin Marinas7d09e852007-06-01 17:14:53 +01001190 mcr p15, 0, r11, c7, c14, 2 @ clean & invalidate by set/way
1191 subs r9, r9, #1 @ decrement the way
1192 bge loop3
1193 subs r7, r7, #1 @ decrement the index
1194 bge loop2
1195skip:
1196 add r10, r10, #2 @ increment cache number
1197 cmp r3, r10
1198 bgt loop1
1199finished:
Catalin Marinas0e056f22009-07-24 12:32:58 +01001200 ldmfd sp!, {r0-r7, r9-r11}
Catalin Marinas7d09e852007-06-01 17:14:53 +01001201 mov r10, #0 @ swith back to cache level 0
1202 mcr p15, 2, r10, c0, c0, 0 @ select current cache level in cssr
Catalin Marinas7d09e852007-06-01 17:14:53 +01001203iflush:
Catalin Marinasc30c2f92008-11-06 13:23:07 +00001204 mcr p15, 0, r10, c7, c10, 4 @ DSB
Catalin Marinas7d09e852007-06-01 17:14:53 +01001205 mcr p15, 0, r10, c7, c5, 0 @ invalidate I+BTB
Catalin Marinasc30c2f92008-11-06 13:23:07 +00001206 mcr p15, 0, r10, c7, c10, 4 @ DSB
1207 mcr p15, 0, r10, c7, c5, 4 @ ISB
Catalin Marinas7d09e852007-06-01 17:14:53 +01001208 mov pc, lr
1209
Nicolas Pitre15754bf2007-10-31 15:15:29 -04001210__armv5tej_mmu_cache_flush:
Will Deacon238962a2014-11-04 11:40:46 +01001211 tst r4, #1
1212 movne pc, lr
Nicolas Pitre15754bf2007-10-31 15:15:29 -040012131: mrc p15, 0, r15, c7, c14, 3 @ test,clean,invalidate D cache
1214 bne 1b
1215 mcr p15, 0, r0, c7, c5, 0 @ flush I cache
1216 mcr p15, 0, r0, c7, c10, 4 @ drain WB
1217 mov pc, lr
1218
Hyok S. Choic76b6b42006-03-24 09:53:18 +00001219__armv4_mmu_cache_flush:
Will Deacon238962a2014-11-04 11:40:46 +01001220 tst r4, #1
1221 movne pc, lr
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222 mov r2, #64*1024 @ default: 32K dcache size (*2)
1223 mov r11, #32 @ default: 32 byte line size
1224 mrc p15, 0, r3, c0, c0, 1 @ read cache type
Russell King98e12b52010-02-25 23:56:38 +00001225 teq r3, r9 @ cache ID register present?
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226 beq no_cache_id
1227 mov r1, r3, lsr #18
1228 and r1, r1, #7
1229 mov r2, #1024
1230 mov r2, r2, lsl r1 @ base dcache size *2
1231 tst r3, #1 << 14 @ test M bit
1232 addne r2, r2, r2, lsr #1 @ +1/2 size if M == 1
1233 mov r3, r3, lsr #12
1234 and r3, r3, #3
1235 mov r11, #8
1236 mov r11, r11, lsl r3 @ cache line size in bytes
1237no_cache_id:
Catalin Marinas0e056f22009-07-24 12:32:58 +01001238 mov r1, pc
1239 bic r1, r1, #63 @ align to longest cache line
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240 add r2, r1, r2
Catalin Marinas0e056f22009-07-24 12:32:58 +010012411:
1242 ARM( ldr r3, [r1], r11 ) @ s/w flush D cache
1243 THUMB( ldr r3, [r1] ) @ s/w flush D cache
1244 THUMB( add r1, r1, r11 )
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245 teq r1, r2
1246 bne 1b
1247
1248 mcr p15, 0, r1, c7, c5, 0 @ flush I cache
1249 mcr p15, 0, r1, c7, c6, 0 @ flush D cache
1250 mcr p15, 0, r1, c7, c10, 4 @ drain WB
1251 mov pc, lr
1252
Hyok S. Choic76b6b42006-03-24 09:53:18 +00001253__armv3_mmu_cache_flush:
Hyok S. Choi10c2df62006-03-27 10:21:34 +01001254__armv3_mpu_cache_flush:
Will Deacon238962a2014-11-04 11:40:46 +01001255 tst r4, #1
1256 movne pc, lr
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257 mov r1, #0
Uwe Kleine-König63fa7182010-01-26 22:18:09 +01001258 mcr p15, 0, r1, c7, c0, 0 @ invalidate whole cache v3
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259 mov pc, lr
1260
1261/*
1262 * Various debugging routines for printing hex characters and
1263 * memory, which again must be relocatable.
1264 */
1265#ifdef DEBUG
Catalin Marinas88987ef2009-07-24 12:32:52 +01001266 .align 2
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267 .type phexbuf,#object
1268phexbuf: .space 12
1269 .size phexbuf, . - phexbuf
1270
Uwe Kleine-Königbe6f9f02010-01-26 22:22:20 +01001271@ phex corrupts {r0, r1, r2, r3}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272phex: adr r3, phexbuf
1273 mov r2, #0
1274 strb r2, [r3, r1]
12751: subs r1, r1, #1
1276 movmi r0, r3
1277 bmi puts
1278 and r2, r0, #15
1279 mov r0, r0, lsr #4
1280 cmp r2, #10
1281 addge r2, r2, #7
1282 add r2, r2, #'0'
1283 strb r2, [r3, r1]
1284 b 1b
1285
Uwe Kleine-Königbe6f9f02010-01-26 22:22:20 +01001286@ puts corrupts {r0, r1, r2, r3}
Tony Lindgren4e6d4882010-02-01 23:26:53 +01001287puts: loadsp r3, r1
Linus Torvalds1da177e2005-04-16 15:20:36 -070012881: ldrb r2, [r0], #1
1289 teq r2, #0
1290 moveq pc, lr
Russell King5cd0c3442005-05-03 12:18:46 +010012912: writeb r2, r3
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292 mov r1, #0x00020000
12933: subs r1, r1, #1
1294 bne 3b
1295 teq r2, #'\n'
1296 moveq r2, #'\r'
1297 beq 2b
1298 teq r0, #0
1299 bne 1b
1300 mov pc, lr
Uwe Kleine-Königbe6f9f02010-01-26 22:22:20 +01001301@ putc corrupts {r0, r1, r2, r3}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302putc:
1303 mov r2, r0
1304 mov r0, #0
Tony Lindgren4e6d4882010-02-01 23:26:53 +01001305 loadsp r3, r1
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306 b 2b
1307
Uwe Kleine-Königbe6f9f02010-01-26 22:22:20 +01001308@ memdump corrupts {r0, r1, r2, r3, r10, r11, r12, lr}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309memdump: mov r12, r0
1310 mov r10, lr
1311 mov r11, #0
13122: mov r0, r11, lsl #2
1313 add r0, r0, r12
1314 mov r1, #8
1315 bl phex
1316 mov r0, #':'
1317 bl putc
13181: mov r0, #' '
1319 bl putc
1320 ldr r0, [r12, r11, lsl #2]
1321 mov r1, #8
1322 bl phex
1323 and r0, r11, #7
1324 teq r0, #3
1325 moveq r0, #' '
1326 bleq putc
1327 and r0, r11, #7
1328 add r11, r11, #1
1329 teq r0, #7
1330 bne 1b
1331 mov r0, #'\n'
1332 bl putc
1333 cmp r11, #64
1334 blt 2b
1335 mov pc, r10
1336#endif
1337
Catalin Marinas92c83ff12007-06-22 14:27:50 +01001338 .ltorg
Dave Martin424e5992012-02-10 18:07:07 -08001339
1340#ifdef CONFIG_ARM_VIRT_EXT
1341.align 5
1342__hyp_reentry_vectors:
1343 W(b) . @ reset
1344 W(b) . @ undef
1345 W(b) . @ svc
1346 W(b) . @ pabort
1347 W(b) . @ dabort
1348 W(b) __enter_kernel @ hyp
1349 W(b) . @ irq
1350 W(b) . @ fiq
1351#endif /* CONFIG_ARM_VIRT_EXT */
1352
1353__enter_kernel:
1354 mov r0, #0 @ must be 0
Joachim Eastwoodc20611d2015-03-25 08:47:18 +01001355 ARM( mov pc, r4 ) @ call kernel
1356 M_CLASS( add r4, r4, #1 ) @ enter in Thumb mode for M class
1357 THUMB( bx r4 ) @ entry point is always ARM for A/R classes
Dave Martin424e5992012-02-10 18:07:07 -08001358
Nicolas Pitreadcc2592011-04-27 16:15:11 -04001359reloc_code_end:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360
Roy Franz81a0bc32015-09-23 20:17:54 -07001361#ifdef CONFIG_EFI_STUB
1362 .align 2
1363_start: .long start - .
1364
1365ENTRY(efi_stub_entry)
1366 @ allocate space on stack for passing current zImage address
1367 @ and for the EFI stub to return of new entry point of
1368 @ zImage, as EFI stub may copy the kernel. Pointer address
1369 @ is passed in r2. r0 and r1 are passed through from the
1370 @ EFI firmware to efi_entry
1371 adr ip, _start
1372 ldr r3, [ip]
1373 add r3, r3, ip
1374 stmfd sp!, {r3, lr}
1375 mov r2, sp @ pass zImage address in r2
1376 bl efi_entry
1377
1378 @ Check for error return from EFI stub. r0 has FDT address
1379 @ or error code.
1380 cmn r0, #1
1381 beq efi_load_fail
1382
1383 @ Preserve return value of efi_entry() in r4
1384 mov r4, r0
1385 bl cache_clean_flush
1386 bl cache_off
1387
1388 @ Set parameters for booting zImage according to boot protocol
1389 @ put FDT address in r2, it was returned by efi_entry()
1390 @ r1 is the machine type, and r0 needs to be 0
1391 mov r0, #0
1392 mov r1, #0xFFFFFFFF
1393 mov r2, r4
1394
1395 @ Branch to (possibly) relocated zImage that is in [sp]
1396 ldr lr, [sp]
1397 ldr ip, =start_offset
1398 add lr, lr, ip
1399 mov pc, lr @ no mode switch
1400
1401efi_load_fail:
1402 @ Return EFI_LOAD_ERROR to EFI firmware on error.
1403 ldr r0, =0x80000001
1404 ldmfd sp!, {ip, pc}
1405ENDPROC(efi_stub_entry)
1406#endif
1407
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408 .align
Russell Kingb0c4d4e2010-11-22 12:00:59 +00001409 .section ".stack", "aw", %nobits
Nicolas Pitre8d7e4cc2011-04-27 14:54:39 -04001410.L_user_stack: .space 4096
1411.L_user_stack_end: