mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-07 13:44:29 +00:00
21 lines
310 B
C
21 lines
310 B
C
|
// SPDX-License-Identifier: GPL-2.0+
|
||
|
/*
|
||
|
* Copyright 2018 NXP
|
||
|
*/
|
||
|
|
||
|
#include <common.h>
|
||
|
#include <fsl_ddr_sdram.h>
|
||
|
#include <fsl_ddr_dimm_params.h>
|
||
|
|
||
|
DECLARE_GLOBAL_DATA_PTR;
|
||
|
|
||
|
int fsl_initdram(void)
|
||
|
{
|
||
|
gd->ram_size = tfa_get_dram_size();
|
||
|
|
||
|
if (!gd->ram_size)
|
||
|
gd->ram_size = fsl_ddr_sdram_size();
|
||
|
|
||
|
return 0;
|
||
|
}
|