blob: cf149ad1a8cf05e3d3c7f69c666291958a6afc21 [file] [log] [blame]
Minkyu Kangb1b24682011-01-24 15:22:23 +09001/*
2 * Copyright (c) 2010 Samsung Electronics.
3 * Minkyu Kang <mk7.kang@samsung.com>
4 *
Wolfgang Denkd79de1d2013-07-08 09:37:19 +02005 * SPDX-License-Identifier: GPL-2.0+
Minkyu Kangb1b24682011-01-24 15:22:23 +09006 */
7
8#include <common.h>
9#include <asm/io.h>
Rajeshwari Shinde10cb7fa2012-11-29 20:29:35 +000010#include <asm/system.h>
11
Thomas Abrahamf1855fc2016-11-16 18:49:16 +053012#ifdef CONFIG_TARGET_ESPRESSO7420
13/*
14 * Exynos7420 uses CPU0 of Cluster-1 as boot CPU. Due to this, branch_if_master
15 * fails to identify as the boot CPU as the master CPU. As temporary workaround,
16 * setup the slave CPU boot address as "_main".
17 */
18extern void _main(void);
19void *secondary_boot_addr = (void *)_main;
20#endif /* CONFIG_TARGET_ESPRESSO7420 */
21
Minkyu Kangb1b24682011-01-24 15:22:23 +090022void reset_cpu(ulong addr)
23{
Thomas Abrahama99ad392016-04-23 22:18:12 +053024#ifdef CONFIG_CPU_V7
Minkyu Kangb1b24682011-01-24 15:22:23 +090025 writel(0x1, samsung_get_base_swreset());
Thomas Abrahama99ad392016-04-23 22:18:12 +053026#endif
Minkyu Kangb1b24682011-01-24 15:22:23 +090027}
Ɓukasz Majewskie667e762012-08-07 03:24:03 +000028
29#ifndef CONFIG_SYS_DCACHE_OFF
30void enable_caches(void)
31{
32 /* Enable D-cache. I-cache is already enabled in start.S */
33 dcache_enable();
34}
35#endif