]> git.sur5r.net Git - u-boot/blob - arch/mips/cpu/mips64/start.S
81df923bc349831f58d885e240dae5374ee97e0e
[u-boot] / arch / mips / cpu / mips64 / start.S
1 /*
2  *  Startup Code for MIPS64 CPU-core
3  *
4  *  Copyright (c) 2003  Wolfgang Denk <wd@denx.de>
5  *
6  * SPDX-License-Identifier:     GPL-2.0+
7  */
8
9 #include <asm-offsets.h>
10 #include <config.h>
11 #include <asm/regdef.h>
12 #include <asm/mipsregs.h>
13
14 #ifndef CONFIG_SYS_MIPS_CACHE_MODE
15 #define CONFIG_SYS_MIPS_CACHE_MODE CONF_CM_CACHABLE_NONCOHERENT
16 #endif
17
18 #ifndef CONFIG_SYS_INIT_SP_ADDR
19 #define CONFIG_SYS_INIT_SP_ADDR (CONFIG_SYS_SDRAM_BASE + \
20                                 CONFIG_SYS_INIT_SP_OFFSET)
21 #endif
22
23 #ifdef CONFIG_SYS_LITTLE_ENDIAN
24 #define MIPS64_R_INFO(ssym, r_type3, r_type2, r_type) \
25         (((r_type) << 24) | ((r_type2) << 16) | ((r_type3) << 8) | (ssym))
26 #else
27 #define MIPS64_R_INFO(ssym, r_type3, r_type2, r_type) \
28         ((r_type) | ((r_type2) << 8) | ((r_type3) << 16) | (ssym) << 24)
29 #endif
30
31         /*
32          * For the moment disable interrupts, mark the kernel mode and
33          * set ST0_KX so that the CPU does not spit fire when using
34          * 64-bit addresses.
35          */
36         .macro  setup_c0_status set clr
37         .set    push
38         mfc0    t0, CP0_STATUS
39         or      t0, ST0_CU0 | \set | 0x1f | \clr
40         xor     t0, 0x1f | \clr
41         mtc0    t0, CP0_STATUS
42         .set    noreorder
43         sll     zero, 3                         # ehb
44         .set    pop
45         .endm
46
47         .set noreorder
48
49         .globl _start
50         .text
51 _start:
52         /* U-boot entry point */
53         b       reset
54          nop
55
56         .org 0x200
57         /* TLB refill, 32 bit task */
58 1:      b       1b
59          nop
60
61         .org 0x280
62         /* XTLB refill, 64 bit task */
63 1:      b       1b
64          nop
65
66         .org 0x300
67         /* Cache error exception */
68 1:      b       1b
69          nop
70
71         .org 0x380
72         /* General exception */
73 1:      b       1b
74          nop
75
76         .org 0x400
77         /* Catch interrupt exceptions */
78 1:      b       1b
79          nop
80
81         .org 0x480
82         /* EJTAG debug exception */
83 1:      b       1b
84          nop
85
86         .align 4
87 reset:
88
89         /* Clear watch registers */
90         dmtc0   zero, CP0_WATCHLO
91         dmtc0   zero, CP0_WATCHHI
92
93         /* WP(Watch Pending), SW0/1 should be cleared */
94         mtc0    zero, CP0_CAUSE
95
96         setup_c0_status ST0_KX 0
97
98         /* Init Timer */
99         mtc0    zero, CP0_COUNT
100         mtc0    zero, CP0_COMPARE
101
102 #ifndef CONFIG_SKIP_LOWLEVEL_INIT
103         /* CONFIG0 register */
104         dli     t0, CONF_CM_UNCACHED
105         mtc0    t0, CP0_CONFIG
106 #endif
107
108         /*
109          * Initialize $gp, force 8 byte alignment of bal instruction to forbid
110          * the compiler to put nop's between bal and _gp. This is required to
111          * keep _gp and ra aligned to 8 byte.
112          */
113         .align  3
114         bal     1f
115          nop
116         .dword  _gp
117 1:
118         ld      gp, 0(ra)
119
120 #ifndef CONFIG_SKIP_LOWLEVEL_INIT
121         /* Initialize any external memory */
122         dla     t9, lowlevel_init
123         jalr    t9
124          nop
125
126         /* Initialize caches... */
127         dla     t9, mips_cache_reset
128         jalr    t9
129          nop
130
131         /* ... and enable them */
132         dli     t0, CONFIG_SYS_MIPS_CACHE_MODE
133         mtc0    t0, CP0_CONFIG
134 #endif
135
136         /* Set up temporary stack */
137         dli     sp, CONFIG_SYS_INIT_SP_ADDR
138         move    fp, sp
139
140         dla     t9, board_init_f
141         jr      t9
142          move   ra, zero
143
144 /*
145  * void relocate_code (addr_sp, gd, addr_moni)
146  *
147  * This "function" does not return, instead it continues in RAM
148  * after relocating the monitor code.
149  *
150  * a0 = addr_sp
151  * a1 = gd
152  * a2 = destination address
153  */
154         .globl  relocate_code
155         .ent    relocate_code
156 relocate_code:
157         move    sp, a0                  # set new stack pointer
158         move    fp, sp
159
160         move    s0, a1                  # save gd in s0
161         move    s2, a2                  # save destination address in s2
162
163         dli     t0, CONFIG_SYS_MONITOR_BASE
164         dsub    s1, s2, t0              # s1 <-- relocation offset
165
166         dla     t3, in_ram
167         ld      t2, -24(t3)             # t2 <-- __image_copy_end
168         move    t1, a2
169
170         dadd    gp, s1                  # adjust gp
171
172         /*
173          * t0 = source address
174          * t1 = target address
175          * t2 = source end address
176          */
177 1:
178         lw      t3, 0(t0)
179         sw      t3, 0(t1)
180         daddu   t0, 4
181         blt     t0, t2, 1b
182          daddu  t1, 4
183
184         /* If caches were enabled, we would have to flush them here. */
185         dsub    a1, t1, s2              # a1 <-- size
186         dla     t9, flush_cache
187         jalr    t9
188          move   a0, s2                  # a0 <-- destination address
189
190         /* Jump to where we've relocated ourselves */
191         daddi   t0, s2, in_ram - _start
192         jr      t0
193          nop
194
195         .dword  __rel_dyn_end
196         .dword  __rel_dyn_start
197         .dword  __image_copy_end
198         .dword  _GLOBAL_OFFSET_TABLE_
199         .dword  num_got_entries
200
201 in_ram:
202         /*
203          * Now we want to update GOT.
204          *
205          * GOT[0] is reserved. GOT[1] is also reserved for the dynamic object
206          * generated by GNU ld. Skip these reserved entries from relocation.
207          */
208         ld      t3, -8(t0)              # t3 <-- num_got_entries
209         ld      t8, -16(t0)             # t8 <-- _GLOBAL_OFFSET_TABLE_
210         dadd    t8, s1                  # t8 now holds relocated _G_O_T_
211         daddi   t8, t8, 16              # skipping first two entries
212         dli     t2, 2
213 1:
214         ld      t1, 0(t8)
215         beqz    t1, 2f
216          dadd   t1, s1
217         sd      t1, 0(t8)
218 2:
219         daddi   t2, 1
220         blt     t2, t3, 1b
221          daddi  t8, 8
222
223         /* Update dynamic relocations */
224         ld      t1, -32(t0)             # t1 <-- __rel_dyn_start
225         ld      t2, -40(t0)             # t2 <-- __rel_dyn_end
226
227         b       2f                      # skip first reserved entry
228          daddi  t1, 16
229
230 1:
231         lw      t8, -4(t1)              # t8 <-- relocation info
232
233         dli     t3, MIPS64_R_INFO(0x00, 0x00, 0x12, 0x03)
234         bne     t8, t3, 2f              # skip non R_MIPS_REL32 entries
235          nop
236
237         ld      t3, -16(t1)             # t3 <-- location to fix up in FLASH
238
239         ld      t8, 0(t3)               # t8 <-- original pointer
240         dadd    t8, s1                  # t8 <-- adjusted pointer
241
242         dadd    t3, s1                  # t3 <-- location to fix up in RAM
243         sd      t8, 0(t3)
244
245 2:
246         blt     t1, t2, 1b
247          daddi  t1, 16                  # each rel.dyn entry is 16 bytes
248
249         /*
250          * Clear BSS
251          *
252          * GOT is now relocated. Thus __bss_start and __bss_end can be
253          * accessed directly via $gp.
254          */
255         dla     t1, __bss_start         # t1 <-- __bss_start
256         dla     t2, __bss_end           # t2 <-- __bss_end
257
258 1:
259         sd      zero, 0(t1)
260         blt     t1, t2, 1b
261          daddi  t1, 8
262
263         move    a0, s0                  # a0 <-- gd
264         move    a1, s2
265         dla     t9, board_init_r
266         jr      t9
267          move   ra, zero
268
269         .end    relocate_code