1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
|
#include "mem.h"
/*
* Entered here from Compaq's bootldr. First relocate to
* the location we're linked for and then copy back the
* decompressed kernel.
*
* All
*/
TEXT _start(SB), $-4
MOVW $setR12(SB), R12 /* load the SB */
MOVW $1, R0 /* dance to make 5l think that the magic */
MOVW $1, R1 /* numbers in WORDs below are being used */
CMP.S R0, R1 /* and to align them to where bootldr wants */
BEQ _start2
WORD $0x016f2818 /* magic number to say we are a kernel */
WORD $0xc0008000 /* entry point address */
WORD $0 /* size?, or end of data? */
_start2:
/* SVC mode, interrupts disabled */
MOVW $(PsrDirq|PsrDfiq|PsrMsvc), R1
MOVW R1, CPSR
/* disable the MMU */
MOVW $0x130, R1
MCR CpMMU, 0, R1, C(CpControl), C(0x0)
/* enable caches */
MRC CpMMU, 0, R0, C(CpControl), C(0x0)
ORR $(CpCdcache|CpCicache|CpCwb), R0
MCR CpMMU, 0, R0, C(CpControl), C(0x0)
/* flush caches */
MCR CpMMU, 0, R0, C(CpCacheFlush), C(0x7), 0
/* drain prefetch */
MOVW R0,R0
MOVW R0,R0
MOVW R0,R0
MOVW R0,R0
/* drain write buffer */
MCR CpMMU, 0, R0, C(CpCacheFlush), C(0xa), 4
/* relocate to where we expect to be */
MOVW $(512*1024),R3
MOVW $0xC0008000,R1
MOVW $0xC0200000,R2
ADD R1,R3
_relloop:
MOVW (R1),R0
MOVW R0,(R2)
ADD $4,R1
ADD $4,R2
CMP.S R1,R3
BNE _relloop
MOVW $(MACHADDR+BY2PG), R13 /* stack */
SUB $4, R13 /* link */
/* jump to where we've been relocated */
MOVW $_relocated(SB),R15
TEXT _relocated(SB),$-4
BL main(SB)
BL exit(SB)
/* we shouldn't get here */
_mainloop:
B _mainloop
BL _div(SB) /* hack to get _div etc loaded */
TEXT mypc(SB),$-4
MOVW R14,R0
RET
TEXT draincache(SB),$-4
/* write back any dirty data */
MOVW $0xe0000000,R0
ADD $(8*1024),R0,R1
_cfloop:
MOVW.P 32(R0),R2
CMP.S R0,R1
BNE _cfloop
/* drain write buffer and invalidate i&d cache contents */
MCR CpMMU, 0, R0, C(CpCacheFlush), C(0xa), 4
MCR CpMMU, 0, R0, C(CpCacheFlush), C(0x7), 0
/* drain prefetch */
MOVW R0,R0
MOVW R0,R0
MOVW R0,R0
MOVW R0,R0
/* disable caches */
MRC CpMMU, 0, R0, C(CpControl), C(0x0)
BIC $(CpCdcache|CpCicache|CpCwb), R0
MCR CpMMU, 0, R0, C(CpControl), C(0x0)
RET
|