2011-07-28 19:47:28 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2011 Freescale Semiconductor, Inc.
|
|
|
|
*
|
2013-07-08 07:37:19 +00:00
|
|
|
* SPDX-License-Identifier: GPL-2.0+
|
2011-07-28 19:47:28 +00:00
|
|
|
*/
|
|
|
|
#include <common.h>
|
|
|
|
#include <mpc85xx.h>
|
|
|
|
#include <asm/io.h>
|
|
|
|
#include <ns16550.h>
|
|
|
|
#include <nand.h>
|
|
|
|
#include <asm/mmu.h>
|
|
|
|
#include <asm/immap_85xx.h>
|
2013-09-30 16:22:09 +00:00
|
|
|
#include <fsl_ddr_sdram.h>
|
2011-07-28 19:47:28 +00:00
|
|
|
#include <asm/fsl_law.h>
|
2012-08-13 13:21:19 +00:00
|
|
|
#include <asm/global_data.h>
|
2011-07-28 19:47:28 +00:00
|
|
|
|
2012-08-13 13:21:19 +00:00
|
|
|
DECLARE_GLOBAL_DATA_PTR;
|
2011-07-28 19:47:28 +00:00
|
|
|
|
|
|
|
void board_init_f(ulong bootflag)
|
|
|
|
{
|
2013-04-16 07:58:12 +00:00
|
|
|
u32 plat_ratio;
|
2011-07-28 19:47:28 +00:00
|
|
|
ccsr_gur_t *gur = (void *)CONFIG_SYS_MPC85xx_GUTS_ADDR;
|
|
|
|
|
2014-01-24 07:50:09 +00:00
|
|
|
#if defined(CONFIG_SYS_NAND_BR_PRELIM) && defined(CONFIG_SYS_NAND_OR_PRELIM)
|
|
|
|
set_lbc_br(0, CONFIG_SYS_NAND_BR_PRELIM);
|
|
|
|
set_lbc_or(0, CONFIG_SYS_NAND_OR_PRELIM);
|
|
|
|
#endif
|
|
|
|
|
2011-07-28 19:47:28 +00:00
|
|
|
/* initialize selected port with appropriate baud rate */
|
|
|
|
plat_ratio = in_be32(&gur->porpllsr) & MPC85xx_PORPLLSR_PLAT_RATIO;
|
|
|
|
plat_ratio >>= 1;
|
2012-08-13 13:21:19 +00:00
|
|
|
gd->bus_clk = CONFIG_SYS_CLK_FREQ * plat_ratio;
|
2011-07-28 19:47:28 +00:00
|
|
|
|
|
|
|
NS16550_init((NS16550_t)CONFIG_SYS_NS16550_COM1,
|
2012-08-13 13:21:19 +00:00
|
|
|
gd->bus_clk / 16 / CONFIG_BAUDRATE);
|
2011-07-28 19:47:28 +00:00
|
|
|
|
|
|
|
puts("\nNAND boot... ");
|
|
|
|
|
|
|
|
/* copy code to RAM and jump to it - this should not return */
|
|
|
|
/* NOTE - code has to be copied out of NAND buffer before
|
|
|
|
* other blocks can be read.
|
|
|
|
*/
|
2013-04-16 07:58:12 +00:00
|
|
|
|
|
|
|
relocate_code(CONFIG_SPL_RELOC_STACK, 0, CONFIG_SPL_RELOC_TEXT_BASE);
|
2011-07-28 19:47:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void board_init_r(gd_t *gd, ulong dest_addr)
|
|
|
|
{
|
2014-01-24 07:50:09 +00:00
|
|
|
puts("\nSecond program loader running in sram...");
|
2011-07-28 19:47:28 +00:00
|
|
|
nand_boot();
|
|
|
|
}
|
|
|
|
|
|
|
|
void putc(char c)
|
|
|
|
{
|
|
|
|
if (c == '\n')
|
|
|
|
NS16550_putc((NS16550_t)CONFIG_SYS_NS16550_COM1, '\r');
|
|
|
|
|
|
|
|
NS16550_putc((NS16550_t)CONFIG_SYS_NS16550_COM1, c);
|
|
|
|
}
|
|
|
|
|
|
|
|
void puts(const char *str)
|
|
|
|
{
|
|
|
|
while (*str)
|
|
|
|
putc(*str++);
|
|
|
|
}
|