blob: 420393b843e8853fea47048633ae5441ffb7c209 [file] [log] [blame]
Graeme Russa875dda2011-12-23 16:51:29 +11001/*
2 * (C) Copyright 2011
3 * Graeme Russ, <graeme.russ@gmail.com>
4 *
Wolfgang Denkd79de1d2013-07-08 09:37:19 +02005 * SPDX-License-Identifier: GPL-2.0+
Graeme Russa875dda2011-12-23 16:51:29 +11006 */
Bin Meng535109a2015-08-13 00:29:10 -07007
Graeme Russa875dda2011-12-23 16:51:29 +11008#include <common.h>
Masahiro Yamada56a931c2016-09-21 11:28:55 +09009#include <linux/errno.h>
Simon Glass004ba172015-01-01 16:18:11 -070010#include <asm/mtrr.h>
Graeme Russa875dda2011-12-23 16:51:29 +110011
12DECLARE_GLOBAL_DATA_PTR;
13
Simon Glass3297d4d2013-02-28 19:26:10 +000014/* Get the top of usable RAM */
15__weak ulong board_get_usable_ram_top(ulong total_size)
Graeme Russ3fb4f9e2011-12-23 21:14:22 +110016{
Simon Glass3297d4d2013-02-28 19:26:10 +000017 return gd->ram_size;
18}
19
Graeme Russ3fb4f9e2011-12-23 21:14:22 +110020int init_cache_f_r(void)
21{
Simon Glassd0594ff2017-01-16 07:03:46 -070022#if CONFIG_IS_ENABLED(X86_32BIT_INIT) && !defined(CONFIG_HAVE_FSP)
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}