blob: 93ce708f652bb266387b19ab3dca9d8838f95112 [file] [log] [blame]
Bin Meng833508c2018-12-12 06:12:26 -08001// SPDX-License-Identifier: GPL-2.0+
2/*
3 * Copyright (C) 2018, Bin Meng <bmeng.cn@gmail.com>
Sean Anderson62771862020-06-24 06:41:22 -04004 * Copyright (C) 2020, Sean Anderson <seanga2@gmail.com>
Bin Meng833508c2018-12-12 06:12:26 -08005 */
6
Sean Andersonab240172020-06-24 06:41:21 -04007#include <clk.h>
Bin Meng833508c2018-12-12 06:12:26 -08008#include <common.h>
9#include <cpu.h>
10#include <dm.h>
11#include <errno.h>
Simon Glassf7ae49f2020-05-10 11:40:05 -060012#include <log.h>
Bin Meng833508c2018-12-12 06:12:26 -080013#include <dm/device-internal.h>
14#include <dm/lists.h>
Simon Glasscd93d622020-05-10 11:40:13 -060015#include <linux/bitops.h>
Sean Andersonab240172020-06-24 06:41:21 -040016#include <linux/err.h>
Bin Meng833508c2018-12-12 06:12:26 -080017
Atish Patra007056f2019-02-25 08:15:14 +000018DECLARE_GLOBAL_DATA_PTR;
19
Simon Glass961420f2020-01-26 22:06:27 -070020static int riscv_cpu_get_desc(const struct udevice *dev, char *buf, int size)
Bin Meng833508c2018-12-12 06:12:26 -080021{
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
Simon Glass961420f2020-01-26 22:06:27 -070033static int riscv_cpu_get_info(const struct udevice *dev, struct cpu_info *info)
Bin Meng833508c2018-12-12 06:12:26 -080034{
Sean Andersonab240172020-06-24 06:41:21 -040035 int ret;
36 struct clk clk;
Bin Meng833508c2018-12-12 06:12:26 -080037 const char *mmu;
Sagar Shrikant Kadamadd0dc12020-06-28 07:45:03 -070038 u32 i_cache_size;
39 u32 d_cache_size;
Bin Meng833508c2018-12-12 06:12:26 -080040
Sean Andersonab240172020-06-24 06:41:21 -040041 /* First try getting the frequency from the assigned clock */
Simon Glass961420f2020-01-26 22:06:27 -070042 ret = clk_get_by_index((struct udevice *)dev, 0, &clk);
Sean Andersonab240172020-06-24 06:41:21 -040043 if (!ret) {
44 ret = clk_get_rate(&clk);
45 if (!IS_ERR_VALUE(ret))
46 info->cpu_freq = ret;
47 clk_free(&clk);
48 }
49
50 if (!info->cpu_freq)
51 dev_read_u32(dev, "clock-frequency", (u32 *)&info->cpu_freq);
Bin Meng833508c2018-12-12 06:12:26 -080052
53 mmu = dev_read_string(dev, "mmu-type");
Sagar Shrikant Kadamb6b233d2020-06-28 07:45:02 -070054 if (mmu)
Bin Meng833508c2018-12-12 06:12:26 -080055 info->features |= BIT(CPU_FEAT_MMU);
56
Sagar Shrikant Kadamadd0dc12020-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 Meng833508c2018-12-12 06:12:26 -080067 return 0;
68}
69
Simon Glass961420f2020-01-26 22:06:27 -070070static int riscv_cpu_get_count(const struct udevice *dev)
Bin Meng833508c2018-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 Meng4dfea4b2019-08-08 00:52:08 -070078 /* skip if hart is marked as not available in the device tree */
79 if (!ofnode_is_available(node))
80 continue;
81
Bin Meng833508c2018-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{
94 struct cpu_platdata *plat = dev_get_parent_platdata(dev);
95 struct driver *drv;
96 int ret;
97
98 /* save the hart id */
99 plat->cpu_id = dev_read_addr(dev);
Bin Meng833508c2018-12-12 06:12:26 -0800100 /* first examine the property in current cpu node */
101 ret = dev_read_u32(dev, "timebase-frequency", &plat->timebase_freq);
102 /* if not found, then look at the parent /cpus node */
103 if (ret)
104 dev_read_u32(dev->parent, "timebase-frequency",
105 &plat->timebase_freq);
106
107 /*
Atish Patra007056f2019-02-25 08:15:14 +0000108 * Bind riscv-timer driver on boot hart.
Bin Meng833508c2018-12-12 06:12:26 -0800109 *
110 * We only instantiate one timer device which is enough for U-Boot.
111 * Pass the "timebase-frequency" value as the driver data for the
112 * timer device.
113 *
114 * Return value is not checked since it's possible that the timer
115 * driver is not included.
116 */
Atish Patra007056f2019-02-25 08:15:14 +0000117 if (plat->cpu_id == gd->arch.boot_hart && plat->timebase_freq) {
Bin Meng833508c2018-12-12 06:12:26 -0800118 drv = lists_driver_lookup_name("riscv_timer");
119 if (!drv) {
120 debug("Cannot find the timer driver, not included?\n");
121 return 0;
122 }
123
124 device_bind_with_driver_data(dev, drv, "riscv_timer",
125 plat->timebase_freq, ofnode_null(),
126 NULL);
127 }
128
129 return 0;
130}
131
Sean Anderson62771862020-06-24 06:41:22 -0400132static int riscv_cpu_probe(struct udevice *dev)
133{
134 int ret = 0;
135 struct clk clk;
136
137 /* Get a clock if it exists */
138 ret = clk_get_by_index(dev, 0, &clk);
139 if (ret)
140 return 0;
141
142 ret = clk_enable(&clk);
143 clk_free(&clk);
144 if (ret == -ENOSYS || ret == -ENOTSUPP)
145 return 0;
146 else
147 return ret;
148}
149
Bin Meng833508c2018-12-12 06:12:26 -0800150static const struct cpu_ops riscv_cpu_ops = {
151 .get_desc = riscv_cpu_get_desc,
152 .get_info = riscv_cpu_get_info,
153 .get_count = riscv_cpu_get_count,
154};
155
156static const struct udevice_id riscv_cpu_ids[] = {
157 { .compatible = "riscv" },
158 { }
159};
160
161U_BOOT_DRIVER(riscv_cpu) = {
162 .name = "riscv_cpu",
163 .id = UCLASS_CPU,
164 .of_match = riscv_cpu_ids,
165 .bind = riscv_cpu_bind,
Sean Anderson62771862020-06-24 06:41:22 -0400166 .probe = riscv_cpu_probe,
Bin Meng833508c2018-12-12 06:12:26 -0800167 .ops = &riscv_cpu_ops,
168 .flags = DM_FLAG_PRE_RELOC,
169};