blob: 85592f5bee2c67c1251e7e0d0434003dcaa48c8f [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>
Simon Glass691d7192020-05-10 11:40:02 -06009#include <init.h>
Bin Meng39cad5b2018-12-12 06:12:34 -080010#include <log.h>
Bin Meng485e8222018-12-12 06:12:40 -080011#include <asm/encoding.h>
Bin Mengaef59e52018-12-12 06:12:38 -080012#include <dm/uclass-internal.h>
Simon Glasscd93d622020-05-10 11:40:13 -060013#include <linux/bitops.h>
Bin Meng2fab2e92018-09-26 06:55:14 -070014
Lukas Auer5d8b2e72018-11-22 11:26:29 +010015/*
Lukas Auer3dea63c2019-03-17 19:28:37 +010016 * The variables here must be stored in the data section since they are used
Lukas Auer5d8b2e72018-11-22 11:26:29 +010017 * before the bss section is available.
18 */
Rick Chenf9281b82019-04-30 13:49:35 +080019#ifdef CONFIG_OF_PRIOR_STAGE
Lukas Auer5d8b2e72018-11-22 11:26:29 +010020phys_addr_t prior_stage_fdt_address __attribute__((section(".data")));
Rick Chenf9281b82019-04-30 13:49:35 +080021#endif
Rick Chenbdce3892019-04-30 13:49:33 +080022#ifndef CONFIG_XIP
Lukas Auer3dea63c2019-03-17 19:28:37 +010023u32 hart_lottery __attribute__((section(".data"))) = 0;
24
25/*
26 * The main hart running U-Boot has acquired available_harts_lock until it has
27 * finished initialization of global data.
28 */
29u32 available_harts_lock = 1;
Rick Chenbdce3892019-04-30 13:49:33 +080030#endif
Lukas Auer5d8b2e72018-11-22 11:26:29 +010031
Bin Meng2fab2e92018-09-26 06:55:14 -070032static inline bool supports_extension(char ext)
33{
Bin Mengaef59e52018-12-12 06:12:38 -080034#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 /* skip the first 4 characters (rv32|rv64) */
45 if (strchr(desc + 4, ext))
46 return true;
47 }
48
49 return false;
50#else /* !CONFIG_CPU */
Lukas Auerfbfd92b2019-08-21 21:14:43 +020051#if CONFIG_IS_ENABLED(RISCV_MMODE)
Bin Meng4d2583d2019-07-10 23:43:13 -070052 return csr_read(CSR_MISA) & (1 << (ext - 'a'));
Lukas Auerfbfd92b2019-08-21 21:14:43 +020053#else /* !CONFIG_IS_ENABLED(RISCV_MMODE) */
Bin Mengaef59e52018-12-12 06:12:38 -080054#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;
Lukas Auerfbfd92b2019-08-21 21:14:43 +020057#endif /* CONFIG_IS_ENABLED(RISCV_MMODE) */
Bin Mengaef59e52018-12-12 06:12:38 -080058#endif /* CONFIG_CPU */
Bin Meng2fab2e92018-09-26 06:55:14 -070059}
60
Bin Meng39cad5b2018-12-12 06:12:34 -080061static int riscv_cpu_probe(void)
62{
63#ifdef CONFIG_CPU
64 int ret;
65
66 /* probe cpus so that RISC-V timer can be bound */
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
Sean Anderson768502e2020-09-21 07:51:38 -040075/*
76 * This is called on secondary harts just after the IPI is init'd. Currently
77 * there's nothing to do, since we just need to clear any existing IPIs, and
78 * that is handled by the sending of an ipi itself.
79 */
80#if CONFIG_IS_ENABLED(SMP)
81static void dummy_pending_ipi_clear(ulong hart, ulong arg0, ulong arg1)
82{
83}
84#endif
85
Bin Meng39cad5b2018-12-12 06:12:34 -080086int arch_cpu_init_dm(void)
87{
Bin Meng485e8222018-12-12 06:12:40 -080088 int ret;
89
90 ret = riscv_cpu_probe();
91 if (ret)
92 return ret;
93
94 /* Enable FPU */
95 if (supports_extension('d') || supports_extension('f')) {
96 csr_set(MODE_PREFIX(status), MSTATUS_FS);
Bin Meng4d2583d2019-07-10 23:43:13 -070097 csr_write(CSR_FCSR, 0);
Bin Meng485e8222018-12-12 06:12:40 -080098 }
99
100 if (CONFIG_IS_ENABLED(RISCV_MMODE)) {
101 /*
102 * Enable perf counters for cycle, time,
103 * and instret counters only
104 */
Sean Andersonb8bc1202020-06-24 06:41:19 -0400105#ifdef CONFIG_RISCV_PRIV_1_9
106 csr_write(CSR_MSCOUNTEREN, GENMASK(2, 0));
107 csr_write(CSR_MUCOUNTEREN, GENMASK(2, 0));
108#else
Bin Meng4d2583d2019-07-10 23:43:13 -0700109 csr_write(CSR_MCOUNTEREN, GENMASK(2, 0));
Sean Andersonb8bc1202020-06-24 06:41:19 -0400110#endif
Bin Meng485e8222018-12-12 06:12:40 -0800111
112 /* Disable paging */
113 if (supports_extension('s'))
Sean Andersonb8bc1202020-06-24 06:41:19 -0400114#ifdef CONFIG_RISCV_PRIV_1_9
115 csr_read_clear(CSR_MSTATUS, SR_VM);
116#else
Bin Meng4d2583d2019-07-10 23:43:13 -0700117 csr_write(CSR_SATP, 0);
Sean Andersonb8bc1202020-06-24 06:41:19 -0400118#endif
Bin Meng485e8222018-12-12 06:12:40 -0800119 }
120
Bin Menga0018fc2020-07-19 23:17:07 -0700121#if CONFIG_IS_ENABLED(SMP)
Sean Anderson40686c32020-06-24 06:41:18 -0400122 ret = riscv_init_ipi();
123 if (ret)
124 return ret;
Sean Anderson768502e2020-09-21 07:51:38 -0400125
126 /*
127 * Clear all pending IPIs on secondary harts. We don't do anything on
128 * the boot hart, since we never send an IPI to ourselves, and no
129 * interrupts are enabled
130 */
131 ret = smp_call_function((ulong)dummy_pending_ipi_clear, 0, 0, 0);
132 if (ret)
133 return ret;
Sean Anderson40686c32020-06-24 06:41:18 -0400134#endif
135
Bin Meng485e8222018-12-12 06:12:40 -0800136 return 0;
Bin Meng39cad5b2018-12-12 06:12:34 -0800137}
138
139int arch_early_init_r(void)
140{
141 return riscv_cpu_probe();
142}