blob: 04db767f9810468e67c2a95fc1a95038e7c7e1e0 [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>
Ying Zhang7c8eea52013-08-16 15:16:12 +08009#include <ns16550.h>
10#include <malloc.h>
11#include <mmc.h>
12#include <nand.h>
13#include <i2c.h>
14#include "../common/ngpixis.h"
15#include <fsl_esdhc.h>
Ying Zhang382ce7e2013-08-16 15:16:14 +080016#include <spi_flash.h>
Ying Zhang7c8eea52013-08-16 15:16:12 +080017
18DECLARE_GLOBAL_DATA_PTR;
19
20static const u32 sysclk_tbl[] = {
21 66666000, 7499900, 83332500, 8999900,
22 99999000, 11111000, 12499800, 13333200
23};
24
York Sune3866162014-02-11 11:57:26 -080025phys_size_t get_effective_memsize(void)
Ying Zhang7c8eea52013-08-16 15:16:12 +080026{
27 return CONFIG_SYS_L2_SIZE;
28}
29
30void board_init_f(ulong bootflag)
31{
32 int px_spd;
33 u32 plat_ratio, sys_clk, bus_clk;
34 ccsr_gur_t *gur = (void *)CONFIG_SYS_MPC85xx_GUTS_ADDR;
35
36 console_init_f();
37
38 /* Set pmuxcr to allow both i2c1 and i2c2 */
39 setbits_be32(&gur->pmuxcr, in_be32(&gur->pmuxcr) | 0x1000);
40 setbits_be32(&gur->pmuxcr,
41 in_be32(&gur->pmuxcr) | MPC85xx_PMUXCR_SD_DATA);
42
Ying Zhang382ce7e2013-08-16 15:16:14 +080043#ifdef CONFIG_SPL_SPI_BOOT
44 /* Enable the SPI */
45 clrsetbits_8(&pixis->brdcfg0, PIXIS_ELBC_SPI_MASK, PIXIS_SPI);
46#endif
47
Ying Zhang7c8eea52013-08-16 15:16:12 +080048 /* Read back the register to synchronize the write. */
49 in_be32(&gur->pmuxcr);
50
51 /* initialize selected port with appropriate baud rate */
52 px_spd = in_8((unsigned char *)(PIXIS_BASE + PIXIS_SPD));
53 sys_clk = sysclk_tbl[px_spd & PIXIS_SPD_SYSCLK_MASK];
54 plat_ratio = in_be32(&gur->porpllsr) & MPC85xx_PORPLLSR_PLAT_RATIO;
55 bus_clk = sys_clk * plat_ratio / 2;
56
57 NS16550_init((NS16550_t)CONFIG_SYS_NS16550_COM1,
58 bus_clk / 16 / CONFIG_BAUDRATE);
59#ifdef CONFIG_SPL_MMC_BOOT
60 puts("\nSD boot...\n");
Ying Zhang382ce7e2013-08-16 15:16:14 +080061#elif defined(CONFIG_SPL_SPI_BOOT)
62 puts("\nSPI Flash boot...\n");
Ying Zhang7c8eea52013-08-16 15:16:12 +080063#endif
64
65 /* copy code to RAM and jump to it - this should not return */
66 /* NOTE - code has to be copied out of NAND buffer before
67 * other blocks can be read.
68 */
69 relocate_code(CONFIG_SPL_RELOC_STACK, 0, CONFIG_SPL_RELOC_TEXT_BASE);
70}
71
72void board_init_r(gd_t *gd, ulong dest_addr)
73{
74 /* Pointer is writable since we allocated a register for it */
75 gd = (gd_t *)CONFIG_SPL_GD_ADDR;
76 bd_t *bd;
77
78 memset(gd, 0, sizeof(gd_t));
79 bd = (bd_t *)(CONFIG_SPL_GD_ADDR + sizeof(gd_t));
80 memset(bd, 0, sizeof(bd_t));
81 gd->bd = bd;
82 bd->bi_memstart = CONFIG_SYS_INIT_L2_ADDR;
83 bd->bi_memsize = CONFIG_SYS_L2_SIZE;
84
85 probecpu();
86 get_clocks();
87 mem_malloc_init(CONFIG_SPL_RELOC_MALLOC_ADDR,
88 CONFIG_SPL_RELOC_MALLOC_SIZE);
Sumit Garged4708a2016-05-25 12:41:48 -040089 gd->flags |= GD_FLG_FULL_MALLOC_INIT;
Ying Zhang5d97fe22013-08-16 15:16:16 +080090#ifndef CONFIG_SPL_NAND_BOOT
Ying Zhang7c8eea52013-08-16 15:16:12 +080091 env_init();
Ying Zhang5d97fe22013-08-16 15:16:16 +080092#endif
Ying Zhang7c8eea52013-08-16 15:16:12 +080093#ifdef CONFIG_SPL_MMC_BOOT
94 mmc_initialize(bd);
95#endif
96 /* relocate environment function pointers etc. */
Ying Zhang5d97fe22013-08-16 15:16:16 +080097#ifdef CONFIG_SPL_NAND_BOOT
98 nand_spl_load_image(CONFIG_ENV_OFFSET, CONFIG_ENV_SIZE,
99 (uchar *)CONFIG_ENV_ADDR);
100
101 gd->env_addr = (ulong)(CONFIG_ENV_ADDR);
102 gd->env_valid = 1;
103#else
Ying Zhang7c8eea52013-08-16 15:16:12 +0800104 env_relocate();
Ying Zhang5d97fe22013-08-16 15:16:16 +0800105#endif
Ying Zhang7c8eea52013-08-16 15:16:12 +0800106
Ying Zhang81b867a2013-09-04 17:03:45 +0800107#ifdef CONFIG_SYS_I2C
108 i2c_init_all();
109#else
110 i2c_init(CONFIG_SYS_I2C_SPEED, CONFIG_SYS_I2C_SLAVE);
111#endif
Ying Zhang7c8eea52013-08-16 15:16:12 +0800112
113 gd->ram_size = initdram(0);
Ying Zhang5d97fe22013-08-16 15:16:16 +0800114#ifdef CONFIG_SPL_NAND_BOOT
115 puts("Tertiary program loader running in sram...");
116#else
Ying Zhang7c8eea52013-08-16 15:16:12 +0800117 puts("Second program loader running in sram...\n");
Ying Zhang5d97fe22013-08-16 15:16:16 +0800118#endif
Ying Zhang7c8eea52013-08-16 15:16:12 +0800119
120#ifdef CONFIG_SPL_MMC_BOOT
121 mmc_boot();
Ying Zhang382ce7e2013-08-16 15:16:14 +0800122#elif defined(CONFIG_SPL_SPI_BOOT)
123 spi_boot();
Ying Zhang5d97fe22013-08-16 15:16:16 +0800124#elif defined(CONFIG_SPL_NAND_BOOT)
125 nand_boot();
Ying Zhang7c8eea52013-08-16 15:16:12 +0800126#endif
127}