mirror of
https://github.com/linux-sunxi/u-boot-sunxi.git
synced 2024-02-12 11:16:03 +08:00
17 lines
309 B
C
17 lines
309 B
C
![]() |
/*
|
||
|
* Copyright (C) 2015-2016 Wills Wang <wills.wang@live.com>
|
||
|
*
|
||
|
* SPDX-License-Identifier: GPL-2.0+
|
||
|
*/
|
||
|
|
||
|
#include <common.h>
|
||
|
#include <linux/sizes.h>
|
||
|
#include <asm/addrspace.h>
|
||
|
#include <mach/ddr.h>
|
||
|
|
||
|
phys_size_t initdram(int board_type)
|
||
|
{
|
||
|
ddr_tap_tuning();
|
||
|
return get_ram_size((void *)KSEG1, SZ_256M);
|
||
|
}
|