blob: 8d0d850480212c881e0a8b3eb94518e7af8a27a7 [file] [log] [blame]
Ying Zhang28027d72013-09-06 17:30:56 +08001/*
2 * Copyright 2013 Freescale Semiconductor, Inc.
3 *
4 * SPDX-License-Identifier: GPL-2.0+
5 */
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 <fsl_esdhc.h>
Ying Zhangf74fd4e2013-09-06 17:30:57 +080014#include <spi_flash.h>
Ying Zhang28027d72013-09-06 17:30:56 +080015
16DECLARE_GLOBAL_DATA_PTR;
17
18static const u32 sysclk_tbl[] = {
19 66666000, 7499900, 83332500, 8999900,
20 99999000, 11111000, 12499800, 13333200
21};
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;
72 bd_t *bd;
73
74 memset(gd, 0, sizeof(gd_t));
75 bd = (bd_t *)(CONFIG_SPL_GD_ADDR + sizeof(gd_t));
76 memset(bd, 0, sizeof(bd_t));
77 gd->bd = bd;
78 bd->bi_memstart = CONFIG_SYS_INIT_L2_ADDR;
79 bd->bi_memsize = CONFIG_SYS_L2_SIZE;
80
81 probecpu();
82 get_clocks();
83 mem_malloc_init(CONFIG_SPL_RELOC_MALLOC_ADDR,
84 CONFIG_SPL_RELOC_MALLOC_SIZE);
85
Ying Zhangb8b404d2013-09-06 17:30:58 +080086#ifndef CONFIG_SPL_NAND_BOOT
Ying Zhang28027d72013-09-06 17:30:56 +080087 env_init();
Ying Zhangb8b404d2013-09-06 17:30:58 +080088#endif
Ying Zhang28027d72013-09-06 17:30:56 +080089#ifdef CONFIG_SPL_MMC_BOOT
90 mmc_initialize(bd);
91#endif
92 /* relocate environment function pointers etc. */
Ying Zhangb8b404d2013-09-06 17:30:58 +080093#ifdef CONFIG_SPL_NAND_BOOT
94 nand_spl_load_image(CONFIG_ENV_OFFSET, CONFIG_ENV_SIZE,
95 (uchar *)CONFIG_ENV_ADDR);
96 gd->env_addr = (ulong)(CONFIG_ENV_ADDR);
97 gd->env_valid = 1;
98#else
Ying Zhang28027d72013-09-06 17:30:56 +080099 env_relocate();
Ying Zhangb8b404d2013-09-06 17:30:58 +0800100#endif
Ying Zhang28027d72013-09-06 17:30:56 +0800101
102#ifdef CONFIG_SYS_I2C
103 i2c_init_all();
104#else
105 i2c_init(CONFIG_SYS_I2C_SPEED, CONFIG_SYS_I2C_SLAVE);
106#endif
107
108 gd->ram_size = initdram(0);
Ying Zhangb8b404d2013-09-06 17:30:58 +0800109#ifdef CONFIG_SPL_NAND_BOOT
110 puts("Tertiary program loader running in sram...");
111#else
Ying Zhang28027d72013-09-06 17:30:56 +0800112 puts("Second program loader running in sram...\n");
Ying Zhangb8b404d2013-09-06 17:30:58 +0800113#endif
Ying Zhang28027d72013-09-06 17:30:56 +0800114
115#ifdef CONFIG_SPL_MMC_BOOT
116 mmc_boot();
Ying Zhangf74fd4e2013-09-06 17:30:57 +0800117#elif defined(CONFIG_SPL_SPI_BOOT)
118 spi_boot();
Ying Zhangb8b404d2013-09-06 17:30:58 +0800119#elif defined(CONFIG_SPL_NAND_BOOT)
120 nand_boot();
Ying Zhang28027d72013-09-06 17:30:56 +0800121#endif
122}