421c2d4b1fc9daff937d83e15871cd5f55501c59
[platform/kernel/u-boot.git] / board / freescale / c29xpcie / spl.c
1 // SPDX-License-Identifier: GPL-2.0+
2 /* Copyright 2013 Freescale Semiconductor, Inc.
3  */
4
5 #include <common.h>
6 #include <clock_legacy.h>
7 #include <console.h>
8 #include <env_internal.h>
9 #include <init.h>
10 #include <ns16550.h>
11 #include <malloc.h>
12 #include <mmc.h>
13 #include <nand.h>
14 #include <i2c.h>
15
16 DECLARE_GLOBAL_DATA_PTR;
17
18 phys_size_t get_effective_memsize(void)
19 {
20         return CONFIG_SYS_L2_SIZE;
21 }
22
23 void 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
45 void 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
58         arch_cpu_init();
59         get_clocks();
60         mem_malloc_init(CONFIG_SPL_RELOC_MALLOC_ADDR,
61                         CONFIG_SPL_RELOC_MALLOC_SIZE);
62         gd->flags |= GD_FLG_FULL_MALLOC_INIT;
63
64         /* relocate environment function pointers etc. */
65         nand_spl_load_image(CONFIG_ENV_OFFSET, CONFIG_ENV_SIZE,
66                             (uchar *)SPL_ENV_ADDR);
67         gd->env_addr  = (ulong)(SPL_ENV_ADDR);
68         gd->env_valid = ENV_VALID;
69
70         i2c_init_all();
71
72         dram_init();
73
74 #ifdef CONFIG_SPL_NAND_BOOT
75         puts("TPL\n");
76 #else
77         puts("SPL\n");
78 #endif
79
80         nand_boot();
81 }