blob: b07f481fbf9d25be2ecdda1437f098152dc30551 [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
Tom Rinidec7ea02024-05-20 13:35:03 -06006#include <config.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 Glass3ba929a2020-10-30 21:38:53 -060019#include <asm/global_data.h>
Simon Glassdd8e2242016-09-24 18:20:10 -060020#include "../common/spl.h"
Ying Zhang28027d72013-09-06 17:30:56 +080021
22DECLARE_GLOBAL_DATA_PTR;
23
York Sun863e8d82014-02-11 11:57:26 -080024phys_size_t get_effective_memsize(void)
Ying Zhang28027d72013-09-06 17:30:56 +080025{
26 return CONFIG_SYS_L2_SIZE;
27}
28
29void board_init_f(ulong bootflag)
30{
31 u32 plat_ratio, bus_clk;
Tom Rinid5c3bf22022-10-28 20:27:12 -040032 ccsr_gur_t *gur = (void *)CFG_SYS_MPC85xx_GUTS_ADDR;
Ying Zhang28027d72013-09-06 17:30:56 +080033
Pali Rohárfecba2e2022-08-01 15:31:43 +020034 /*
35 * Call board_early_init_f() as early as possible as it workarounds
36 * reboot loop due to broken CPLD state machine for reset line.
37 */
38 board_early_init_f();
39
Ying Zhang28027d72013-09-06 17:30:56 +080040 console_init_f();
41
42 /* Set pmuxcr to allow both i2c1 and i2c2 */
43 setbits_be32(&gur->pmuxcr, in_be32(&gur->pmuxcr) | 0x1000);
44 setbits_be32(&gur->pmuxcr,
45 in_be32(&gur->pmuxcr) | MPC85xx_PMUXCR_SD_DATA);
46
47 /* Read back the register to synchronize the write. */
48 in_be32(&gur->pmuxcr);
49
Ying Zhangf74fd4e2013-09-06 17:30:57 +080050#ifdef CONFIG_SPL_SPI_BOOT
51 clrbits_be32(&gur->pmuxcr, MPC85xx_PMUXCR_SD_DATA);
52#endif
53
Ying Zhang28027d72013-09-06 17:30:56 +080054 /* initialize selected port with appropriate baud rate */
55 plat_ratio = in_be32(&gur->porpllsr) & MPC85xx_PORPLLSR_PLAT_RATIO;
56 plat_ratio >>= 1;
Tom Rini8c70baa2021-12-14 13:36:40 -050057 bus_clk = get_board_sys_clk() * plat_ratio;
Ying Zhang28027d72013-09-06 17:30:56 +080058 gd->bus_clk = bus_clk;
59
Tom Rinidf6a2152022-11-16 13:10:28 -050060 ns16550_init((struct ns16550 *)CFG_SYS_NS16550_COM1,
Ying Zhang28027d72013-09-06 17:30:56 +080061 bus_clk / 16 / CONFIG_BAUDRATE);
62#ifdef CONFIG_SPL_MMC_BOOT
63 puts("\nSD boot...\n");
Ying Zhangf74fd4e2013-09-06 17:30:57 +080064#elif defined(CONFIG_SPL_SPI_BOOT)
65 puts("\nSPI Flash boot...\n");
Ying Zhang28027d72013-09-06 17:30:56 +080066#endif
67
68 /* copy code to RAM and jump to it - this should not return */
69 /* NOTE - code has to be copied out of NAND buffer before
70 * other blocks can be read.
71 */
Tom Rini6de36a72022-05-26 16:59:30 -040072 relocate_code(CONFIG_VAL(RELOC_STACK), 0, CONFIG_SPL_RELOC_TEXT_BASE);
Ying Zhang28027d72013-09-06 17:30:56 +080073}
74
75void board_init_r(gd_t *gd, ulong dest_addr)
76{
77 /* Pointer is writable since we allocated a register for it */
Tom Rinid75a7792022-05-27 16:19:05 -040078 gd = (gd_t *)CONFIG_VAL(GD_ADDR);
Masahiro Yamadaf7ed78b2020-06-26 15:13:33 +090079 struct bd_info *bd;
Ying Zhang28027d72013-09-06 17:30:56 +080080
81 memset(gd, 0, sizeof(gd_t));
Tom Rinid75a7792022-05-27 16:19:05 -040082 bd = (struct bd_info *)(CONFIG_VAL(GD_ADDR) + sizeof(gd_t));
Masahiro Yamadaf7ed78b2020-06-26 15:13:33 +090083 memset(bd, 0, sizeof(struct bd_info));
Ying Zhang28027d72013-09-06 17:30:56 +080084 gd->bd = bd;
Ying Zhang28027d72013-09-06 17:30:56 +080085
Simon Glass302445a2017-01-23 13:31:22 -070086 arch_cpu_init();
Ying Zhang28027d72013-09-06 17:30:56 +080087 get_clocks();
Tom Rini6de36a72022-05-26 16:59:30 -040088 mem_malloc_init(CONFIG_VAL(RELOC_MALLOC_ADDR),
89 CONFIG_VAL(RELOC_MALLOC_SIZE));
Sumit Garg2ff056b2016-05-25 12:41:48 -040090 gd->flags |= GD_FLG_FULL_MALLOC_INIT;
Ying Zhang28027d72013-09-06 17:30:56 +080091
Pali Rohár7a2eb672022-04-03 00:24:27 +020092#ifdef CONFIG_SPL_ENV_SUPPORT
Ying Zhangb8b404d2013-09-06 17:30:58 +080093#ifndef CONFIG_SPL_NAND_BOOT
Ying Zhang28027d72013-09-06 17:30:56 +080094 env_init();
Ying Zhangb8b404d2013-09-06 17:30:58 +080095#endif
Pali Rohár7a2eb672022-04-03 00:24:27 +020096#endif
Ying Zhang28027d72013-09-06 17:30:56 +080097#ifdef CONFIG_SPL_MMC_BOOT
98 mmc_initialize(bd);
99#endif
Pali Rohár7a2eb672022-04-03 00:24:27 +0200100#ifdef CONFIG_SPL_ENV_SUPPORT
Ying Zhang28027d72013-09-06 17:30:56 +0800101 /* relocate environment function pointers etc. */
Ying Zhangb8b404d2013-09-06 17:30:58 +0800102#ifdef CONFIG_SPL_NAND_BOOT
103 nand_spl_load_image(CONFIG_ENV_OFFSET, CONFIG_ENV_SIZE,
Tom Rini5cd7ece2019-11-18 20:02:10 -0500104 (uchar *)SPL_ENV_ADDR);
105 gd->env_addr = (ulong)(SPL_ENV_ADDR);
Simon Glass4bc2ad22017-08-03 12:21:56 -0600106 gd->env_valid = ENV_VALID;
Ying Zhangb8b404d2013-09-06 17:30:58 +0800107#else
Ying Zhang28027d72013-09-06 17:30:56 +0800108 env_relocate();
Ying Zhangb8b404d2013-09-06 17:30:58 +0800109#endif
Pali Rohár7a2eb672022-04-03 00:24:27 +0200110#endif
Ying Zhang28027d72013-09-06 17:30:56 +0800111
Tom Rini52b2e262021-08-18 23:12:24 -0400112#if CONFIG_IS_ENABLED(SYS_I2C_LEGACY)
Ying Zhang28027d72013-09-06 17:30:56 +0800113 i2c_init_all();
114#else
115 i2c_init(CONFIG_SYS_I2C_SPEED, CONFIG_SYS_I2C_SLAVE);
116#endif
117
Simon Glassd35f3382017-04-06 12:47:05 -0600118 dram_init();
Ying Zhangb8b404d2013-09-06 17:30:58 +0800119#ifdef CONFIG_SPL_NAND_BOOT
120 puts("Tertiary program loader running in sram...");
121#else
Ying Zhang28027d72013-09-06 17:30:56 +0800122 puts("Second program loader running in sram...\n");
Ying Zhangb8b404d2013-09-06 17:30:58 +0800123#endif
Ying Zhang28027d72013-09-06 17:30:56 +0800124
125#ifdef CONFIG_SPL_MMC_BOOT
126 mmc_boot();
Ying Zhangf74fd4e2013-09-06 17:30:57 +0800127#elif defined(CONFIG_SPL_SPI_BOOT)
Simon Glassdd8e2242016-09-24 18:20:10 -0600128 fsl_spi_boot();
Ying Zhangb8b404d2013-09-06 17:30:58 +0800129#elif defined(CONFIG_SPL_NAND_BOOT)
130 nand_boot();
Ying Zhang28027d72013-09-06 17:30:56 +0800131#endif
132}