#include "epcom.h"
#include <machine/asm.h>
#include <arm/armreg.h>
#include "assym.h"
RCSID("$NetBSD: armadillo9_start.S,v 1.5 2011/01/31 06:28:02 matt Exp $")
.section .start,"ax",%progbits
.global _C_LABEL(armadillo9_start)
_C_LABEL(armadillo9_start):
mov r0, #(PSR_SVC32_MODE | I32_bit | F32_bit)
msr cpsr_c, r0
adr r8, Lunmapped
bic r8, r8, #0xff000000
orr r8, r8, #0xc0000000
mrc p15, 0, r2, c1, c0, 0
bic r2, r2, #CPU_CONTROL_MMU_ENABLE
bic r2, r2, #CPU_CONTROL_DC_ENABLE
bic r2, r2, #CPU_CONTROL_IC_ENABLE
mcr p15, 0, r2, c1, c0, 0
nop
nop
nop
mov pc, r8
Lunmapped:
ldr sp, Ltable
#ifdef VERBOSE_INIT_ARM
bl init_UART
#endif
bl copy_bootparam
bl copy_myself
adr r4, Ltable
ldr r0, [r4]
mov r1, #(L1_TABLE_SIZE / 4)
mov r2, #(L1_S_SIZE)
mov r3, #(L1_S_AP_KRW)
orr r3, r3, #(L1_TYPE_S)
1:
str r3, [r0], #0x04
add r3, r3, r2
subs r1, r1, #1
bgt 1b
ldr r0, [r4]
add r0, r0, #(0xf00 * 4)
mov r3, #(L1_S_AP_KRW)
orr r3, r3, #(L1_TYPE_S)
orr r3, r3, #0x80000000
str r3, [r0], #4
mov r3, #(L1_S_AP_KRW)
orr r3, r3, #(L1_TYPE_S)
orr r3, r3, #0x80000000
orr r3, r3, #0x00800000
str r3, [r0], #0x4
add r3, r3, r2
str r3, [r0], #0x4
adr r0, Ltable
ldr r0, [r0]
mcr p15, 0, r0, c2, c0, 0
mcr p15, 0, r0, c8, c7, 0
mov r0, #1
mcr p15, 0, r0, c3, c0, 0
ldr r1, Lstart
mov r1, r1
mrc p15, 0, r2, c1, c0, 0
orr r2, r2, #CPU_CONTROL_MMU_ENABLE
mcr p15, 0, r2, c1, c0, 0
nop
nop
nop
mrc p15, 0, r2, c2, c0, 0
mov r2, r2
mov pc, r1
#define BOOTPARAM_ADDRESS 0xc0000100
#define BOOTPARAM_SIZE 0x0f00
Ltable:
.word armadillo9_start - L1_TABLE_SIZE
Lstart:
.word start
Lsection:
.word .start
.word 0xc0200000
.word __bss_start
Lbootparam_address:
.word BOOTPARAM_ADDRESS
copy_myself:
stmfd sp!, {r0-r5, lr}
adr r0, Lsection
ldmia r0, {r1, r2, r4}
sub r3, r4, r2
add r5, r1, r3
#ifdef VERBOSE_INIT_ARM
adr r0, Lmsg1
bl print_str
bl print_r1
adr r0, Lmsg2
bl print_str
bl print_r2
adr r0, Lmsg3
bl print_str
bl print_r3
bl print_cr
#endif
1:
ldr r0, [r5], #-4
str r0, [r4], #-4
cmp r5, r1
bge 1b
ldmfd sp!, {r0-r5, pc}
copy_bootparam:
stmfd sp!, {r0-r3, lr}
mov r1, #BOOTPARAM_SIZE
ldr r2, Lbootparam_address
adr r3, _C_LABEL(bootparam)
#ifdef VERBOSE_INIT_ARM
adr r0, Lmsg0
bl print_str
bl print_r2
adr r0, Lmsg2
bl print_str
bl print_r3
adr r0, Lmsg3
bl print_str
bl print_r1
bl print_cr
#endif
1:
ldr r0, [r2], #4
str r0, [r3], #4
subs r1, r1, #4
bne 1b
ldmfd sp!, {r0-r3, pc}
#ifdef VERBOSE_INIT_ARM
Lmsg0:
.asciz "copy bootparam from "
.align 0
Lmsg1:
.asciz "copy kernel from "
.align 0
Lmsg2:
.asciz " to "
.align 0
Lmsg3:
.asciz " size "
.align 0
#if NEPCOM > 0
#define EP93XX_APB_UART1 0x808c0000
#define EP93XX_APB_UART2 0x808d0000
#ifndef CONUNIT
#define CONUNIT 0
#endif
Lcomaddr:
.word EP93XX_APB_UART1
.word EP93XX_APB_UART2
#endif
init_UART:
stmfd sp!, {r4-r5, lr}
#if NEPCOM > 0
ldr r4, Lcomaddr+(CONUNIT*4)
ldr r5, [r4, #0x08]
orr r5, r5, #0x10
str r5, [r4, #0x08]
mov r5, #0x01
str r5, [r4, #0x14]
#endif
ldmfd sp!, {r4-r5, pc}
print_char:
stmfd sp!, {r4-r5, lr}
#if NEPCOM > 0
ldr r4, Lcomaddr+(CONUNIT*4)
1:
ldr r5, [r4, #0x18]
tst r5, #0x20
bne 1b
str r0, [r4, #0x00]
#endif
ldmfd sp!, {r4-r5, pc}
print_cr:
stmfd sp!, {r0, lr}
#if NEPCOM > 0
mov r0, #0x0d
bl print_char
mov r0, #0x0a
bl print_char
#endif
ldmfd sp!, {r0, pc}
print_str:
stmfd sp!, {r0, r4, lr}
#if NEPCOM > 0
mov r4, r0
1:
ldrb r0, [r4], #1
cmp r0, #0
beq 2f
bl print_char
b 1b
2:
#endif
ldmfd sp!, {r0, r4, pc}
print_r3:
stmfd sp!, {r0, r3-r6, lr}
#if NEPCOM > 0
mov r4, #28
mov r5, #0xf
1:
and r6, r5, r3, ROR r4
cmp r6, #10
addlt r0, r6, #'0'
addge r0, r6, #('a' - 0x0a)
bl print_char
subs r4, r4, #4
bge 1b
#endif
ldmfd sp!, {r0, r3-r6, pc}
#define print_register(reg) \
stmfd sp!, {r3, lr} ;\
mov r3, reg ;\
bl print_r3 ;\
ldmfd sp!, {r3, pc}
print_r0:
print_register(r0)
print_r1:
print_register(r1)
print_r2:
print_register(r2)
#endif
.global _C_LABEL(bootparam)
_C_LABEL(bootparam):
.space BOOTPARAM_SIZE