blob: 8d90c5e6b8aa5ba8d5bd716727ef82705e0eca6f [file] [log] [blame]
Bin Meng2fab2e92018-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 Meng39cad5b2018-12-12 06:12:34 -08007#include <cpu.h>
Bin Mengaef59e52018-12-12 06:12:38 -08008#include <dm.h>
Heinrich Schuchardt24ed5312021-09-12 21:11:46 +02009#include <dm/lists.h>
Simon Glass691d7192020-05-10 11:40:02 -060010#include <init.h>
Bin Meng39cad5b2018-12-12 06:12:34 -080011#include <log.h>
Bin Meng485e8222018-12-12 06:12:40 -080012#include <asm/encoding.h>
Bin Mengaef59e52018-12-12 06:12:38 -080013#include <dm/uclass-internal.h>
Simon Glasscd93d622020-05-10 11:40:13 -060014#include <linux/bitops.h>
Bin Meng2fab2e92018-09-26 06:55:14 -070015
Lukas Auer5d8b2e72018-11-22 11:26:29 +010016/*
Lukas Auer3dea63c2019-03-17 19:28:37 +010017 * The variables here must be stored in the data section since they are used
Lukas Auer5d8b2e72018-11-22 11:26:29 +010018 * before the bss section is available.
19 */
Rick Chenbdce3892019-04-30 13:49:33 +080020#ifndef CONFIG_XIP
Marek BehĂșn236f2ec2021-05-20 13:23:52 +020021u32 hart_lottery __section(".data") = 0;
Lukas Auer3dea63c2019-03-17 19:28:37 +010022
23/*
24 * The main hart running U-Boot has acquired available_harts_lock until it has
25 * finished initialization of global data.
26 */
27u32 available_harts_lock = 1;
Rick Chenbdce3892019-04-30 13:49:33 +080028#endif
Lukas Auer5d8b2e72018-11-22 11:26:29 +010029
Bin Meng2fab2e92018-09-26 06:55:14 -070030static inline bool supports_extension(char ext)
31{
Bin Mengaef59e52018-12-12 06:12:38 -080032#ifdef CONFIG_CPU
33 struct udevice *dev;
34 char desc[32];
35
36 uclass_find_first_device(UCLASS_CPU, &dev);
37 if (!dev) {
38 debug("unable to find the RISC-V cpu device\n");
39 return false;
40 }
41 if (!cpu_get_desc(dev, desc, sizeof(desc))) {
42 /* skip the first 4 characters (rv32|rv64) */
43 if (strchr(desc + 4, ext))
44 return true;
45 }
46
47 return false;
48#else /* !CONFIG_CPU */
Lukas Auerfbfd92b2019-08-21 21:14:43 +020049#if CONFIG_IS_ENABLED(RISCV_MMODE)
Bin Meng4d2583d2019-07-10 23:43:13 -070050 return csr_read(CSR_MISA) & (1 << (ext - 'a'));
Lukas Auerfbfd92b2019-08-21 21:14:43 +020051#else /* !CONFIG_IS_ENABLED(RISCV_MMODE) */
Bin Mengaef59e52018-12-12 06:12:38 -080052#warning "There is no way to determine the available extensions in S-mode."
53#warning "Please convert your board to use the RISC-V CPU driver."
54 return false;
Lukas Auerfbfd92b2019-08-21 21:14:43 +020055#endif /* CONFIG_IS_ENABLED(RISCV_MMODE) */
Bin Mengaef59e52018-12-12 06:12:38 -080056#endif /* CONFIG_CPU */
Bin Meng2fab2e92018-09-26 06:55:14 -070057}
58
Bin Meng39cad5b2018-12-12 06:12:34 -080059static int riscv_cpu_probe(void)
60{
61#ifdef CONFIG_CPU
62 int ret;
63
64 /* probe cpus so that RISC-V timer can be bound */
65 ret = cpu_probe_all();
66 if (ret)
67 return log_msg_ret("RISC-V cpus probe failed\n", ret);
68#endif
69
70 return 0;
71}
72
Sean Anderson768502e2020-09-21 07:51:38 -040073/*
74 * This is called on secondary harts just after the IPI is init'd. Currently
75 * there's nothing to do, since we just need to clear any existing IPIs, and
76 * that is handled by the sending of an ipi itself.
77 */
78#if CONFIG_IS_ENABLED(SMP)
79static void dummy_pending_ipi_clear(ulong hart, ulong arg0, ulong arg1)
80{
81}
82#endif
83
Bin Meng39cad5b2018-12-12 06:12:34 -080084int arch_cpu_init_dm(void)
85{
Bin Meng485e8222018-12-12 06:12:40 -080086 int ret;
87
88 ret = riscv_cpu_probe();
89 if (ret)
90 return ret;
91
92 /* Enable FPU */
93 if (supports_extension('d') || supports_extension('f')) {
94 csr_set(MODE_PREFIX(status), MSTATUS_FS);
Bin Meng4d2583d2019-07-10 23:43:13 -070095 csr_write(CSR_FCSR, 0);
Bin Meng485e8222018-12-12 06:12:40 -080096 }
97
98 if (CONFIG_IS_ENABLED(RISCV_MMODE)) {
99 /*
100 * Enable perf counters for cycle, time,
101 * and instret counters only
102 */
Sean Andersonb8bc1202020-06-24 06:41:19 -0400103#ifdef CONFIG_RISCV_PRIV_1_9
104 csr_write(CSR_MSCOUNTEREN, GENMASK(2, 0));
105 csr_write(CSR_MUCOUNTEREN, GENMASK(2, 0));
106#else
Bin Meng4d2583d2019-07-10 23:43:13 -0700107 csr_write(CSR_MCOUNTEREN, GENMASK(2, 0));
Sean Andersonb8bc1202020-06-24 06:41:19 -0400108#endif
Bin Meng485e8222018-12-12 06:12:40 -0800109
110 /* Disable paging */
111 if (supports_extension('s'))
Sean Andersonb8bc1202020-06-24 06:41:19 -0400112#ifdef CONFIG_RISCV_PRIV_1_9
113 csr_read_clear(CSR_MSTATUS, SR_VM);
114#else
Bin Meng4d2583d2019-07-10 23:43:13 -0700115 csr_write(CSR_SATP, 0);
Sean Andersonb8bc1202020-06-24 06:41:19 -0400116#endif
Bin Meng485e8222018-12-12 06:12:40 -0800117 }
118
Bin Menga0018fc2020-07-19 23:17:07 -0700119#if CONFIG_IS_ENABLED(SMP)
Sean Anderson40686c32020-06-24 06:41:18 -0400120 ret = riscv_init_ipi();
121 if (ret)
122 return ret;
Sean Anderson768502e2020-09-21 07:51:38 -0400123
124 /*
125 * Clear all pending IPIs on secondary harts. We don't do anything on
126 * the boot hart, since we never send an IPI to ourselves, and no
127 * interrupts are enabled
128 */
129 ret = smp_call_function((ulong)dummy_pending_ipi_clear, 0, 0, 0);
130 if (ret)
131 return ret;
Sean Anderson40686c32020-06-24 06:41:18 -0400132#endif
133
Bin Meng485e8222018-12-12 06:12:40 -0800134 return 0;
Bin Meng39cad5b2018-12-12 06:12:34 -0800135}
136
137int arch_early_init_r(void)
138{
Heinrich Schuchardt24ed5312021-09-12 21:11:46 +0200139 int ret;
140
141 ret = riscv_cpu_probe();
142 if (ret)
143 return ret;
144
145 if (IS_ENABLED(CONFIG_SYSRESET_SBI))
146 device_bind_driver(gd->dm_root, "sbi-sysreset",
147 "sbi-sysreset", NULL);
148
149 return 0;
Bin Meng39cad5b2018-12-12 06:12:34 -0800150}
Green Wanedd9ad82021-05-02 23:23:04 -0700151
152/**
153 * harts_early_init() - A callback function called by start.S to configure
154 * feature settings of each hart.
155 *
156 * In a multi-core system, memory access shall be careful here, it shall
157 * take care of race conditions.
158 */
159__weak void harts_early_init(void)
160{
161}