2 * Andesboot - Startup Code for Whitiger core
4 * Copyright (C) 2006 Andes Technology Corporation
9 * SPDX-License-Identifier: GPL-2.0+
14 #include <asm-offsets.h>
17 #include <asm/macro.h>
20 * Jump vector table for EVIC mode
23 #define DIS_DCAC ~ENA_DCAC
24 #define ICAC_MEM_KBF_ISET (0x07) ! I Cache sets per way
25 #define ICAC_MEM_KBF_IWAY (0x07<<3) ! I cache ways
26 #define ICAC_MEM_KBF_ISZ (0x07<<6) ! I cache line size
27 #define DCAC_MEM_KBF_DSET (0x07) ! D Cache sets per way
28 #define DCAC_MEM_KBF_DWAY (0x07<<3) ! D cache ways
29 #define DCAC_MEM_KBF_DSZ (0x07<<6) ! D cache line size
32 #define EIT_INTR_PSW $ir1 ! interruption $PSW
33 #define EIT_PREV_IPSW $ir2 ! previous $IPSW
34 #define EIT_IVB $ir3 ! intr vector base address
35 #define EIT_EVA $ir4 ! MMU related Exception VA reg
36 #define EIT_PREV_EVA $ir5 ! previous $eva
37 #define EIT_ITYPE $ir6 ! interruption type
38 #define EIT_PREV_ITYPE $ir7 ! prev intr type
39 #define EIT_MACH_ERR $ir8 ! machine error log
40 #define EIT_INTR_PC $ir9 ! Interruption PC
41 #define EIT_PREV_IPC $ir10 ! previous $IPC
42 #define EIT_OVL_INTR_PC $ir11 ! overflow interruption PC
43 #define EIT_PREV_P0 $ir12 ! prev $P0
44 #define EIT_PREV_P1 $ir13 ! prev $p1
45 #define CR_ICAC_MEM $cr1 ! I-cache/memory config reg
46 #define CR_DCAC_MEM $cr2 ! D-cache/memory config reg
47 #define MR_CAC_CTL $mr8
60 j internal_interrupt ! H0I
61 j internal_interrupt ! H1I
62 j internal_interrupt ! H2I
63 j internal_interrupt ! H3I
64 j internal_interrupt ! H4I
65 j internal_interrupt ! H5I
66 j software_interrupt ! S0I
71 * Andesboot Startup Code (reset vector)
74 * 1.1 reset - start of u-boot
75 * 1.2 to superuser mode - as is when reset
76 * 1.4 Do lowlevel_init
77 * - (this will jump out to lowlevel_init.S in SoC)
79 * 1.3 Turn off watchdog timer
80 * - (this will jump out to watchdog.S in SoC)
81 * - (turnoff_watchdog)
82 * 2. Do critical init when reboot (not from mem)
83 * 3. Relocate andesboot to ram
85 * 5. Jump to second stage (board_init_r)
88 /* Note: TEXT_BASE is defined by the (board-dependent) linker script */
91 .word CONFIG_SYS_TEXT_BASE
93 /* IRQ stack memory (calculated at run-time) + 8 bytes */
94 .globl IRQ_STACK_START_IN
99 * The bootstrap code of nds32 core
105 * gp = ~0 for burn mode
106 * = ~load_address for load mode
110 sethi $gp, hi20(_GLOBAL_OFFSET_TABLE_-8)
112 ori $gp, $gp, lo12(_GLOBAL_OFFSET_TABLE_-4)
120 /* set IVIC, vector size: 4 bytes, base: 0x0 */
123 #ifndef CONFIG_SKIP_LOWLEVEL_INIT
126 * gp = ~VMA for burn mode
127 * = ~load_address for load mode
131 sethi $gp, hi20(_GLOBAL_OFFSET_TABLE_-8)
133 ori $gp, $gp, lo12(_GLOBAL_OFFSET_TABLE_-4)
138 * do critical initializations first (shall be in short time)
139 * do self_relocation ASAP.
143 * Set the N1213 (Whitiger) core to superuser mode
144 * According to spec, it is already when reset
146 #ifndef CONFIG_SKIP_TRUNOFF_WATCHDOG
151 * Do CPU critical regs init only at reboot,
152 * not when booting from ram
154 #ifdef CONFIG_INIT_CRITICAL
155 jal cpu_init_crit ! Do CPU critical regs init
159 * Set stackpointer in internal RAM to call board_init_f
160 * $sp must be 8-byte alignment for ABI compliance.
163 li $sp, CONFIG_SYS_INIT_SP_ADDR
165 bal board_init_f_alloc_reserve
167 bal board_init_f_init_reserve
168 #ifdef CONFIG_DEBUG_UART
174 #ifdef __NDS32_N1213_43U1H__
175 /* __NDS32_N1213_43U1H__ implies NDS32 V0 ISA */
176 la $r15, board_init_f ! store function address into $r15
179 j board_init_f ! jump to board_init_f() in lib/board.c
182 * void relocate_code (addr_sp, gd, addr_moni)
184 * This "function" does not return, instead it continues in RAM
185 * after relocating the monitor code.
190 * gp = ~RAM_SIZE - TEXT_SIZE for burn/load mode
195 move $r4, $r0 /* save addr_sp */
196 move $r5, $r1 /* save addr of gd */
197 move $r6, $r2 /* save addr of destination */
199 /* Set up the stack */
203 la $r0, _start@GOTOFF
204 beq $r0, $r6, clear_bss /* skip relocation */
207 move $r2, $r6 /* r2 <- scratch for copy_loop */
212 blt $r0, $r1, copy_loop
215 * fix relocations related issues
218 l.w $r0, _TEXT_BASE@GOTOFF /* r0 <- Text base */
219 sub $r9, $r6, $r0 /* r9 <- relocation offset */
221 la $r7, __rel_dyn_start@GOTOFF
222 add $r7, $r7, $r9 /* r2 <- rel __got_start in RAM */
223 la $r8, __rel_dyn_end@GOTOFF
224 add $r8, $r8, $r9 /* r2 <- rel __got_start in RAM */
225 li $r3, #0x2a /* R_NDS32_RELATIVE */
227 lmw.bim $r0, [$r7], $r2 /* r0,r1,r2 <- adr,type,addend */
237 la $r0, __bss_start@GOTOFF /* r0 <- rel __bss_start in FLASH */
238 add $r0, $r0, $r9 /* r0 <- rel __bss_start in FLASH */
239 la $r1, __bss_end@GOTOFF /* r1 <- rel __bss_end in RAM */
240 add $r1, $r1, $r9 /* r0 <- rel __bss_end in RAM */
241 li $r2, 0x00000000 /* clear */
244 sw $r2, [$r0] /* clear loop... */
246 bne $r0, $r1, clbss_l
249 * We are done. Do not return, instead branch to second part of board
250 * initialization, now running from RAM.
253 la $r0, board_init_r@GOTOFF
254 move $lp, $r0 /* offset of board_init_r() */
255 add $lp, $lp, $r9 /* real address of board_init_r() */
256 /* setup parameters for board_init_r */
257 move $r0, $r5 /* gd_t */
258 move $r1, $r6 /* dest_addr */
261 #ifdef __NDS32_N1213_43U1H__ /* NDS32 V0 ISA */
262 move $r15, $lp /* store function address into $r15 */
267 jr $lp /* jump to board_init_r() */
270 * Initialize CPU critical registers
272 * 1. Setup control registers
274 * 1.2 Flush cache and TLB
275 * 1.3 Disable MMU and cache
276 * 2. Setup memory timing
281 move $r0, $lp /* push ra */
283 /* Disable Interrupts by clear GIE in $PSW reg */
286 /* Flush caches and TLB */
287 /* Invalidate caches */
293 andi $p0, $p0, 0x3 ! MMPS
294 li $p1, 0x2 ! TLB MMU
296 tlbop flushall ! Flush TLB
299 ! Disable MMU, Dcache
300 ! Whitiger is MMU disabled when reset
302 mfsr $p0, MR_CAC_CTL ! Get the $CACHE_CTL reg
304 and $p0, $p0, $p1 ! Set DC_EN bit
305 mtsr $p0, MR_CAC_CTL ! write back the $CACHE_CTL reg
316 ! read $cr1(I CAC/MEM cfg. reg.) configuration
317 mfsr $t0, CR_ICAC_MEM
320 andi $p0, $t0, ICAC_MEM_KBF_ISZ
322 ! if $p0=0, then no I CAC existed
323 beqz $p0, end_flush_icache
325 ! get $p0 the index of I$ block
328 ! $t1= bit width of I cache line size(ISZ)
332 sll $t5, $t4, $t1 ! get $t5 cache line size
333 andi $p1, $t0, ICAC_MEM_KBF_ISET ! get the ISET field
334 addi $t2, $p1, 6 ! $t2= bit width of ISET
335 andi $p1, $t0, ICAC_MEM_KBF_IWAY ! get bitfield of Iway
337 addi $p1, $p1, 1 ! then $p1 is I way number
338 add $t3, $t2, $t1 ! SHIFT
339 sll $p1, $p1, $t3 ! GET the total cache size
342 cctl $p1, L1I_IX_INVAL
351 ! read $cr2(D CAC/MEM cfg. reg.) configuration
352 mfsr $t0, CR_DCAC_MEM
355 andi $p0, $t0, DCAC_MEM_KBF_DSZ
357 ! if $p0=0, then no D CAC existed
358 beqz $p0, end_flush_dcache
360 ! get $p0 the index of D$ block
363 ! $t1= bit width of D cache line size(DSZ)
367 sll $t5, $t4, $t1 ! get $t5 cache line size
368 andi $p1, $t0, DCAC_MEM_KBF_DSET ! get the DSET field
369 addi $t2, $p1, 6 ! $t2= bit width of DSET
370 andi $p1, $t0, DCAC_MEM_KBF_DWAY ! get bitfield of D way
372 addi $p1, $p1, 1 ! then $p1 is D way number
373 add $t3, $t2, $t1 ! SHIFT
374 sll $p1, $p1, $t3 ! GET the total cache size
377 cctl $p1, L1D_IX_INVAL
392 ! FIXME: Other way to get PC?
393 ! FIXME: Update according to the newest spec!!
397 mfsr $r28, PSW ! $PSW
399 mfsr $r28, EIT_EVA ! $ir1 $EVA
401 mfsr $r28, EIT_ITYPE ! $ir2 $ITYPE
403 mfsr $r28, EIT_MACH_ERR ! $ir3 Mach Error
405 mfsr $r28, EIT_INTR_PSW ! $ir5 $IPSW
407 mfsr $r28, EIT_PREV_IPSW ! $ir6 prev $IPSW
409 mfsr $r28, EIT_PREV_EVA ! $ir7 prev $EVA
411 mfsr $r28, EIT_PREV_ITYPE ! $ir8 prev $ITYPE
413 mfsr $r28, EIT_INTR_PC ! $ir9 Interruption PC
415 mfsr $r28, EIT_PREV_IPC ! $ir10 prev INTR_PC
417 mfsr $r28, EIT_OVL_INTR_PC ! $ir11 Overflowed INTR_PC
427 pushm $r0, $r30 ! store $sp-$r31, ra-$r30, $gp-$r29, $r28-$fp
428 addi $sp, $sp, -4 ! make room for implicit pt_regs parameters
434 move $r0, $sp ! To get the kernel stack
435 li $r1, 1 ! Determine interruption type
441 move $r0, $sp ! To get the kernel stack
442 li $r1, 2 ! Determine interruption type
448 move $r0, $sp ! To get the kernel stack
449 li $r1, 3 ! Determine interruption type
455 move $r0, $sp ! To get the kernel stack
456 li $r1, 4 ! Determine interruption type
462 move $r0, $sp ! To get the kernel stack
463 li $r1, 5 ! Determine interruption type
469 move $r0, $sp ! To get the kernel stack
470 li $r1, 6 ! Determine interruption type
476 move $r0, $sp ! To get the kernel stack
477 li $r1, 7 ! Determine interruption type
483 move $r0, $sp ! To get the kernel stack
484 li $r1, 8 ! Determine interruption type
490 move $r0, $sp ! To get the kernel stack
491 li $r1, 9 ! Determine interruption type
497 move $r0, $sp ! To get the kernel stack
498 li $r1, 10 ! Determine interruption type
504 * void reset_cpu(ulong addr);
505 * $r0: input address to jump to
509 /* No need to disable MMU because we never enable it */
514 andi $p0, $p0, 0x3 ! MMPS
515 li $p1, 0x2 ! TLB MMU
517 tlbop flushall ! Flush TLB
519 mfsr $p0, MR_CAC_CTL ! Get the $CACHE_CTL reg
521 and $p0, $p0, $p1 ! Clear the DC_EN bit
522 mtsr $p0, MR_CAC_CTL ! Write back the $CACHE_CTL reg
523 br $r0 ! Jump to the input address