blob: b9dbf81b3f89b0024a0c1c2bca0ee704bc456070 [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>
8#include <ns16550.h>
9#include <malloc.h>
10#include <mmc.h>
11#include <nand.h>
12#include <i2c.h>
13#include "../common/ngpixis.h"
14#include <fsl_esdhc.h>
Ying Zhang382ce7e2013-08-16 15:16:14 +080015#include <spi_flash.h>
Ying Zhang7c8eea52013-08-16 15:16:12 +080016
17DECLARE_GLOBAL_DATA_PTR;
18
19static const u32 sysclk_tbl[] = {
20 66666000, 7499900, 83332500, 8999900,
21 99999000, 11111000, 12499800, 13333200
22};
23
24ulong get_effective_memsize(void)
25{
26 return CONFIG_SYS_L2_SIZE;
27}
28
29void board_init_f(ulong bootflag)
30{
31 int px_spd;
32 u32 plat_ratio, sys_clk, bus_clk;
33 ccsr_gur_t *gur = (void *)CONFIG_SYS_MPC85xx_GUTS_ADDR;
34
35 console_init_f();
36
37 /* Set pmuxcr to allow both i2c1 and i2c2 */
38 setbits_be32(&gur->pmuxcr, in_be32(&gur->pmuxcr) | 0x1000);
39 setbits_be32(&gur->pmuxcr,
40 in_be32(&gur->pmuxcr) | MPC85xx_PMUXCR_SD_DATA);
41
Ying Zhang382ce7e2013-08-16 15:16:14 +080042#ifdef CONFIG_SPL_SPI_BOOT
43 /* Enable the SPI */
44 clrsetbits_8(&pixis->brdcfg0, PIXIS_ELBC_SPI_MASK, PIXIS_SPI);
45#endif
46
Ying Zhang7c8eea52013-08-16 15:16:12 +080047 /* Read back the register to synchronize the write. */
48 in_be32(&gur->pmuxcr);
49
50 /* initialize selected port with appropriate baud rate */
51 px_spd = in_8((unsigned char *)(PIXIS_BASE + PIXIS_SPD));
52 sys_clk = sysclk_tbl[px_spd & PIXIS_SPD_SYSCLK_MASK];
53 plat_ratio = in_be32(&gur->porpllsr) & MPC85xx_PORPLLSR_PLAT_RATIO;
54 bus_clk = sys_clk * plat_ratio / 2;
55
56 NS16550_init((NS16550_t)CONFIG_SYS_NS16550_COM1,
57 bus_clk / 16 / CONFIG_BAUDRATE);
58#ifdef CONFIG_SPL_MMC_BOOT
59 puts("\nSD boot...\n");
Ying Zhang382ce7e2013-08-16 15:16:14 +080060#elif defined(CONFIG_SPL_SPI_BOOT)
61 puts("\nSPI Flash boot...\n");
Ying Zhang7c8eea52013-08-16 15:16:12 +080062#endif
63
64 /* copy code to RAM and jump to it - this should not return */
65 /* NOTE - code has to be copied out of NAND buffer before
66 * other blocks can be read.
67 */
68 relocate_code(CONFIG_SPL_RELOC_STACK, 0, CONFIG_SPL_RELOC_TEXT_BASE);
69}
70
71void board_init_r(gd_t *gd, ulong dest_addr)
72{
73 /* Pointer is writable since we allocated a register for it */
74 gd = (gd_t *)CONFIG_SPL_GD_ADDR;
75 bd_t *bd;
76
77 memset(gd, 0, sizeof(gd_t));
78 bd = (bd_t *)(CONFIG_SPL_GD_ADDR + sizeof(gd_t));
79 memset(bd, 0, sizeof(bd_t));
80 gd->bd = bd;
81 bd->bi_memstart = CONFIG_SYS_INIT_L2_ADDR;
82 bd->bi_memsize = CONFIG_SYS_L2_SIZE;
83
84 probecpu();
85 get_clocks();
86 mem_malloc_init(CONFIG_SPL_RELOC_MALLOC_ADDR,
87 CONFIG_SPL_RELOC_MALLOC_SIZE);
Ying Zhang5d97fe22013-08-16 15:16:16 +080088#ifndef CONFIG_SPL_NAND_BOOT
Ying Zhang7c8eea52013-08-16 15:16:12 +080089 env_init();
Ying Zhang5d97fe22013-08-16 15:16:16 +080090#endif
Ying Zhang7c8eea52013-08-16 15:16:12 +080091#ifdef CONFIG_SPL_MMC_BOOT
92 mmc_initialize(bd);
93#endif
94 /* relocate environment function pointers etc. */
Ying Zhang5d97fe22013-08-16 15:16:16 +080095#ifdef CONFIG_SPL_NAND_BOOT
96 nand_spl_load_image(CONFIG_ENV_OFFSET, CONFIG_ENV_SIZE,
97 (uchar *)CONFIG_ENV_ADDR);
98
99 gd->env_addr = (ulong)(CONFIG_ENV_ADDR);
100 gd->env_valid = 1;
101#else
Ying Zhang7c8eea52013-08-16 15:16:12 +0800102 env_relocate();
Ying Zhang5d97fe22013-08-16 15:16:16 +0800103#endif
Ying Zhang7c8eea52013-08-16 15:16:12 +0800104
105 i2c_init(CONFIG_SYS_FSL_I2C_SPEED, CONFIG_SYS_I2C_SLAVE);
106
107 gd->ram_size = initdram(0);
Ying Zhang5d97fe22013-08-16 15:16:16 +0800108#ifdef CONFIG_SPL_NAND_BOOT
109 puts("Tertiary program loader running in sram...");
110#else
Ying Zhang7c8eea52013-08-16 15:16:12 +0800111 puts("Second program loader running in sram...\n");
Ying Zhang5d97fe22013-08-16 15:16:16 +0800112#endif
Ying Zhang7c8eea52013-08-16 15:16:12 +0800113
114#ifdef CONFIG_SPL_MMC_BOOT
115 mmc_boot();
Ying Zhang382ce7e2013-08-16 15:16:14 +0800116#elif defined(CONFIG_SPL_SPI_BOOT)
117 spi_boot();
Ying Zhang5d97fe22013-08-16 15:16:16 +0800118#elif defined(CONFIG_SPL_NAND_BOOT)
119 nand_boot();
Ying Zhang7c8eea52013-08-16 15:16:12 +0800120#endif
121}