Merge tag 'xilinx-for-v2021.01' of https://gitlab.denx.de/u-boot/custodians/u-boot...
[platform/kernel/u-boot.git] / board / freescale / p1_p2_rdb_pc / spl.c
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3  * Copyright 2013 Freescale Semiconductor, Inc.
4  */
5
6 #include <common.h>
7 #include <clock_legacy.h>
8 #include <console.h>
9 #include <env.h>
10 #include <env_internal.h>
11 #include <init.h>
12 #include <ns16550.h>
13 #include <malloc.h>
14 #include <mmc.h>
15 #include <nand.h>
16 #include <i2c.h>
17 #include <fsl_esdhc.h>
18 #include <spi_flash.h>
19 #include "../common/spl.h"
20
21 DECLARE_GLOBAL_DATA_PTR;
22
23 phys_size_t get_effective_memsize(void)
24 {
25         return CONFIG_SYS_L2_SIZE;
26 }
27
28 void board_init_f(ulong bootflag)
29 {
30         u32 plat_ratio, bus_clk;
31         ccsr_gur_t *gur = (void *)CONFIG_SYS_MPC85xx_GUTS_ADDR;
32
33         console_init_f();
34
35         /* Set pmuxcr to allow both i2c1 and i2c2 */
36         setbits_be32(&gur->pmuxcr, in_be32(&gur->pmuxcr) | 0x1000);
37         setbits_be32(&gur->pmuxcr,
38                      in_be32(&gur->pmuxcr) | MPC85xx_PMUXCR_SD_DATA);
39
40         /* Read back the register to synchronize the write. */
41         in_be32(&gur->pmuxcr);
42
43 #ifdef CONFIG_SPL_SPI_BOOT
44         clrbits_be32(&gur->pmuxcr, MPC85xx_PMUXCR_SD_DATA);
45 #endif
46
47         /* initialize selected port with appropriate baud rate */
48         plat_ratio = in_be32(&gur->porpllsr) & MPC85xx_PORPLLSR_PLAT_RATIO;
49         plat_ratio >>= 1;
50         bus_clk = CONFIG_SYS_CLK_FREQ * plat_ratio;
51         gd->bus_clk = bus_clk;
52
53         NS16550_init((NS16550_t)CONFIG_SYS_NS16550_COM1,
54                      bus_clk / 16 / CONFIG_BAUDRATE);
55 #ifdef CONFIG_SPL_MMC_BOOT
56         puts("\nSD boot...\n");
57 #elif defined(CONFIG_SPL_SPI_BOOT)
58         puts("\nSPI Flash boot...\n");
59 #endif
60
61         /* copy code to RAM and jump to it - this should not return */
62         /* NOTE - code has to be copied out of NAND buffer before
63          * other blocks can be read.
64          */
65         relocate_code(CONFIG_SPL_RELOC_STACK, 0, CONFIG_SPL_RELOC_TEXT_BASE);
66 }
67
68 void board_init_r(gd_t *gd, ulong dest_addr)
69 {
70         /* Pointer is writable since we allocated a register for it */
71         gd = (gd_t *)CONFIG_SPL_GD_ADDR;
72         struct bd_info *bd;
73
74         memset(gd, 0, sizeof(gd_t));
75         bd = (struct bd_info *)(CONFIG_SPL_GD_ADDR + sizeof(gd_t));
76         memset(bd, 0, sizeof(struct bd_info));
77         gd->bd = bd;
78
79         arch_cpu_init();
80         get_clocks();
81         mem_malloc_init(CONFIG_SPL_RELOC_MALLOC_ADDR,
82                         CONFIG_SPL_RELOC_MALLOC_SIZE);
83         gd->flags |= GD_FLG_FULL_MALLOC_INIT;
84
85 #ifndef CONFIG_SPL_NAND_BOOT
86         env_init();
87 #endif
88 #ifdef CONFIG_SPL_MMC_BOOT
89         mmc_initialize(bd);
90 #endif
91         /* relocate environment function pointers etc. */
92 #ifdef CONFIG_SPL_NAND_BOOT
93         nand_spl_load_image(CONFIG_ENV_OFFSET, CONFIG_ENV_SIZE,
94                             (uchar *)SPL_ENV_ADDR);
95         gd->env_addr  = (ulong)(SPL_ENV_ADDR);
96         gd->env_valid = ENV_VALID;
97 #else
98         env_relocate();
99 #endif
100
101 #ifdef CONFIG_SYS_I2C
102         i2c_init_all();
103 #else
104         i2c_init(CONFIG_SYS_I2C_SPEED, CONFIG_SYS_I2C_SLAVE);
105 #endif
106
107         dram_init();
108 #ifdef CONFIG_SPL_NAND_BOOT
109         puts("Tertiary program loader running in sram...");
110 #else
111         puts("Second program loader running in sram...\n");
112 #endif
113
114 #ifdef CONFIG_SPL_MMC_BOOT
115         mmc_boot();
116 #elif defined(CONFIG_SPL_SPI_BOOT)
117         fsl_spi_boot();
118 #elif defined(CONFIG_SPL_NAND_BOOT)
119         nand_boot();
120 #endif
121 }