blob: 421c2d4b1fc9daff937d83e15871cd5f55501c59 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Po Liu37d433d2014-01-10 10:10:59 +08002/* Copyright 2013 Freescale Semiconductor, Inc.
Po Liu37d433d2014-01-10 10:10:59 +08003 */
4
5#include <common.h>
Simon Glass85d65312019-12-28 10:44:58 -07006#include <clock_legacy.h>
Simon Glassa73bda42015-11-08 23:47:45 -07007#include <console.h>
Simon Glass9d1f6192019-08-02 09:44:25 -06008#include <env_internal.h>
Simon Glass284f71b2019-12-28 10:44:45 -07009#include <init.h>
Po Liu37d433d2014-01-10 10:10:59 +080010#include <ns16550.h>
11#include <malloc.h>
12#include <mmc.h>
13#include <nand.h>
14#include <i2c.h>
15
16DECLARE_GLOBAL_DATA_PTR;
17
York Sun863e8d82014-02-11 11:57:26 -080018phys_size_t get_effective_memsize(void)
Po Liu37d433d2014-01-10 10:10:59 +080019{
20 return CONFIG_SYS_L2_SIZE;
21}
22
23void board_init_f(ulong bootflag)
24{
25 u32 plat_ratio;
26 ccsr_gur_t *gur = (void *)CONFIG_SYS_MPC85xx_GUTS_ADDR;
27
28 console_init_f();
29
30 /* initialize selected port with appropriate baud rate */
31 plat_ratio = in_be32(&gur->porpllsr) & MPC85xx_PORPLLSR_PLAT_RATIO;
32 plat_ratio >>= 1;
33 gd->bus_clk = CONFIG_SYS_CLK_FREQ * plat_ratio;
34
35 NS16550_init((NS16550_t)CONFIG_SYS_NS16550_COM1,
36 gd->bus_clk / 16 / CONFIG_BAUDRATE);
37
38 /* copy code to RAM and jump to it - this should not return */
39 /* NOTE - code has to be copied out of NAND buffer before
40 * other blocks can be read.
41 */
42 relocate_code(CONFIG_SPL_RELOC_STACK, 0, CONFIG_SPL_RELOC_TEXT_BASE);
43}
44
45void board_init_r(gd_t *gd, ulong dest_addr)
46{
47 /* Pointer is writable since we allocated a register for it */
48 gd = (gd_t *)CONFIG_SPL_GD_ADDR;
49 bd_t *bd;
50
51 memset(gd, 0, sizeof(gd_t));
52 bd = (bd_t *)(CONFIG_SPL_GD_ADDR + sizeof(gd_t));
53 memset(bd, 0, sizeof(bd_t));
54 gd->bd = bd;
55 bd->bi_memstart = CONFIG_SYS_INIT_L2_ADDR;
56 bd->bi_memsize = CONFIG_SYS_L2_SIZE;
57
Simon Glass302445a2017-01-23 13:31:22 -070058 arch_cpu_init();
Po Liu37d433d2014-01-10 10:10:59 +080059 get_clocks();
60 mem_malloc_init(CONFIG_SPL_RELOC_MALLOC_ADDR,
61 CONFIG_SPL_RELOC_MALLOC_SIZE);
Sumit Garg2ff056b2016-05-25 12:41:48 -040062 gd->flags |= GD_FLG_FULL_MALLOC_INIT;
Po Liu37d433d2014-01-10 10:10:59 +080063
64 /* relocate environment function pointers etc. */
65 nand_spl_load_image(CONFIG_ENV_OFFSET, CONFIG_ENV_SIZE,
Tom Rini5cd7ece2019-11-18 20:02:10 -050066 (uchar *)SPL_ENV_ADDR);
67 gd->env_addr = (ulong)(SPL_ENV_ADDR);
Simon Glass4bc2ad22017-08-03 12:21:56 -060068 gd->env_valid = ENV_VALID;
Po Liu37d433d2014-01-10 10:10:59 +080069
70 i2c_init_all();
71
Simon Glassd35f3382017-04-06 12:47:05 -060072 dram_init();
Po Liu37d433d2014-01-10 10:10:59 +080073
74#ifdef CONFIG_SPL_NAND_BOOT
75 puts("TPL\n");
76#else
77 puts("SPL\n");
78#endif
79
80 nand_boot();
81}