]> git.ipfire.org Git - people/ms/u-boot.git/blame - arch/arc/lib/cpu.c
arc: get rid of running_on_hw
[people/ms/u-boot.git] / arch / arc / lib / cpu.c
CommitLineData
2f16ac9d
AB
1/*
2 * Copyright (C) 2013-2014 Synopsys, Inc. All rights reserved.
3 *
4 * SPDX-License-Identifier: GPL-2.0+
5 */
6
7#include <common.h>
8#include <asm/arcregs.h>
9#include <asm/cache.h>
10
11DECLARE_GLOBAL_DATA_PTR;
12
13int arch_cpu_init(void)
14{
2f16ac9d
AB
15 timer_init();
16
2f16ac9d
AB
17 gd->cpu_clk = CONFIG_SYS_CLK_FREQ;
18 gd->ram_size = CONFIG_SYS_SDRAM_SIZE;
19
ef639e6f
AB
20 cache_init();
21
2f16ac9d
AB
22 return 0;
23}
24
25int arch_early_init_r(void)
26{
27 gd->bd->bi_memstart = CONFIG_SYS_SDRAM_BASE;
28 gd->bd->bi_memsize = CONFIG_SYS_SDRAM_SIZE;
29 return 0;
30}