blob: c32de8a4c3e64acec63b86dc8845683e6192fbc2 [file] [log] [blame]
Bin Meng055700e2018-09-26 06:55:14 -07001// SPDX-License-Identifier: GPL-2.0+
2/*
3 * Copyright (C) 2018, Bin Meng <bmeng.cn@gmail.com>
4 */
5
6#include <common.h>
Bin Meng7a3bbfb2018-12-12 06:12:34 -08007#include <cpu.h>
Bin Mengedfe9a92018-12-12 06:12:38 -08008#include <dm.h>
Bin Meng7a3bbfb2018-12-12 06:12:34 -08009#include <log.h>
Bin Meng055700e2018-09-26 06:55:14 -070010#include <asm/csr.h>
Bin Menga7544ed2018-12-12 06:12:40 -080011#include <asm/encoding.h>
Bin Mengedfe9a92018-12-12 06:12:38 -080012#include <dm/uclass-internal.h>
Bin Meng055700e2018-09-26 06:55:14 -070013
Lukas Auer39a652b2018-11-22 11:26:29 +010014/*
Lukas Auera3596652019-03-17 19:28:37 +010015 * The variables here must be stored in the data section since they are used
Lukas Auer39a652b2018-11-22 11:26:29 +010016 * before the bss section is available.
17 */
18phys_addr_t prior_stage_fdt_address __attribute__((section(".data")));
Lukas Auera3596652019-03-17 19:28:37 +010019u32 hart_lottery __attribute__((section(".data"))) = 0;
20
21/*
22 * The main hart running U-Boot has acquired available_harts_lock until it has
23 * finished initialization of global data.
24 */
25u32 available_harts_lock = 1;
Lukas Auer39a652b2018-11-22 11:26:29 +010026
Bin Meng055700e2018-09-26 06:55:14 -070027static inline bool supports_extension(char ext)
28{
Bin Mengedfe9a92018-12-12 06:12:38 -080029#ifdef CONFIG_CPU
30 struct udevice *dev;
31 char desc[32];
32
33 uclass_find_first_device(UCLASS_CPU, &dev);
34 if (!dev) {
35 debug("unable to find the RISC-V cpu device\n");
36 return false;
37 }
38 if (!cpu_get_desc(dev, desc, sizeof(desc))) {
39 /* skip the first 4 characters (rv32|rv64) */
40 if (strchr(desc + 4, ext))
41 return true;
42 }
43
44 return false;
45#else /* !CONFIG_CPU */
46#ifdef CONFIG_RISCV_MMODE
Bin Meng055700e2018-09-26 06:55:14 -070047 return csr_read(misa) & (1 << (ext - 'a'));
Bin Mengedfe9a92018-12-12 06:12:38 -080048#else /* !CONFIG_RISCV_MMODE */
49#warning "There is no way to determine the available extensions in S-mode."
50#warning "Please convert your board to use the RISC-V CPU driver."
51 return false;
52#endif /* CONFIG_RISCV_MMODE */
53#endif /* CONFIG_CPU */
Bin Meng055700e2018-09-26 06:55:14 -070054}
55
Bin Meng7a3bbfb2018-12-12 06:12:34 -080056static int riscv_cpu_probe(void)
57{
58#ifdef CONFIG_CPU
59 int ret;
60
61 /* probe cpus so that RISC-V timer can be bound */
62 ret = cpu_probe_all();
63 if (ret)
64 return log_msg_ret("RISC-V cpus probe failed\n", ret);
65#endif
66
67 return 0;
68}
69
70int arch_cpu_init_dm(void)
71{
Bin Menga7544ed2018-12-12 06:12:40 -080072 int ret;
73
74 ret = riscv_cpu_probe();
75 if (ret)
76 return ret;
77
78 /* Enable FPU */
79 if (supports_extension('d') || supports_extension('f')) {
80 csr_set(MODE_PREFIX(status), MSTATUS_FS);
81 csr_write(fcsr, 0);
82 }
83
84 if (CONFIG_IS_ENABLED(RISCV_MMODE)) {
85 /*
86 * Enable perf counters for cycle, time,
87 * and instret counters only
88 */
89 csr_write(mcounteren, GENMASK(2, 0));
90
91 /* Disable paging */
92 if (supports_extension('s'))
93 csr_write(satp, 0);
94 }
95
96 return 0;
Bin Meng7a3bbfb2018-12-12 06:12:34 -080097}
98
99int arch_early_init_r(void)
100{
101 return riscv_cpu_probe();
102}