1 // SPDX-License-Identifier: GPL-2.0-only
3 * Copyright (C) 2012 Regents of the University of California
6 #include <linux/acpi.h>
8 #include <linux/ctype.h>
9 #include <linux/init.h>
10 #include <linux/seq_file.h>
13 #include <asm/cpufeature.h>
15 #include <asm/hwcap.h>
18 #include <asm/pgtable.h>
20 bool arch_match_cpu_phys_id(int cpu, u64 phys_id)
22 return phys_id == cpuid_to_hartid_map(cpu);
26 * Returns the hart ID of the given device tree node, or -ENODEV if the node
27 * isn't an enabled and valid RISC-V hart node.
29 int riscv_of_processor_hartid(struct device_node *node, unsigned long *hart)
33 *hart = (unsigned long)of_get_cpu_hwid(node, 0);
35 pr_warn("Found CPU without hart ID\n");
39 cpu = riscv_hartid_to_cpuid(*hart);
43 if (!cpu_possible(cpu))
49 int __init riscv_early_of_processor_hartid(struct device_node *node, unsigned long *hart)
53 if (!of_device_is_compatible(node, "riscv")) {
54 pr_warn("Found incompatible CPU\n");
58 *hart = (unsigned long)of_get_cpu_hwid(node, 0);
60 pr_warn("Found CPU without hart ID\n");
64 if (!of_device_is_available(node)) {
65 pr_info("CPU with hartid=%lu is not available\n", *hart);
69 if (of_property_read_string(node, "riscv,isa-base", &isa))
72 if (IS_ENABLED(CONFIG_32BIT) && strncasecmp(isa, "rv32i", 5)) {
73 pr_warn("CPU with hartid=%lu does not support rv32i", *hart);
77 if (IS_ENABLED(CONFIG_64BIT) && strncasecmp(isa, "rv64i", 5)) {
78 pr_warn("CPU with hartid=%lu does not support rv64i", *hart);
82 if (!of_property_present(node, "riscv,isa-extensions"))
85 if (of_property_match_string(node, "riscv,isa-extensions", "i") < 0 ||
86 of_property_match_string(node, "riscv,isa-extensions", "m") < 0 ||
87 of_property_match_string(node, "riscv,isa-extensions", "a") < 0) {
88 pr_warn("CPU with hartid=%lu does not support ima", *hart);
95 if (!riscv_isa_fallback) {
96 pr_warn("CPU with hartid=%lu is invalid: this kernel does not parse \"riscv,isa\"",
101 if (of_property_read_string(node, "riscv,isa", &isa)) {
102 pr_warn("CPU with hartid=%lu has no \"riscv,isa-base\" or \"riscv,isa\" property\n",
107 if (IS_ENABLED(CONFIG_32BIT) && strncasecmp(isa, "rv32ima", 7)) {
108 pr_warn("CPU with hartid=%lu does not support rv32ima", *hart);
112 if (IS_ENABLED(CONFIG_64BIT) && strncasecmp(isa, "rv64ima", 7)) {
113 pr_warn("CPU with hartid=%lu does not support rv64ima", *hart);
121 * Find hart ID of the CPU DT node under which given DT node falls.
123 * To achieve this, we walk up the DT tree until we find an active
124 * RISC-V core (HART) node and extract the cpuid from it.
126 int riscv_of_parent_hartid(struct device_node *node, unsigned long *hartid)
128 for (; node; node = node->parent) {
129 if (of_device_is_compatible(node, "riscv")) {
130 *hartid = (unsigned long)of_get_cpu_hwid(node, 0);
131 if (*hartid == ~0UL) {
132 pr_warn("Found CPU without hart ID\n");
142 unsigned long __init riscv_get_marchid(void)
144 struct riscv_cpuinfo *ci = this_cpu_ptr(&riscv_cpuinfo);
146 #if IS_ENABLED(CONFIG_RISCV_SBI)
147 ci->marchid = sbi_spec_is_0_1() ? 0 : sbi_get_marchid();
148 #elif IS_ENABLED(CONFIG_RISCV_M_MODE)
149 ci->marchid = csr_read(CSR_MARCHID);
156 unsigned long __init riscv_get_mvendorid(void)
158 struct riscv_cpuinfo *ci = this_cpu_ptr(&riscv_cpuinfo);
160 #if IS_ENABLED(CONFIG_RISCV_SBI)
161 ci->mvendorid = sbi_spec_is_0_1() ? 0 : sbi_get_mvendorid();
162 #elif IS_ENABLED(CONFIG_RISCV_M_MODE)
163 ci->mvendorid = csr_read(CSR_MVENDORID);
167 return ci->mvendorid;
170 DEFINE_PER_CPU(struct riscv_cpuinfo, riscv_cpuinfo);
172 unsigned long riscv_cached_mvendorid(unsigned int cpu_id)
174 struct riscv_cpuinfo *ci = per_cpu_ptr(&riscv_cpuinfo, cpu_id);
176 return ci->mvendorid;
178 EXPORT_SYMBOL(riscv_cached_mvendorid);
180 unsigned long riscv_cached_marchid(unsigned int cpu_id)
182 struct riscv_cpuinfo *ci = per_cpu_ptr(&riscv_cpuinfo, cpu_id);
186 EXPORT_SYMBOL(riscv_cached_marchid);
188 unsigned long riscv_cached_mimpid(unsigned int cpu_id)
190 struct riscv_cpuinfo *ci = per_cpu_ptr(&riscv_cpuinfo, cpu_id);
194 EXPORT_SYMBOL(riscv_cached_mimpid);
196 static int riscv_cpuinfo_starting(unsigned int cpu)
198 struct riscv_cpuinfo *ci = this_cpu_ptr(&riscv_cpuinfo);
200 #if IS_ENABLED(CONFIG_RISCV_SBI)
202 ci->mvendorid = sbi_spec_is_0_1() ? 0 : sbi_get_mvendorid();
204 ci->marchid = sbi_spec_is_0_1() ? 0 : sbi_get_marchid();
205 ci->mimpid = sbi_spec_is_0_1() ? 0 : sbi_get_mimpid();
206 #elif IS_ENABLED(CONFIG_RISCV_M_MODE)
208 ci->mvendorid = csr_read(CSR_MVENDORID);
210 ci->marchid = csr_read(CSR_MARCHID);
211 ci->mimpid = csr_read(CSR_MIMPID);
221 static int __init riscv_cpuinfo_init(void)
225 ret = cpuhp_setup_state(CPUHP_AP_ONLINE_DYN, "riscv/cpuinfo:starting",
226 riscv_cpuinfo_starting, NULL);
228 pr_err("cpuinfo: failed to register hotplug callbacks.\n");
234 arch_initcall(riscv_cpuinfo_init);
236 #ifdef CONFIG_PROC_FS
238 static void print_isa(struct seq_file *f, const unsigned long *isa_bitmap)
241 if (IS_ENABLED(CONFIG_32BIT))
242 seq_write(f, "rv32", 4);
244 seq_write(f, "rv64", 4);
246 for (int i = 0; i < riscv_isa_ext_count; i++) {
247 if (!__riscv_isa_extension_available(isa_bitmap, riscv_isa_ext[i].id))
250 /* Only multi-letter extensions are split by underscores */
251 if (strnlen(riscv_isa_ext[i].name, 2) != 1)
254 seq_printf(f, "%s", riscv_isa_ext[i].name);
260 static void print_mmu(struct seq_file *f)
265 #if defined(CONFIG_32BIT)
267 #elif defined(CONFIG_64BIT)
268 if (pgtable_l5_enabled)
270 else if (pgtable_l4_enabled)
277 #endif /* CONFIG_MMU */
278 seq_printf(f, "mmu\t\t: %s\n", sv_type);
281 static void *c_start(struct seq_file *m, loff_t *pos)
283 if (*pos == nr_cpu_ids)
286 *pos = cpumask_next(*pos - 1, cpu_online_mask);
287 if ((*pos) < nr_cpu_ids)
288 return (void *)(uintptr_t)(1 + *pos);
292 static void *c_next(struct seq_file *m, void *v, loff_t *pos)
295 return c_start(m, pos);
298 static void c_stop(struct seq_file *m, void *v)
302 static int c_show(struct seq_file *m, void *v)
304 unsigned long cpu_id = (unsigned long)v - 1;
305 struct riscv_cpuinfo *ci = per_cpu_ptr(&riscv_cpuinfo, cpu_id);
306 struct device_node *node;
309 seq_printf(m, "processor\t: %lu\n", cpu_id);
310 seq_printf(m, "hart\t\t: %lu\n", cpuid_to_hartid_map(cpu_id));
313 * For historical raisins, the isa: line is limited to the lowest common
314 * denominator of extensions supported across all harts. A true list of
315 * extensions supported on this hart is printed later in the hart isa:
318 seq_puts(m, "isa\t\t: ");
323 node = of_get_cpu_node(cpu_id, NULL);
325 if (!of_property_read_string(node, "compatible", &compat) &&
326 strcmp(compat, "riscv"))
327 seq_printf(m, "uarch\t\t: %s\n", compat);
332 seq_printf(m, "mvendorid\t: 0x%lx\n", ci->mvendorid);
333 seq_printf(m, "marchid\t\t: 0x%lx\n", ci->marchid);
334 seq_printf(m, "mimpid\t\t: 0x%lx\n", ci->mimpid);
337 * Print the ISA extensions specific to this hart, which may show
338 * additional extensions not present across all harts.
340 seq_puts(m, "hart isa\t: ");
341 print_isa(m, hart_isa[cpu_id].isa);
347 const struct seq_operations cpuinfo_op = {
354 #endif /* CONFIG_PROC_FS */