2003-03-27 12:09:35 +00:00
|
|
|
/*
|
|
|
|
* Startup Code for MIPS32 CPU-core
|
|
|
|
*
|
|
|
|
* Copyright (c) 2003 Wolfgang Denk <wd@denx.de>
|
|
|
|
*
|
|
|
|
* See file CREDITS for list of people who contributed to this
|
|
|
|
* project.
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License as
|
|
|
|
* published by the Free Software Foundation; either version 2 of
|
|
|
|
* the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
|
|
|
|
* MA 02111-1307 USA
|
|
|
|
*/
|
|
|
|
|
2010-10-26 12:34:52 +00:00
|
|
|
#include <asm-offsets.h>
|
2003-03-27 12:09:35 +00:00
|
|
|
#include <config.h>
|
|
|
|
#include <asm/regdef.h>
|
|
|
|
#include <asm/mipsregs.h>
|
|
|
|
|
2011-07-27 11:22:38 +00:00
|
|
|
#ifndef CONFIG_SYS_MIPS_CACHE_MODE
|
|
|
|
#define CONFIG_SYS_MIPS_CACHE_MODE CONF_CM_CACHABLE_NONCOHERENT
|
|
|
|
#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
|
|
|
|
|
|
|
|
.globl _start
|
|
|
|
.text
|
|
|
|
_start:
|
2013-02-12 21:22:12 +00:00
|
|
|
/* U-boot entry point */
|
|
|
|
b reset
|
|
|
|
nop
|
|
|
|
|
|
|
|
.org 0x10
|
2011-07-27 11:22:37 +00:00
|
|
|
#ifdef CONFIG_SYS_XWAY_EBU_BOOTCFG
|
|
|
|
/*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
.word CONFIG_SYS_XWAY_EBU_BOOTCFG
|
2013-02-12 21:22:12 +00:00
|
|
|
.word 0x0
|
2003-03-27 12:09:35 +00:00
|
|
|
#endif
|
2003-06-27 21:31:46 +00:00
|
|
|
|
2013-02-12 21:22:12 +00:00
|
|
|
.org 0x200
|
|
|
|
/* TLB refill, 32 bit task */
|
|
|
|
1: b 1b
|
|
|
|
nop
|
|
|
|
|
|
|
|
.org 0x280
|
|
|
|
/* XTLB refill, 64 bit task */
|
|
|
|
1: b 1b
|
|
|
|
nop
|
|
|
|
|
|
|
|
.org 0x300
|
|
|
|
/* Cache error exception */
|
|
|
|
1: b 1b
|
|
|
|
nop
|
|
|
|
|
|
|
|
.org 0x380
|
|
|
|
/* General exception */
|
|
|
|
1: b 1b
|
|
|
|
nop
|
|
|
|
|
|
|
|
.org 0x400
|
|
|
|
/* Catch interrupt exceptions */
|
|
|
|
1: b 1b
|
|
|
|
nop
|
|
|
|
|
|
|
|
.org 0x480
|
|
|
|
/* EJTAG debug exception */
|
|
|
|
1: b 1b
|
|
|
|
nop
|
|
|
|
|
2003-03-27 12:09:35 +00:00
|
|
|
.align 4
|
|
|
|
reset:
|
|
|
|
|
2011-05-06 15:18:13 +00:00
|
|
|
/* Clear watch registers */
|
2003-03-27 12:09:35 +00:00
|
|
|
mtc0 zero, CP0_WATCHLO
|
|
|
|
mtc0 zero, CP0_WATCHHI
|
|
|
|
|
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
|
|
|
|
|
2013-02-12 21:22:12 +00:00
|
|
|
setup_c0_status 0 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
|
2003-03-27 12:09:35 +00:00
|
|
|
/* CONFIG0 register */
|
|
|
|
li t0, CONF_CM_UNCACHED
|
|
|
|
mtc0 t0, CP0_CONFIG
|
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
|
|
|
/* Initialize $gp */
|
2007-10-27 06:27:06 +00:00
|
|
|
bal 1f
|
2011-05-06 15:18:13 +00:00
|
|
|
nop
|
2007-10-21 01:55:36 +00:00
|
|
|
.word _gp
|
2007-10-27 06:27:06 +00:00
|
|
|
1:
|
2007-11-17 11:05:26 +00:00
|
|
|
lw gp, 0(ra)
|
2005-12-01 01:15:07 +00:00
|
|
|
|
2011-05-06 15:18:13 +00:00
|
|
|
#ifndef CONFIG_SKIP_LOWLEVEL_INIT
|
|
|
|
/* Initialize any external memory */
|
2007-10-27 06:27:06 +00:00
|
|
|
la t9, lowlevel_init
|
|
|
|
jalr t9
|
2011-05-06 15:18:13 +00:00
|
|
|
nop
|
2003-03-27 12:09:35 +00:00
|
|
|
|
2011-05-06 15:18:13 +00:00
|
|
|
/* Initialize caches... */
|
2007-10-27 06:27:06 +00:00
|
|
|
la t9, mips_cache_reset
|
|
|
|
jalr t9
|
2011-05-06 15:18:13 +00:00
|
|
|
nop
|
2003-03-27 12:09:35 +00:00
|
|
|
|
2011-05-06 15:18:13 +00:00
|
|
|
/* ... and enable them */
|
2011-07-27 11:22:38 +00:00
|
|
|
li t0, CONFIG_SYS_MIPS_CACHE_MODE
|
2003-03-27 12:09:35 +00:00
|
|
|
mtc0 t0, CP0_CONFIG
|
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 */
|
2013-01-24 06:27:52 +00:00
|
|
|
li sp, CONFIG_SYS_SDRAM_BASE + CONFIG_SYS_INIT_SP_OFFSET
|
2003-03-27 12:09:35 +00:00
|
|
|
|
|
|
|
la t9, board_init_f
|
2008-04-17 14:35:13 +00:00
|
|
|
jr t9
|
2011-05-06 15:18:13 +00:00
|
|
|
nop
|
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
|
|
|
|
*/
|
|
|
|
.globl relocate_code
|
|
|
|
.ent relocate_code
|
|
|
|
relocate_code:
|
2011-05-06 15:18:13 +00:00
|
|
|
move sp, a0 # set new stack pointer
|
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
|
|
|
|
|
2008-10-16 13:01:15 +00:00
|
|
|
li t0, CONFIG_SYS_MONITOR_BASE
|
2013-01-24 06:27:54 +00:00
|
|
|
sub s1, s2, t0 # s1 <-- relocation offset
|
|
|
|
|
2003-07-24 23:38:38 +00:00
|
|
|
la t3, in_ram
|
2011-05-06 15:18:13 +00:00
|
|
|
lw t2, -12(t3) # t2 <-- uboot_end_data
|
2003-07-24 23:38:38 +00:00
|
|
|
move t1, a2
|
|
|
|
|
2013-01-24 06:27:54 +00:00
|
|
|
add gp, s1 # adjust gp
|
2003-06-27 21:31:46 +00:00
|
|
|
|
2003-03-27 12:09:35 +00:00
|
|
|
/*
|
|
|
|
* t0 = source address
|
|
|
|
* t1 = target address
|
|
|
|
* t2 = source end address
|
|
|
|
*/
|
|
|
|
1:
|
|
|
|
lw t3, 0(t0)
|
|
|
|
sw t3, 0(t1)
|
|
|
|
addu t0, 4
|
2013-01-24 06:27:51 +00:00
|
|
|
blt t0, t2, 1b
|
2011-05-06 15:18:13 +00:00
|
|
|
addu t1, 4
|
2003-03-27 12:09:35 +00:00
|
|
|
|
2011-05-06 15:18:13 +00:00
|
|
|
/* If caches were enabled, we would have to flush them here. */
|
2013-01-24 06:27:55 +00:00
|
|
|
sub a1, t1, s2 # a1 <-- size
|
2008-11-18 15:36:12 +00:00
|
|
|
la t9, flush_cache
|
|
|
|
jalr t9
|
2013-01-24 06:27:55 +00:00
|
|
|
move a0, s2 # a0 <-- destination address
|
2008-11-18 15:36:12 +00:00
|
|
|
|
2011-05-06 15:18:13 +00:00
|
|
|
/* Jump to where we've relocated ourselves */
|
2008-11-18 15:36:12 +00:00
|
|
|
addi t0, s2, in_ram - _start
|
2008-04-17 14:35:13 +00:00
|
|
|
jr t0
|
2011-05-06 15:18:13 +00:00
|
|
|
nop
|
2003-03-27 12:09:35 +00:00
|
|
|
|
2008-05-05 11:04:00 +00:00
|
|
|
.word _GLOBAL_OFFSET_TABLE_
|
2003-03-27 12:09:35 +00:00
|
|
|
.word uboot_end_data
|
|
|
|
.word uboot_end
|
|
|
|
.word num_got_entries
|
|
|
|
|
|
|
|
in_ram:
|
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
|
|
|
*/
|
2011-05-06 15:18:13 +00:00
|
|
|
lw t3, -4(t0) # t3 <-- num_got_entries
|
|
|
|
lw t4, -16(t0) # t4 <-- _GLOBAL_OFFSET_TABLE_
|
2013-01-30 04:56:37 +00:00
|
|
|
add t4, s1 # t4 now holds relocated _G_O_T_
|
2011-05-06 15:18:13 +00:00
|
|
|
addi t4, t4, 8 # skipping first two entries
|
2003-03-27 12:09:35 +00:00
|
|
|
li t2, 2
|
|
|
|
1:
|
|
|
|
lw t1, 0(t4)
|
|
|
|
beqz t1, 2f
|
2011-05-06 15:18:13 +00:00
|
|
|
add t1, s1
|
2003-03-27 12:09:35 +00:00
|
|
|
sw t1, 0(t4)
|
|
|
|
2:
|
|
|
|
addi t2, 1
|
|
|
|
blt t2, t3, 1b
|
2011-05-06 15:18:13 +00:00
|
|
|
addi t4, 4
|
2003-03-27 12:09:35 +00:00
|
|
|
|
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.
|
|
|
|
*/
|
|
|
|
la t1, __bss_start # t1 <-- __bss_start
|
|
|
|
la t2, __bss_end # t2 <-- __bss_end
|
2003-03-27 12:09:35 +00:00
|
|
|
|
2007-10-27 06:27:06 +00:00
|
|
|
1:
|
2013-02-12 21:22:13 +00:00
|
|
|
sw zero, 0(t1)
|
|
|
|
blt t1, t2, 1b
|
|
|
|
addi t1, 4
|
2003-06-27 21:31:46 +00:00
|
|
|
|
2011-05-06 15:18:13 +00:00
|
|
|
move a0, s0 # a0 <-- gd
|
2003-03-27 12:09:35 +00:00
|
|
|
la t9, board_init_r
|
2008-04-17 14:35:13 +00:00
|
|
|
jr t9
|
2011-05-06 15:18:13 +00:00
|
|
|
move a1, s2
|
2003-03-27 12:09:35 +00:00
|
|
|
|
|
|
|
.end relocate_code
|