spl.c (52c411805c090999f015df8bdf8016fb684746d0) spl.c (088454cde245b4d431ce0181be8b3cbceea059d6)
1/* Copyright 2013 Freescale Semiconductor, Inc.
2 *
3 * SPDX-License-Identifier: GPL-2.0+
4 */
5
6#include <common.h>
7#include <console.h>
8#include <asm/spl.h>

--- 94 unchanged lines hidden (view full) ---

103 gd->env_addr = (ulong)(CONFIG_ENV_ADDR);
104 gd->env_valid = 1;
105#endif
106
107 i2c_init_all();
108
109 puts("\n\n");
110
1/* Copyright 2013 Freescale Semiconductor, Inc.
2 *
3 * SPDX-License-Identifier: GPL-2.0+
4 */
5
6#include <common.h>
7#include <console.h>
8#include <asm/spl.h>

--- 94 unchanged lines hidden (view full) ---

103 gd->env_addr = (ulong)(CONFIG_ENV_ADDR);
104 gd->env_valid = 1;
105#endif
106
107 i2c_init_all();
108
109 puts("\n\n");
110
111 gd->ram_size = initdram();
111 initdram();
112
113#ifdef CONFIG_SPL_NAND_BOOT
114 nand_boot();
115#endif
116}
112
113#ifdef CONFIG_SPL_NAND_BOOT
114 nand_boot();
115#endif
116}