Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * linux/arch/arm/boot/compressed/head.S |
| 3 | * |
| 4 | * Copyright (C) 1996-2002 Russell King |
Hyok S. Choi | 10c2df6 | 2006-03-27 10:21:34 +0100 | [diff] [blame] | 5 | * Copyright (C) 2004 Hyok S. Choi (MPU support) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6 | * |
| 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11 | #include <linux/linkage.h> |
Dave Martin | 424e599 | 2012-02-10 18:07:07 -0800 | [diff] [blame] | 12 | #include <asm/assembler.h> |
Joachim Eastwood | c20611d | 2015-03-25 08:47:18 +0100 | [diff] [blame] | 13 | #include <asm/v7m.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 14 | |
Roy Franz | 81a0bc3 | 2015-09-23 20:17:54 -0700 | [diff] [blame] | 15 | #include "efi-header.S" |
| 16 | |
Joachim Eastwood | c20611d | 2015-03-25 08:47:18 +0100 | [diff] [blame] | 17 | AR_CLASS( .arch armv7-a ) |
| 18 | M_CLASS( .arch armv7-m ) |
| 19 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 20 | /* |
| 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 King | 5cd0c34 | 2005-05-03 12:18:46 +0100 | [diff] [blame] | 28 | |
Russell King | 5cd0c34 | 2005-05-03 12:18:46 +0100 | [diff] [blame] | 29 | #if defined(CONFIG_DEBUG_ICEDCC) |
Tony Lindgren | 7d95ded | 2006-09-20 13:03:34 +0100 | [diff] [blame] | 30 | |
Stephen Boyd | dfad549 | 2011-03-23 22:46:15 +0100 | [diff] [blame] | 31 | #if defined(CONFIG_CPU_V6) || defined(CONFIG_CPU_V6K) || defined(CONFIG_CPU_V7) |
Tony Lindgren | 4e6d488 | 2010-02-01 23:26:53 +0100 | [diff] [blame] | 32 | .macro loadsp, rb, tmp |
Tony Lindgren | 7d95ded | 2006-09-20 13:03:34 +0100 | [diff] [blame] | 33 | .endm |
| 34 | .macro writeb, ch, rb |
| 35 | mcr p14, 0, \ch, c0, c5, 0 |
| 36 | .endm |
Jean-Christop PLAGNIOL-VILLARD | c633c3c | 2009-02-25 04:20:40 +0100 | [diff] [blame] | 37 | #elif defined(CONFIG_CPU_XSCALE) |
Tony Lindgren | 4e6d488 | 2010-02-01 23:26:53 +0100 | [diff] [blame] | 38 | .macro loadsp, rb, tmp |
Jean-Christop PLAGNIOL-VILLARD | c633c3c | 2009-02-25 04:20:40 +0100 | [diff] [blame] | 39 | .endm |
| 40 | .macro writeb, ch, rb |
| 41 | mcr p14, 0, \ch, c8, c0, 0 |
| 42 | .endm |
Tony Lindgren | 7d95ded | 2006-09-20 13:03:34 +0100 | [diff] [blame] | 43 | #else |
Tony Lindgren | 4e6d488 | 2010-02-01 23:26:53 +0100 | [diff] [blame] | 44 | .macro loadsp, rb, tmp |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 45 | .endm |
Russell King | 224b5be | 2005-11-16 14:59:51 +0000 | [diff] [blame] | 46 | .macro writeb, ch, rb |
Uwe Kleine-König | 41a9e68 | 2007-12-13 09:31:34 +0100 | [diff] [blame] | 47 | mcr p14, 0, \ch, c1, c0, 0 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 48 | .endm |
Tony Lindgren | 7d95ded | 2006-09-20 13:03:34 +0100 | [diff] [blame] | 49 | #endif |
| 50 | |
Russell King | 5cd0c34 | 2005-05-03 12:18:46 +0100 | [diff] [blame] | 51 | #else |
Russell King | 224b5be | 2005-11-16 14:59:51 +0000 | [diff] [blame] | 52 | |
Shawn Guo | 4beba08 | 2012-12-11 07:06:37 +0100 | [diff] [blame] | 53 | #include CONFIG_DEBUG_LL_INCLUDE |
Russell King | 224b5be | 2005-11-16 14:59:51 +0000 | [diff] [blame] | 54 | |
Russell King | 5cd0c34 | 2005-05-03 12:18:46 +0100 | [diff] [blame] | 55 | .macro writeb, ch, rb |
| 56 | senduart \ch, \rb |
| 57 | .endm |
| 58 | |
Russell King | 224b5be | 2005-11-16 14:59:51 +0000 | [diff] [blame] | 59 | #if defined(CONFIG_ARCH_SA1100) |
Tony Lindgren | 4e6d488 | 2010-02-01 23:26:53 +0100 | [diff] [blame] | 60 | .macro loadsp, rb, tmp |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 61 | mov \rb, #0x80000000 @ physical base address |
Russell King | 224b5be | 2005-11-16 14:59:51 +0000 | [diff] [blame] | 62 | #ifdef CONFIG_DEBUG_LL_SER3 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 63 | add \rb, \rb, #0x00050000 @ Ser3 |
Russell King | 224b5be | 2005-11-16 14:59:51 +0000 | [diff] [blame] | 64 | #else |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 65 | add \rb, \rb, #0x00010000 @ Ser1 |
Russell King | 224b5be | 2005-11-16 14:59:51 +0000 | [diff] [blame] | 66 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 67 | .endm |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 68 | #else |
Tony Lindgren | 4e6d488 | 2010-02-01 23:26:53 +0100 | [diff] [blame] | 69 | .macro loadsp, rb, tmp |
| 70 | addruart \rb, \tmp |
Russell King | 224b5be | 2005-11-16 14:59:51 +0000 | [diff] [blame] | 71 | .endm |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 72 | #endif |
| 73 | #endif |
Russell King | 5cd0c34 | 2005-05-03 12:18:46 +0100 | [diff] [blame] | 74 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 75 | |
| 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. Choi | f12d0d7 | 2006-09-26 17:36:37 +0900 | [diff] [blame] | 93 | #ifdef CONFIG_CPU_CP15 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 94 | kputc #':' |
| 95 | mrc p15, 0, r0, c1, c0 |
| 96 | kphex r0, 8 /* control reg */ |
Hyok S. Choi | f12d0d7 | 2006-09-26 17:36:37 +0900 | [diff] [blame] | 97 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 98 | kputc #'\n' |
| 99 | kphex r5, 8 /* decompressed kernel start */ |
| 100 | kputc #'-' |
Russell King | f461902 | 2006-01-12 17:17:57 +0000 | [diff] [blame] | 101 | kphex r9, 8 /* decompressed kernel end */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 102 | 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 Eastwood | c20611d | 2015-03-25 08:47:18 +0100 | [diff] [blame] | 122 | /* |
| 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 128 | start: |
| 129 | .type start,#function |
Nicolas Pitre | b11fe38 | 2011-02-12 22:25:27 +0100 | [diff] [blame] | 130 | .rept 7 |
Roy Franz | 81a0bc3 | 2015-09-23 20:17:54 -0700 | [diff] [blame] | 131 | __nop |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 132 | .endr |
Nicolas Pitre | b11fe38 | 2011-02-12 22:25:27 +0100 | [diff] [blame] | 133 | ARM( mov r0, r0 ) |
| 134 | ARM( b 1f ) |
Russell King | 14327c6 | 2015-04-21 14:17:25 +0100 | [diff] [blame] | 135 | THUMB( badr r12, 1f ) |
Nicolas Pitre | b11fe38 | 2011-02-12 22:25:27 +0100 | [diff] [blame] | 136 | THUMB( bx r12 ) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 137 | |
Nicolas Pitre | 33656d5 | 2014-06-02 17:32:25 +0100 | [diff] [blame] | 138 | .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 Pitre | 9696fca | 2014-06-19 22:44:32 +0100 | [diff] [blame] | 141 | .word 0x04030201 @ endianness flag |
Nicolas Pitre | 33656d5 | 2014-06-02 17:32:25 +0100 | [diff] [blame] | 142 | |
Dave Martin | 26e5ca9 | 2010-11-29 19:43:27 +0100 | [diff] [blame] | 143 | THUMB( .thumb ) |
Roy Franz | 81a0bc3 | 2015-09-23 20:17:54 -0700 | [diff] [blame] | 144 | 1: __EFI_HEADER |
| 145 | |
Joachim Eastwood | c20611d | 2015-03-25 08:47:18 +0100 | [diff] [blame] | 146 | ARM_BE8( setend be ) @ go BE8 if compiled for BE8 |
| 147 | AR_CLASS( mrs r9, cpsr ) |
Dave Martin | 424e599 | 2012-02-10 18:07:07 -0800 | [diff] [blame] | 148 | #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 King | f461902 | 2006-01-12 17:17:57 +0000 | [diff] [blame] | 152 | mov r8, r2 @ save atags pointer |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 153 | |
Joachim Eastwood | c20611d | 2015-03-25 08:47:18 +0100 | [diff] [blame] | 154 | #ifndef CONFIG_CPU_V7M |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 155 | /* |
| 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 Marinas | 0e056f2 | 2009-07-24 12:32:58 +0100 | [diff] [blame] | 164 | ARM( swi 0x123456 ) @ angel_SWI_ARM |
| 165 | THUMB( svc 0xab ) @ angel_SWI_THUMB |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 166 | not_angel: |
Dave Martin | 424e599 | 2012-02-10 18:07:07 -0800 | [diff] [blame] | 167 | safe_svcmode_maskall r0 |
| 168 | msr spsr_cxsf, r9 @ Save the CPU boot mode in |
| 169 | @ SPSR |
Joachim Eastwood | c20611d | 2015-03-25 08:47:18 +0100 | [diff] [blame] | 170 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 171 | /* |
| 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 King | f461902 | 2006-01-12 17:17:57 +0000 | [diff] [blame] | 178 | * by the linker here, but it should preserve r7, r8, and r9. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 179 | */ |
| 180 | |
| 181 | .text |
Nicolas Pitre | 6d7d0ae | 2011-02-21 07:06:45 +0100 | [diff] [blame] | 182 | |
Eric Miao | e69edc79 | 2010-07-05 15:56:50 +0200 | [diff] [blame] | 183 | #ifdef CONFIG_AUTO_ZRELADDR |
Russell King | 0a6a78b | 2015-03-26 09:41:33 +0000 | [diff] [blame] | 184 | /* |
| 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 Martin | bfa64c4 | 2010-11-29 19:43:26 +0100 | [diff] [blame] | 201 | mov r4, pc |
| 202 | and r4, r4, #0xf8000000 |
Russell King | 0a6a78b | 2015-03-26 09:41:33 +0000 | [diff] [blame] | 203 | /* Determine final kernel image address. */ |
Eric Miao | e69edc79 | 2010-07-05 15:56:50 +0200 | [diff] [blame] | 204 | add r4, r4, #TEXT_OFFSET |
| 205 | #else |
Russell King | 9e84ed6 | 2010-09-09 22:39:41 +0100 | [diff] [blame] | 206 | ldr r4, =zreladdr |
Eric Miao | e69edc79 | 2010-07-05 15:56:50 +0200 | [diff] [blame] | 207 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 208 | |
Nicolas Pitre | 2874865 | 2013-06-06 05:13:48 +0100 | [diff] [blame] | 209 | /* |
| 210 | * Set up a page table only if it won't overwrite ourself. |
Masahiro Yamada | 7d57909 | 2015-01-20 03:44:26 +0100 | [diff] [blame] | 211 | * That means r4 < pc || r4 - 16k page directory > &_end. |
Nicolas Pitre | 2874865 | 2013-06-06 05:13:48 +0100 | [diff] [blame] | 212 | * 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 Pitre | 6d7d0ae | 2011-02-21 07:06:45 +0100 | [diff] [blame] | 222 | |
| 223 | restart: adr r0, LC0 |
Nicolas Pitre | 34cc1a8 | 2011-04-19 15:42:43 -0400 | [diff] [blame] | 224 | ldmia r0, {r1, r2, r3, r6, r10, r11, r12} |
Nicolas Pitre | adcc259 | 2011-04-27 16:15:11 -0400 | [diff] [blame] | 225 | ldr sp, [r0, #28] |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 226 | |
| 227 | /* |
Nicolas Pitre | 6d7d0ae | 2011-02-21 07:06:45 +0100 | [diff] [blame] | 228 | * We might be running at a different address. We need |
| 229 | * to fix up various pointers. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 230 | */ |
Nicolas Pitre | 6d7d0ae | 2011-02-21 07:06:45 +0100 | [diff] [blame] | 231 | sub r0, r0, r1 @ calculate the delta offset |
Nicolas Pitre | 6d7d0ae | 2011-02-21 07:06:45 +0100 | [diff] [blame] | 232 | add r6, r6, r0 @ _edata |
Nicolas Pitre | 34cc1a8 | 2011-04-19 15:42:43 -0400 | [diff] [blame] | 233 | 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 Pitre | 6d7d0ae | 2011-02-21 07:06:45 +0100 | [diff] [blame] | 247 | |
| 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 Bonesio | e2a6a3a | 2011-05-27 18:45:50 -0400 | [diff] [blame] | 261 | 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 Pitre | 2874865 | 2013-06-06 05:13:48 +0100 | [diff] [blame] | 267 | * r4 = final kernel address (possibly with LSB set) |
John Bonesio | e2a6a3a | 2011-05-27 18:45:50 -0400 | [diff] [blame] | 268 | * 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 Pitre | b90b9a3 | 2011-09-13 22:37:07 -0400 | [diff] [blame] | 291 | #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 Pitre | c2607f7 | 2015-01-27 16:10:42 +0100 | [diff] [blame] | 296 | * 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 Pitre | b90b9a3 | 2011-09-13 22:37:07 -0400 | [diff] [blame] | 299 | */ |
Nicolas Pitre | c2607f7 | 2015-01-27 16:10:42 +0100 | [diff] [blame] | 300 | |
| 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 Pitre | b90b9a3 | 2011-09-13 22:37:07 -0400 | [diff] [blame] | 323 | stmfd sp!, {r0-r3, ip, lr} |
| 324 | mov r0, r8 |
| 325 | mov r1, r6 |
Nicolas Pitre | c2607f7 | 2015-01-27 16:10:42 +0100 | [diff] [blame] | 326 | mov r2, r5 |
Nicolas Pitre | b90b9a3 | 2011-09-13 22:37:07 -0400 | [diff] [blame] | 327 | 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 Pitre | 531a6a9 | 2011-10-24 13:30:32 +0100 | [diff] [blame] | 335 | sub r0, r4, #TEXT_OFFSET |
Nicolas Pitre | 2874865 | 2013-06-06 05:13:48 +0100 | [diff] [blame] | 336 | bic r0, r0, #1 |
Nicolas Pitre | 531a6a9 | 2011-10-24 13:30:32 +0100 | [diff] [blame] | 337 | add r0, r0, #0x100 |
Nicolas Pitre | b90b9a3 | 2011-09-13 22:37:07 -0400 | [diff] [blame] | 338 | mov r1, r6 |
Nicolas Pitre | c2607f7 | 2015-01-27 16:10:42 +0100 | [diff] [blame] | 339 | mov r2, r5 |
Marc Zyngier | 9c5fd9e | 2012-04-11 14:52:55 +0100 | [diff] [blame] | 340 | bleq atags_to_fdt |
Nicolas Pitre | b90b9a3 | 2011-09-13 22:37:07 -0400 | [diff] [blame] | 341 | |
| 342 | ldmfd sp!, {r0-r3, ip, lr} |
Nicolas Pitre | c2607f7 | 2015-01-27 16:10:42 +0100 | [diff] [blame] | 343 | sub sp, sp, r5 |
Nicolas Pitre | b90b9a3 | 2011-09-13 22:37:07 -0400 | [diff] [blame] | 344 | #endif |
| 345 | |
John Bonesio | e2a6a3a | 2011-05-27 18:45:50 -0400 | [diff] [blame] | 346 | mov r8, r6 @ use the appended device tree |
| 347 | |
Nicolas Pitre | 5ffb04f | 2011-06-12 01:07:33 -0400 | [diff] [blame] | 348 | /* |
| 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 Pitre | c2607f7 | 2015-01-27 16:10:42 +0100 | [diff] [blame] | 360 | /* Get the current DTB size */ |
John Bonesio | e2a6a3a | 2011-05-27 18:45:50 -0400 | [diff] [blame] | 361 | 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 |
| 378 | dtb_check_done: |
| 379 | #endif |
| 380 | |
Nicolas Pitre | 6d7d0ae | 2011-02-21 07:06:45 +0100 | [diff] [blame] | 381 | /* |
| 382 | * Check to see if we will overwrite ourselves. |
Nicolas Pitre | 2874865 | 2013-06-06 05:13:48 +0100 | [diff] [blame] | 383 | * r4 = final kernel address (possibly with LSB set) |
Nicolas Pitre | 6d7d0ae | 2011-02-21 07:06:45 +0100 | [diff] [blame] | 384 | * r9 = size of decompressed image |
| 385 | * r10 = end of this image, including bss/stack/malloc space if non XIP |
| 386 | * We basically want: |
Nicolas Pitre | ea9df3b | 2011-04-21 22:52:06 -0400 | [diff] [blame] | 387 | * r4 - 16k page directory >= r10 -> OK |
Nicolas Pitre | 5ffb04f | 2011-06-12 01:07:33 -0400 | [diff] [blame] | 388 | * r4 + image length <= address of wont_overwrite -> OK |
Nicolas Pitre | 2874865 | 2013-06-06 05:13:48 +0100 | [diff] [blame] | 389 | * Note: the possible LSB in r4 is harmless here. |
Nicolas Pitre | 6d7d0ae | 2011-02-21 07:06:45 +0100 | [diff] [blame] | 390 | */ |
Nicolas Pitre | ea9df3b | 2011-04-21 22:52:06 -0400 | [diff] [blame] | 391 | add r10, r10, #16384 |
Nicolas Pitre | 6d7d0ae | 2011-02-21 07:06:45 +0100 | [diff] [blame] | 392 | cmp r4, r10 |
| 393 | bhs wont_overwrite |
| 394 | add r10, r4, r9 |
Nicolas Pitre | 5ffb04f | 2011-06-12 01:07:33 -0400 | [diff] [blame] | 395 | adr r9, wont_overwrite |
| 396 | cmp r10, r9 |
Nicolas Pitre | 6d7d0ae | 2011-02-21 07:06:45 +0100 | [diff] [blame] | 397 | bls wont_overwrite |
| 398 | |
| 399 | /* |
| 400 | * Relocate ourselves past the end of the decompressed kernel. |
Nicolas Pitre | 6d7d0ae | 2011-02-21 07:06:45 +0100 | [diff] [blame] | 401 | * 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 Pitre | adcc259 | 2011-04-27 16:15:11 -0400 | [diff] [blame] | 406 | /* |
| 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 Pitre | 6d7d0ae | 2011-02-21 07:06:45 +0100 | [diff] [blame] | 412 | bic r10, r10, #255 |
| 413 | |
Nicolas Pitre | adcc259 | 2011-04-27 16:15:11 -0400 | [diff] [blame] | 414 | /* Get start of code we want to copy and align it down. */ |
| 415 | adr r5, restart |
| 416 | bic r5, r5, #31 |
| 417 | |
Dave Martin | 424e599 | 2012-02-10 18:07:07 -0800 | [diff] [blame] | 418 | /* 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 Zyngier | 4897e36 | 2017-04-03 19:38:02 +0100 | [diff] [blame] | 425 | /* |
| 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 | */ |
| 432 | 0: 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 Martin | 424e599 | 2012-02-10 18:07:07 -0800 | [diff] [blame] | 436 | sub r0, r0, r5 |
| 437 | add r0, r0, r10 |
| 438 | bl __hyp_set_vectors |
| 439 | 1: |
| 440 | #endif |
| 441 | |
Nicolas Pitre | 6d7d0ae | 2011-02-21 07:06:45 +0100 | [diff] [blame] | 442 | 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 | |
| 448 | 1: 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 Lindgren | 7c2527f | 2011-04-26 05:37:46 -0700 | [diff] [blame] | 456 | #ifndef CONFIG_ZBOOT_ROM |
| 457 | /* cache_clean_flush may use the stack, so relocate it */ |
| 458 | add sp, sp, r6 |
| 459 | #endif |
| 460 | |
Will Deacon | 238962a | 2014-11-04 11:40:46 +0100 | [diff] [blame] | 461 | bl cache_clean_flush |
Nicolas Pitre | 6d7d0ae | 2011-02-21 07:06:45 +0100 | [diff] [blame] | 462 | |
Russell King | 14327c6 | 2015-04-21 14:17:25 +0100 | [diff] [blame] | 463 | badr r0, restart |
Nicolas Pitre | 6d7d0ae | 2011-02-21 07:06:45 +0100 | [diff] [blame] | 464 | add r0, r0, r6 |
| 465 | mov pc, r0 |
| 466 | |
| 467 | wont_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 Pitre | 2874865 | 2013-06-06 05:13:48 +0100 | [diff] [blame] | 473 | * r4 = kernel execution address (possibly with LSB set) |
John Bonesio | e2a6a3a | 2011-05-27 18:45:50 -0400 | [diff] [blame] | 474 | * r5 = appended dtb size (0 if not present) |
Nicolas Pitre | 6d7d0ae | 2011-02-21 07:06:45 +0100 | [diff] [blame] | 475 | * r7 = architecture ID |
| 476 | * r8 = atags pointer |
| 477 | * r11 = GOT start |
| 478 | * r12 = GOT end |
| 479 | * sp = stack pointer |
| 480 | */ |
John Bonesio | e2a6a3a | 2011-05-27 18:45:50 -0400 | [diff] [blame] | 481 | orrs r1, r0, r5 |
Nicolas Pitre | 6d7d0ae | 2011-02-21 07:06:45 +0100 | [diff] [blame] | 482 | beq not_relocated |
John Bonesio | e2a6a3a | 2011-05-27 18:45:50 -0400 | [diff] [blame] | 483 | |
Russell King | 98e12b5 | 2010-02-25 23:56:38 +0000 | [diff] [blame] | 484 | add r11, r11, r0 |
Nicolas Pitre | 6d7d0ae | 2011-02-21 07:06:45 +0100 | [diff] [blame] | 485 | add r12, r12, r0 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 486 | |
| 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 Pitre | 6d7d0ae | 2011-02-21 07:06:45 +0100 | [diff] [blame] | 491 | * Note that the stack pointer has already been fixed up. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 492 | */ |
| 493 | add r2, r2, r0 |
| 494 | add r3, r3, r0 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 495 | |
| 496 | /* |
| 497 | * Relocate all entries in the GOT table. |
John Bonesio | e2a6a3a | 2011-05-27 18:45:50 -0400 | [diff] [blame] | 498 | * Bump bss entries to _edata + dtb size |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 499 | */ |
Russell King | 98e12b5 | 2010-02-25 23:56:38 +0000 | [diff] [blame] | 500 | 1: ldr r1, [r11, #0] @ relocate entries in the GOT |
John Bonesio | e2a6a3a | 2011-05-27 18:45:50 -0400 | [diff] [blame] | 501 | 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 Pitre | 6d7d0ae | 2011-02-21 07:06:45 +0100 | [diff] [blame] | 506 | cmp r11, r12 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 507 | blo 1b |
John Bonesio | e2a6a3a | 2011-05-27 18:45:50 -0400 | [diff] [blame] | 508 | |
| 509 | /* bump our bss pointers too */ |
| 510 | add r2, r2, r5 |
| 511 | add r3, r3, r5 |
| 512 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 513 | #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 King | 98e12b5 | 2010-02-25 23:56:38 +0000 | [diff] [blame] | 519 | 1: ldr r1, [r11, #0] @ relocate entries in the GOT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 520 | cmp r1, r2 @ entry < bss_start || |
| 521 | cmphs r3, r1 @ _end < entry |
| 522 | addlo r1, r1, r0 @ table. This fixes up the |
Russell King | 98e12b5 | 2010-02-25 23:56:38 +0000 | [diff] [blame] | 523 | str r1, [r11], #4 @ C references. |
Nicolas Pitre | 6d7d0ae | 2011-02-21 07:06:45 +0100 | [diff] [blame] | 524 | cmp r11, r12 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 525 | blo 1b |
| 526 | #endif |
| 527 | |
| 528 | not_relocated: mov r0, #0 |
| 529 | 1: 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 Pitre | 2874865 | 2013-06-06 05:13:48 +0100 | [diff] [blame] | 536 | /* |
| 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 Pitre | 6d7d0ae | 2011-02-21 07:06:45 +0100 | [diff] [blame] | 545 | /* |
| 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 553 | mov r1, sp @ malloc space above stack |
| 554 | add r2, sp, #0x10000 @ 64k max |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 555 | mov r3, r7 |
| 556 | bl decompress_kernel |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 557 | bl cache_clean_flush |
Nicolas Pitre | 6d7d0ae | 2011-02-21 07:06:45 +0100 | [diff] [blame] | 558 | bl cache_off |
Nicolas Pitre | 6d7d0ae | 2011-02-21 07:06:45 +0100 | [diff] [blame] | 559 | mov r1, r7 @ restore architecture number |
| 560 | mov r2, r8 @ restore atags pointer |
Dave Martin | 424e599 | 2012-02-10 18:07:07 -0800 | [diff] [blame] | 561 | |
| 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 582 | |
Catalin Marinas | 88987ef | 2009-07-24 12:32:52 +0100 | [diff] [blame] | 583 | .align 2 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 584 | .type LC0, #object |
| 585 | LC0: .word LC0 @ r1 |
| 586 | .word __bss_start @ r2 |
| 587 | .word _end @ r3 |
Nicolas Pitre | 6d7d0ae | 2011-02-21 07:06:45 +0100 | [diff] [blame] | 588 | .word _edata @ r6 |
Nicolas Pitre | 34cc1a8 | 2011-04-19 15:42:43 -0400 | [diff] [blame] | 589 | .word input_data_end - 4 @ r10 (inflated size location) |
Russell King | 98e12b5 | 2010-02-25 23:56:38 +0000 | [diff] [blame] | 590 | .word _got_start @ r11 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 591 | .word _got_end @ ip |
Nicolas Pitre | 8d7e4cc | 2011-04-27 14:54:39 -0400 | [diff] [blame] | 592 | .word .L_user_stack_end @ sp |
Nicolas Pitre | 2874865 | 2013-06-06 05:13:48 +0100 | [diff] [blame] | 593 | .word _end - restart + 16384 + 1024*1024 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 594 | .size LC0, . - LC0 |
| 595 | |
| 596 | #ifdef CONFIG_ARCH_RPC |
| 597 | .globl params |
Eric Miao | db7b2b4 | 2010-06-03 15:36:49 +0800 | [diff] [blame] | 598 | params: ldr r0, =0x10000100 @ params_phys for RPC |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 599 | 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 614 | * r7 = architecture number |
Russell King | f461902 | 2006-01-12 17:17:57 +0000 | [diff] [blame] | 615 | * r8 = atags pointer |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 616 | * On exit, |
Uwe Kleine-König | 21b2841 | 2010-01-26 22:08:09 +0100 | [diff] [blame] | 617 | * r0, r1, r2, r3, r9, r10, r12 corrupted |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 618 | * This routine must preserve: |
Nicolas Pitre | 6d7d0ae | 2011-02-21 07:06:45 +0100 | [diff] [blame] | 619 | * r4, r7, r8 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 620 | */ |
| 621 | .align 5 |
| 622 | cache_on: mov r3, #8 @ cache_on function |
| 623 | b call_cache_fn |
| 624 | |
Hyok S. Choi | 10c2df6 | 2006-03-27 10:21:34 +0100 | [diff] [blame] | 625 | /* |
| 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önig | 4a8d57a | 2010-01-26 22:14:23 +0100 | [diff] [blame] | 672 | /* |
| 673 | * ?? ARMv3 MMU does not allow reading the control register, |
| 674 | * does this really work on ARMv3 MPU? |
| 675 | */ |
Hyok S. Choi | 10c2df6 | 2006-03-27 10:21:34 +0100 | [diff] [blame] | 676 | mrc p15, 0, r0, c1, c0, 0 @ read control reg |
| 677 | @ .... .... .... WC.M |
| 678 | orr r0, r0, #0x000d @ .... .... .... 11.1 |
Uwe Kleine-König | 4a8d57a | 2010-01-26 22:14:23 +0100 | [diff] [blame] | 679 | /* ?? this overwrites the value constructed above? */ |
Hyok S. Choi | 10c2df6 | 2006-03-27 10:21:34 +0100 | [diff] [blame] | 680 | mov r0, #0 |
| 681 | mcr p15, 0, r0, c1, c0, 0 @ write control reg |
| 682 | |
Uwe Kleine-König | 4a8d57a | 2010-01-26 22:14:23 +0100 | [diff] [blame] | 683 | /* ?? invalidate for the second time? */ |
Hyok S. Choi | 10c2df6 | 2006-03-27 10:21:34 +0100 | [diff] [blame] | 684 | mcr p15, 0, r0, c7, c0, 0 @ invalidate whole cache v3 |
| 685 | mov pc, lr |
| 686 | |
Russell King | 1fdc08a | 2012-05-10 09:48:34 +0100 | [diff] [blame] | 687 | #ifdef CONFIG_CPU_DCACHE_WRITETHROUGH |
| 688 | #define CB_BITS 0x08 |
| 689 | #else |
| 690 | #define CB_BITS 0x0c |
| 691 | #endif |
| 692 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 693 | __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 King | f461902 | 2006-01-12 17:17:57 +0000 | [diff] [blame] | 701 | mov r9, r0, lsr #18 |
| 702 | mov r9, r9, lsl #18 @ start of RAM |
| 703 | add r10, r9, #0x10000000 @ a reasonable RAM size |
Russell King | 1fdc08a | 2012-05-10 09:48:34 +0100 | [diff] [blame] | 704 | mov r1, #0x12 @ XN|U + section mapping |
| 705 | orr r1, r1, #3 << 10 @ AP=11 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 706 | add r2, r3, #16384 |
Nicolas Pitre | 265d5e4 | 2006-01-18 22:38:51 +0000 | [diff] [blame] | 707 | 1: cmp r1, r9 @ if virt > start of RAM |
Russell King | 1fdc08a | 2012-05-10 09:48:34 +0100 | [diff] [blame] | 708 | 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 712 | 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 King | 1fdc08a | 2012-05-10 09:48:34 +0100 | [diff] [blame] | 722 | orr r1, r6, #0x04 @ ensure B is set for this |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 723 | orr r1, r1, #3 << 10 |
Dave Martin | bfa64c4 | 2010-11-29 19:43:26 +0100 | [diff] [blame] | 724 | mov r2, pc |
| 725 | mov r2, r2, lsr #20 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 726 | 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 Marinas | 93ed397 | 2008-08-28 11:22:32 +0100 | [diff] [blame] | 732 | ENDPROC(__setup_mmu) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 733 | |
Dave Martin | 5010192 | 2012-11-22 12:50:43 +0100 | [diff] [blame] | 734 | @ 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. Greer | af3e4fd | 2011-04-01 15:41:26 +0100 | [diff] [blame] | 743 | __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. Choi | c76b6b4 | 2006-03-24 09:53:18 +0000 | [diff] [blame] | 749 | __armv4_mmu_cache_on: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 750 | mov r12, lr |
Catalin Marinas | 8bdca0a | 2009-07-24 12:35:06 +0100 | [diff] [blame] | 751 | #ifdef CONFIG_MMU |
Russell King | 1fdc08a | 2012-05-10 09:48:34 +0100 | [diff] [blame] | 752 | mov r6, #CB_BITS | 0x12 @ U |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 753 | 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 Dooks | 457c240 | 2013-02-12 18:59:57 +0000 | [diff] [blame] | 760 | ARM_BE8( orr r0, r0, #1 << 25 ) @ big-endian page tables |
Hyok S. Choi | c76b6b4 | 2006-03-24 09:53:18 +0000 | [diff] [blame] | 761 | bl __common_mmu_cache_on |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 762 | mov r0, #0 |
| 763 | mcr p15, 0, r0, c8, c7, 0 @ flush I,D TLBs |
Catalin Marinas | 8bdca0a | 2009-07-24 12:35:06 +0100 | [diff] [blame] | 764 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 765 | mov pc, r12 |
| 766 | |
Catalin Marinas | 7d09e85 | 2007-06-01 17:14:53 +0100 | [diff] [blame] | 767 | __armv7_mmu_cache_on: |
| 768 | mov r12, lr |
Catalin Marinas | 8bdca0a | 2009-07-24 12:35:06 +0100 | [diff] [blame] | 769 | #ifdef CONFIG_MMU |
Catalin Marinas | 7d09e85 | 2007-06-01 17:14:53 +0100 | [diff] [blame] | 770 | mrc p15, 0, r11, c0, c1, 4 @ read ID_MMFR0 |
| 771 | tst r11, #0xf @ VMSA |
Russell King | 1fdc08a | 2012-05-10 09:48:34 +0100 | [diff] [blame] | 772 | movne r6, #CB_BITS | 0x02 @ !XN |
Catalin Marinas | 7d09e85 | 2007-06-01 17:14:53 +0100 | [diff] [blame] | 773 | 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 Marinas | 8bdca0a | 2009-07-24 12:35:06 +0100 | [diff] [blame] | 778 | #endif |
Catalin Marinas | 7d09e85 | 2007-06-01 17:14:53 +0100 | [diff] [blame] | 779 | mrc p15, 0, r0, c1, c0, 0 @ read control reg |
Matthew Leach | e1e5b7e | 2012-09-11 17:56:57 +0100 | [diff] [blame] | 780 | bic r0, r0, #1 << 28 @ clear SCTLR.TRE |
Catalin Marinas | 7d09e85 | 2007-06-01 17:14:53 +0100 | [diff] [blame] | 781 | orr r0, r0, #0x5000 @ I-cache enable, RR cache replacement |
| 782 | orr r0, r0, #0x003c @ write buffer |
Dave Martin | 5010192 | 2012-11-22 12:50:43 +0100 | [diff] [blame] | 783 | 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 Marinas | 8bdca0a | 2009-07-24 12:35:06 +0100 | [diff] [blame] | 786 | #ifdef CONFIG_MMU |
Ben Dooks | 457c240 | 2013-02-12 18:59:57 +0000 | [diff] [blame] | 787 | ARM_BE8( orr r0, r0, #1 << 25 ) @ big-endian page tables |
Will Deacon | dbece45 | 2012-08-24 15:20:59 +0100 | [diff] [blame] | 788 | mrcne p15, 0, r6, c2, c0, 2 @ read ttb control reg |
Catalin Marinas | 7d09e85 | 2007-06-01 17:14:53 +0100 | [diff] [blame] | 789 | orrne r0, r0, #1 @ MMU enabled |
Russell King | 1fdc08a | 2012-05-10 09:48:34 +0100 | [diff] [blame] | 790 | movne r1, #0xfffffffd @ domain 0 = client |
Will Deacon | dbece45 | 2012-08-24 15:20:59 +0100 | [diff] [blame] | 791 | bic r6, r6, #1 << 31 @ 32-bit translation system |
Srinivas Ramana | 117e5e9 | 2016-09-30 15:03:31 +0100 | [diff] [blame] | 792 | bic r6, r6, #(7 << 0) | (1 << 4) @ use only ttbr0 |
Catalin Marinas | 7d09e85 | 2007-06-01 17:14:53 +0100 | [diff] [blame] | 793 | mcrne p15, 0, r3, c2, c0, 0 @ load page table pointer |
| 794 | mcrne p15, 0, r1, c3, c0, 0 @ load domain access control |
Will Deacon | dbece45 | 2012-08-24 15:20:59 +0100 | [diff] [blame] | 795 | mcrne p15, 0, r6, c2, c0, 2 @ load ttb control |
Catalin Marinas | 8bdca0a | 2009-07-24 12:35:06 +0100 | [diff] [blame] | 796 | #endif |
Will Deacon | d675d0b | 2011-11-22 17:30:28 +0000 | [diff] [blame] | 797 | mcr p15, 0, r0, c7, c5, 4 @ ISB |
Catalin Marinas | 7d09e85 | 2007-06-01 17:14:53 +0100 | [diff] [blame] | 798 | 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 Zaleckas | 28853ac | 2009-03-25 13:10:01 +0200 | [diff] [blame] | 804 | __fa526_cache_on: |
| 805 | mov r12, lr |
Russell King | 1fdc08a | 2012-05-10 09:48:34 +0100 | [diff] [blame] | 806 | mov r6, #CB_BITS | 0x12 @ U |
Paulius Zaleckas | 28853ac | 2009-03-25 13:10:01 +0200 | [diff] [blame] | 807 | 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. Choi | c76b6b4 | 2006-03-24 09:53:18 +0000 | [diff] [blame] | 819 | __common_mmu_cache_on: |
Catalin Marinas | 0e056f2 | 2009-07-24 12:32:58 +0100 | [diff] [blame] | 820 | #ifndef CONFIG_THUMB2_KERNEL |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 821 | #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 Pitre | 2dc7667 | 2006-07-01 21:29:32 +0100 | [diff] [blame] | 827 | b 1f |
| 828 | .align 5 @ cache line aligned |
| 829 | 1: 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 Marinas | 0e056f2 | 2009-07-24 12:32:58 +0100 | [diff] [blame] | 832 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 833 | |
Dave Martin | 946a105 | 2011-06-14 14:20:44 +0100 | [diff] [blame] | 834 | #define PROC_ENTRY_SIZE (4*5) |
| 835 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 836 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 837 | * 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 King | 98e12b5 | 2010-02-25 23:56:38 +0000 | [diff] [blame] | 846 | * r9 = corrupted |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 847 | * r12 = corrupted |
| 848 | */ |
| 849 | |
| 850 | call_cache_fn: adr r12, proc_types |
Hyok S. Choi | f12d0d7 | 2006-09-26 17:36:37 +0900 | [diff] [blame] | 851 | #ifdef CONFIG_CPU_CP15 |
Russell King | 98e12b5 | 2010-02-25 23:56:38 +0000 | [diff] [blame] | 852 | mrc p15, 0, r9, c0, c0 @ get processor ID |
Joachim Eastwood | c20611d | 2015-03-25 08:47:18 +0100 | [diff] [blame] | 853 | #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. Choi | f12d0d7 | 2006-09-26 17:36:37 +0900 | [diff] [blame] | 863 | #else |
Russell King | 98e12b5 | 2010-02-25 23:56:38 +0000 | [diff] [blame] | 864 | ldr r9, =CONFIG_PROCESSOR_ID |
Hyok S. Choi | f12d0d7 | 2006-09-26 17:36:37 +0900 | [diff] [blame] | 865 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 866 | 1: ldr r1, [r12, #0] @ get value |
| 867 | ldr r2, [r12, #4] @ get mask |
Russell King | 98e12b5 | 2010-02-25 23:56:38 +0000 | [diff] [blame] | 868 | eor r1, r1, r9 @ (real ^ match) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 869 | tst r1, r2 @ & mask |
Catalin Marinas | 0e056f2 | 2009-07-24 12:32:58 +0100 | [diff] [blame] | 870 | ARM( addeq pc, r12, r3 ) @ call cache function |
| 871 | THUMB( addeq r12, r3 ) |
| 872 | THUMB( moveq pc, r12 ) @ call cache function |
Dave Martin | 946a105 | 2011-06-14 14:20:44 +0100 | [diff] [blame] | 873 | add r12, r12, #PROC_ENTRY_SIZE |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 874 | 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 Marinas | 88987ef | 2009-07-24 12:32:52 +0100 | [diff] [blame] | 890 | .align 2 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 891 | .type proc_types,#object |
| 892 | proc_types: |
Marc C | ced2a3b | 2013-06-05 22:02:23 +0100 | [diff] [blame] | 893 | .word 0x41000000 @ old ARM ID |
| 894 | .word 0xff00f000 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 895 | mov pc, lr |
Catalin Marinas | 0e056f2 | 2009-07-24 12:32:58 +0100 | [diff] [blame] | 896 | THUMB( nop ) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 897 | mov pc, lr |
Catalin Marinas | 0e056f2 | 2009-07-24 12:32:58 +0100 | [diff] [blame] | 898 | THUMB( nop ) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 899 | mov pc, lr |
Catalin Marinas | 0e056f2 | 2009-07-24 12:32:58 +0100 | [diff] [blame] | 900 | THUMB( nop ) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 901 | |
| 902 | .word 0x41007000 @ ARM7/710 |
| 903 | .word 0xfff8fe00 |
Russell King | 4cdfc2e | 2012-05-09 15:18:19 +0100 | [diff] [blame] | 904 | mov pc, lr |
| 905 | THUMB( nop ) |
| 906 | mov pc, lr |
| 907 | THUMB( nop ) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 908 | mov pc, lr |
Catalin Marinas | 0e056f2 | 2009-07-24 12:32:58 +0100 | [diff] [blame] | 909 | THUMB( nop ) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 910 | |
| 911 | .word 0x41807200 @ ARM720T (writethrough) |
| 912 | .word 0xffffff00 |
Catalin Marinas | 0e056f2 | 2009-07-24 12:32:58 +0100 | [diff] [blame] | 913 | W(b) __armv4_mmu_cache_on |
| 914 | W(b) __armv4_mmu_cache_off |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 915 | mov pc, lr |
Catalin Marinas | 0e056f2 | 2009-07-24 12:32:58 +0100 | [diff] [blame] | 916 | THUMB( nop ) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 917 | |
Hyok S. Choi | 10c2df6 | 2006-03-27 10:21:34 +0100 | [diff] [blame] | 918 | .word 0x41007400 @ ARM74x |
| 919 | .word 0xff00ff00 |
Catalin Marinas | 0e056f2 | 2009-07-24 12:32:58 +0100 | [diff] [blame] | 920 | W(b) __armv3_mpu_cache_on |
| 921 | W(b) __armv3_mpu_cache_off |
| 922 | W(b) __armv3_mpu_cache_flush |
Hyok S. Choi | 10c2df6 | 2006-03-27 10:21:34 +0100 | [diff] [blame] | 923 | |
| 924 | .word 0x41009400 @ ARM94x |
| 925 | .word 0xff00ff00 |
Catalin Marinas | 0e056f2 | 2009-07-24 12:32:58 +0100 | [diff] [blame] | 926 | W(b) __armv4_mpu_cache_on |
| 927 | W(b) __armv4_mpu_cache_off |
| 928 | W(b) __armv4_mpu_cache_flush |
Hyok S. Choi | 10c2df6 | 2006-03-27 10:21:34 +0100 | [diff] [blame] | 929 | |
Mark A. Greer | af3e4fd | 2011-04-01 15:41:26 +0100 | [diff] [blame] | 930 | .word 0x41069260 @ ARM926EJ-S (v5TEJ) |
| 931 | .word 0xff0ffff0 |
Nicolas Pitre | 720c60e | 2011-06-09 05:05:27 +0100 | [diff] [blame] | 932 | W(b) __arm926ejs_mmu_cache_on |
| 933 | W(b) __armv4_mmu_cache_off |
| 934 | W(b) __armv5tej_mmu_cache_flush |
Mark A. Greer | af3e4fd | 2011-04-01 15:41:26 +0100 | [diff] [blame] | 935 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 936 | .word 0x00007000 @ ARM7 IDs |
| 937 | .word 0x0000f000 |
| 938 | mov pc, lr |
Catalin Marinas | 0e056f2 | 2009-07-24 12:32:58 +0100 | [diff] [blame] | 939 | THUMB( nop ) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 940 | mov pc, lr |
Catalin Marinas | 0e056f2 | 2009-07-24 12:32:58 +0100 | [diff] [blame] | 941 | THUMB( nop ) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 942 | mov pc, lr |
Catalin Marinas | 0e056f2 | 2009-07-24 12:32:58 +0100 | [diff] [blame] | 943 | THUMB( nop ) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 944 | |
| 945 | @ Everything from here on will be the new ID system. |
| 946 | |
| 947 | .word 0x4401a100 @ sa110 / sa1100 |
| 948 | .word 0xffffffe0 |
Catalin Marinas | 0e056f2 | 2009-07-24 12:32:58 +0100 | [diff] [blame] | 949 | W(b) __armv4_mmu_cache_on |
| 950 | W(b) __armv4_mmu_cache_off |
| 951 | W(b) __armv4_mmu_cache_flush |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 952 | |
| 953 | .word 0x6901b110 @ sa1110 |
| 954 | .word 0xfffffff0 |
Catalin Marinas | 0e056f2 | 2009-07-24 12:32:58 +0100 | [diff] [blame] | 955 | W(b) __armv4_mmu_cache_on |
| 956 | W(b) __armv4_mmu_cache_off |
| 957 | W(b) __armv4_mmu_cache_flush |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 958 | |
Haojian Zhuang | 4157d31 | 2010-03-12 05:47:55 -0500 | [diff] [blame] | 959 | .word 0x56056900 |
| 960 | .word 0xffffff00 @ PXA9xx |
Catalin Marinas | 0e056f2 | 2009-07-24 12:32:58 +0100 | [diff] [blame] | 961 | W(b) __armv4_mmu_cache_on |
| 962 | W(b) __armv4_mmu_cache_off |
| 963 | W(b) __armv4_mmu_cache_flush |
Eric Miao | 59c7bcd | 2008-11-29 21:42:39 +0800 | [diff] [blame] | 964 | |
Eric Miao | 49cbe78 | 2009-01-20 14:15:18 +0800 | [diff] [blame] | 965 | .word 0x56158000 @ PXA168 |
| 966 | .word 0xfffff000 |
Catalin Marinas | 0e056f2 | 2009-07-24 12:32:58 +0100 | [diff] [blame] | 967 | W(b) __armv4_mmu_cache_on |
| 968 | W(b) __armv4_mmu_cache_off |
| 969 | W(b) __armv5tej_mmu_cache_flush |
Eric Miao | 49cbe78 | 2009-01-20 14:15:18 +0800 | [diff] [blame] | 970 | |
Nicolas Pitre | 2e2023f | 2008-06-03 23:06:21 +0200 | [diff] [blame] | 971 | .word 0x56050000 @ Feroceon |
| 972 | .word 0xff0f0000 |
Catalin Marinas | 0e056f2 | 2009-07-24 12:32:58 +0100 | [diff] [blame] | 973 | W(b) __armv4_mmu_cache_on |
| 974 | W(b) __armv4_mmu_cache_off |
| 975 | W(b) __armv5tej_mmu_cache_flush |
Nicolas Pitre | 3ebb5a2 | 2007-10-31 15:31:48 -0400 | [diff] [blame] | 976 | |
Joonyoung Shim | 5587931 | 2009-06-16 20:05:57 +0900 | [diff] [blame] | 977 | #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 Zaleckas | 28853ac | 2009-03-25 13:10:01 +0200 | [diff] [blame] | 986 | .word 0x66015261 @ FA526 |
| 987 | .word 0xff01fff1 |
Catalin Marinas | 0e056f2 | 2009-07-24 12:32:58 +0100 | [diff] [blame] | 988 | W(b) __fa526_cache_on |
| 989 | W(b) __armv4_mmu_cache_off |
| 990 | W(b) __fa526_cache_flush |
Paulius Zaleckas | 28853ac | 2009-03-25 13:10:01 +0200 | [diff] [blame] | 991 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 992 | @ These match on the architecture ID |
| 993 | |
| 994 | .word 0x00020000 @ ARMv4T |
| 995 | .word 0x000f0000 |
Catalin Marinas | 0e056f2 | 2009-07-24 12:32:58 +0100 | [diff] [blame] | 996 | W(b) __armv4_mmu_cache_on |
| 997 | W(b) __armv4_mmu_cache_off |
| 998 | W(b) __armv4_mmu_cache_flush |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 999 | |
| 1000 | .word 0x00050000 @ ARMv5TE |
| 1001 | .word 0x000f0000 |
Catalin Marinas | 0e056f2 | 2009-07-24 12:32:58 +0100 | [diff] [blame] | 1002 | W(b) __armv4_mmu_cache_on |
| 1003 | W(b) __armv4_mmu_cache_off |
| 1004 | W(b) __armv4_mmu_cache_flush |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1005 | |
| 1006 | .word 0x00060000 @ ARMv5TEJ |
| 1007 | .word 0x000f0000 |
Catalin Marinas | 0e056f2 | 2009-07-24 12:32:58 +0100 | [diff] [blame] | 1008 | W(b) __armv4_mmu_cache_on |
| 1009 | W(b) __armv4_mmu_cache_off |
Sascha Hauer | 7521685 | 2010-03-15 15:14:50 +0100 | [diff] [blame] | 1010 | W(b) __armv5tej_mmu_cache_flush |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1011 | |
Catalin Marinas | 45a7b9c | 2006-06-18 16:21:50 +0100 | [diff] [blame] | 1012 | .word 0x0007b000 @ ARMv6 |
Catalin Marinas | 7d09e85 | 2007-06-01 17:14:53 +0100 | [diff] [blame] | 1013 | .word 0x000ff000 |
Dave Martin | 5010192 | 2012-11-22 12:50:43 +0100 | [diff] [blame] | 1014 | W(b) __armv6_mmu_cache_on |
Catalin Marinas | 0e056f2 | 2009-07-24 12:32:58 +0100 | [diff] [blame] | 1015 | W(b) __armv4_mmu_cache_off |
| 1016 | W(b) __armv6_mmu_cache_flush |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1017 | |
Catalin Marinas | 7d09e85 | 2007-06-01 17:14:53 +0100 | [diff] [blame] | 1018 | .word 0x000f0000 @ new CPU Id |
| 1019 | .word 0x000f0000 |
Catalin Marinas | 0e056f2 | 2009-07-24 12:32:58 +0100 | [diff] [blame] | 1020 | W(b) __armv7_mmu_cache_on |
| 1021 | W(b) __armv7_mmu_cache_off |
| 1022 | W(b) __armv7_mmu_cache_flush |
Catalin Marinas | 7d09e85 | 2007-06-01 17:14:53 +0100 | [diff] [blame] | 1023 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1024 | .word 0 @ unrecognised type |
| 1025 | .word 0 |
| 1026 | mov pc, lr |
Catalin Marinas | 0e056f2 | 2009-07-24 12:32:58 +0100 | [diff] [blame] | 1027 | THUMB( nop ) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1028 | mov pc, lr |
Catalin Marinas | 0e056f2 | 2009-07-24 12:32:58 +0100 | [diff] [blame] | 1029 | THUMB( nop ) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1030 | mov pc, lr |
Catalin Marinas | 0e056f2 | 2009-07-24 12:32:58 +0100 | [diff] [blame] | 1031 | THUMB( nop ) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1032 | |
| 1033 | .size proc_types, . - proc_types |
| 1034 | |
Dave Martin | 946a105 | 2011-06-14 14:20:44 +0100 | [diff] [blame] | 1035 | /* |
| 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1045 | /* |
| 1046 | * Turn off the Cache and MMU. ARMv3 does not support |
| 1047 | * reading the control register, but ARMv4 does. |
| 1048 | * |
Uwe Kleine-König | 21b2841 | 2010-01-26 22:08:09 +0100 | [diff] [blame] | 1049 | * On exit, |
| 1050 | * r0, r1, r2, r3, r9, r12 corrupted |
| 1051 | * This routine must preserve: |
Nicolas Pitre | 6d7d0ae | 2011-02-21 07:06:45 +0100 | [diff] [blame] | 1052 | * r4, r7, r8 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1053 | */ |
| 1054 | .align 5 |
| 1055 | cache_off: mov r3, #12 @ cache_off function |
| 1056 | b call_cache_fn |
| 1057 | |
Hyok S. Choi | 10c2df6 | 2006-03-27 10:21:34 +0100 | [diff] [blame] | 1058 | __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. Choi | c76b6b4 | 2006-03-24 09:53:18 +0000 | [diff] [blame] | 1076 | __armv4_mmu_cache_off: |
Catalin Marinas | 8bdca0a | 2009-07-24 12:35:06 +0100 | [diff] [blame] | 1077 | #ifdef CONFIG_MMU |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1078 | 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 Marinas | 8bdca0a | 2009-07-24 12:35:06 +0100 | [diff] [blame] | 1084 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1085 | mov pc, lr |
| 1086 | |
Catalin Marinas | 7d09e85 | 2007-06-01 17:14:53 +0100 | [diff] [blame] | 1087 | __armv7_mmu_cache_off: |
| 1088 | mrc p15, 0, r0, c1, c0 |
Catalin Marinas | 8bdca0a | 2009-07-24 12:35:06 +0100 | [diff] [blame] | 1089 | #ifdef CONFIG_MMU |
Catalin Marinas | 7d09e85 | 2007-06-01 17:14:53 +0100 | [diff] [blame] | 1090 | bic r0, r0, #0x000d |
Catalin Marinas | 8bdca0a | 2009-07-24 12:35:06 +0100 | [diff] [blame] | 1091 | #else |
| 1092 | bic r0, r0, #0x000c |
| 1093 | #endif |
Catalin Marinas | 7d09e85 | 2007-06-01 17:14:53 +0100 | [diff] [blame] | 1094 | 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 Marinas | 8bdca0a | 2009-07-24 12:35:06 +0100 | [diff] [blame] | 1098 | #ifdef CONFIG_MMU |
Catalin Marinas | 7d09e85 | 2007-06-01 17:14:53 +0100 | [diff] [blame] | 1099 | mcr p15, 0, r0, c8, c7, 0 @ invalidate whole TLB |
Catalin Marinas | 8bdca0a | 2009-07-24 12:35:06 +0100 | [diff] [blame] | 1100 | #endif |
Catalin Marinas | c30c2f9 | 2008-11-06 13:23:07 +0000 | [diff] [blame] | 1101 | 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 Marinas | 7d09e85 | 2007-06-01 17:14:53 +0100 | [diff] [blame] | 1104 | mov pc, r12 |
| 1105 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1106 | /* |
| 1107 | * Clean and flush the cache to maintain consistency. |
| 1108 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1109 | * On exit, |
Uwe Kleine-König | 21b2841 | 2010-01-26 22:08:09 +0100 | [diff] [blame] | 1110 | * r1, r2, r3, r9, r10, r11, r12 corrupted |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1111 | * This routine must preserve: |
Nicolas Pitre | 6d7d0ae | 2011-02-21 07:06:45 +0100 | [diff] [blame] | 1112 | * r4, r6, r7, r8 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1113 | */ |
| 1114 | .align 5 |
| 1115 | cache_clean_flush: |
| 1116 | mov r3, #16 |
| 1117 | b call_cache_fn |
| 1118 | |
Hyok S. Choi | 10c2df6 | 2006-03-27 10:21:34 +0100 | [diff] [blame] | 1119 | __armv4_mpu_cache_flush: |
Will Deacon | 238962a | 2014-11-04 11:40:46 +0100 | [diff] [blame] | 1120 | tst r4, #1 |
| 1121 | movne pc, lr |
Hyok S. Choi | 10c2df6 | 2006-03-27 10:21:34 +0100 | [diff] [blame] | 1122 | 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 |
| 1126 | 1: orr r3, r1, #63 << 26 @ 64 entries |
| 1127 | 2: 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 Zaleckas | 28853ac | 2009-03-25 13:10:01 +0200 | [diff] [blame] | 1138 | __fa526_cache_flush: |
Will Deacon | 238962a | 2014-11-04 11:40:46 +0100 | [diff] [blame] | 1139 | tst r4, #1 |
| 1140 | movne pc, lr |
Paulius Zaleckas | 28853ac | 2009-03-25 13:10:01 +0200 | [diff] [blame] | 1141 | 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. Choi | 10c2df6 | 2006-03-27 10:21:34 +0100 | [diff] [blame] | 1146 | |
Hyok S. Choi | c76b6b4 | 2006-03-24 09:53:18 +0000 | [diff] [blame] | 1147 | __armv6_mmu_cache_flush: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1148 | mov r1, #0 |
Will Deacon | 238962a | 2014-11-04 11:40:46 +0100 | [diff] [blame] | 1149 | tst r4, #1 |
| 1150 | mcreq p15, 0, r1, c7, c14, 0 @ clean+invalidate D |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1151 | mcr p15, 0, r1, c7, c5, 0 @ invalidate I+BTB |
Will Deacon | 238962a | 2014-11-04 11:40:46 +0100 | [diff] [blame] | 1152 | mcreq p15, 0, r1, c7, c15, 0 @ clean+invalidate unified |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1153 | mcr p15, 0, r1, c7, c10, 4 @ drain WB |
| 1154 | mov pc, lr |
| 1155 | |
Catalin Marinas | 7d09e85 | 2007-06-01 17:14:53 +0100 | [diff] [blame] | 1156 | __armv7_mmu_cache_flush: |
Will Deacon | 238962a | 2014-11-04 11:40:46 +0100 | [diff] [blame] | 1157 | tst r4, #1 |
| 1158 | bne iflush |
Catalin Marinas | 7d09e85 | 2007-06-01 17:14:53 +0100 | [diff] [blame] | 1159 | mrc p15, 0, r10, c0, c1, 5 @ read ID_MMFR1 |
| 1160 | tst r10, #0xf << 16 @ hierarchical cache (ARMv7) |
Catalin Marinas | 7d09e85 | 2007-06-01 17:14:53 +0100 | [diff] [blame] | 1161 | mov r10, #0 |
Catalin Marinas | c30c2f9 | 2008-11-06 13:23:07 +0000 | [diff] [blame] | 1162 | beq hierarchical |
Catalin Marinas | 7d09e85 | 2007-06-01 17:14:53 +0100 | [diff] [blame] | 1163 | mcr p15, 0, r10, c7, c14, 0 @ clean+invalidate D |
| 1164 | b iflush |
| 1165 | hierarchical: |
Catalin Marinas | c30c2f9 | 2008-11-06 13:23:07 +0000 | [diff] [blame] | 1166 | mcr p15, 0, r10, c7, c10, 5 @ DMB |
Catalin Marinas | 0e056f2 | 2009-07-24 12:32:58 +0100 | [diff] [blame] | 1167 | stmfd sp!, {r0-r7, r9-r11} |
Catalin Marinas | 7d09e85 | 2007-06-01 17:14:53 +0100 | [diff] [blame] | 1168 | 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 |
| 1173 | loop1: |
| 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 Marinas | 000b502 | 2008-10-03 11:09:10 +0100 | [diff] [blame] | 1186 | clz r5, r4 @ find bit position of way size increment |
Catalin Marinas | 7d09e85 | 2007-06-01 17:14:53 +0100 | [diff] [blame] | 1187 | ldr r7, =0x7fff |
| 1188 | ands r7, r7, r1, lsr #13 @ extract max number of the index size |
| 1189 | loop2: |
| 1190 | mov r9, r4 @ create working copy of max way size |
| 1191 | loop3: |
Catalin Marinas | 0e056f2 | 2009-07-24 12:32:58 +0100 | [diff] [blame] | 1192 | 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 Marinas | 7d09e85 | 2007-06-01 17:14:53 +0100 | [diff] [blame] | 1198 | 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 |
| 1203 | skip: |
| 1204 | add r10, r10, #2 @ increment cache number |
| 1205 | cmp r3, r10 |
| 1206 | bgt loop1 |
| 1207 | finished: |
Catalin Marinas | 0e056f2 | 2009-07-24 12:32:58 +0100 | [diff] [blame] | 1208 | ldmfd sp!, {r0-r7, r9-r11} |
Masahiro Yamada | 08a7e62 | 2017-02-27 14:28:41 -0800 | [diff] [blame] | 1209 | mov r10, #0 @ switch back to cache level 0 |
Catalin Marinas | 7d09e85 | 2007-06-01 17:14:53 +0100 | [diff] [blame] | 1210 | mcr p15, 2, r10, c0, c0, 0 @ select current cache level in cssr |
Catalin Marinas | 7d09e85 | 2007-06-01 17:14:53 +0100 | [diff] [blame] | 1211 | iflush: |
Catalin Marinas | c30c2f9 | 2008-11-06 13:23:07 +0000 | [diff] [blame] | 1212 | mcr p15, 0, r10, c7, c10, 4 @ DSB |
Catalin Marinas | 7d09e85 | 2007-06-01 17:14:53 +0100 | [diff] [blame] | 1213 | mcr p15, 0, r10, c7, c5, 0 @ invalidate I+BTB |
Catalin Marinas | c30c2f9 | 2008-11-06 13:23:07 +0000 | [diff] [blame] | 1214 | mcr p15, 0, r10, c7, c10, 4 @ DSB |
| 1215 | mcr p15, 0, r10, c7, c5, 4 @ ISB |
Catalin Marinas | 7d09e85 | 2007-06-01 17:14:53 +0100 | [diff] [blame] | 1216 | mov pc, lr |
| 1217 | |
Nicolas Pitre | 15754bf | 2007-10-31 15:15:29 -0400 | [diff] [blame] | 1218 | __armv5tej_mmu_cache_flush: |
Will Deacon | 238962a | 2014-11-04 11:40:46 +0100 | [diff] [blame] | 1219 | tst r4, #1 |
| 1220 | movne pc, lr |
Nicolas Pitre | 15754bf | 2007-10-31 15:15:29 -0400 | [diff] [blame] | 1221 | 1: 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. Choi | c76b6b4 | 2006-03-24 09:53:18 +0000 | [diff] [blame] | 1227 | __armv4_mmu_cache_flush: |
Will Deacon | 238962a | 2014-11-04 11:40:46 +0100 | [diff] [blame] | 1228 | tst r4, #1 |
| 1229 | movne pc, lr |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1230 | 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 King | 98e12b5 | 2010-02-25 23:56:38 +0000 | [diff] [blame] | 1233 | teq r3, r9 @ cache ID register present? |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1234 | 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 |
| 1245 | no_cache_id: |
Catalin Marinas | 0e056f2 | 2009-07-24 12:32:58 +0100 | [diff] [blame] | 1246 | mov r1, pc |
| 1247 | bic r1, r1, #63 @ align to longest cache line |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1248 | add r2, r1, r2 |
Catalin Marinas | 0e056f2 | 2009-07-24 12:32:58 +0100 | [diff] [blame] | 1249 | 1: |
| 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1253 | 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. Choi | c76b6b4 | 2006-03-24 09:53:18 +0000 | [diff] [blame] | 1261 | __armv3_mmu_cache_flush: |
Hyok S. Choi | 10c2df6 | 2006-03-27 10:21:34 +0100 | [diff] [blame] | 1262 | __armv3_mpu_cache_flush: |
Will Deacon | 238962a | 2014-11-04 11:40:46 +0100 | [diff] [blame] | 1263 | tst r4, #1 |
| 1264 | movne pc, lr |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1265 | mov r1, #0 |
Uwe Kleine-König | 63fa718 | 2010-01-26 22:18:09 +0100 | [diff] [blame] | 1266 | mcr p15, 0, r1, c7, c0, 0 @ invalidate whole cache v3 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1267 | 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 Marinas | 88987ef | 2009-07-24 12:32:52 +0100 | [diff] [blame] | 1274 | .align 2 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1275 | .type phexbuf,#object |
| 1276 | phexbuf: .space 12 |
| 1277 | .size phexbuf, . - phexbuf |
| 1278 | |
Uwe Kleine-König | be6f9f0 | 2010-01-26 22:22:20 +0100 | [diff] [blame] | 1279 | @ phex corrupts {r0, r1, r2, r3} |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1280 | phex: adr r3, phexbuf |
| 1281 | mov r2, #0 |
| 1282 | strb r2, [r3, r1] |
| 1283 | 1: 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önig | be6f9f0 | 2010-01-26 22:22:20 +0100 | [diff] [blame] | 1294 | @ puts corrupts {r0, r1, r2, r3} |
Tony Lindgren | 4e6d488 | 2010-02-01 23:26:53 +0100 | [diff] [blame] | 1295 | puts: loadsp r3, r1 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1296 | 1: ldrb r2, [r0], #1 |
| 1297 | teq r2, #0 |
| 1298 | moveq pc, lr |
Russell King | 5cd0c34 | 2005-05-03 12:18:46 +0100 | [diff] [blame] | 1299 | 2: writeb r2, r3 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1300 | mov r1, #0x00020000 |
| 1301 | 3: 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önig | be6f9f0 | 2010-01-26 22:22:20 +0100 | [diff] [blame] | 1309 | @ putc corrupts {r0, r1, r2, r3} |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1310 | putc: |
| 1311 | mov r2, r0 |
| 1312 | mov r0, #0 |
Tony Lindgren | 4e6d488 | 2010-02-01 23:26:53 +0100 | [diff] [blame] | 1313 | loadsp r3, r1 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1314 | b 2b |
| 1315 | |
Uwe Kleine-König | be6f9f0 | 2010-01-26 22:22:20 +0100 | [diff] [blame] | 1316 | @ memdump corrupts {r0, r1, r2, r3, r10, r11, r12, lr} |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1317 | memdump: mov r12, r0 |
| 1318 | mov r10, lr |
| 1319 | mov r11, #0 |
| 1320 | 2: mov r0, r11, lsl #2 |
| 1321 | add r0, r0, r12 |
| 1322 | mov r1, #8 |
| 1323 | bl phex |
| 1324 | mov r0, #':' |
| 1325 | bl putc |
| 1326 | 1: 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 Marinas | 92c83ff1 | 2007-06-22 14:27:50 +0100 | [diff] [blame] | 1346 | .ltorg |
Dave Martin | 424e599 | 2012-02-10 18:07:07 -0800 | [diff] [blame] | 1347 | |
| 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 Eastwood | c20611d | 2015-03-25 08:47:18 +0100 | [diff] [blame] | 1363 | 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 Martin | 424e599 | 2012-02-10 18:07:07 -0800 | [diff] [blame] | 1366 | |
Nicolas Pitre | adcc259 | 2011-04-27 16:15:11 -0400 | [diff] [blame] | 1367 | reloc_code_end: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1368 | |
Roy Franz | 81a0bc3 | 2015-09-23 20:17:54 -0700 | [diff] [blame] | 1369 | #ifdef CONFIG_EFI_STUB |
| 1370 | .align 2 |
| 1371 | _start: .long start - . |
| 1372 | |
| 1373 | ENTRY(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 | |
| 1409 | efi_load_fail: |
| 1410 | @ Return EFI_LOAD_ERROR to EFI firmware on error. |
| 1411 | ldr r0, =0x80000001 |
| 1412 | ldmfd sp!, {ip, pc} |
| 1413 | ENDPROC(efi_stub_entry) |
| 1414 | #endif |
| 1415 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1416 | .align |
Russell King | b0c4d4e | 2010-11-22 12:00:59 +0000 | [diff] [blame] | 1417 | .section ".stack", "aw", %nobits |
Nicolas Pitre | 8d7e4cc | 2011-04-27 14:54:39 -0400 | [diff] [blame] | 1418 | .L_user_stack: .space 4096 |
| 1419 | .L_user_stack_end: |