Bin Meng | c4fcb62 | 2018-12-12 06:12:26 -0800 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
| 2 | /* |
| 3 | * Copyright (C) 2018, Bin Meng <bmeng.cn@gmail.com> |
Sean Anderson | d2a10ff | 2020-06-24 06:41:22 -0400 | [diff] [blame] | 4 | * Copyright (C) 2020, Sean Anderson <seanga2@gmail.com> |
Bin Meng | c4fcb62 | 2018-12-12 06:12:26 -0800 | [diff] [blame] | 5 | */ |
| 6 | |
Sean Anderson | 4724409 | 2020-06-24 06:41:21 -0400 | [diff] [blame] | 7 | #include <clk.h> |
Bin Meng | c4fcb62 | 2018-12-12 06:12:26 -0800 | [diff] [blame] | 8 | #include <common.h> |
| 9 | #include <cpu.h> |
| 10 | #include <dm.h> |
| 11 | #include <errno.h> |
Simon Glass | 0f2af88 | 2020-05-10 11:40:05 -0600 | [diff] [blame] | 12 | #include <log.h> |
Bin Meng | c4fcb62 | 2018-12-12 06:12:26 -0800 | [diff] [blame] | 13 | #include <dm/device-internal.h> |
| 14 | #include <dm/lists.h> |
Simon Glass | 4dcacfc | 2020-05-10 11:40:13 -0600 | [diff] [blame] | 15 | #include <linux/bitops.h> |
Sean Anderson | 4724409 | 2020-06-24 06:41:21 -0400 | [diff] [blame] | 16 | #include <linux/err.h> |
Bin Meng | c4fcb62 | 2018-12-12 06:12:26 -0800 | [diff] [blame] | 17 | |
Atish Patra | 04098f9 | 2019-02-25 08:15:14 +0000 | [diff] [blame] | 18 | DECLARE_GLOBAL_DATA_PTR; |
| 19 | |
Bin Meng | c4fcb62 | 2018-12-12 06:12:26 -0800 | [diff] [blame] | 20 | static int riscv_cpu_get_desc(struct udevice *dev, char *buf, int size) |
| 21 | { |
| 22 | const char *isa; |
| 23 | |
| 24 | isa = dev_read_string(dev, "riscv,isa"); |
| 25 | if (size < (strlen(isa) + 1)) |
| 26 | return -ENOSPC; |
| 27 | |
| 28 | strcpy(buf, isa); |
| 29 | |
| 30 | return 0; |
| 31 | } |
| 32 | |
| 33 | static int riscv_cpu_get_info(struct udevice *dev, struct cpu_info *info) |
| 34 | { |
Sean Anderson | 4724409 | 2020-06-24 06:41:21 -0400 | [diff] [blame] | 35 | int ret; |
| 36 | struct clk clk; |
Bin Meng | c4fcb62 | 2018-12-12 06:12:26 -0800 | [diff] [blame] | 37 | const char *mmu; |
| 38 | |
Sean Anderson | 4724409 | 2020-06-24 06:41:21 -0400 | [diff] [blame] | 39 | /* First try getting the frequency from the assigned clock */ |
| 40 | ret = clk_get_by_index(dev, 0, &clk); |
| 41 | if (!ret) { |
| 42 | ret = clk_get_rate(&clk); |
| 43 | if (!IS_ERR_VALUE(ret)) |
| 44 | info->cpu_freq = ret; |
| 45 | clk_free(&clk); |
| 46 | } |
| 47 | |
| 48 | if (!info->cpu_freq) |
| 49 | dev_read_u32(dev, "clock-frequency", (u32 *)&info->cpu_freq); |
Bin Meng | c4fcb62 | 2018-12-12 06:12:26 -0800 | [diff] [blame] | 50 | |
| 51 | mmu = dev_read_string(dev, "mmu-type"); |
Sagar Shrikant Kadam | afc0c19 | 2020-06-28 07:45:02 -0700 | [diff] [blame^] | 52 | if (mmu) |
Bin Meng | c4fcb62 | 2018-12-12 06:12:26 -0800 | [diff] [blame] | 53 | info->features |= BIT(CPU_FEAT_MMU); |
| 54 | |
| 55 | return 0; |
| 56 | } |
| 57 | |
| 58 | static int riscv_cpu_get_count(struct udevice *dev) |
| 59 | { |
| 60 | ofnode node; |
| 61 | int num = 0; |
| 62 | |
| 63 | ofnode_for_each_subnode(node, dev_ofnode(dev->parent)) { |
| 64 | const char *device_type; |
| 65 | |
Bin Meng | 33d46a2 | 2019-08-08 00:52:08 -0700 | [diff] [blame] | 66 | /* skip if hart is marked as not available in the device tree */ |
| 67 | if (!ofnode_is_available(node)) |
| 68 | continue; |
| 69 | |
Bin Meng | c4fcb62 | 2018-12-12 06:12:26 -0800 | [diff] [blame] | 70 | device_type = ofnode_read_string(node, "device_type"); |
| 71 | if (!device_type) |
| 72 | continue; |
| 73 | if (strcmp(device_type, "cpu") == 0) |
| 74 | num++; |
| 75 | } |
| 76 | |
| 77 | return num; |
| 78 | } |
| 79 | |
| 80 | static int riscv_cpu_bind(struct udevice *dev) |
| 81 | { |
| 82 | struct cpu_platdata *plat = dev_get_parent_platdata(dev); |
| 83 | struct driver *drv; |
| 84 | int ret; |
| 85 | |
| 86 | /* save the hart id */ |
| 87 | plat->cpu_id = dev_read_addr(dev); |
Bin Meng | c4fcb62 | 2018-12-12 06:12:26 -0800 | [diff] [blame] | 88 | /* first examine the property in current cpu node */ |
| 89 | ret = dev_read_u32(dev, "timebase-frequency", &plat->timebase_freq); |
| 90 | /* if not found, then look at the parent /cpus node */ |
| 91 | if (ret) |
| 92 | dev_read_u32(dev->parent, "timebase-frequency", |
| 93 | &plat->timebase_freq); |
| 94 | |
| 95 | /* |
Atish Patra | 04098f9 | 2019-02-25 08:15:14 +0000 | [diff] [blame] | 96 | * Bind riscv-timer driver on boot hart. |
Bin Meng | c4fcb62 | 2018-12-12 06:12:26 -0800 | [diff] [blame] | 97 | * |
| 98 | * We only instantiate one timer device which is enough for U-Boot. |
| 99 | * Pass the "timebase-frequency" value as the driver data for the |
| 100 | * timer device. |
| 101 | * |
| 102 | * Return value is not checked since it's possible that the timer |
| 103 | * driver is not included. |
| 104 | */ |
Atish Patra | 04098f9 | 2019-02-25 08:15:14 +0000 | [diff] [blame] | 105 | if (plat->cpu_id == gd->arch.boot_hart && plat->timebase_freq) { |
Bin Meng | c4fcb62 | 2018-12-12 06:12:26 -0800 | [diff] [blame] | 106 | drv = lists_driver_lookup_name("riscv_timer"); |
| 107 | if (!drv) { |
| 108 | debug("Cannot find the timer driver, not included?\n"); |
| 109 | return 0; |
| 110 | } |
| 111 | |
| 112 | device_bind_with_driver_data(dev, drv, "riscv_timer", |
| 113 | plat->timebase_freq, ofnode_null(), |
| 114 | NULL); |
| 115 | } |
| 116 | |
| 117 | return 0; |
| 118 | } |
| 119 | |
Sean Anderson | d2a10ff | 2020-06-24 06:41:22 -0400 | [diff] [blame] | 120 | static int riscv_cpu_probe(struct udevice *dev) |
| 121 | { |
| 122 | int ret = 0; |
| 123 | struct clk clk; |
| 124 | |
| 125 | /* Get a clock if it exists */ |
| 126 | ret = clk_get_by_index(dev, 0, &clk); |
| 127 | if (ret) |
| 128 | return 0; |
| 129 | |
| 130 | ret = clk_enable(&clk); |
| 131 | clk_free(&clk); |
| 132 | if (ret == -ENOSYS || ret == -ENOTSUPP) |
| 133 | return 0; |
| 134 | else |
| 135 | return ret; |
| 136 | } |
| 137 | |
Bin Meng | c4fcb62 | 2018-12-12 06:12:26 -0800 | [diff] [blame] | 138 | static const struct cpu_ops riscv_cpu_ops = { |
| 139 | .get_desc = riscv_cpu_get_desc, |
| 140 | .get_info = riscv_cpu_get_info, |
| 141 | .get_count = riscv_cpu_get_count, |
| 142 | }; |
| 143 | |
| 144 | static const struct udevice_id riscv_cpu_ids[] = { |
| 145 | { .compatible = "riscv" }, |
| 146 | { } |
| 147 | }; |
| 148 | |
| 149 | U_BOOT_DRIVER(riscv_cpu) = { |
| 150 | .name = "riscv_cpu", |
| 151 | .id = UCLASS_CPU, |
| 152 | .of_match = riscv_cpu_ids, |
| 153 | .bind = riscv_cpu_bind, |
Sean Anderson | d2a10ff | 2020-06-24 06:41:22 -0400 | [diff] [blame] | 154 | .probe = riscv_cpu_probe, |
Bin Meng | c4fcb62 | 2018-12-12 06:12:26 -0800 | [diff] [blame] | 155 | .ops = &riscv_cpu_ops, |
| 156 | .flags = DM_FLAG_PRE_RELOC, |
| 157 | }; |