blob: 3706e1ec5506ad447117438942a5e5e35dba21df [file] [log] [blame]
Peng Fanf9220172019-08-27 06:26:08 +00001// SPDX-License-Identifier: GPL-2.0+
2/*
3 * Copyright 2018 NXP
4 */
5
6#include <common.h>
7
8DECLARE_GLOBAL_DATA_PTR;
9
10int dram_init(void)
11{
12 gd->ram_size = PHYS_SDRAM_SIZE;
13
14 return 0;
15}
16
17int board_init(void)
18{
19 return 0;
20}
21
22int board_late_init(void)
23{
24#ifdef CONFIG_ENV_VARS_UBOOT_RUNTIME_CONFIG
25 env_set("board_name", "EVK");
26 env_set("board_rev", "iMX8MM");
27#endif
28 return 0;
29}