2003-03-27 12:09:35 +00:00
|
|
|
/*
|
|
|
|
* Startup Code for MIPS32 CPU-core
|
|
|
|
*
|
|
|
|
* Copyright (c) 2003 Wolfgang Denk <wd@denx.de>
|
|
|
|
*
|
2013-07-08 07:37:19 +00:00
|
|
|
* SPDX-License-Identifier: GPL-2.0+
|
2003-03-27 12:09:35 +00:00
|
|
|
*/
|
|
|
|
|
2010-10-26 12:34:52 +00:00
|
|
|
#include <asm-offsets.h>
|
2003-03-27 12:09:35 +00:00
|
|
|
#include <config.h>
|
2015-01-29 10:04:08 +00:00
|
|
|
#include <asm/asm.h>
|
2003-03-27 12:09:35 +00:00
|
|
|
#include <asm/regdef.h>
|
|
|
|
#include <asm/mipsregs.h>
|
|
|
|
|
2015-01-18 21:18:38 +00:00
|
|
|
#ifndef CONFIG_SYS_INIT_SP_ADDR
|
|
|
|
#define CONFIG_SYS_INIT_SP_ADDR (CONFIG_SYS_SDRAM_BASE + \
|
|
|
|
CONFIG_SYS_INIT_SP_OFFSET)
|
|
|
|
#endif
|
|
|
|
|
2015-01-29 10:04:09 +00:00
|
|
|
#ifdef CONFIG_32BIT
|
|
|
|
# define MIPS_RELOC 3
|
2015-01-29 10:04:10 +00:00
|
|
|
# define STATUS_SET 0
|
2015-01-29 10:04:09 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef CONFIG_64BIT
|
|
|
|
# ifdef CONFIG_SYS_LITTLE_ENDIAN
|
|
|
|
# define MIPS64_R_INFO(ssym, r_type3, r_type2, r_type) \
|
|
|
|
(((r_type) << 24) | ((r_type2) << 16) | ((r_type3) << 8) | (ssym))
|
|
|
|
# else
|
|
|
|
# define MIPS64_R_INFO(ssym, r_type3, r_type2, r_type) \
|
|
|
|
((r_type) | ((r_type2) << 8) | ((r_type3) << 16) | (ssym) << 24)
|
|
|
|
# endif
|
|
|
|
# define MIPS_RELOC MIPS64_R_INFO(0x00, 0x00, 0x12, 0x03)
|
2015-01-29 10:04:10 +00:00
|
|
|
# define STATUS_SET ST0_KX
|
2015-01-29 10:04:09 +00:00
|
|
|
#endif
|
|
|
|
|
2008-03-25 12:30:07 +00:00
|
|
|
/*
|
|
|
|
* For the moment disable interrupts, mark the kernel mode and
|
|
|
|
* set ST0_KX so that the CPU does not spit fire when using
|
|
|
|
* 64-bit addresses.
|
|
|
|
*/
|
|
|
|
.macro setup_c0_status set clr
|
|
|
|
.set push
|
|
|
|
mfc0 t0, CP0_STATUS
|
|
|
|
or t0, ST0_CU0 | \set | 0x1f | \clr
|
|
|
|
xor t0, 0x1f | \clr
|
|
|
|
mtc0 t0, CP0_STATUS
|
|
|
|
.set noreorder
|
|
|
|
sll zero, 3 # ehb
|
|
|
|
.set pop
|
|
|
|
.endm
|
|
|
|
|
2003-03-27 12:09:35 +00:00
|
|
|
.set noreorder
|
|
|
|
|
2016-02-07 18:39:58 +00:00
|
|
|
.macro uhi_mips_exception
|
|
|
|
move k0, t9 # preserve t9 in k0
|
|
|
|
move k1, a0 # preserve a0 in k1
|
|
|
|
li t9, 15 # UHI exception operation
|
|
|
|
li a0, 0 # Use hard register context
|
|
|
|
sdbbp 1 # Invoke UHI operation
|
|
|
|
.endm
|
|
|
|
|
2015-12-19 19:20:45 +00:00
|
|
|
ENTRY(_start)
|
2016-02-06 03:30:11 +00:00
|
|
|
/* U-Boot entry point */
|
2013-02-12 21:22:12 +00:00
|
|
|
b reset
|
|
|
|
nop
|
|
|
|
|
2013-05-22 03:57:46 +00:00
|
|
|
#if defined(CONFIG_SYS_XWAY_EBU_BOOTCFG)
|
2011-07-27 11:22:37 +00:00
|
|
|
/*
|
|
|
|
* Almost all Lantiq XWAY SoC devices have an external bus unit (EBU) to
|
|
|
|
* access external NOR flashes. If the board boots from NOR flash the
|
|
|
|
* internal BootROM does a blind read at address 0xB0000010 to read the
|
|
|
|
* initial configuration for that EBU in order to access the flash
|
|
|
|
* device with correct parameters. This config option is board-specific.
|
|
|
|
*/
|
2016-02-14 17:52:57 +00:00
|
|
|
.org 0x10
|
2011-07-27 11:22:37 +00:00
|
|
|
.word CONFIG_SYS_XWAY_EBU_BOOTCFG
|
2013-02-12 21:22:12 +00:00
|
|
|
.word 0x0
|
2016-02-14 17:52:57 +00:00
|
|
|
#endif
|
|
|
|
#if defined(CONFIG_MALTA)
|
2013-05-22 03:57:46 +00:00
|
|
|
/*
|
|
|
|
* Linux expects the Board ID here.
|
|
|
|
*/
|
2016-02-14 17:52:57 +00:00
|
|
|
.org 0x10
|
2013-05-22 03:57:46 +00:00
|
|
|
.word 0x00000420 # 0x420 (Malta Board with CoreLV)
|
|
|
|
.word 0x00000000
|
2003-03-27 12:09:35 +00:00
|
|
|
#endif
|
2003-06-27 21:31:46 +00:00
|
|
|
|
2016-02-14 17:52:57 +00:00
|
|
|
#if defined(CONFIG_ROM_EXCEPTION_VECTORS)
|
2016-02-07 18:39:58 +00:00
|
|
|
/*
|
|
|
|
* Exception vector entry points. When running from ROM, an exception
|
|
|
|
* cannot be handled. Halt execution and transfer control to debugger,
|
|
|
|
* if one is attached.
|
|
|
|
*/
|
2013-02-12 21:22:12 +00:00
|
|
|
.org 0x200
|
|
|
|
/* TLB refill, 32 bit task */
|
2016-02-07 18:39:58 +00:00
|
|
|
uhi_mips_exception
|
2013-02-12 21:22:12 +00:00
|
|
|
|
|
|
|
.org 0x280
|
|
|
|
/* XTLB refill, 64 bit task */
|
2016-02-07 18:39:58 +00:00
|
|
|
uhi_mips_exception
|
2013-02-12 21:22:12 +00:00
|
|
|
|
|
|
|
.org 0x300
|
|
|
|
/* Cache error exception */
|
2016-02-07 18:39:58 +00:00
|
|
|
uhi_mips_exception
|
2013-02-12 21:22:12 +00:00
|
|
|
|
|
|
|
.org 0x380
|
|
|
|
/* General exception */
|
2016-02-07 18:39:58 +00:00
|
|
|
uhi_mips_exception
|
2013-02-12 21:22:12 +00:00
|
|
|
|
|
|
|
.org 0x400
|
|
|
|
/* Catch interrupt exceptions */
|
2016-02-07 18:39:58 +00:00
|
|
|
uhi_mips_exception
|
2013-02-12 21:22:12 +00:00
|
|
|
|
|
|
|
.org 0x480
|
|
|
|
/* EJTAG debug exception */
|
|
|
|
1: b 1b
|
|
|
|
nop
|
|
|
|
|
2016-02-14 17:52:57 +00:00
|
|
|
.org 0x500
|
|
|
|
#endif
|
|
|
|
|
2003-03-27 12:09:35 +00:00
|
|
|
reset:
|
2016-09-21 13:59:54 +00:00
|
|
|
#if __mips_isa_rev >= 6
|
|
|
|
mfc0 t0, CP0_CONFIG, 5
|
|
|
|
and t0, t0, MIPS_CONF5_VP
|
|
|
|
beqz t0, 1f
|
|
|
|
nop
|
|
|
|
|
|
|
|
b 2f
|
|
|
|
mfc0 t0, CP0_GLOBALNUMBER
|
|
|
|
#endif
|
|
|
|
|
|
|
|
1: mfc0 t0, CP0_EBASE
|
|
|
|
and t0, t0, EBASE_CPUNUM
|
|
|
|
|
|
|
|
/* Hang if this isn't the first CPU in the system */
|
|
|
|
2: beqz t0, 4f
|
|
|
|
nop
|
|
|
|
3: wait
|
|
|
|
b 3b
|
|
|
|
nop
|
2003-03-27 12:09:35 +00:00
|
|
|
|
2011-05-06 15:18:13 +00:00
|
|
|
/* Clear watch registers */
|
2016-09-21 13:59:54 +00:00
|
|
|
4: MTC0 zero, CP0_WATCHLO
|
2016-01-09 21:24:47 +00:00
|
|
|
mtc0 zero, CP0_WATCHHI
|
2003-03-27 12:09:35 +00:00
|
|
|
|
2011-05-06 15:18:13 +00:00
|
|
|
/* WP(Watch Pending), SW0/1 should be cleared */
|
2008-03-25 12:30:07 +00:00
|
|
|
mtc0 zero, CP0_CAUSE
|
|
|
|
|
2015-01-29 10:04:10 +00:00
|
|
|
setup_c0_status STATUS_SET 0
|
2003-03-27 12:09:35 +00:00
|
|
|
|
|
|
|
/* Init Timer */
|
|
|
|
mtc0 zero, CP0_COUNT
|
|
|
|
mtc0 zero, CP0_COMPARE
|
|
|
|
|
2011-05-06 15:18:13 +00:00
|
|
|
#ifndef CONFIG_SKIP_LOWLEVEL_INIT
|
2016-09-21 10:18:50 +00:00
|
|
|
mfc0 t0, CP0_CONFIG
|
|
|
|
and t0, t0, MIPS_CONF_IMPL
|
|
|
|
or t0, t0, CONF_CM_UNCACHED
|
2003-03-27 12:09:35 +00:00
|
|
|
mtc0 t0, CP0_CONFIG
|
2016-09-21 10:18:57 +00:00
|
|
|
ehb
|
2011-05-06 15:18:13 +00:00
|
|
|
#endif
|
2003-03-27 12:09:35 +00:00
|
|
|
|
2015-01-29 10:04:08 +00:00
|
|
|
/*
|
|
|
|
* Initialize $gp, force pointer sized alignment of bal instruction to
|
|
|
|
* forbid the compiler to put nop's between bal and _gp. This is
|
|
|
|
* required to keep _gp and ra aligned to 8 byte.
|
|
|
|
*/
|
|
|
|
.align PTRLOG
|
2007-10-27 06:27:06 +00:00
|
|
|
bal 1f
|
2011-05-06 15:18:13 +00:00
|
|
|
nop
|
2015-01-29 10:04:08 +00:00
|
|
|
PTR _gp
|
2007-10-27 06:27:06 +00:00
|
|
|
1:
|
2015-01-29 10:04:08 +00:00
|
|
|
PTR_L gp, 0(ra)
|
2005-12-01 01:15:07 +00:00
|
|
|
|
2016-09-21 10:18:53 +00:00
|
|
|
#ifdef CONFIG_MIPS_CM
|
|
|
|
PTR_LA t9, mips_cm_map
|
|
|
|
jalr t9
|
|
|
|
nop
|
|
|
|
#endif
|
|
|
|
|
2011-05-06 15:18:13 +00:00
|
|
|
#ifndef CONFIG_SKIP_LOWLEVEL_INIT
|
2016-09-21 10:18:51 +00:00
|
|
|
# ifdef CONFIG_SYS_MIPS_CACHE_INIT_RAM_LOAD
|
2011-05-06 15:18:13 +00:00
|
|
|
/* Initialize any external memory */
|
2015-01-29 10:04:08 +00:00
|
|
|
PTR_LA t9, lowlevel_init
|
2007-10-27 06:27:06 +00:00
|
|
|
jalr t9
|
2011-05-06 15:18:13 +00:00
|
|
|
nop
|
2016-09-21 10:18:51 +00:00
|
|
|
# endif
|
2003-03-27 12:09:35 +00:00
|
|
|
|
2011-05-06 15:18:13 +00:00
|
|
|
/* Initialize caches... */
|
2015-01-29 10:04:08 +00:00
|
|
|
PTR_LA t9, mips_cache_reset
|
2007-10-27 06:27:06 +00:00
|
|
|
jalr t9
|
2011-05-06 15:18:13 +00:00
|
|
|
nop
|
2016-09-21 10:18:51 +00:00
|
|
|
|
|
|
|
# ifndef CONFIG_SYS_MIPS_CACHE_INIT_RAM_LOAD
|
|
|
|
/* Initialize any external memory */
|
|
|
|
PTR_LA t9, lowlevel_init
|
|
|
|
jalr t9
|
|
|
|
nop
|
|
|
|
# endif
|
2011-05-06 15:18:13 +00:00
|
|
|
#endif
|
2003-03-27 12:09:35 +00:00
|
|
|
|
2011-05-06 15:18:13 +00:00
|
|
|
/* Set up temporary stack */
|
2016-01-09 21:24:47 +00:00
|
|
|
li t0, -16
|
2015-01-29 10:04:08 +00:00
|
|
|
PTR_LI t1, CONFIG_SYS_INIT_SP_ADDR
|
2015-01-18 21:18:39 +00:00
|
|
|
and sp, t1, t0 # force 16 byte alignment
|
2016-05-16 09:52:10 +00:00
|
|
|
PTR_SUBU \
|
|
|
|
sp, sp, GD_SIZE # reserve space for gd
|
2015-01-18 21:18:39 +00:00
|
|
|
and sp, sp, t0 # force 16 byte alignment
|
|
|
|
move k0, sp # save gd pointer
|
|
|
|
#ifdef CONFIG_SYS_MALLOC_F_LEN
|
2016-01-09 21:24:47 +00:00
|
|
|
li t2, CONFIG_SYS_MALLOC_F_LEN
|
2016-05-16 09:52:10 +00:00
|
|
|
PTR_SUBU \
|
|
|
|
sp, sp, t2 # reserve space for early malloc
|
2015-01-18 21:18:39 +00:00
|
|
|
and sp, sp, t0 # force 16 byte alignment
|
|
|
|
#endif
|
2014-11-20 22:55:32 +00:00
|
|
|
move fp, sp
|
2003-03-27 12:09:35 +00:00
|
|
|
|
2015-01-18 21:18:39 +00:00
|
|
|
/* Clear gd */
|
|
|
|
move t0, k0
|
|
|
|
1:
|
2016-01-09 21:24:47 +00:00
|
|
|
PTR_S zero, 0(t0)
|
2015-01-18 21:18:39 +00:00
|
|
|
blt t0, t1, 1b
|
2016-05-16 09:52:10 +00:00
|
|
|
PTR_ADDIU t0, PTRSIZE
|
2015-01-18 21:18:39 +00:00
|
|
|
|
|
|
|
#ifdef CONFIG_SYS_MALLOC_F_LEN
|
2016-01-09 21:24:47 +00:00
|
|
|
PTR_S sp, GD_MALLOC_BASE(k0) # gd->malloc_base offset
|
2015-01-18 21:18:39 +00:00
|
|
|
#endif
|
2016-01-09 21:24:47 +00:00
|
|
|
|
2016-01-21 14:32:51 +00:00
|
|
|
move a0, zero # a0 <-- boot_flags = 0
|
2015-01-29 10:04:08 +00:00
|
|
|
PTR_LA t9, board_init_f
|
2016-02-07 18:39:58 +00:00
|
|
|
|
2008-04-17 14:35:13 +00:00
|
|
|
jr t9
|
2014-11-20 22:55:32 +00:00
|
|
|
move ra, zero
|
2003-03-27 12:09:35 +00:00
|
|
|
|
2015-12-19 19:20:45 +00:00
|
|
|
END(_start)
|
|
|
|
|
2003-03-27 12:09:35 +00:00
|
|
|
/*
|
|
|
|
* void relocate_code (addr_sp, gd, addr_moni)
|
|
|
|
*
|
|
|
|
* This "function" does not return, instead it continues in RAM
|
|
|
|
* after relocating the monitor code.
|
|
|
|
*
|
|
|
|
* a0 = addr_sp
|
|
|
|
* a1 = gd
|
|
|
|
* a2 = destination address
|
|
|
|
*/
|
2015-12-19 19:20:45 +00:00
|
|
|
ENTRY(relocate_code)
|
2011-05-06 15:18:13 +00:00
|
|
|
move sp, a0 # set new stack pointer
|
2014-11-20 22:55:32 +00:00
|
|
|
move fp, sp
|
2003-03-27 12:09:35 +00:00
|
|
|
|
2013-01-24 06:27:53 +00:00
|
|
|
move s0, a1 # save gd in s0
|
|
|
|
move s2, a2 # save destination address in s2
|
|
|
|
|
2015-01-29 10:04:08 +00:00
|
|
|
PTR_LI t0, CONFIG_SYS_MONITOR_BASE
|
|
|
|
PTR_SUB s1, s2, t0 # s1 <-- relocation offset
|
2013-01-24 06:27:54 +00:00
|
|
|
|
2016-09-21 10:11:06 +00:00
|
|
|
PTR_LA t2, __image_copy_end
|
2003-07-24 23:38:38 +00:00
|
|
|
move t1, a2
|
|
|
|
|
2003-03-27 12:09:35 +00:00
|
|
|
/*
|
|
|
|
* t0 = source address
|
|
|
|
* t1 = target address
|
|
|
|
* t2 = source end address
|
|
|
|
*/
|
|
|
|
1:
|
2016-01-09 21:24:47 +00:00
|
|
|
PTR_L t3, 0(t0)
|
|
|
|
PTR_S t3, 0(t1)
|
|
|
|
PTR_ADDU t0, PTRSIZE
|
2013-01-24 06:27:51 +00:00
|
|
|
blt t0, t2, 1b
|
2016-01-09 21:24:47 +00:00
|
|
|
PTR_ADDU t1, PTRSIZE
|
2003-03-27 12:09:35 +00:00
|
|
|
|
2007-10-21 01:55:36 +00:00
|
|
|
/*
|
|
|
|
* Now we want to update GOT.
|
|
|
|
*
|
|
|
|
* GOT[0] is reserved. GOT[1] is also reserved for the dynamic object
|
|
|
|
* generated by GNU ld. Skip these reserved entries from relocation.
|
2003-03-27 12:09:35 +00:00
|
|
|
*/
|
2016-09-21 10:11:06 +00:00
|
|
|
PTR_LA t3, num_got_entries
|
|
|
|
PTR_LA t8, _GLOBAL_OFFSET_TABLE_
|
2015-01-29 10:04:08 +00:00
|
|
|
PTR_ADD t8, s1 # t8 now holds relocated _G_O_T_
|
2016-05-16 09:52:10 +00:00
|
|
|
PTR_ADDIU t8, t8, 2 * PTRSIZE # skipping first two entries
|
2015-01-29 10:04:08 +00:00
|
|
|
PTR_LI t2, 2
|
2003-03-27 12:09:35 +00:00
|
|
|
1:
|
2015-01-29 10:04:08 +00:00
|
|
|
PTR_L t1, 0(t8)
|
2003-03-27 12:09:35 +00:00
|
|
|
beqz t1, 2f
|
2015-01-29 10:04:08 +00:00
|
|
|
PTR_ADD t1, s1
|
|
|
|
PTR_S t1, 0(t8)
|
2003-03-27 12:09:35 +00:00
|
|
|
2:
|
2016-05-16 09:52:10 +00:00
|
|
|
PTR_ADDIU t2, 1
|
2003-03-27 12:09:35 +00:00
|
|
|
blt t2, t3, 1b
|
2016-05-16 09:52:10 +00:00
|
|
|
PTR_ADDIU t8, PTRSIZE
|
2003-03-27 12:09:35 +00:00
|
|
|
|
2013-02-12 21:22:13 +00:00
|
|
|
/* Update dynamic relocations */
|
2016-09-21 10:11:06 +00:00
|
|
|
PTR_LA t1, __rel_dyn_start
|
|
|
|
PTR_LA t2, __rel_dyn_end
|
2013-02-12 21:22:13 +00:00
|
|
|
|
|
|
|
b 2f # skip first reserved entry
|
2016-05-16 09:52:10 +00:00
|
|
|
PTR_ADDIU t1, 2 * PTRSIZE
|
2013-02-12 21:22:13 +00:00
|
|
|
|
|
|
|
1:
|
2013-06-13 10:59:28 +00:00
|
|
|
lw t8, -4(t1) # t8 <-- relocation info
|
2013-02-12 21:22:13 +00:00
|
|
|
|
2015-01-29 10:04:09 +00:00
|
|
|
PTR_LI t3, MIPS_RELOC
|
|
|
|
bne t8, t3, 2f # skip non-MIPS_RELOC entries
|
2013-02-12 21:22:13 +00:00
|
|
|
nop
|
|
|
|
|
2015-01-29 10:04:08 +00:00
|
|
|
PTR_L t3, -(2 * PTRSIZE)(t1) # t3 <-- location to fix up in FLASH
|
2013-02-12 21:22:13 +00:00
|
|
|
|
2015-01-29 10:04:08 +00:00
|
|
|
PTR_L t8, 0(t3) # t8 <-- original pointer
|
|
|
|
PTR_ADD t8, s1 # t8 <-- adjusted pointer
|
2013-02-12 21:22:13 +00:00
|
|
|
|
2015-01-29 10:04:08 +00:00
|
|
|
PTR_ADD t3, s1 # t3 <-- location to fix up in RAM
|
|
|
|
PTR_S t8, 0(t3)
|
2013-02-12 21:22:13 +00:00
|
|
|
|
|
|
|
2:
|
|
|
|
blt t1, t2, 1b
|
2016-05-16 09:52:10 +00:00
|
|
|
PTR_ADDIU t1, 2 * PTRSIZE # each rel.dyn entry is 2*PTRSIZE bytes
|
2013-02-12 21:22:13 +00:00
|
|
|
|
2016-09-21 10:11:06 +00:00
|
|
|
/*
|
|
|
|
* Flush caches to ensure our newly modified instructions are visible
|
|
|
|
* to the instruction cache. We're still running with the old GOT, so
|
|
|
|
* apply the reloc offset to the start address.
|
|
|
|
*/
|
|
|
|
PTR_LA a0, __text_start
|
|
|
|
PTR_LA a1, __text_end
|
|
|
|
PTR_SUB a1, a1, a0
|
|
|
|
PTR_LA t9, flush_cache
|
|
|
|
jalr t9
|
|
|
|
PTR_ADD a0, s1
|
|
|
|
|
|
|
|
PTR_ADD gp, s1 # adjust gp
|
|
|
|
|
2013-02-12 21:22:13 +00:00
|
|
|
/*
|
|
|
|
* Clear BSS
|
|
|
|
*
|
|
|
|
* GOT is now relocated. Thus __bss_start and __bss_end can be
|
|
|
|
* accessed directly via $gp.
|
|
|
|
*/
|
2015-01-29 10:04:08 +00:00
|
|
|
PTR_LA t1, __bss_start # t1 <-- __bss_start
|
|
|
|
PTR_LA t2, __bss_end # t2 <-- __bss_end
|
2003-03-27 12:09:35 +00:00
|
|
|
|
2007-10-27 06:27:06 +00:00
|
|
|
1:
|
2015-01-29 10:04:08 +00:00
|
|
|
PTR_S zero, 0(t1)
|
2013-02-12 21:22:13 +00:00
|
|
|
blt t1, t2, 1b
|
2016-05-16 09:52:10 +00:00
|
|
|
PTR_ADDIU t1, PTRSIZE
|
2003-06-27 21:31:46 +00:00
|
|
|
|
2011-05-06 15:18:13 +00:00
|
|
|
move a0, s0 # a0 <-- gd
|
2014-11-20 22:55:32 +00:00
|
|
|
move a1, s2
|
2015-01-29 10:04:08 +00:00
|
|
|
PTR_LA t9, board_init_r
|
2008-04-17 14:35:13 +00:00
|
|
|
jr t9
|
2014-11-20 22:55:32 +00:00
|
|
|
move ra, zero
|
2003-03-27 12:09:35 +00:00
|
|
|
|
2015-12-19 19:20:45 +00:00
|
|
|
END(relocate_code)
|