1
2
3
4
5
6#include <common.h>
7#include <cpu.h>
8#include <dm.h>
9#include <dm/lists.h>
10#include <event.h>
11#include <init.h>
12#include <log.h>
13#include <asm/encoding.h>
14#include <asm/system.h>
15#include <dm/uclass-internal.h>
16#include <linux/bitops.h>
17
18
19
20
21
22#ifndef CONFIG_XIP
23u32 hart_lottery __section(".data") = 0;
24
25
26
27
28
29u32 available_harts_lock = 1;
30#endif
31
32static inline bool supports_extension(char ext)
33{
34#ifdef CONFIG_CPU
35 struct udevice *dev;
36 char desc[32];
37
38 uclass_find_first_device(UCLASS_CPU, &dev);
39 if (!dev) {
40 debug("unable to find the RISC-V cpu device\n");
41 return false;
42 }
43 if (!cpu_get_desc(dev, desc, sizeof(desc))) {
44
45 if (strchr(desc + 4, ext))
46 return true;
47 }
48
49 return false;
50#else
51#if CONFIG_IS_ENABLED(RISCV_MMODE)
52 return csr_read(CSR_MISA) & (1 << (ext - 'a'));
53#else
54#warning "There is no way to determine the available extensions in S-mode."
55#warning "Please convert your board to use the RISC-V CPU driver."
56 return false;
57#endif
58#endif
59}
60
61static int riscv_cpu_probe(void)
62{
63#ifdef CONFIG_CPU
64 int ret;
65
66
67 ret = cpu_probe_all();
68 if (ret)
69 return log_msg_ret("RISC-V cpus probe failed\n", ret);
70#endif
71
72 return 0;
73}
74
75
76
77
78
79
80#if CONFIG_IS_ENABLED(SMP)
81static void dummy_pending_ipi_clear(ulong hart, ulong arg0, ulong arg1)
82{
83}
84#endif
85
86int riscv_cpu_setup(void *ctx, struct event *event)
87{
88 int ret;
89
90 ret = riscv_cpu_probe();
91 if (ret)
92 return ret;
93
94
95 if (supports_extension('d') || supports_extension('f')) {
96 csr_set(MODE_PREFIX(status), MSTATUS_FS);
97 csr_write(CSR_FCSR, 0);
98 }
99
100 if (CONFIG_IS_ENABLED(RISCV_MMODE)) {
101
102
103
104
105#ifdef CONFIG_RISCV_PRIV_1_9
106 csr_write(CSR_MSCOUNTEREN, GENMASK(2, 0));
107 csr_write(CSR_MUCOUNTEREN, GENMASK(2, 0));
108#else
109 csr_write(CSR_MCOUNTEREN, GENMASK(2, 0));
110#endif
111
112
113 if (supports_extension('s'))
114#ifdef CONFIG_RISCV_PRIV_1_9
115 csr_read_clear(CSR_MSTATUS, SR_VM);
116#else
117 csr_write(CSR_SATP, 0);
118#endif
119 }
120
121#if CONFIG_IS_ENABLED(SMP)
122 ret = riscv_init_ipi();
123 if (ret)
124 return ret;
125
126
127
128
129
130
131 ret = smp_call_function((ulong)dummy_pending_ipi_clear, 0, 0, 0);
132 if (ret)
133 return ret;
134#endif
135
136 return 0;
137}
138EVENT_SPY(EVT_DM_POST_INIT, riscv_cpu_setup);
139
140int arch_early_init_r(void)
141{
142 int ret;
143
144 ret = riscv_cpu_probe();
145 if (ret)
146 return ret;
147
148 if (IS_ENABLED(CONFIG_SYSRESET_SBI))
149 device_bind_driver(gd->dm_root, "sbi-sysreset",
150 "sbi-sysreset", NULL);
151
152 return 0;
153}
154
155
156
157
158
159
160
161
162__weak void harts_early_init(void)
163{
164}
165