blob: 5e19f13720f04b752b573bcb7af8a57e8c865f36 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Graeme Russa875dda2011-12-23 16:51:29 +11002/*
3 * (C) Copyright 2011
4 * Graeme Russ, <graeme.russ@gmail.com>
Graeme Russa875dda2011-12-23 16:51:29 +11005 */
Bin Meng535109a2015-08-13 00:29:10 -07006
Graeme Russa875dda2011-12-23 16:51:29 +11007#include <common.h>
Masahiro Yamada56a931c2016-09-21 11:28:55 +09008#include <linux/errno.h>
Simon Glass004ba172015-01-01 16:18:11 -07009#include <asm/mtrr.h>
Graeme Russa875dda2011-12-23 16:51:29 +110010
11DECLARE_GLOBAL_DATA_PTR;
12
Simon Glass3297d4d2013-02-28 19:26:10 +000013/* Get the top of usable RAM */
14__weak ulong board_get_usable_ram_top(ulong total_size)
Graeme Russ3fb4f9e2011-12-23 21:14:22 +110015{
Simon Glass3297d4d2013-02-28 19:26:10 +000016 return gd->ram_size;
17}
18
Graeme Russ3fb4f9e2011-12-23 21:14:22 +110019int init_cache_f_r(void)
20{
Park, Aiden51951432019-08-03 08:31:20 +000021#if CONFIG_IS_ENABLED(X86_32BIT_INIT) && !defined(CONFIG_HAVE_FSP) && \
22 !defined(CONFIG_SYS_SLIMBOOTLOADER)
Simon Glass004ba172015-01-01 16:18:11 -070023 int ret;
24
25 ret = mtrr_commit(false);
Bin Meng80d29762015-01-22 11:29:41 +080026 /* If MTRR MSR is not implemented by the processor, just ignore it */
27 if (ret && ret != -ENOSYS)
Simon Glass004ba172015-01-01 16:18:11 -070028 return ret;
29#endif
Graeme Russ3fb4f9e2011-12-23 21:14:22 +110030 /* Initialise the CPU cache(s) */
31 return init_cache();
32}