blob: dffacd0a84f1f6813b5afd3c57cdf517587f1e55 [file] [log] [blame]
Kever Yanga381bcf2016-07-19 21:16:59 +08001/*
2 * (C) Copyright 2016 Rockchip Electronics Co., Ltd
3 *
4 * SPDX-License-Identifier: GPL-2.0+
5 */
6#include <common.h>
7#include <asm/armv8/mmu.h>
8
9DECLARE_GLOBAL_DATA_PTR;
10
11int board_init(void)
12{
13 return 0;
14}
15
16int dram_init(void)
17{
18 gd->ram_size = 0x80000000;
19 return 0;
20}
21
22void dram_init_banksize(void)
23{
24 gd->bd->bi_dram[0].start = 0;
25 gd->bd->bi_dram[0].size = 0x80000000;
26}