blob: b12eab1cb699480a1dd7bbad8dee84c75bd3ff80 [file] [log] [blame]
Simon Glassefedba72017-01-16 07:03:58 -07001/*
2 * (C) Copyright 2016 Google, Inc
3 * Written by Simon Glass <sjg@chromium.org>
4 *
5 * SPDX-License-Identifier: GPL-2.0+
6 */
7
8#include <common.h>
9
10int cpu_has_64bit(void)
11{
12 return true;
13}
14
15void enable_caches(void)
16{
17 /* Not implemented */
18}
19
20void disable_caches(void)
21{
22 /* Not implemented */
23}
24
25int dcache_status(void)
26{
27 return true;
28}
29
30int x86_mp_init(void)
31{
32 /* Not implemented */
33 return 0;
34}