Bin Meng | 2fab2e9 | 2018-09-26 06:55:14 -0700 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
| 2 | /* |
| 3 | * Copyright (C) 2018, Bin Meng <bmeng.cn@gmail.com> |
| 4 | */ |
| 5 | |
| 6 | #include <common.h> |
Bin Meng | 39cad5b | 2018-12-12 06:12:34 -0800 | [diff] [blame] | 7 | #include <cpu.h> |
Bin Meng | aef59e5 | 2018-12-12 06:12:38 -0800 | [diff] [blame] | 8 | #include <dm.h> |
Simon Glass | 691d719 | 2020-05-10 11:40:02 -0600 | [diff] [blame] | 9 | #include <init.h> |
Bin Meng | 39cad5b | 2018-12-12 06:12:34 -0800 | [diff] [blame] | 10 | #include <log.h> |
Bin Meng | 485e822 | 2018-12-12 06:12:40 -0800 | [diff] [blame] | 11 | #include <asm/encoding.h> |
Bin Meng | aef59e5 | 2018-12-12 06:12:38 -0800 | [diff] [blame] | 12 | #include <dm/uclass-internal.h> |
Simon Glass | cd93d62 | 2020-05-10 11:40:13 -0600 | [diff] [blame^] | 13 | #include <linux/bitops.h> |
Bin Meng | 2fab2e9 | 2018-09-26 06:55:14 -0700 | [diff] [blame] | 14 | |
Lukas Auer | 5d8b2e7 | 2018-11-22 11:26:29 +0100 | [diff] [blame] | 15 | /* |
Lukas Auer | 3dea63c | 2019-03-17 19:28:37 +0100 | [diff] [blame] | 16 | * The variables here must be stored in the data section since they are used |
Lukas Auer | 5d8b2e7 | 2018-11-22 11:26:29 +0100 | [diff] [blame] | 17 | * before the bss section is available. |
| 18 | */ |
Rick Chen | f9281b8 | 2019-04-30 13:49:35 +0800 | [diff] [blame] | 19 | #ifdef CONFIG_OF_PRIOR_STAGE |
Lukas Auer | 5d8b2e7 | 2018-11-22 11:26:29 +0100 | [diff] [blame] | 20 | phys_addr_t prior_stage_fdt_address __attribute__((section(".data"))); |
Rick Chen | f9281b8 | 2019-04-30 13:49:35 +0800 | [diff] [blame] | 21 | #endif |
Rick Chen | bdce389 | 2019-04-30 13:49:33 +0800 | [diff] [blame] | 22 | #ifndef CONFIG_XIP |
Lukas Auer | 3dea63c | 2019-03-17 19:28:37 +0100 | [diff] [blame] | 23 | u32 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 | */ |
| 29 | u32 available_harts_lock = 1; |
Rick Chen | bdce389 | 2019-04-30 13:49:33 +0800 | [diff] [blame] | 30 | #endif |
Lukas Auer | 5d8b2e7 | 2018-11-22 11:26:29 +0100 | [diff] [blame] | 31 | |
Bin Meng | 2fab2e9 | 2018-09-26 06:55:14 -0700 | [diff] [blame] | 32 | static inline bool supports_extension(char ext) |
| 33 | { |
Bin Meng | aef59e5 | 2018-12-12 06:12:38 -0800 | [diff] [blame] | 34 | #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 Auer | fbfd92b | 2019-08-21 21:14:43 +0200 | [diff] [blame] | 51 | #if CONFIG_IS_ENABLED(RISCV_MMODE) |
Bin Meng | 4d2583d | 2019-07-10 23:43:13 -0700 | [diff] [blame] | 52 | return csr_read(CSR_MISA) & (1 << (ext - 'a')); |
Lukas Auer | fbfd92b | 2019-08-21 21:14:43 +0200 | [diff] [blame] | 53 | #else /* !CONFIG_IS_ENABLED(RISCV_MMODE) */ |
Bin Meng | aef59e5 | 2018-12-12 06:12:38 -0800 | [diff] [blame] | 54 | #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 Auer | fbfd92b | 2019-08-21 21:14:43 +0200 | [diff] [blame] | 57 | #endif /* CONFIG_IS_ENABLED(RISCV_MMODE) */ |
Bin Meng | aef59e5 | 2018-12-12 06:12:38 -0800 | [diff] [blame] | 58 | #endif /* CONFIG_CPU */ |
Bin Meng | 2fab2e9 | 2018-09-26 06:55:14 -0700 | [diff] [blame] | 59 | } |
| 60 | |
Bin Meng | 39cad5b | 2018-12-12 06:12:34 -0800 | [diff] [blame] | 61 | static 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 | |
| 75 | int arch_cpu_init_dm(void) |
| 76 | { |
Bin Meng | 485e822 | 2018-12-12 06:12:40 -0800 | [diff] [blame] | 77 | int ret; |
| 78 | |
| 79 | ret = riscv_cpu_probe(); |
| 80 | if (ret) |
| 81 | return ret; |
| 82 | |
| 83 | /* Enable FPU */ |
| 84 | if (supports_extension('d') || supports_extension('f')) { |
| 85 | csr_set(MODE_PREFIX(status), MSTATUS_FS); |
Bin Meng | 4d2583d | 2019-07-10 23:43:13 -0700 | [diff] [blame] | 86 | csr_write(CSR_FCSR, 0); |
Bin Meng | 485e822 | 2018-12-12 06:12:40 -0800 | [diff] [blame] | 87 | } |
| 88 | |
| 89 | if (CONFIG_IS_ENABLED(RISCV_MMODE)) { |
| 90 | /* |
| 91 | * Enable perf counters for cycle, time, |
| 92 | * and instret counters only |
| 93 | */ |
Bin Meng | 4d2583d | 2019-07-10 23:43:13 -0700 | [diff] [blame] | 94 | csr_write(CSR_MCOUNTEREN, GENMASK(2, 0)); |
Bin Meng | 485e822 | 2018-12-12 06:12:40 -0800 | [diff] [blame] | 95 | |
| 96 | /* Disable paging */ |
| 97 | if (supports_extension('s')) |
Bin Meng | 4d2583d | 2019-07-10 23:43:13 -0700 | [diff] [blame] | 98 | csr_write(CSR_SATP, 0); |
Bin Meng | 485e822 | 2018-12-12 06:12:40 -0800 | [diff] [blame] | 99 | } |
| 100 | |
| 101 | return 0; |
Bin Meng | 39cad5b | 2018-12-12 06:12:34 -0800 | [diff] [blame] | 102 | } |
| 103 | |
| 104 | int arch_early_init_r(void) |
| 105 | { |
| 106 | return riscv_cpu_probe(); |
| 107 | } |