blob: c1a9638c1ab7f3ab1054d7250115c3a8ddcdb272 [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>
Heinrich Schuchardtcc382ff2021-09-12 21:11:46 +02009#include <dm/lists.h>
Simon Glassfc557362022-03-04 08:43:05 -070010#include <event.h>
Simon Glass97589732020-05-10 11:40:02 -060011#include <init.h>
Bin Meng7a3bbfb2018-12-12 06:12:34 -080012#include <log.h>
Bin Menga7544ed2018-12-12 06:12:40 -080013#include <asm/encoding.h>
Simon Glassfc557362022-03-04 08:43:05 -070014#include <asm/system.h>
Bin Mengedfe9a92018-12-12 06:12:38 -080015#include <dm/uclass-internal.h>
Simon Glass4dcacfc2020-05-10 11:40:13 -060016#include <linux/bitops.h>
Bin Meng055700e2018-09-26 06:55:14 -070017
Lukas Auer39a652b2018-11-22 11:26:29 +010018/*
Lukas Auera3596652019-03-17 19:28:37 +010019 * The variables here must be stored in the data section since they are used
Lukas Auer39a652b2018-11-22 11:26:29 +010020 * before the bss section is available.
21 */
Nikita Shubin7e5e0292022-09-02 11:47:39 +030022#if !CONFIG_IS_ENABLED(XIP)
Marek BehĂșn4bebdd32021-05-20 13:23:52 +020023u32 hart_lottery __section(".data") = 0;
Lukas Auera3596652019-03-17 19:28:37 +010024
Rick Chen9c4d5c12022-09-21 14:34:54 +080025#ifdef CONFIG_AVAILABLE_HARTS
Lukas Auera3596652019-03-17 19:28:37 +010026/*
27 * The main hart running U-Boot has acquired available_harts_lock until it has
28 * finished initialization of global data.
29 */
30u32 available_harts_lock = 1;
Rick Chene5e6c362019-04-30 13:49:33 +080031#endif
Rick Chen9c4d5c12022-09-21 14:34:54 +080032#endif
Lukas Auer39a652b2018-11-22 11:26:29 +010033
Bin Meng055700e2018-09-26 06:55:14 -070034static inline bool supports_extension(char ext)
35{
Nikita Shubinc9382b12022-12-14 08:58:43 +030036#if CONFIG_IS_ENABLED(RISCV_MMODE)
37 return csr_read(CSR_MISA) & (1 << (ext - 'a'));
38#elif CONFIG_CPU
Bin Mengedfe9a92018-12-12 06:12:38 -080039 struct udevice *dev;
40 char desc[32];
Yu Chien Peter Lina35afb82022-11-05 14:02:14 +080041 int i;
Bin Mengedfe9a92018-12-12 06:12:38 -080042
43 uclass_find_first_device(UCLASS_CPU, &dev);
44 if (!dev) {
45 debug("unable to find the RISC-V cpu device\n");
46 return false;
47 }
48 if (!cpu_get_desc(dev, desc, sizeof(desc))) {
Yu Chien Peter Lina35afb82022-11-05 14:02:14 +080049 /*
50 * skip the first 4 characters (rv32|rv64) and
51 * check until underscore
52 */
53 for (i = 4; i < sizeof(desc); i++) {
54 if (desc[i] == '_' || desc[i] == '\0')
55 break;
56 if (desc[i] == ext)
57 return true;
58 }
Bin Mengedfe9a92018-12-12 06:12:38 -080059 }
60
61 return false;
62#else /* !CONFIG_CPU */
Bin Mengedfe9a92018-12-12 06:12:38 -080063#warning "There is no way to determine the available extensions in S-mode."
64#warning "Please convert your board to use the RISC-V CPU driver."
65 return false;
Bin Mengedfe9a92018-12-12 06:12:38 -080066#endif /* CONFIG_CPU */
Bin Meng055700e2018-09-26 06:55:14 -070067}
68
Tom Rinif4d52f62023-09-04 15:06:34 -040069static int riscv_cpu_probe(void)
Bin Meng7a3bbfb2018-12-12 06:12:34 -080070{
71#ifdef CONFIG_CPU
72 int ret;
73
74 /* probe cpus so that RISC-V timer can be bound */
75 ret = cpu_probe_all();
76 if (ret)
77 return log_msg_ret("RISC-V cpus probe failed\n", ret);
78#endif
79
80 return 0;
81}
Tom Rinif4d52f62023-09-04 15:06:34 -040082EVENT_SPY_SIMPLE(EVT_DM_POST_INIT_R, riscv_cpu_probe);
Bin Meng7a3bbfb2018-12-12 06:12:34 -080083
Sean Andersondd1cd702020-09-21 07:51:38 -040084/*
85 * This is called on secondary harts just after the IPI is init'd. Currently
86 * there's nothing to do, since we just need to clear any existing IPIs, and
87 * that is handled by the sending of an ipi itself.
88 */
89#if CONFIG_IS_ENABLED(SMP)
90static void dummy_pending_ipi_clear(ulong hart, ulong arg0, ulong arg1)
91{
92}
93#endif
94
Simon Glassb8357c12023-08-21 21:16:56 -060095int riscv_cpu_setup(void)
Bin Meng7a3bbfb2018-12-12 06:12:34 -080096{
Tom Rinic32177d2023-09-04 15:06:35 -040097 int __maybe_unused ret;
Bin Menga7544ed2018-12-12 06:12:40 -080098
99 /* Enable FPU */
100 if (supports_extension('d') || supports_extension('f')) {
101 csr_set(MODE_PREFIX(status), MSTATUS_FS);
Bin Mengf9426362019-07-10 23:43:13 -0700102 csr_write(CSR_FCSR, 0);
Bin Menga7544ed2018-12-12 06:12:40 -0800103 }
104
105 if (CONFIG_IS_ENABLED(RISCV_MMODE)) {
106 /*
107 * Enable perf counters for cycle, time,
108 * and instret counters only
109 */
Nikita Shubinc9382b12022-12-14 08:58:43 +0300110 if (supports_extension('u')) {
Sean Anderson7f4b6662020-06-24 06:41:19 -0400111#ifdef CONFIG_RISCV_PRIV_1_9
Nikita Shubinc9382b12022-12-14 08:58:43 +0300112 csr_write(CSR_MSCOUNTEREN, GENMASK(2, 0));
113 csr_write(CSR_MUCOUNTEREN, GENMASK(2, 0));
Sean Anderson7f4b6662020-06-24 06:41:19 -0400114#else
Nikita Shubinc9382b12022-12-14 08:58:43 +0300115 csr_write(CSR_MCOUNTEREN, GENMASK(2, 0));
Sean Anderson7f4b6662020-06-24 06:41:19 -0400116#endif
Nikita Shubinc9382b12022-12-14 08:58:43 +0300117 }
Bin Menga7544ed2018-12-12 06:12:40 -0800118
119 /* Disable paging */
120 if (supports_extension('s'))
Sean Anderson7f4b6662020-06-24 06:41:19 -0400121#ifdef CONFIG_RISCV_PRIV_1_9
122 csr_read_clear(CSR_MSTATUS, SR_VM);
123#else
Bin Mengf9426362019-07-10 23:43:13 -0700124 csr_write(CSR_SATP, 0);
Sean Anderson7f4b6662020-06-24 06:41:19 -0400125#endif
Bin Menga7544ed2018-12-12 06:12:40 -0800126 }
127
Bin Meng257875d2020-07-19 23:17:07 -0700128#if CONFIG_IS_ENABLED(SMP)
Sean Andersonb1d0cb32020-06-24 06:41:18 -0400129 ret = riscv_init_ipi();
130 if (ret)
131 return ret;
Sean Andersondd1cd702020-09-21 07:51:38 -0400132
133 /*
134 * Clear all pending IPIs on secondary harts. We don't do anything on
135 * the boot hart, since we never send an IPI to ourselves, and no
136 * interrupts are enabled
137 */
138 ret = smp_call_function((ulong)dummy_pending_ipi_clear, 0, 0, 0);
139 if (ret)
140 return ret;
Sean Andersonb1d0cb32020-06-24 06:41:18 -0400141#endif
142
Bin Menga7544ed2018-12-12 06:12:40 -0800143 return 0;
Bin Meng7a3bbfb2018-12-12 06:12:34 -0800144}
Simon Glassb8357c12023-08-21 21:16:56 -0600145EVENT_SPY_SIMPLE(EVT_DM_POST_INIT_F, riscv_cpu_setup);
Bin Meng7a3bbfb2018-12-12 06:12:34 -0800146
147int arch_early_init_r(void)
148{
Heinrich Schuchardtcc382ff2021-09-12 21:11:46 +0200149 if (IS_ENABLED(CONFIG_SYSRESET_SBI))
150 device_bind_driver(gd->dm_root, "sbi-sysreset",
151 "sbi-sysreset", NULL);
152
153 return 0;
Bin Meng7a3bbfb2018-12-12 06:12:34 -0800154}
Green Wan26120802021-05-02 23:23:04 -0700155
156/**
157 * harts_early_init() - A callback function called by start.S to configure
158 * feature settings of each hart.
159 *
160 * In a multi-core system, memory access shall be careful here, it shall
161 * take care of race conditions.
162 */
163__weak void harts_early_init(void)
164{
165}