blob: e457f6acbf166d1dbe112a02bd073411d72c391b [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>
Bin Meng39cad5b2018-12-12 06:12:34 -08009#include <log.h>
Bin Meng485e8222018-12-12 06:12:40 -080010#include <asm/encoding.h>
Bin Mengaef59e52018-12-12 06:12:38 -080011#include <dm/uclass-internal.h>
Bin Meng2fab2e92018-09-26 06:55:14 -070012
Lukas Auer5d8b2e72018-11-22 11:26:29 +010013/*
Lukas Auer3dea63c2019-03-17 19:28:37 +010014 * The variables here must be stored in the data section since they are used
Lukas Auer5d8b2e72018-11-22 11:26:29 +010015 * before the bss section is available.
16 */
Rick Chenf9281b82019-04-30 13:49:35 +080017#ifdef CONFIG_OF_PRIOR_STAGE
Lukas Auer5d8b2e72018-11-22 11:26:29 +010018phys_addr_t prior_stage_fdt_address __attribute__((section(".data")));
Rick Chenf9281b82019-04-30 13:49:35 +080019#endif
Rick Chenbdce3892019-04-30 13:49:33 +080020#ifndef CONFIG_XIP
Lukas Auer3dea63c2019-03-17 19:28:37 +010021u32 hart_lottery __attribute__((section(".data"))) = 0;
22
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
73int arch_cpu_init_dm(void)
74{
Bin Meng485e8222018-12-12 06:12:40 -080075 int ret;
76
77 ret = riscv_cpu_probe();
78 if (ret)
79 return ret;
80
81 /* Enable FPU */
82 if (supports_extension('d') || supports_extension('f')) {
83 csr_set(MODE_PREFIX(status), MSTATUS_FS);
Bin Meng4d2583d2019-07-10 23:43:13 -070084 csr_write(CSR_FCSR, 0);
Bin Meng485e8222018-12-12 06:12:40 -080085 }
86
87 if (CONFIG_IS_ENABLED(RISCV_MMODE)) {
88 /*
89 * Enable perf counters for cycle, time,
90 * and instret counters only
91 */
Bin Meng4d2583d2019-07-10 23:43:13 -070092 csr_write(CSR_MCOUNTEREN, GENMASK(2, 0));
Bin Meng485e8222018-12-12 06:12:40 -080093
94 /* Disable paging */
95 if (supports_extension('s'))
Bin Meng4d2583d2019-07-10 23:43:13 -070096 csr_write(CSR_SATP, 0);
Bin Meng485e8222018-12-12 06:12:40 -080097 }
98
99 return 0;
Bin Meng39cad5b2018-12-12 06:12:34 -0800100}
101
102int arch_early_init_r(void)
103{
104 return riscv_cpu_probe();
105}