blob: 478f6734917c06641c53b86592c78a875f9234e9 [file] [log] [blame]
Jagan Tekie0142752018-05-07 11:21:34 +05301/*
2 * Copyright (C) 2018 Simone CIANNI <simone.cianni@bticino.it>
3 * Copyright (C) 2018 Raffaele RECALCATI <raffaele.recalcati@bticino.it>
4 * Copyright (C) 2018 Jagan Teki <jagan@amarulasolutions.com>
5 *
6 * SPDX-License-Identifier: GPL-2.0+
7 */
8
9#include <common.h>
10#include <asm/arch/sys_proto.h>
11
12DECLARE_GLOBAL_DATA_PTR;
13
14int board_init(void)
15{
16 /* Address of boot parameters */
17 gd->bd->bi_boot_params = PHYS_SDRAM + 0x100;
18
19 return 0;
20}
21
22int dram_init(void)
23{
24 gd->ram_size = imx_ddr_size();
25
26 return 0;
27}