1/* $NetBSD: locore.S,v 1.14 2003/04/20 16:21:40 thorpej Exp $ */ 2 3/* 4 * Copyright (C) 1994-1997 Mark Brinicombe 5 * Copyright (C) 1994 Brini 6 * All rights reserved. 7 * 8 * Redistribution and use in source and binary forms, with or without 9 * modification, are permitted provided that the following conditions 10 * are met: 11 * 1. Redistributions of source code must retain the above copyright 12 * notice, this list of conditions and the following disclaimer. 13 * 2. Redistributions in binary form must reproduce the above copyright 14 * notice, this list of conditions and the following disclaimer in the 15 * documentation and/or other materials provided with the distribution. 16 * 3. All advertising materials mentioning features or use of this software 17 * must display the following acknowledgement: 18 * This product includes software developed by Brini. 19 * 4. The name of Brini may not be used to endorse or promote products 20 * derived from this software without specific prior written permission. 21 * 22 * THIS SOFTWARE IS PROVIDED BY BRINI ``AS IS'' AND ANY EXPRESS OR 23 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES 24 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. 25 * IN NO EVENT SHALL BRINI BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 26 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, 27 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; 28 * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, 29 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR 30 * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF 31 * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 32 * 33 */ 34 35#include "assym.s" 36#include <machine/asm.h> 37#include <machine/armreg.h> 38#include <machine/pte.h> 39__FBSDID("$FreeBSD$"); 40 41/* What size should this really be ? It is only used by init_arm() */ 42#define INIT_ARM_STACK_SIZE 2048 43 44/* 45 * This is for kvm_mkdb, and should be the address of the beginning 46 * of the kernel text segment (not necessarily the same as kernbase). 47 */ 48 49 50#define CPWAIT_BRANCH \ 51 sub pc, pc, #4 52 53#define CPWAIT(tmp) \ 54 mrc p15, 0, tmp, c2, c0, 0 /* arbitrary read of CP15 */ ;\ 55 mov tmp, tmp /* wait for it to complete */ ;\ 56 CPWAIT_BRANCH /* branch to next insn */ 57 58 .text 59 .align 0 60.globl kernbase 61.set kernbase,KERNBASE 62 63ENTRY_NP(btext) 64 65ASENTRY_NP(_start) 66 /* Check if we are running on RAM, if not move ourself to RAM */ 67 cmp pc, #KERNPHYSADDR 68 bhi start_inram /* XXX: This is wrong */ 69 70 /* move me to RAM 71 * XXX: we can use memcpy if it is PIC 72 */ 73 ldr r1, Lcopy_size 74 adr r0, _C_LABEL(_start) 75 add r1, r1, #3 76 mov r1, r1, LSR #2 77 mov r2, #KERNPHYSADDR 78 add r2, r2, #0x00200000 79 mov r4, r2 80 815: ldr r3,[r0],#4 82 str r3,[r2],#4 83 subs r1,r1,#1 84 bhi 5b 85 86 /* Jump to RAM */ 87 ldr r0, Lstart_off 88 add pc, r4, r0 89 90Lcopy_size: .word _edata-_C_LABEL(_start) 91Lstart_off: .word start_inram-_C_LABEL(_start) 92start_inram: 93#ifdef STARTUP_PAGETABLE_ADDR 94 adr r4, mmu_init_table2 95 96 mrc p15, 0, r2, c1, c0, 0 97 tst r2, #CPU_CONTROL_MMU_ENABLE /* we already have a page table? */ 98 bne 3f 99 100 /* build page table from scratch */ 101 ldr r0, Lstartup_pagetable 102 adr r4, mmu_init_table 103 b 3f 104 1052: 106 str r3, [r0, r2] 107 add r2, r2, #4 108 add r3, r3, #(L1_S_SIZE) 109 adds r1, r1, #-1 110 bhi 2b 1113: 112 ldmia r4!, {r1,r2,r3} /* # of sections, PA|attr, VA */ 113 cmp r1, #0 114 bne 2b 115 116 mcr p15, 0, r0, c2, c0, 0 /* Set TTB */ 117 mcr p15, 0, r0, c8, c7, 0 /* Flush TLB */ 118 119 /* Set the Domain Access register. Very important! */ 120 mov r0, #((DOMAIN_CLIENT << (PMAP_DOMAIN_KERNEL*2)) | DOMAIN_CLIENT) 121 mcr p15, 0, r0, c3, c0, 0 122 123 /* Enable MMU */ 124 mrc p15, 0, r0, c1, c0, 0 125 orr r0, r0, #CPU_CONTROL_MMU_ENABLE 126 mcr p15, 0, r0, c1, c0, 0 127 CPWAIT(r0) 128 129 bl mmu_done 130 131mmu_done: 132#endif 133 adr r1, .Lstart 134 ldmia r1, {r1, r2, sp} /* Set initial stack and */ 135 sub r2, r2, r1 /* get zero init data */ 136 mov r3, #0 137 138.L1: 139 str r3, [r1], #0x0004 /* Zero the bss */ 140 subs r2, r2, #4 141 bgt .L1 142 143 mov fp, #0xc0000000 /* trace back starts here */ 144 bl _C_LABEL(initarm) /* Off we go */ 145 146 /* init arm will return the new stack pointer. */ 147 mov sp, r0 148 mov fp, #0x00000000 /* trace back starts here */ 149 mov ip, sp 150 stmfd sp!, {fp, ip, lr, pc} 151 sub fp, ip, #4 152 153 bl _C_LABEL(mi_startup) /* call mi_startup()! */ 154 155 adr r0, .Lmainreturned 156 b _C_LABEL(panic) 157 /* NOTEACHED */ 158#ifdef STARTUP_PAGETABLE_ADDR 159#define MMU_INIT(va,pa,n_sec,attr) \ 160 .word n_sec ; \ 161 .word 4*((va)>>L1_S_SHIFT) ; \ 162 .word (pa)|(attr) ; 163 164Lstartup_pagetable: 165 .word STARTUP_PAGETABLE_ADDR 166mmu_init_table: 167 /* fill all table VA==PA */ 168 MMU_INIT(0x00000000, 0x00000000, 1<<(32-L1_S_SHIFT), L1_TYPE_S|L1_S_AP(AP_KRW)) 169 /* map SDRAM VA==PA, WT cacheable */ 170 MMU_INIT(KERNPHYSADDR, KERNPHYSADDR, 64, L1_TYPE_S|L1_S_C|L1_S_AP(AP_KRW)) 171mmu_init_table2: 172 /* map VA 0xc0000000..0xc3ffffff to PA 0xa0000000..0xa3ffffff */ 173 MMU_INIT(0xc0000000, KERNPHYSADDR, 64, L1_TYPE_S|L1_S_C|L1_S_AP(AP_KRW)) 174 175 .word 0 /* end of table */ 176#endif 177.Lstart: 178 .word _edata 179 .word _end 180 .word svcstk + INIT_ARM_STACK_SIZE 181 182.Lmainreturned: 183 .asciz "main() returned" 184 .align 0 185 186 .bss 187svcstk: 188 .space INIT_ARM_STACK_SIZE 189 190 .text 191 .align 0 192 193#ifndef OFW 194 /* OFW based systems will used OF_boot() */ 195 196.Lcpufuncs: 197 .word _C_LABEL(cpufuncs) 198 199ENTRY_NP(cpu_reset) 200 mrs r2, cpsr 201 bic r2, r2, #(PSR_MODE) 202 orr r2, r2, #(PSR_SVC32_MODE) 203 orr r2, r2, #(I32_bit | F32_bit) 204 msr cpsr_all, r2 205 206 ldr r4, .Lcpu_reset_address 207 ldr r4, [r4] 208 209 ldr r0, .Lcpufuncs 210 mov lr, pc 211 ldr pc, [r0, #CF_IDCACHE_WBINV_ALL] 212 213 /* 214 * Load the cpu_reset_needs_v4_MMU_disable flag to determine if it's 215 * necessary. 216 */ 217 218 ldr r1, .Lcpu_reset_needs_v4_MMU_disable 219 ldr r1, [r1] 220 cmp r1, #0 221 mov r2, #0 222 223 /* 224 * MMU & IDC off, 32 bit program & data space 225 * Hurl ourselves into the ROM 226 */ 227 mov r0, #(CPU_CONTROL_32BP_ENABLE | CPU_CONTROL_32BD_ENABLE) 228 mcr 15, 0, r0, c1, c0, 0 229 mcrne 15, 0, r2, c8, c7, 0 /* nail I+D TLB on ARMv4 and greater */ 230 mov pc, r4 231 232 /* 233 * _cpu_reset_address contains the address to branch to, to complete 234 * the cpu reset after turning the MMU off 235 * This variable is provided by the hardware specific code 236 */ 237.Lcpu_reset_address: 238 .word _C_LABEL(cpu_reset_address) 239 240 /* 241 * cpu_reset_needs_v4_MMU_disable contains a flag that signals if the 242 * v4 MMU disable instruction needs executing... it is an illegal instruction 243 * on f.e. ARM6/7 that locks up the computer in an endless illegal 244 * instruction / data-abort / reset loop. 245 */ 246.Lcpu_reset_needs_v4_MMU_disable: 247 .word _C_LABEL(cpu_reset_needs_v4_MMU_disable) 248 249#endif /* OFW */ 250 251#ifdef IPKDB 252/* 253 * Execute(inst, psr, args, sp) 254 * 255 * Execute INSTruction with PSR and ARGS[0] - ARGS[3] making 256 * available stack at SP for next undefined instruction trap. 257 * 258 * Move the instruction onto the stack and jump to it. 259 */ 260ENTRY_NP(Execute) 261 mov ip, sp 262 stmfd sp!, {r2, r4-r7, fp, ip, lr, pc} 263 sub fp, ip, #4 264 mov ip, r3 265 ldr r7, .Lreturn 266 stmfd sp!, {r0, r7} 267 adr r7, #.LExec 268 mov r5, r1 269 mrs r4, cpsr 270 ldmia r2, {r0-r3} 271 mov r6, sp 272 mov sp, ip 273 msr cpsr_all, r5 274 mov pc, r6 275.LExec: 276 mrs r5, cpsr 277/* XXX Cannot switch thus easily back from user mode */ 278 msr cpsr_all, r4 279 add sp, r6, #8 280 ldmfd sp!, {r6} 281 stmia r6, {r0-r3} 282 mov r0, r5 283 ldmdb fp, {r4-r7, fp, sp, pc} 284.Lreturn: 285 mov pc, r7 286#endif 287 288/* 289 * setjump + longjmp 290 */ 291ENTRY(setjmp) 292 stmia r0, {r4-r14} 293 mov r0, #0x00000000 294 mov pc, lr 295 296ENTRY(longjmp) 297 ldmia r0, {r4-r14} 298 mov r0, #0x00000001 299 mov pc, lr 300 301 .data 302 .global _C_LABEL(esym) 303_C_LABEL(esym): .word _C_LABEL(end) 304 305ENTRY_NP(abort) 306 b _C_LABEL(abort) 307 308/* End of locore.S */ 309