blob: 7c4fcf281cbe59723d971a7991430ed33c99636e [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Alexey Brodkin511ab042014-02-04 12:56:19 +04002/*
3 * Copyright (C) 2013-2014 Synopsys, Inc. All rights reserved.
Alexey Brodkin511ab042014-02-04 12:56:19 +04004 */
5
6#include <common.h>
7#include <dwmmc.h>
8#include <malloc.h>
Alexey Brodkin323dad42017-03-31 11:14:35 +03009#include <asm/arcregs.h>
Alexey Brodkinf8f13b12015-04-09 19:50:58 +030010#include "axs10x.h"
Alexey Brodkin511ab042014-02-04 12:56:19 +040011
12DECLARE_GLOBAL_DATA_PTR;
13
Alexey Brodkinf8f13b12015-04-09 19:50:58 +030014#define AXS_MB_CREG 0xE0011000
15
16int board_early_init_f(void)
17{
18 if (readl((void __iomem *)AXS_MB_CREG + 0x234) & (1 << 28))
19 gd->board_type = AXS_MB_V3;
20 else
21 gd->board_type = AXS_MB_V2;
22
23 return 0;
24}
Alexey Brodkincf9cafd2015-04-13 13:37:05 +030025
26#ifdef CONFIG_ISA_ARCV2
Eugeniy Paltsev01f45cc2018-03-23 15:35:03 +030027
28void board_jump_and_run(ulong entry, int zero, int arch, uint params)
29{
30 void (*kernel_entry)(int zero, int arch, uint params);
31
32 kernel_entry = (void (*)(int, int, uint))entry;
33
34 smp_set_core_boot_addr(entry, -1);
35 smp_kick_all_cpus();
36 kernel_entry(zero, arch, params);
37}
38
Alexey Brodkincf9cafd2015-04-13 13:37:05 +030039#define RESET_VECTOR_ADDR 0x0
40
41void smp_set_core_boot_addr(unsigned long addr, int corenr)
42{
43 /* All cores have reset vector pointing to 0 */
44 writel(addr, (void __iomem *)RESET_VECTOR_ADDR);
45
46 /* Make sure other cores see written value in memory */
Alexey Brodkin0fda9642016-06-08 08:19:33 +030047 flush_dcache_all();
Alexey Brodkincf9cafd2015-04-13 13:37:05 +030048}
49
50void smp_kick_all_cpus(void)
51{
52/* CPU start CREG */
53#define AXC003_CREG_CPU_START 0xF0001400
Alexey Brodkincf9cafd2015-04-13 13:37:05 +030054/* Bits positions in CPU start CREG */
55#define BITS_START 0
Alexey Brodkinef5b5172017-03-30 19:18:30 +030056#define BITS_START_MODE 4
Alexey Brodkincf9cafd2015-04-13 13:37:05 +030057#define BITS_CORE_SEL 9
Alexey Brodkincf9cafd2015-04-13 13:37:05 +030058
Alexey Brodkin323dad42017-03-31 11:14:35 +030059/*
60 * In axs103 v1.1 START bits semantics has changed quite a bit.
61 * We used to have a generic START bit for all cores selected by CORE_SEL mask.
62 * But now we don't touch CORE_SEL at all because we have a dedicated START bit
63 * for each core:
64 * bit 0: Core 0 (master)
65 * bit 1: Core 1 (slave)
66 */
67#define BITS_START_CORE1 1
68
69#define ARCVER_HS38_3_0 0x53
70
71 int core_family = read_aux_reg(ARC_AUX_IDENTITY) & 0xff;
Alexey Brodkinef5b5172017-03-30 19:18:30 +030072 int cmd = readl((void __iomem *)AXC003_CREG_CPU_START);
Alexey Brodkin323dad42017-03-31 11:14:35 +030073
74 if (core_family < ARCVER_HS38_3_0) {
75 cmd |= (1 << BITS_CORE_SEL) | (1 << BITS_START);
76 cmd &= ~(1 << BITS_START_MODE);
77 } else {
78 cmd |= (1 << BITS_START_CORE1);
79 }
Alexey Brodkinef5b5172017-03-30 19:18:30 +030080 writel(cmd, (void __iomem *)AXC003_CREG_CPU_START);
Alexey Brodkincf9cafd2015-04-13 13:37:05 +030081}
82#endif
Alexey Brodkindbf9fa22018-11-27 09:47:01 +030083
84int checkboard(void)
85{
86 printf("Board: ARC Software Development Platform AXS%s\n",
87 is_isa_arcv2() ? "103" : "101");
88
89 return 0;
90};