blob: 4fff4658b5fda9e500cffe4637c47d65cd2c7d9d [file] [log] [blame]
Bin Mengc4fcb622018-12-12 06:12:26 -08001// SPDX-License-Identifier: GPL-2.0+
2/*
3 * Copyright (C) 2018, Bin Meng <bmeng.cn@gmail.com>
Sean Andersond2a10ff2020-06-24 06:41:22 -04004 * Copyright (C) 2020, Sean Anderson <seanga2@gmail.com>
Bin Mengc4fcb622018-12-12 06:12:26 -08005 */
6
Sean Anderson47244092020-06-24 06:41:21 -04007#include <clk.h>
Bin Mengc4fcb622018-12-12 06:12:26 -08008#include <cpu.h>
9#include <dm.h>
10#include <errno.h>
Simon Glass0f2af882020-05-10 11:40:05 -060011#include <log.h>
Simon Glass3ba929a2020-10-30 21:38:53 -060012#include <asm/global_data.h>
Heinrich Schuchardt6403e3d2024-01-29 12:46:05 +010013#include <asm/sbi.h>
Bin Mengc4fcb622018-12-12 06:12:26 -080014#include <dm/device-internal.h>
15#include <dm/lists.h>
Simon Glass4dcacfc2020-05-10 11:40:13 -060016#include <linux/bitops.h>
Sean Anderson47244092020-06-24 06:41:21 -040017#include <linux/err.h>
Bin Mengc4fcb622018-12-12 06:12:26 -080018
Atish Patra04098f92019-02-25 08:15:14 +000019DECLARE_GLOBAL_DATA_PTR;
20
Simon Glass791fa452020-01-26 22:06:27 -070021static int riscv_cpu_get_desc(const struct udevice *dev, char *buf, int size)
Bin Mengc4fcb622018-12-12 06:12:26 -080022{
Conor Dooley41981552024-03-18 15:16:02 +000023 const char *cpu;
Bin Mengc4fcb622018-12-12 06:12:26 -080024
Conor Dooley41981552024-03-18 15:16:02 +000025 cpu = dev_read_string(dev, "compatible");
Hanyuan Zhaobc735c32024-05-06 17:10:06 +080026 if (!cpu || size < (strlen(cpu) + 1))
Bin Mengc4fcb622018-12-12 06:12:26 -080027 return -ENOSPC;
28
Conor Dooley41981552024-03-18 15:16:02 +000029 strcpy(buf, cpu);
Bin Mengc4fcb622018-12-12 06:12:26 -080030
31 return 0;
32}
33
Simon Glass791fa452020-01-26 22:06:27 -070034static int riscv_cpu_get_info(const struct udevice *dev, struct cpu_info *info)
Bin Mengc4fcb622018-12-12 06:12:26 -080035{
Sean Anderson47244092020-06-24 06:41:21 -040036 int ret;
37 struct clk clk;
Bin Mengc4fcb622018-12-12 06:12:26 -080038 const char *mmu;
Sagar Shrikant Kadam4ae7a952020-06-28 07:45:03 -070039 u32 i_cache_size;
40 u32 d_cache_size;
Bin Mengc4fcb622018-12-12 06:12:26 -080041
Sean Anderson47244092020-06-24 06:41:21 -040042 /* First try getting the frequency from the assigned clock */
Simon Glass791fa452020-01-26 22:06:27 -070043 ret = clk_get_by_index((struct udevice *)dev, 0, &clk);
Sean Anderson47244092020-06-24 06:41:21 -040044 if (!ret) {
45 ret = clk_get_rate(&clk);
46 if (!IS_ERR_VALUE(ret))
47 info->cpu_freq = ret;
Sean Anderson47244092020-06-24 06:41:21 -040048 }
49
50 if (!info->cpu_freq)
51 dev_read_u32(dev, "clock-frequency", (u32 *)&info->cpu_freq);
Bin Mengc4fcb622018-12-12 06:12:26 -080052
53 mmu = dev_read_string(dev, "mmu-type");
Sagar Shrikant Kadamafc0c192020-06-28 07:45:02 -070054 if (mmu)
Bin Mengc4fcb622018-12-12 06:12:26 -080055 info->features |= BIT(CPU_FEAT_MMU);
56
Sagar Shrikant Kadam4ae7a952020-06-28 07:45:03 -070057 /* check if I cache is present */
58 ret = dev_read_u32(dev, "i-cache-size", &i_cache_size);
59 if (ret)
60 /* if not found check if d-cache is present */
61 ret = dev_read_u32(dev, "d-cache-size", &d_cache_size);
62
63 /* if either I or D cache is present set L1 cache feature */
64 if (!ret)
65 info->features |= BIT(CPU_FEAT_L1_CACHE);
66
Bin Mengc4fcb622018-12-12 06:12:26 -080067 return 0;
68}
69
Simon Glass791fa452020-01-26 22:06:27 -070070static int riscv_cpu_get_count(const struct udevice *dev)
Bin Mengc4fcb622018-12-12 06:12:26 -080071{
72 ofnode node;
73 int num = 0;
74
75 ofnode_for_each_subnode(node, dev_ofnode(dev->parent)) {
76 const char *device_type;
77
Bin Meng33d46a22019-08-08 00:52:08 -070078 /* skip if hart is marked as not available in the device tree */
Simon Glass2e4938b2022-09-06 20:27:17 -060079 if (!ofnode_is_enabled(node))
Bin Meng33d46a22019-08-08 00:52:08 -070080 continue;
81
Bin Mengc4fcb622018-12-12 06:12:26 -080082 device_type = ofnode_read_string(node, "device_type");
83 if (!device_type)
84 continue;
85 if (strcmp(device_type, "cpu") == 0)
86 num++;
87 }
88
89 return num;
90}
91
92static int riscv_cpu_bind(struct udevice *dev)
93{
Simon Glassb75b15b2020-12-03 16:55:23 -070094 struct cpu_plat *plat = dev_get_parent_plat(dev);
Bin Mengc4fcb622018-12-12 06:12:26 -080095 struct driver *drv;
96 int ret;
Heinrich Schuchardt6403e3d2024-01-29 12:46:05 +010097 long mvendorid;
Bin Mengc4fcb622018-12-12 06:12:26 -080098
99 /* save the hart id */
100 plat->cpu_id = dev_read_addr(dev);
Heinrich Schuchardt6403e3d2024-01-29 12:46:05 +0100101 /* provide data for SMBIOS */
Heinrich Schuchardtc0c63fa2023-12-28 08:30:24 +0100102 if (IS_ENABLED(CONFIG_64BIT))
103 plat->family = 0x201;
104 else
105 plat->family = 0x200;
Heinrich Schuchardt6403e3d2024-01-29 12:46:05 +0100106 if (CONFIG_IS_ENABLED(RISCV_SMODE)) {
107 /*
108 * For RISC-V CPUs the SMBIOS Processor ID field contains
109 * the Machine Vendor ID from CSR mvendorid.
110 */
111 ret = sbi_get_mvendorid(&mvendorid);
112 if (!ret)
113 plat->id[0] = mvendorid;
114 }
Bin Mengc4fcb622018-12-12 06:12:26 -0800115 /* first examine the property in current cpu node */
116 ret = dev_read_u32(dev, "timebase-frequency", &plat->timebase_freq);
117 /* if not found, then look at the parent /cpus node */
118 if (ret)
119 dev_read_u32(dev->parent, "timebase-frequency",
120 &plat->timebase_freq);
121
122 /*
Atish Patra04098f92019-02-25 08:15:14 +0000123 * Bind riscv-timer driver on boot hart.
Bin Mengc4fcb622018-12-12 06:12:26 -0800124 *
125 * We only instantiate one timer device which is enough for U-Boot.
126 * Pass the "timebase-frequency" value as the driver data for the
127 * timer device.
128 *
129 * Return value is not checked since it's possible that the timer
130 * driver is not included.
131 */
Atish Patra04098f92019-02-25 08:15:14 +0000132 if (plat->cpu_id == gd->arch.boot_hart && plat->timebase_freq) {
Bin Mengc4fcb622018-12-12 06:12:26 -0800133 drv = lists_driver_lookup_name("riscv_timer");
134 if (!drv) {
135 debug("Cannot find the timer driver, not included?\n");
136 return 0;
137 }
138
139 device_bind_with_driver_data(dev, drv, "riscv_timer",
140 plat->timebase_freq, ofnode_null(),
141 NULL);
142 }
143
144 return 0;
145}
146
Sean Andersond2a10ff2020-06-24 06:41:22 -0400147static int riscv_cpu_probe(struct udevice *dev)
148{
149 int ret = 0;
150 struct clk clk;
151
152 /* Get a clock if it exists */
153 ret = clk_get_by_index(dev, 0, &clk);
154 if (ret)
155 return 0;
156
157 ret = clk_enable(&clk);
Sean Andersond2a10ff2020-06-24 06:41:22 -0400158 if (ret == -ENOSYS || ret == -ENOTSUPP)
159 return 0;
160 else
161 return ret;
162}
163
Bin Mengc4fcb622018-12-12 06:12:26 -0800164static const struct cpu_ops riscv_cpu_ops = {
165 .get_desc = riscv_cpu_get_desc,
166 .get_info = riscv_cpu_get_info,
167 .get_count = riscv_cpu_get_count,
168};
169
170static const struct udevice_id riscv_cpu_ids[] = {
171 { .compatible = "riscv" },
172 { }
173};
174
175U_BOOT_DRIVER(riscv_cpu) = {
176 .name = "riscv_cpu",
177 .id = UCLASS_CPU,
178 .of_match = riscv_cpu_ids,
179 .bind = riscv_cpu_bind,
Sean Andersond2a10ff2020-06-24 06:41:22 -0400180 .probe = riscv_cpu_probe,
Bin Mengc4fcb622018-12-12 06:12:26 -0800181 .ops = &riscv_cpu_ops,
182 .flags = DM_FLAG_PRE_RELOC,
183};