blob: 8aceceb56a37cdf1d3d26c1561b0f7961383b73c [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Ying Zhang28027d72013-09-06 17:30:56 +08002/*
3 * Copyright 2013 Freescale Semiconductor, Inc.
Ying Zhang28027d72013-09-06 17:30:56 +08004 */
5
6#include <common.h>
Simon Glass85d65312019-12-28 10:44:58 -07007#include <clock_legacy.h>
Simon Glassa73bda42015-11-08 23:47:45 -07008#include <console.h>
Simon Glass79fd2142019-08-01 09:46:43 -06009#include <env.h>
Simon Glass9d1f6192019-08-02 09:44:25 -060010#include <env_internal.h>
Simon Glass284f71b2019-12-28 10:44:45 -070011#include <init.h>
Ying Zhang28027d72013-09-06 17:30:56 +080012#include <ns16550.h>
13#include <malloc.h>
14#include <mmc.h>
15#include <nand.h>
16#include <i2c.h>
17#include <fsl_esdhc.h>
Ying Zhangf74fd4e2013-09-06 17:30:57 +080018#include <spi_flash.h>
Simon Glassdd8e2242016-09-24 18:20:10 -060019#include "../common/spl.h"
Ying Zhang28027d72013-09-06 17:30:56 +080020
21DECLARE_GLOBAL_DATA_PTR;
22
York Sun863e8d82014-02-11 11:57:26 -080023phys_size_t get_effective_memsize(void)
Ying Zhang28027d72013-09-06 17:30:56 +080024{
25 return CONFIG_SYS_L2_SIZE;
26}
27
28void 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
Ying Zhangf74fd4e2013-09-06 17:30:57 +080043#ifdef CONFIG_SPL_SPI_BOOT
44 clrbits_be32(&gur->pmuxcr, MPC85xx_PMUXCR_SD_DATA);
45#endif
46
Ying Zhang28027d72013-09-06 17:30:56 +080047 /* 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");
Ying Zhangf74fd4e2013-09-06 17:30:57 +080057#elif defined(CONFIG_SPL_SPI_BOOT)
58 puts("\nSPI Flash boot...\n");
Ying Zhang28027d72013-09-06 17:30:56 +080059#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
68void 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;
Masahiro Yamadaf7ed78b2020-06-26 15:13:33 +090072 struct bd_info *bd;
Ying Zhang28027d72013-09-06 17:30:56 +080073
74 memset(gd, 0, sizeof(gd_t));
Masahiro Yamadaf7ed78b2020-06-26 15:13:33 +090075 bd = (struct bd_info *)(CONFIG_SPL_GD_ADDR + sizeof(gd_t));
76 memset(bd, 0, sizeof(struct bd_info));
Ying Zhang28027d72013-09-06 17:30:56 +080077 gd->bd = bd;
Ying Zhang28027d72013-09-06 17:30:56 +080078
Simon Glass302445a2017-01-23 13:31:22 -070079 arch_cpu_init();
Ying Zhang28027d72013-09-06 17:30:56 +080080 get_clocks();
81 mem_malloc_init(CONFIG_SPL_RELOC_MALLOC_ADDR,
82 CONFIG_SPL_RELOC_MALLOC_SIZE);
Sumit Garg2ff056b2016-05-25 12:41:48 -040083 gd->flags |= GD_FLG_FULL_MALLOC_INIT;
Ying Zhang28027d72013-09-06 17:30:56 +080084
Ying Zhangb8b404d2013-09-06 17:30:58 +080085#ifndef CONFIG_SPL_NAND_BOOT
Ying Zhang28027d72013-09-06 17:30:56 +080086 env_init();
Ying Zhangb8b404d2013-09-06 17:30:58 +080087#endif
Ying Zhang28027d72013-09-06 17:30:56 +080088#ifdef CONFIG_SPL_MMC_BOOT
89 mmc_initialize(bd);
90#endif
91 /* relocate environment function pointers etc. */
Ying Zhangb8b404d2013-09-06 17:30:58 +080092#ifdef CONFIG_SPL_NAND_BOOT
93 nand_spl_load_image(CONFIG_ENV_OFFSET, CONFIG_ENV_SIZE,
Tom Rini5cd7ece2019-11-18 20:02:10 -050094 (uchar *)SPL_ENV_ADDR);
95 gd->env_addr = (ulong)(SPL_ENV_ADDR);
Simon Glass4bc2ad22017-08-03 12:21:56 -060096 gd->env_valid = ENV_VALID;
Ying Zhangb8b404d2013-09-06 17:30:58 +080097#else
Ying Zhang28027d72013-09-06 17:30:56 +080098 env_relocate();
Ying Zhangb8b404d2013-09-06 17:30:58 +080099#endif
Ying Zhang28027d72013-09-06 17:30:56 +0800100
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
Simon Glassd35f3382017-04-06 12:47:05 -0600107 dram_init();
Ying Zhangb8b404d2013-09-06 17:30:58 +0800108#ifdef CONFIG_SPL_NAND_BOOT
109 puts("Tertiary program loader running in sram...");
110#else
Ying Zhang28027d72013-09-06 17:30:56 +0800111 puts("Second program loader running in sram...\n");
Ying Zhangb8b404d2013-09-06 17:30:58 +0800112#endif
Ying Zhang28027d72013-09-06 17:30:56 +0800113
114#ifdef CONFIG_SPL_MMC_BOOT
115 mmc_boot();
Ying Zhangf74fd4e2013-09-06 17:30:57 +0800116#elif defined(CONFIG_SPL_SPI_BOOT)
Simon Glassdd8e2242016-09-24 18:20:10 -0600117 fsl_spi_boot();
Ying Zhangb8b404d2013-09-06 17:30:58 +0800118#elif defined(CONFIG_SPL_NAND_BOOT)
119 nand_boot();
Ying Zhang28027d72013-09-06 17:30:56 +0800120#endif
121}