2018-05-06 21:58:06 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
2014-12-17 07:50:36 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2014, Bin Meng <bmeng.cn@gmail.com>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <common.h>
|
2020-05-10 17:40:02 +00:00
|
|
|
#include <init.h>
|
2019-08-24 20:10:32 +00:00
|
|
|
#include <asm/fsp/fsp_support.h>
|
2014-12-17 07:50:36 +00:00
|
|
|
|
|
|
|
int dram_init(void)
|
|
|
|
{
|
2019-08-24 20:10:32 +00:00
|
|
|
int ret;
|
2014-12-17 07:50:36 +00:00
|
|
|
|
2019-08-24 20:10:32 +00:00
|
|
|
/* The FSP has already set up DRAM, so grab the info we need */
|
|
|
|
ret = fsp_scan_for_ram_size();
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
2014-12-17 07:50:36 +00:00
|
|
|
|
2019-12-07 04:42:07 +00:00
|
|
|
if (IS_ENABLED(CONFIG_ENABLE_MRC_CACHE)) {
|
|
|
|
struct mrc_output *mrc = &gd->arch.mrc[MRC_TYPE_NORMAL];
|
|
|
|
|
|
|
|
mrc->buf = fsp_get_nvs_data(gd->arch.hob_list, &mrc->len);
|
|
|
|
}
|
2015-10-12 04:37:42 +00:00
|
|
|
|
2014-12-17 07:50:36 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This function looks for the highest region of memory lower than 4GB which
|
|
|
|
* has enough space for U-Boot where U-Boot is aligned on a page boundary.
|
|
|
|
* It overrides the default implementation found elsewhere which simply
|
|
|
|
* picks the end of ram, wherever that may be. The location of the stack,
|
|
|
|
* the relocation address, and how far U-Boot is moved by relocation are
|
|
|
|
* set in the global data structure.
|
|
|
|
*/
|
|
|
|
ulong board_get_usable_ram_top(ulong total_size)
|
|
|
|
{
|
2014-12-17 07:50:49 +00:00
|
|
|
return fsp_get_usable_lowmem_top(gd->arch.hob_list);
|
2014-12-17 07:50:36 +00:00
|
|
|
}
|