1
0
mirror of git://projects.qi-hardware.com/xburst-tools.git synced 2024-11-01 16:25:20 +02:00
xburst-tools/xbboot/target-stage1/stage1.c
Xiangfu Liu 7dc41fd855 renmae 4740 function end with _4740
Signed-off-by: Xiangfu Liu <xiangfu@sharism.cc>
2010-06-07 18:12:20 +08:00

53 lines
1.1 KiB
C

//
// Authors: Wolfgang Spraul <wolfgang@sharism.cc>
//
// 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
// 3 of the License, or (at your option) any later version.
//
#include "jz4740.h"
#include "serial.h"
#include "board-jz4740.h"
void load_args()
{
ARG_CPU_ID = 0x4740;
ARG_EXTAL = 12 * 1000000;
ARG_CPU_SPEED = 21 * ARG_EXTAL;
ARG_PHM_DIV = 3;
ARG_UART_BASE = UART0_BASE + 0 * UART_OFF;
UART_BASE = ARG_UART_BASE; // for ../target-common/serial.c
ARG_UART_BAUD = 57600;
ARG_BUS_WIDTH_16 = * (int *)0x80002014;
ARG_BANK_ADDR_2BIT = 1;
ARG_ROW_ADDR = 13;
ARG_COL_ADDR = 9;
}
void c_main(void)
{
load_args();
switch (ARG_CPU_ID) {
case 0x4740:
gpio_init_4740();
serial_init_4740();
pll_init_4740();
sdram_init_4740();
nand_init_4740();
break;
case 0x4760:
break;
default:
return;
}
serial_puts("stage 1 finished: GPIO, clocks, SDRAM, UART setup\n"
"now jump back to BOOT ROM...\n");
}