- startup calls board_init
git-svn-id: http://moon:8086/svn/mips@71 a8ebac50-d88d-4704-bea3-6648445a41b3
This commit is contained in:
@@ -6,6 +6,8 @@
|
|||||||
|
|
||||||
#include <stddef.h>
|
#include <stddef.h>
|
||||||
|
|
||||||
|
#include "board.h"
|
||||||
|
|
||||||
#include "../../uart.h"
|
#include "../../uart.h"
|
||||||
#include "../../console.h"
|
#include "../../console.h"
|
||||||
|
|
||||||
@@ -23,3 +25,22 @@ con_if_t con_if =
|
|||||||
{
|
{
|
||||||
con_if_entry, ARRAYSIZE(con_if_entry)
|
con_if_entry, ARRAYSIZE(con_if_entry)
|
||||||
};
|
};
|
||||||
|
|
||||||
|
void board_init(void)
|
||||||
|
{
|
||||||
|
uint32_t volatile *pITIM_ctrl = (uint32_t*)SYS_ITIM_CTRL;
|
||||||
|
|
||||||
|
// Disable timers
|
||||||
|
*pITIM_ctrl = 0;
|
||||||
|
|
||||||
|
// Initialzie syscall support
|
||||||
|
syscalls_init();
|
||||||
|
|
||||||
|
// Initialzie interrupt support
|
||||||
|
interrupt_init();
|
||||||
|
|
||||||
|
// Initalize debugger
|
||||||
|
dbg_init();
|
||||||
|
|
||||||
|
// Do some initializations here
|
||||||
|
}
|
||||||
@@ -6,6 +6,8 @@
|
|||||||
|
|
||||||
#include <stddef.h>
|
#include <stddef.h>
|
||||||
|
|
||||||
|
#include "board.h"
|
||||||
|
|
||||||
#include "../../mips_ps2.h"
|
#include "../../mips_ps2.h"
|
||||||
#include "../../screen.h"
|
#include "../../screen.h"
|
||||||
#include "../../uart.h"
|
#include "../../uart.h"
|
||||||
@@ -30,3 +32,31 @@ con_if_t con_if =
|
|||||||
{
|
{
|
||||||
con_if_entry, ARRAYSIZE(con_if_entry)
|
con_if_entry, ARRAYSIZE(con_if_entry)
|
||||||
};
|
};
|
||||||
|
|
||||||
|
void board_init(void)
|
||||||
|
{
|
||||||
|
uint32_t volatile *pITIM_ctrl = (uint32_t*)SYS_ITIM_CTRL;
|
||||||
|
|
||||||
|
// Screen_clr();
|
||||||
|
|
||||||
|
// Disable timers
|
||||||
|
*pITIM_ctrl = 0;
|
||||||
|
|
||||||
|
// Disable all VGA stuff
|
||||||
|
// *pVGA_ctrl = 0;
|
||||||
|
|
||||||
|
// Initialzie syscall support
|
||||||
|
syscalls_init();
|
||||||
|
|
||||||
|
// Initialzie interrupt support
|
||||||
|
interrupt_init();
|
||||||
|
|
||||||
|
// Initalize debugger
|
||||||
|
dbg_init();
|
||||||
|
|
||||||
|
// flush stdin
|
||||||
|
// flush(con_getPort(0));
|
||||||
|
|
||||||
|
// Do some initializations here
|
||||||
|
|
||||||
|
}
|
||||||
|
|||||||
@@ -9,37 +9,6 @@
|
|||||||
#include "libsys.h"
|
#include "libsys.h"
|
||||||
|
|
||||||
|
|
||||||
// ---------------------------------------------------------------------------------
|
|
||||||
// Types
|
|
||||||
// ---------------------------------------------------------------------------------
|
|
||||||
void libsys_init(void)
|
|
||||||
{
|
|
||||||
uint32_t volatile *pITIM_ctrl = (uint32_t*)SYS_ITIM_CTRL;
|
|
||||||
|
|
||||||
// Screen_clr();
|
|
||||||
|
|
||||||
// Disable timers
|
|
||||||
*pITIM_ctrl = 0;
|
|
||||||
|
|
||||||
// Disable all VGA stuff
|
|
||||||
// *pVGA_ctrl = 0;
|
|
||||||
|
|
||||||
// Initialzie syscall support
|
|
||||||
syscalls_init();
|
|
||||||
|
|
||||||
// Initialzie interrupt support
|
|
||||||
interrupt_init();
|
|
||||||
|
|
||||||
// Initalize debugger
|
|
||||||
dbg_init();
|
|
||||||
|
|
||||||
// flush stdin
|
|
||||||
// flush(con_getPort(0));
|
|
||||||
|
|
||||||
// Do some initializations here
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
#define CALC_BAUD(b) \
|
#define CALC_BAUD(b) \
|
||||||
((uint32_t)((float)CPU_FREQ_HZ/(16*b) + 0.5f) - 1);
|
((uint32_t)((float)CPU_FREQ_HZ/(16*b) + 0.5f) - 1);
|
||||||
|
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ argv: .word argv0
|
|||||||
.text
|
.text
|
||||||
.section .start, "ax"
|
.section .start, "ax"
|
||||||
.extern _init
|
.extern _init
|
||||||
.extern libsys_init
|
.extern board_init
|
||||||
.extern _exc_vect_start
|
.extern _exc_vect_start
|
||||||
.extern _xcpt_handler
|
.extern _xcpt_handler
|
||||||
.align 2
|
.align 2
|
||||||
@@ -51,8 +51,8 @@ $install: lw $v0, 0($t1)
|
|||||||
jalr $k0
|
jalr $k0
|
||||||
nop
|
nop
|
||||||
|
|
||||||
# Call libsys_init
|
# Call board_init
|
||||||
la $k0, libsys_init
|
la $k0, board_init
|
||||||
jalr $k0
|
jalr $k0
|
||||||
nop
|
nop
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user