blob: 94b357d446812b50673cb50333d9b8132c0514b6 [file] [log] [blame]
Ying Zhang7c8eea52013-08-16 15:16:12 +08001/*
2 * Copyright 2013 Freescale Semiconductor, Inc.
3 *
York Sunbf902562013-08-20 10:15:37 -07004 * SPDX-License-Identifier: GPL-2.0+
Ying Zhang7c8eea52013-08-16 15:16:12 +08005 */
6
7#include <common.h>
Simon Glass24b852a2015-11-08 23:47:45 -07008#include <console.h>
Simon Glass203e94f2017-08-03 12:21:56 -06009#include <environment.h>
Ying Zhang7c8eea52013-08-16 15:16:12 +080010#include <ns16550.h>
11#include <malloc.h>
12#include <mmc.h>
13#include <nand.h>
14#include <i2c.h>
15#include "../common/ngpixis.h"
16#include <fsl_esdhc.h>
Ying Zhang382ce7e2013-08-16 15:16:14 +080017#include <spi_flash.h>
Simon Glassea022a32016-09-24 18:20:10 -060018#include "../common/spl.h"
Ying Zhang7c8eea52013-08-16 15:16:12 +080019
20DECLARE_GLOBAL_DATA_PTR;
21
22static const u32 sysclk_tbl[] = {
23 66666000, 7499900, 83332500, 8999900,
24 99999000, 11111000, 12499800, 13333200
25};
26
York Sune3866162014-02-11 11:57:26 -080027phys_size_t get_effective_memsize(void)
Ying Zhang7c8eea52013-08-16 15:16:12 +080028{
29 return CONFIG_SYS_L2_SIZE;
30}
31
32void board_init_f(ulong bootflag)
33{
34 int px_spd;
35 u32 plat_ratio, sys_clk, bus_clk;
36 ccsr_gur_t *gur = (void *)CONFIG_SYS_MPC85xx_GUTS_ADDR;
37
38 console_init_f();
39
40 /* Set pmuxcr to allow both i2c1 and i2c2 */
41 setbits_be32(&gur->pmuxcr, in_be32(&gur->pmuxcr) | 0x1000);
42 setbits_be32(&gur->pmuxcr,
43 in_be32(&gur->pmuxcr) | MPC85xx_PMUXCR_SD_DATA);
44
Ying Zhang382ce7e2013-08-16 15:16:14 +080045#ifdef CONFIG_SPL_SPI_BOOT
46 /* Enable the SPI */
47 clrsetbits_8(&pixis->brdcfg0, PIXIS_ELBC_SPI_MASK, PIXIS_SPI);
48#endif
49
Ying Zhang7c8eea52013-08-16 15:16:12 +080050 /* Read back the register to synchronize the write. */
51 in_be32(&gur->pmuxcr);
52
53 /* initialize selected port with appropriate baud rate */
54 px_spd = in_8((unsigned char *)(PIXIS_BASE + PIXIS_SPD));
55 sys_clk = sysclk_tbl[px_spd & PIXIS_SPD_SYSCLK_MASK];
56 plat_ratio = in_be32(&gur->porpllsr) & MPC85xx_PORPLLSR_PLAT_RATIO;
57 bus_clk = sys_clk * plat_ratio / 2;
58
59 NS16550_init((NS16550_t)CONFIG_SYS_NS16550_COM1,
60 bus_clk / 16 / CONFIG_BAUDRATE);
61#ifdef CONFIG_SPL_MMC_BOOT
62 puts("\nSD boot...\n");
Ying Zhang382ce7e2013-08-16 15:16:14 +080063#elif defined(CONFIG_SPL_SPI_BOOT)
64 puts("\nSPI Flash boot...\n");
Ying Zhang7c8eea52013-08-16 15:16:12 +080065#endif
66
67 /* copy code to RAM and jump to it - this should not return */
68 /* NOTE - code has to be copied out of NAND buffer before
69 * other blocks can be read.
70 */
71 relocate_code(CONFIG_SPL_RELOC_STACK, 0, CONFIG_SPL_RELOC_TEXT_BASE);
72}
73
74void board_init_r(gd_t *gd, ulong dest_addr)
75{
76 /* Pointer is writable since we allocated a register for it */
77 gd = (gd_t *)CONFIG_SPL_GD_ADDR;
78 bd_t *bd;
79
80 memset(gd, 0, sizeof(gd_t));
81 bd = (bd_t *)(CONFIG_SPL_GD_ADDR + sizeof(gd_t));
82 memset(bd, 0, sizeof(bd_t));
83 gd->bd = bd;
84 bd->bi_memstart = CONFIG_SYS_INIT_L2_ADDR;
85 bd->bi_memsize = CONFIG_SYS_L2_SIZE;
86
Simon Glasscbcbf712017-01-23 13:31:22 -070087 arch_cpu_init();
Ying Zhang7c8eea52013-08-16 15:16:12 +080088 get_clocks();
89 mem_malloc_init(CONFIG_SPL_RELOC_MALLOC_ADDR,
90 CONFIG_SPL_RELOC_MALLOC_SIZE);
Sumit Garged4708a2016-05-25 12:41:48 -040091 gd->flags |= GD_FLG_FULL_MALLOC_INIT;
Ying Zhang5d97fe22013-08-16 15:16:16 +080092#ifndef CONFIG_SPL_NAND_BOOT
Ying Zhang7c8eea52013-08-16 15:16:12 +080093 env_init();
Ying Zhang5d97fe22013-08-16 15:16:16 +080094#endif
Ying Zhang7c8eea52013-08-16 15:16:12 +080095#ifdef CONFIG_SPL_MMC_BOOT
96 mmc_initialize(bd);
97#endif
98 /* relocate environment function pointers etc. */
Ying Zhang5d97fe22013-08-16 15:16:16 +080099#ifdef CONFIG_SPL_NAND_BOOT
100 nand_spl_load_image(CONFIG_ENV_OFFSET, CONFIG_ENV_SIZE,
101 (uchar *)CONFIG_ENV_ADDR);
102
103 gd->env_addr = (ulong)(CONFIG_ENV_ADDR);
Simon Glass203e94f2017-08-03 12:21:56 -0600104 gd->env_valid = ENV_VALID;
Ying Zhang5d97fe22013-08-16 15:16:16 +0800105#else
Ying Zhang7c8eea52013-08-16 15:16:12 +0800106 env_relocate();
Ying Zhang5d97fe22013-08-16 15:16:16 +0800107#endif
Ying Zhang7c8eea52013-08-16 15:16:12 +0800108
Ying Zhang81b867a2013-09-04 17:03:45 +0800109#ifdef CONFIG_SYS_I2C
110 i2c_init_all();
111#else
112 i2c_init(CONFIG_SYS_I2C_SPEED, CONFIG_SYS_I2C_SLAVE);
113#endif
Ying Zhang7c8eea52013-08-16 15:16:12 +0800114
Simon Glassf1683aa2017-04-06 12:47:05 -0600115 dram_init();
Ying Zhang5d97fe22013-08-16 15:16:16 +0800116#ifdef CONFIG_SPL_NAND_BOOT
117 puts("Tertiary program loader running in sram...");
118#else
Ying Zhang7c8eea52013-08-16 15:16:12 +0800119 puts("Second program loader running in sram...\n");
Ying Zhang5d97fe22013-08-16 15:16:16 +0800120#endif
Ying Zhang7c8eea52013-08-16 15:16:12 +0800121
122#ifdef CONFIG_SPL_MMC_BOOT
123 mmc_boot();
Ying Zhang382ce7e2013-08-16 15:16:14 +0800124#elif defined(CONFIG_SPL_SPI_BOOT)
Simon Glassea022a32016-09-24 18:20:10 -0600125 fsl_spi_boot();
Ying Zhang5d97fe22013-08-16 15:16:16 +0800126#elif defined(CONFIG_SPL_NAND_BOOT)
127 nand_boot();
Ying Zhang7c8eea52013-08-16 15:16:12 +0800128#endif
129}