1 // SPDX-License-Identifier: GPL-2.0+
11 #include <asm/encoding.h>
12 #include <dm/uclass-internal.h>
15 * prior_stage_fdt_address must be stored in the data section since it is used
16 * before the bss section is available.
18 phys_addr_t prior_stage_fdt_address __attribute__((section(".data")));
20 static inline bool supports_extension(char ext)
26 uclass_find_first_device(UCLASS_CPU, &dev);
28 debug("unable to find the RISC-V cpu device\n");
31 if (!cpu_get_desc(dev, desc, sizeof(desc))) {
32 /* skip the first 4 characters (rv32|rv64) */
33 if (strchr(desc + 4, ext))
38 #else /* !CONFIG_CPU */
39 #ifdef CONFIG_RISCV_MMODE
40 return csr_read(misa) & (1 << (ext - 'a'));
41 #else /* !CONFIG_RISCV_MMODE */
42 #warning "There is no way to determine the available extensions in S-mode."
43 #warning "Please convert your board to use the RISC-V CPU driver."
45 #endif /* CONFIG_RISCV_MMODE */
46 #endif /* CONFIG_CPU */
49 static int riscv_cpu_probe(void)
54 /* probe cpus so that RISC-V timer can be bound */
55 ret = cpu_probe_all();
57 return log_msg_ret("RISC-V cpus probe failed\n", ret);
63 int arch_cpu_init_dm(void)
67 ret = riscv_cpu_probe();
72 if (supports_extension('d') || supports_extension('f')) {
73 csr_set(MODE_PREFIX(status), MSTATUS_FS);
77 if (CONFIG_IS_ENABLED(RISCV_MMODE)) {
79 * Enable perf counters for cycle, time,
80 * and instret counters only
82 csr_write(mcounteren, GENMASK(2, 0));
85 if (supports_extension('s'))
92 int arch_early_init_r(void)
94 return riscv_cpu_probe();