69d1449b070ca0a7e0de78b94a51b1ba70f233da
[platform/kernel/u-boot.git] / board / freescale / t4rdb / spl.c
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3  * Copyright 2015 Freescale Semiconductor, Inc.
4  *
5  * Author: Chunhe Lan <Chunhe.Lan@freescale.com>
6  */
7
8 #include <common.h>
9 #include <clock_legacy.h>
10 #include <console.h>
11 #include <env_internal.h>
12 #include <init.h>
13 #include <asm/global_data.h>
14 #include <asm/spl.h>
15 #include <malloc.h>
16 #include <ns16550.h>
17 #include <nand.h>
18 #include <mmc.h>
19 #include <fsl_esdhc.h>
20 #include <i2c.h>
21
22 #include "t4rdb.h"
23
24 #define FSL_CORENET_CCSR_PORSR1_RCW_MASK        0xFF800000
25
26 DECLARE_GLOBAL_DATA_PTR;
27
28 phys_size_t get_effective_memsize(void)
29 {
30         return CONFIG_SYS_L3_SIZE;
31 }
32
33 unsigned long get_board_sys_clk(void)
34 {
35         return CONFIG_SYS_CLK_FREQ;
36 }
37
38 void board_init_f(ulong bootflag)
39 {
40         u32 plat_ratio, sys_clk, ccb_clk;
41         ccsr_gur_t *gur = (void *)CONFIG_SYS_MPC85xx_GUTS_ADDR;
42
43         /* Memcpy existing GD at CONFIG_SPL_GD_ADDR */
44         memcpy((void *)CONFIG_SPL_GD_ADDR, (void *)gd, sizeof(gd_t));
45
46         /* Update GD pointer */
47         gd = (gd_t *)(CONFIG_SPL_GD_ADDR);
48
49         /* compiler optimization barrier needed for GCC >= 3.4 */
50         __asm__ __volatile__("" : : : "memory");
51
52         console_init_f();
53
54         /* initialize selected port with appropriate baud rate */
55         sys_clk = get_board_sys_clk();
56         plat_ratio = (in_be32(&gur->rcwsr[0]) >> 25) & 0x1f;
57         ccb_clk = sys_clk * plat_ratio / 2;
58
59         ns16550_init((struct ns16550 *)CONFIG_SYS_NS16550_COM1,
60                      ccb_clk / 16 / CONFIG_BAUDRATE);
61
62         puts("\nSD boot...\n");
63
64         relocate_code(CONFIG_SPL_RELOC_STACK, (gd_t *)CONFIG_SPL_GD_ADDR, 0x0);
65 }
66
67 void board_init_r(gd_t *gd, ulong dest_addr)
68 {
69         struct bd_info *bd;
70
71         bd = (struct bd_info *)(gd + sizeof(gd_t));
72         memset(bd, 0, sizeof(struct bd_info));
73         gd->bd = bd;
74
75         arch_cpu_init();
76         get_clocks();
77         mem_malloc_init(CONFIG_SPL_RELOC_MALLOC_ADDR,
78                         CONFIG_SPL_RELOC_MALLOC_SIZE);
79         gd->flags |= GD_FLG_FULL_MALLOC_INIT;
80
81         mmc_initialize(bd);
82         mmc_spl_load_image(CONFIG_ENV_OFFSET, CONFIG_ENV_SIZE,
83                            (uchar *)SPL_ENV_ADDR);
84
85         gd->env_addr  = (ulong)(SPL_ENV_ADDR);
86         gd->env_valid = ENV_VALID;
87
88         i2c_init_all();
89
90         dram_init();
91
92         mmc_boot();
93 }