-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcrt0.S
153 lines (123 loc) · 4.93 KB
/
crt0.S
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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
.title "crt0.S for m68k bare metal - standalone"
/* Uncomment the following if you dont want the EVT to be automatically copied
* to RAM address 0 when the ROM has been remapped away from address 0 */
/* #define NO_EVT_COPY */
#define USEVBR (defined(mc68010) || defined(mc68020) || defined(mc68030) || defined(mc68040) || defined(mc68060) || defined(mc68332))
/* A bunch of variables supplied by the linker */
.extern _stack_end
.extern _rom_base
.extern _bss_start
.extern _bss_end
.extern _text_end
.extern _data_start
.extern _data_end
.weak hardware_init_hook
.weak software_init_hook
.weak JumpToZero
.extern main
.section .text
.align 2
.type _start, @function
.globl _start
_start:
move.l #0, (0x03000000) /* Clear debug display */
move.w #0x2700, %sr /* Mask interrupts, supervisor mode */
movea.l #_stack_end, %sp /* Manually configure the ISP value,
* this allows the SP value in the ROM
* image to be used e.g. to store a
* checksum instead. */
clr.l %d0 /* Set MSP and USP to 0 */
movea.l %d0, %a0
move.l %a0, %usp /* USP first */
ori.w #0x1000, %sr /* A little dance for MSP */
move.l %a0, %sp
andi.w #0xEFFF, %sr
/* --- Begin Cisco specific startup code --- */
/* Startup delay */
move.l #1000, %d0
0: subq.l #1, %d0
bne 0b
/* Clear BEV bit in SCR */
andi.w #0xFFFE, (0x02110000)
/* Configure ROM and RAM sizes in MCR */
move.w #0x0E34, (0x02110002) /* 8MByte RAM, 4Mbit ROMs */
/* Enable access to peripherals */
ori.w #0x3F, (0x02110004)
nop
nop
nop
nop
andi.w #0xFFC0, (0x02110004)
/* --- End Cisco specific startup code --- */
/* Setup caches */
/* move.w #0x0808, %d0 */
/* movec %d0, %cacr */
/* move.w #0x2101, %d0 */
/* movec %d0, %cacr */
#if USEVBR
/* If using a CPU with a VBR, point it to the beginning of ROM */
movea.l #_rom_base, %a0
movec %a0, %vbr
#else /* USEVBR */
#ifndef NO_EVT_COPY
/* For CPUs without a VBR, if ROM/RAM remapping is being used, copy the
* exception vector table to RAM. This is determined by the base addr
* of the ROM being non-zero. */
move.l #_rom_base, %d0 /* Skip EVT copy if ROM is at addr 0 */
beq 1f
move.w #511, %d0 /* Number of words to copy, less 1 for
* dbf loop */
movea.l #_rom_base, %a0 /* Source address */
movea.l #0, %a1 /* Destination address */
0: move.w %a0@+, %a1@+
dbf %d0, 0b
#endif /* NO_EVT_COPY */
#endif /* USEVBR */
/* Initialise (clear) the BSS area */
1: movea.l #_bss_start, %a0 /* Starting address */
movea.l #_bss_end, %a1 /* End address */
2: cmpa.l %a1, %a0 /* Check if start < end */
bge 3f
clr.w %a0@+ /* Clear word and increment start */
bra 2b
/* Copy initialised data from ROM to RAM */
3: movea.l #_text_end, %a0 /* Source address */
movea.l #_data_start, %a1 /* Destination start address */
movea.l #_data_end, %a2 /* Destination end address */
4: cmpa.l %a2, %a1 /* Check if start < end */
bge 5f
move.w %a0@+, %a1@+ /* Copy a word from ROM to RAM */
bra 4b
/* Execute hardware init hook if present */
5: move.l #hardware_init_hook, %d0
beq 6f
movea.l %d0, %a0
jsr (%a0)
/* Execute software init hook if present */
6: move.l #software_init_hook, %d0
beq 7f
movea.l %d0, %a0
jsr (%a0)
7: /* Install a "jump to zero" handler at address 0 */
move.w #0x4EB9, (0)
move.l #JumpToZero, (2)
/* Jump to main() */
jmp main
/* In a bare metal environment, main() should not return as there is
* nowhere to resume execution from. Behaviour is undefined if this
* happens! */
/*
* __DefaultInterrupt handles all interrupt and exception vectors that have not
* been overridden by the programmer.
*
* Unless handled more specifically, all exceptions and interrupts are masked
* and the CPU stops executing.
*/
.type __DefaultInterrupt, @function
.weak __DefaultInterrupt
.globl __DefaultInterrupt
__DefaultInterrupt:
move.l #0x00FF00FF, (0x03000000)
stop #0x2700
bra .
.end