mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-18 18:59:44 +00:00
27 lines
382 B
C
27 lines
382 B
C
|
/*
|
||
|
* (C) Copyright 2016 Rockchip Electronics Co., Ltd
|
||
|
*
|
||
|
* SPDX-License-Identifier: GPL-2.0+
|
||
|
*/
|
||
|
#include <common.h>
|
||
|
#include <asm/armv8/mmu.h>
|
||
|
|
||
|
DECLARE_GLOBAL_DATA_PTR;
|
||
|
|
||
|
int board_init(void)
|
||
|
{
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
int dram_init(void)
|
||
|
{
|
||
|
gd->ram_size = 0x80000000;
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
void dram_init_banksize(void)
|
||
|
{
|
||
|
gd->bd->bi_dram[0].start = 0;
|
||
|
gd->bd->bi_dram[0].size = 0x80000000;
|
||
|
}
|