update jz47xx branch code.
git-svn-id: https://rt-thread.googlecode.com/svn/trunk@891 bbd45198-f89e-11dd-88c7-29a3b14d5316
This commit is contained in:
parent
8dab825fbb
commit
144af8fcfe
|
@ -7,6 +7,7 @@
|
||||||
#include <rtthread.h>
|
#include <rtthread.h>
|
||||||
#include <rthw.h>
|
#include <rthw.h>
|
||||||
#include "../common/exception.h"
|
#include "../common/exception.h"
|
||||||
|
#include "../common/mipsregs.h"
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @addtogroup Jz47xx
|
* @addtogroup Jz47xx
|
||||||
|
@ -35,9 +36,16 @@ exception_func_t rt_set_except_vector(int n, exception_func_t func)
|
||||||
return old_handler;
|
return old_handler;
|
||||||
}
|
}
|
||||||
|
|
||||||
void tlbmiss_handle(rt_uint32_t epc)
|
void tlb_refill_handler(void)
|
||||||
{
|
{
|
||||||
rt_kprintf("tlb-miss happens, epc: 0x%08x\n", epc);
|
rt_kprintf("tlb-miss happens, epc: 0x%08x\n", read_c0_epc());
|
||||||
|
rt_hw_cpu_shutdown();
|
||||||
|
}
|
||||||
|
|
||||||
|
void cache_error_handler(void)
|
||||||
|
{
|
||||||
|
rt_kprintf("cache exception happens, epc: 0x%08x\n", read_c0_epc());
|
||||||
|
rt_hw_cpu_shutdown();
|
||||||
}
|
}
|
||||||
|
|
||||||
static void unhandled_exception_handle(pt_regs_t *regs)
|
static void unhandled_exception_handle(pt_regs_t *regs)
|
||||||
|
|
|
@ -3,7 +3,9 @@
|
||||||
* Change Logs:
|
* Change Logs:
|
||||||
* Date Author Notes
|
* Date Author Notes
|
||||||
* 2010-05-17 swkyer first version
|
* 2010-05-17 swkyer first version
|
||||||
|
* 2010-09-04 bernard porting to Jz47xx
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "../common/mips.inc"
|
#include "../common/mips.inc"
|
||||||
#include "../common/stackframe.h"
|
#include "../common/stackframe.h"
|
||||||
#include "jz47xx.h"
|
#include "jz47xx.h"
|
||||||
|
@ -11,33 +13,73 @@
|
||||||
.section ".start", "ax"
|
.section ".start", "ax"
|
||||||
.set noreorder
|
.set noreorder
|
||||||
|
|
||||||
.extern sys_exception_handlers
|
/* the program entry */
|
||||||
.extern tlbmiss_handle
|
.globl _start
|
||||||
|
_start:
|
||||||
.globl _entry
|
|
||||||
/* exception entry */
|
|
||||||
_entry:
|
|
||||||
.org 0x0
|
|
||||||
.set noreorder
|
.set noreorder
|
||||||
mfc0 t0, $14
|
la ra, _start
|
||||||
jal tlbmiss_handle
|
|
||||||
move a0, t0
|
/* init cp0 registers. */
|
||||||
j _sys_dead /* TLB Miss, should never happen */
|
li t0, 0x0040FC00
|
||||||
|
mtc0 t0, CP0_STATUS
|
||||||
|
|
||||||
|
li t1, 0x00800000
|
||||||
|
mtc0 t1, CP0_CAUSE
|
||||||
|
|
||||||
|
/* setup stack pointer */
|
||||||
|
li sp, SYSTEM_STACK
|
||||||
|
la gp, _gp
|
||||||
|
|
||||||
|
/* init caches, assumes a 4way * 128set * 32byte I/D cache */
|
||||||
|
li t0, 3 /* enable cache for kseg0 accesses */
|
||||||
|
mtc0 t0, CP0_CONFIG /* CONFIG reg */
|
||||||
|
la t0, 0x80000000 /* an idx op should use an unmappable address */
|
||||||
|
ori t1, t0, 0x4000 /* 16kB cache */
|
||||||
|
mtc0 zero, CP0_TAGLO /* TAGLO reg */
|
||||||
|
mtc0 zero, CP0_TAGHI /* TAGHI reg */
|
||||||
|
|
||||||
|
_cache_loop:
|
||||||
|
cache 0x8, 0(t0) /* index store icache tag */
|
||||||
|
cache 0x9, 0(t0) /* index store dcache tag */
|
||||||
|
bne t0, t1, _cache_loop
|
||||||
|
addiu t0, t0, 0x20 /* 32 bytes per cache line */
|
||||||
|
nop
|
||||||
|
|
||||||
|
/* invalidate BTB */
|
||||||
|
mfc0 t0, CP0_CONFIG
|
||||||
|
nop
|
||||||
|
ori t0, 2
|
||||||
|
mtc0 t0, CP0_CONFIG
|
||||||
|
nop
|
||||||
|
|
||||||
|
/* copy IRAM section */
|
||||||
|
la t0, _iramcopy
|
||||||
|
la t1, _iramstart
|
||||||
|
la t2, _iramend
|
||||||
|
_iram_loop:
|
||||||
|
lw t3, 0(t0)
|
||||||
|
sw t3, 0(t1)
|
||||||
|
addiu t1, 4
|
||||||
|
bne t1, t2, _iram_loop
|
||||||
|
addiu t0, 4
|
||||||
|
|
||||||
|
/* clear bss */
|
||||||
|
la t0, __bss_start
|
||||||
|
la t1, __bss_end
|
||||||
|
_clr_bss_loop:
|
||||||
|
sw zero, 0(t0)
|
||||||
|
bne t0, t1, _clr_bss_loop
|
||||||
|
addiu t0, t0, 4
|
||||||
|
|
||||||
|
/* jump to RT-Thread RTOS */
|
||||||
|
jal rtthread_startup
|
||||||
|
nop
|
||||||
|
|
||||||
|
/* restart, never die */
|
||||||
|
j _start
|
||||||
nop
|
nop
|
||||||
.set reorder
|
.set reorder
|
||||||
|
|
||||||
/*
|
|
||||||
* void config_tick_timer(uint32_t perio)
|
|
||||||
*/
|
|
||||||
.globl config_tick_timer
|
|
||||||
config_tick_timer:
|
|
||||||
mfc0 t0, $9 /* count */
|
|
||||||
nop
|
|
||||||
addu t1, t0, a0
|
|
||||||
mtc0 t1, $11 /* compare */
|
|
||||||
jr ra
|
|
||||||
nop
|
|
||||||
|
|
||||||
.globl cp0_get_cause
|
.globl cp0_get_cause
|
||||||
cp0_get_cause:
|
cp0_get_cause:
|
||||||
mfc0 v0, CP0_CAUSE
|
mfc0 v0, CP0_CAUSE
|
||||||
|
@ -62,39 +104,35 @@ cp0_get_lo:
|
||||||
jr ra
|
jr ra
|
||||||
nop
|
nop
|
||||||
|
|
||||||
.org 0x100
|
.extern tlb_refill_handler
|
||||||
.set noreorder
|
.extern cache_error_handler
|
||||||
j _sys_dead /* cache error exception handle */
|
|
||||||
|
/* Exception Handler */
|
||||||
|
/* 0x0 - TLB refill handler */
|
||||||
|
.section .vectors.1, "ax", %progbits
|
||||||
|
j tlb_refill_handler
|
||||||
nop
|
nop
|
||||||
.set reorder
|
|
||||||
|
/* 0x100 - Cache error handler */
|
||||||
|
.section .vectors.2, "ax", %progbits
|
||||||
.globl disable_cp0_counter
|
j cache_error_handler
|
||||||
disable_cp0_counter:
|
|
||||||
.set noreorder
|
|
||||||
mfc0 t0, CP0_CAUSE
|
|
||||||
lui t1, 0x0800
|
|
||||||
or t0, t1
|
|
||||||
mtc0 t0, CP0_CAUSE
|
|
||||||
jr ra
|
|
||||||
nop
|
nop
|
||||||
.set reorder
|
|
||||||
|
/* 0x180 - Exception/Interrupt handler */
|
||||||
.globl enable_cp0_counter
|
.section .vectors.3, "ax", %progbits
|
||||||
enable_cp0_counter:
|
j _general_exception_handler
|
||||||
.set noreorder
|
|
||||||
mfc0 t0, CP0_CAUSE
|
|
||||||
lui t1, 0x0800
|
|
||||||
not t2, t1
|
|
||||||
and t0, t0, t2
|
|
||||||
mtc0 t0, CP0_CAUSE
|
|
||||||
jr ra
|
|
||||||
nop
|
nop
|
||||||
.set reorder
|
|
||||||
|
/* 0x200 - Special Exception Interrupt handler (when IV is set in CP0_CAUSE) */
|
||||||
|
.section .vectors.4, "ax", %progbits
|
||||||
|
j _irq_handler
|
||||||
|
nop
|
||||||
|
|
||||||
|
.section .vectors, "ax", %progbits
|
||||||
|
.extern mips_irq_handle
|
||||||
|
|
||||||
// general exception handle
|
/* general exception handler */
|
||||||
.org 0x180
|
_general_exception_handler:
|
||||||
_gen_exp_handle:
|
|
||||||
.set noreorder
|
.set noreorder
|
||||||
mfc0 k1, CP0_CAUSE
|
mfc0 k1, CP0_CAUSE
|
||||||
andi k1, k1, 0x7c
|
andi k1, k1, 0x7c
|
||||||
|
@ -104,74 +142,10 @@ _gen_exp_handle:
|
||||||
nop
|
nop
|
||||||
.set reorder
|
.set reorder
|
||||||
|
|
||||||
/* error happens */
|
/* interrupt handler */
|
||||||
_sys_dead:
|
_irq_handler:
|
||||||
.set noreorder
|
|
||||||
jal rt_hw_cpu_reset
|
|
||||||
nop
|
|
||||||
/* should never return here */
|
|
||||||
j _sys_dead
|
|
||||||
nop
|
|
||||||
.set reorder
|
|
||||||
|
|
||||||
|
|
||||||
.globl mips_irq_handle
|
|
||||||
/* interrupt handle */
|
|
||||||
.org 0x200
|
|
||||||
_irq_handle:
|
|
||||||
.set noreorder
|
.set noreorder
|
||||||
la k0, mips_irq_handle
|
la k0, mips_irq_handle
|
||||||
jr k0
|
jr k0
|
||||||
nop
|
nop
|
||||||
.set reorder
|
.set reorder
|
||||||
|
|
||||||
|
|
||||||
/* the REAL program entry */
|
|
||||||
.extern mips32_cfg_init
|
|
||||||
.extern r4k_cache_init
|
|
||||||
.extern install_default_execpt_handle
|
|
||||||
.globl _start
|
|
||||||
.org 0x400
|
|
||||||
_start:
|
|
||||||
.set noreorder
|
|
||||||
la ra, _start
|
|
||||||
|
|
||||||
/* init cp0 registers. */
|
|
||||||
li t0, 0x0040FC00
|
|
||||||
mtc0 t0, CP0_STATUS
|
|
||||||
|
|
||||||
li t1, 0x00800000
|
|
||||||
mtc0 t1, CP0_CAUSE
|
|
||||||
|
|
||||||
/* setup stack pointer */
|
|
||||||
li sp, SYSTEM_STACK
|
|
||||||
la gp, _gp
|
|
||||||
|
|
||||||
/* clear bss */
|
|
||||||
la t0, __bss_start
|
|
||||||
la t1, __bss_end
|
|
||||||
_clr_bss_loop:
|
|
||||||
sw zero, 0(t0)
|
|
||||||
bne t0, t1, _clr_bss_loop
|
|
||||||
addiu t0, t0, 4
|
|
||||||
|
|
||||||
/* read core config */
|
|
||||||
jal mips32_cfg_init
|
|
||||||
nop
|
|
||||||
|
|
||||||
/* initialize cache */
|
|
||||||
jal r4k_cache_init
|
|
||||||
nop
|
|
||||||
|
|
||||||
/* setup default exception handle */
|
|
||||||
jal install_default_execpt_handle
|
|
||||||
nop
|
|
||||||
|
|
||||||
/* jump to RT-Thread RTOS */
|
|
||||||
jal rtthread_startup
|
|
||||||
nop
|
|
||||||
|
|
||||||
/* restart, never die */
|
|
||||||
j _start
|
|
||||||
nop
|
|
||||||
.set reorder
|
|
||||||
|
|
Loading…
Reference in New Issue