blob: 42af9def69a9572424711c5a00556cd5803cda7a [file] [log] [blame]
wdenkc0218802003-03-27 12:09:35 +00001/*
2 * Startup Code for MIPS32 CPU-core
3 *
4 * Copyright (c) 2003 Wolfgang Denk <wd@denx.de>
5 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02006 * SPDX-License-Identifier: GPL-2.0+
wdenkc0218802003-03-27 12:09:35 +00007 */
8
Wolfgang Denk25ddd1f2010-10-26 14:34:52 +02009#include <asm-offsets.h>
wdenkc0218802003-03-27 12:09:35 +000010#include <config.h>
Paul Burtona39b1cb2015-01-29 10:04:08 +000011#include <asm/asm.h>
wdenkc0218802003-03-27 12:09:35 +000012#include <asm/regdef.h>
13#include <asm/mipsregs.h>
14
Daniel Schwierzeckdd821282015-01-18 22:18:38 +010015#ifndef CONFIG_SYS_INIT_SP_ADDR
16#define CONFIG_SYS_INIT_SP_ADDR (CONFIG_SYS_SDRAM_BASE + \
17 CONFIG_SYS_INIT_SP_OFFSET)
18#endif
19
Paul Burtonab0d0022015-01-29 10:04:09 +000020#ifdef CONFIG_32BIT
21# define MIPS_RELOC 3
Paul Burtonf1c64a02015-01-29 10:04:10 +000022# define STATUS_SET 0
Paul Burtonab0d0022015-01-29 10:04:09 +000023#endif
24
25#ifdef CONFIG_64BIT
26# ifdef CONFIG_SYS_LITTLE_ENDIAN
27# define MIPS64_R_INFO(ssym, r_type3, r_type2, r_type) \
28 (((r_type) << 24) | ((r_type2) << 16) | ((r_type3) << 8) | (ssym))
29# else
30# define MIPS64_R_INFO(ssym, r_type3, r_type2, r_type) \
31 ((r_type) | ((r_type2) << 8) | ((r_type3) << 16) | (ssym) << 24)
32# endif
33# define MIPS_RELOC MIPS64_R_INFO(0x00, 0x00, 0x12, 0x03)
Paul Burtonf1c64a02015-01-29 10:04:10 +000034# define STATUS_SET ST0_KX
Paul Burtonab0d0022015-01-29 10:04:09 +000035#endif
36
wdenkc0218802003-03-27 12:09:35 +000037 .set noreorder
38
Daniel Schwierzeck65d297a2016-02-08 00:37:59 +010039 .macro init_wr sel
40 MTC0 zero, CP0_WATCHLO,\sel
41 mtc0 t1, CP0_WATCHHI,\sel
42 mfc0 t0, CP0_WATCHHI,\sel
43 bgez t0, wr_done
44 nop
45 .endm
46
Daniel Schwierzeck345490f2016-02-07 19:39:58 +010047 .macro uhi_mips_exception
48 move k0, t9 # preserve t9 in k0
49 move k1, a0 # preserve a0 in k1
50 li t9, 15 # UHI exception operation
51 li a0, 0 # Use hard register context
52 sdbbp 1 # Invoke UHI operation
53 .endm
54
Daniel Schwierzeckc3e72ab2016-09-25 18:36:38 +020055 .macro setup_stack_gd
56 li t0, -16
57 PTR_LI t1, CONFIG_SYS_INIT_SP_ADDR
58 and sp, t1, t0 # force 16 byte alignment
59 PTR_SUBU \
60 sp, sp, GD_SIZE # reserve space for gd
61 and sp, sp, t0 # force 16 byte alignment
62 move k0, sp # save gd pointer
Andy Yanf5868a52017-07-24 17:45:27 +080063#if CONFIG_VAL(SYS_MALLOC_F_LEN)
64 li t2, CONFIG_VAL(SYS_MALLOC_F_LEN)
Daniel Schwierzeckc3e72ab2016-09-25 18:36:38 +020065 PTR_SUBU \
66 sp, sp, t2 # reserve space for early malloc
67 and sp, sp, t0 # force 16 byte alignment
68#endif
69 move fp, sp
70
71 /* Clear gd */
72 move t0, k0
731:
74 PTR_S zero, 0(t0)
75 blt t0, t1, 1b
76 PTR_ADDIU t0, PTRSIZE
77
Andy Yanf5868a52017-07-24 17:45:27 +080078#if CONFIG_VAL(SYS_MALLOC_F_LEN)
Daniel Schwierzeckc3e72ab2016-09-25 18:36:38 +020079 PTR_S sp, GD_MALLOC_BASE(k0) # gd->malloc_base offset
80#endif
81 .endm
82
Daniel Schwierzeck11349292015-12-19 20:20:45 +010083ENTRY(_start)
Bin Menga1875592016-02-05 19:30:11 -080084 /* U-Boot entry point */
Daniel Schwierzeck8b1c7342013-02-12 22:22:12 +010085 b reset
Daniel Schwierzeck65d297a2016-02-08 00:37:59 +010086 mtc0 zero, CP0_COUNT # clear cp0 count for most accurate boot timing
Daniel Schwierzeck8b1c7342013-02-12 22:22:12 +010087
Gabor Juhos843a76b2013-05-22 03:57:46 +000088#if defined(CONFIG_SYS_XWAY_EBU_BOOTCFG)
Daniel Schwierzeck7185adb2011-07-27 13:22:37 +020089 /*
90 * Almost all Lantiq XWAY SoC devices have an external bus unit (EBU) to
91 * access external NOR flashes. If the board boots from NOR flash the
92 * internal BootROM does a blind read at address 0xB0000010 to read the
93 * initial configuration for that EBU in order to access the flash
94 * device with correct parameters. This config option is board-specific.
95 */
Daniel Schwierzeckaf3971f2016-02-14 18:52:57 +010096 .org 0x10
Daniel Schwierzeck7185adb2011-07-27 13:22:37 +020097 .word CONFIG_SYS_XWAY_EBU_BOOTCFG
Daniel Schwierzeck8b1c7342013-02-12 22:22:12 +010098 .word 0x0
Daniel Schwierzeckaf3971f2016-02-14 18:52:57 +010099#endif
100#if defined(CONFIG_MALTA)
Gabor Juhos843a76b2013-05-22 03:57:46 +0000101 /*
102 * Linux expects the Board ID here.
103 */
Daniel Schwierzeckaf3971f2016-02-14 18:52:57 +0100104 .org 0x10
Gabor Juhos843a76b2013-05-22 03:57:46 +0000105 .word 0x00000420 # 0x420 (Malta Board with CoreLV)
106 .word 0x00000000
wdenkc0218802003-03-27 12:09:35 +0000107#endif
wdenk8bde7f72003-06-27 21:31:46 +0000108
Daniel Schwierzeckaf3971f2016-02-14 18:52:57 +0100109#if defined(CONFIG_ROM_EXCEPTION_VECTORS)
Daniel Schwierzeck345490f2016-02-07 19:39:58 +0100110 /*
111 * Exception vector entry points. When running from ROM, an exception
112 * cannot be handled. Halt execution and transfer control to debugger,
113 * if one is attached.
114 */
Daniel Schwierzeck8b1c7342013-02-12 22:22:12 +0100115 .org 0x200
116 /* TLB refill, 32 bit task */
Daniel Schwierzeck345490f2016-02-07 19:39:58 +0100117 uhi_mips_exception
Daniel Schwierzeck8b1c7342013-02-12 22:22:12 +0100118
119 .org 0x280
120 /* XTLB refill, 64 bit task */
Daniel Schwierzeck345490f2016-02-07 19:39:58 +0100121 uhi_mips_exception
Daniel Schwierzeck8b1c7342013-02-12 22:22:12 +0100122
123 .org 0x300
124 /* Cache error exception */
Daniel Schwierzeck345490f2016-02-07 19:39:58 +0100125 uhi_mips_exception
Daniel Schwierzeck8b1c7342013-02-12 22:22:12 +0100126
127 .org 0x380
128 /* General exception */
Daniel Schwierzeck345490f2016-02-07 19:39:58 +0100129 uhi_mips_exception
Daniel Schwierzeck8b1c7342013-02-12 22:22:12 +0100130
131 .org 0x400
132 /* Catch interrupt exceptions */
Daniel Schwierzeck345490f2016-02-07 19:39:58 +0100133 uhi_mips_exception
Daniel Schwierzeck8b1c7342013-02-12 22:22:12 +0100134
135 .org 0x480
136 /* EJTAG debug exception */
1371: b 1b
138 nop
139
Daniel Schwierzeckaf3971f2016-02-14 18:52:57 +0100140 .org 0x500
141#endif
142
wdenkc0218802003-03-27 12:09:35 +0000143reset:
Paul Burton31d36f72016-09-21 14:59:54 +0100144#if __mips_isa_rev >= 6
145 mfc0 t0, CP0_CONFIG, 5
146 and t0, t0, MIPS_CONF5_VP
147 beqz t0, 1f
148 nop
149
150 b 2f
151 mfc0 t0, CP0_GLOBALNUMBER
152#endif
153
Álvaro Fernández Rojasee422142017-04-25 00:39:20 +0200154#ifdef CONFIG_ARCH_BMIPS
1551: mfc0 t0, CP0_DIAGNOSTIC, 3
156 and t0, t0, (1 << 31)
157#else
Paul Burton31d36f72016-09-21 14:59:54 +01001581: mfc0 t0, CP0_EBASE
159 and t0, t0, EBASE_CPUNUM
Álvaro Fernández Rojasee422142017-04-25 00:39:20 +0200160#endif
Paul Burton31d36f72016-09-21 14:59:54 +0100161
162 /* Hang if this isn't the first CPU in the system */
1632: beqz t0, 4f
164 nop
1653: wait
166 b 3b
167 nop
wdenkc0218802003-03-27 12:09:35 +0000168
Daniel Schwierzeck65d297a2016-02-08 00:37:59 +0100169 /* Init CP0 Status */
1704: mfc0 t0, CP0_STATUS
171 and t0, ST0_IMPL
172 or t0, ST0_BEV | ST0_ERL | STATUS_SET
173 mtc0 t0, CP0_STATUS
174
175 /*
176 * Check whether CP0 Config1 is implemented. If not continue
177 * with legacy Watch register initialization.
178 */
179 mfc0 t0, CP0_CONFIG
180 bgez t0, wr_legacy
181 nop
182
183 /*
184 * Check WR bit in CP0 Config1 to determine if Watch registers
185 * are implemented.
186 */
187 mfc0 t0, CP0_CONFIG, 1
188 andi t0, (1 << 3)
189 beqz t0, wr_done
190 nop
191
192 /* Clear Watch Status bits and disable watch exceptions */
193 li t1, 0x7 # Clear I, R and W conditions
194 init_wr 0
195 init_wr 1
196 init_wr 2
197 init_wr 3
198 init_wr 4
199 init_wr 5
200 init_wr 6
201 init_wr 7
202 b wr_done
203 nop
204
205wr_legacy:
206 MTC0 zero, CP0_WATCHLO
Daniel Schwierzecke26e8dc2016-01-09 22:24:47 +0100207 mtc0 zero, CP0_WATCHHI
wdenkc0218802003-03-27 12:09:35 +0000208
Daniel Schwierzeck65d297a2016-02-08 00:37:59 +0100209wr_done:
210 /* Clear WP, IV and SW interrupts */
Shinya Kuribayashid43d43e2008-03-25 21:30:07 +0900211 mtc0 zero, CP0_CAUSE
212
Daniel Schwierzeck65d297a2016-02-08 00:37:59 +0100213 /* Clear timer interrupt (CP0_COUNT cleared on branch to 'reset') */
wdenkc0218802003-03-27 12:09:35 +0000214 mtc0 zero, CP0_COMPARE
215
Shinya Kuribayashi7aa1f192011-05-07 00:18:13 +0900216#ifndef CONFIG_SKIP_LOWLEVEL_INIT
Paul Burton4f9226b2016-09-21 11:18:50 +0100217 mfc0 t0, CP0_CONFIG
218 and t0, t0, MIPS_CONF_IMPL
219 or t0, t0, CONF_CM_UNCACHED
wdenkc0218802003-03-27 12:09:35 +0000220 mtc0 t0, CP0_CONFIG
Paul Burtonc5b84122016-09-21 11:18:57 +0100221 ehb
Shinya Kuribayashi7aa1f192011-05-07 00:18:13 +0900222#endif
wdenkc0218802003-03-27 12:09:35 +0000223
Paul Burtonb2b135d2016-09-21 11:18:53 +0100224#ifdef CONFIG_MIPS_CM
225 PTR_LA t9, mips_cm_map
226 jalr t9
227 nop
228#endif
229
Daniel Schwierzeck924ad862016-06-04 16:13:21 +0200230#ifdef CONFIG_MIPS_INIT_STACK_IN_SRAM
231 /* Set up initial stack and global data */
232 setup_stack_gd
Daniel Schwierzeck0d159d62017-04-24 19:03:34 +0200233
234# ifdef CONFIG_DEBUG_UART
235 /* Earliest point to set up debug uart */
236 PTR_LA t9, debug_uart_init
237 jalr t9
238 nop
239# endif
Daniel Schwierzeck924ad862016-06-04 16:13:21 +0200240#endif
241
Shinya Kuribayashi7aa1f192011-05-07 00:18:13 +0900242#ifndef CONFIG_SKIP_LOWLEVEL_INIT
Paul Burtonf8981272016-09-21 11:18:51 +0100243# ifdef CONFIG_SYS_MIPS_CACHE_INIT_RAM_LOAD
Shinya Kuribayashi7aa1f192011-05-07 00:18:13 +0900244 /* Initialize any external memory */
Paul Burtona39b1cb2015-01-29 10:04:08 +0000245 PTR_LA t9, lowlevel_init
Shinya Kuribayashi03c031d2007-10-27 15:27:06 +0900246 jalr t9
Shinya Kuribayashi7aa1f192011-05-07 00:18:13 +0900247 nop
Paul Burtonf8981272016-09-21 11:18:51 +0100248# endif
wdenkc0218802003-03-27 12:09:35 +0000249
Shinya Kuribayashi7aa1f192011-05-07 00:18:13 +0900250 /* Initialize caches... */
Paul Burtona39b1cb2015-01-29 10:04:08 +0000251 PTR_LA t9, mips_cache_reset
Shinya Kuribayashi03c031d2007-10-27 15:27:06 +0900252 jalr t9
Shinya Kuribayashi7aa1f192011-05-07 00:18:13 +0900253 nop
Paul Burtonf8981272016-09-21 11:18:51 +0100254
255# ifndef CONFIG_SYS_MIPS_CACHE_INIT_RAM_LOAD
256 /* Initialize any external memory */
257 PTR_LA t9, lowlevel_init
258 jalr t9
259 nop
260# endif
Shinya Kuribayashi7aa1f192011-05-07 00:18:13 +0900261#endif
wdenkc0218802003-03-27 12:09:35 +0000262
Daniel Schwierzeck924ad862016-06-04 16:13:21 +0200263#ifndef CONFIG_MIPS_INIT_STACK_IN_SRAM
Daniel Schwierzeckc3e72ab2016-09-25 18:36:38 +0200264 /* Set up initial stack and global data */
265 setup_stack_gd
Daniel Schwierzeck0d159d62017-04-24 19:03:34 +0200266
267# ifdef CONFIG_DEBUG_UART
268 /* Earliest point to set up debug uart */
269 PTR_LA t9, debug_uart_init
270 jalr t9
271 nop
272# endif
Daniel Schwierzeck924ad862016-06-04 16:13:21 +0200273#endif
Daniel Schwierzecke26e8dc2016-01-09 22:24:47 +0100274
Purna Chandra Mandala6279092016-01-21 20:02:51 +0530275 move a0, zero # a0 <-- boot_flags = 0
Paul Burtona39b1cb2015-01-29 10:04:08 +0000276 PTR_LA t9, board_init_f
Daniel Schwierzeck345490f2016-02-07 19:39:58 +0100277
Shinya Kuribayashi43c50922008-04-17 23:35:13 +0900278 jr t9
Daniel Schwierzeck6d08e222014-11-20 23:55:32 +0100279 move ra, zero
wdenkc0218802003-03-27 12:09:35 +0000280
Daniel Schwierzeck11349292015-12-19 20:20:45 +0100281 END(_start)