1 // SPDX-License-Identifier: GPL-2.0-only
3 * Copyright (C) 2012 Regents of the University of California
6 #include <linux/init.h>
7 #include <linux/seq_file.h>
11 #include <asm/pgtable.h>
14 * Returns the hart ID of the given device tree node, or -ENODEV if the node
15 * isn't an enabled and valid RISC-V hart node.
17 int riscv_of_processor_hartid(struct device_node *node, unsigned long *hart)
21 if (!of_device_is_compatible(node, "riscv")) {
22 pr_warn("Found incompatible CPU\n");
26 *hart = (unsigned long) of_get_cpu_hwid(node, 0);
28 pr_warn("Found CPU without hart ID\n");
32 if (!of_device_is_available(node)) {
33 pr_info("CPU with hartid=%lu is not available\n", *hart);
37 if (of_property_read_string(node, "riscv,isa", &isa)) {
38 pr_warn("CPU with hartid=%lu has no \"riscv,isa\" property\n", *hart);
41 if (isa[0] != 'r' || isa[1] != 'v') {
42 pr_warn("CPU with hartid=%lu has an invalid ISA of \"%s\"\n", *hart, isa);
50 * Find hart ID of the CPU DT node under which given DT node falls.
52 * To achieve this, we walk up the DT tree until we find an active
53 * RISC-V core (HART) node and extract the cpuid from it.
55 int riscv_of_parent_hartid(struct device_node *node, unsigned long *hartid)
59 for (; node; node = node->parent) {
60 if (of_device_is_compatible(node, "riscv")) {
61 rc = riscv_of_processor_hartid(node, hartid);
71 #define __RISCV_ISA_EXT_DATA(UPROP, EXTID) \
74 .isa_ext_id = EXTID, \
77 * Here are the ordering rules of extension naming defined by RISC-V
79 * 1. All extensions should be separated from other multi-letter extensions
81 * 2. The first letter following the 'Z' conventionally indicates the most
82 * closely related alphabetical extension category, IMAFDQLCBKJTPVH.
83 * If multiple 'Z' extensions are named, they should be ordered first
84 * by category, then alphabetically within a category.
85 * 3. Standard supervisor-level extensions (starts with 'S') should be
86 * listed after standard unprivileged extensions. If multiple
87 * supervisor-level extensions are listed, they should be ordered
89 * 4. Non-standard extensions (starts with 'X') must be listed after all
90 * standard extensions. They must be separated from other multi-letter
91 * extensions by an underscore.
93 static struct riscv_isa_ext_data isa_ext_arr[] = {
94 __RISCV_ISA_EXT_DATA(sscofpmf, RISCV_ISA_EXT_SSCOFPMF),
95 __RISCV_ISA_EXT_DATA(svpbmt, RISCV_ISA_EXT_SVPBMT),
96 __RISCV_ISA_EXT_DATA(zicbom, RISCV_ISA_EXT_ZICBOM),
97 __RISCV_ISA_EXT_DATA("", RISCV_ISA_EXT_MAX),
100 static void print_isa_ext(struct seq_file *f)
102 struct riscv_isa_ext_data *edata;
105 arr_sz = ARRAY_SIZE(isa_ext_arr) - 1;
107 /* No extension support available */
111 for (i = 0; i <= arr_sz; i++) {
112 edata = &isa_ext_arr[i];
113 if (!__riscv_isa_extension_available(NULL, edata->isa_ext_id))
115 seq_printf(f, "_%s", edata->uprop);
120 * These are the only valid base (single letter) ISA extensions as per the spec.
121 * It also specifies the canonical order in which it appears in the spec.
122 * Some of the extension may just be a place holder for now (B, K, P, J).
123 * This should be updated once corresponding extensions are ratified.
125 static const char base_riscv_exts[13] = "imafdqcbkjpvh";
127 static void print_isa(struct seq_file *f, const char *isa)
131 seq_puts(f, "isa\t\t: ");
132 /* Print the rv[64/32] part */
133 seq_write(f, isa, 4);
134 for (i = 0; i < sizeof(base_riscv_exts); i++) {
135 if (__riscv_isa_extension_available(NULL, base_riscv_exts[i] - 'a'))
136 /* Print only enabled the base ISA extensions */
137 seq_write(f, &base_riscv_exts[i], 1);
143 static void print_mmu(struct seq_file *f)
148 #if defined(CONFIG_32BIT)
149 strncpy(sv_type, "sv32", 5);
150 #elif defined(CONFIG_64BIT)
151 if (pgtable_l5_enabled)
152 strncpy(sv_type, "sv57", 5);
153 else if (pgtable_l4_enabled)
154 strncpy(sv_type, "sv48", 5);
156 strncpy(sv_type, "sv39", 5);
159 strncpy(sv_type, "none", 5);
160 #endif /* CONFIG_MMU */
161 seq_printf(f, "mmu\t\t: %s\n", sv_type);
164 static void *c_start(struct seq_file *m, loff_t *pos)
166 *pos = cpumask_next(*pos - 1, cpu_online_mask);
167 if ((*pos) < nr_cpu_ids)
168 return (void *)(uintptr_t)(1 + *pos);
172 static void *c_next(struct seq_file *m, void *v, loff_t *pos)
175 return c_start(m, pos);
178 static void c_stop(struct seq_file *m, void *v)
182 static int c_show(struct seq_file *m, void *v)
184 unsigned long cpu_id = (unsigned long)v - 1;
185 struct device_node *node = of_get_cpu_node(cpu_id, NULL);
186 const char *compat, *isa;
188 seq_printf(m, "processor\t: %lu\n", cpu_id);
189 seq_printf(m, "hart\t\t: %lu\n", cpuid_to_hartid_map(cpu_id));
190 if (!of_property_read_string(node, "riscv,isa", &isa))
193 if (!of_property_read_string(node, "compatible", &compat)
194 && strcmp(compat, "riscv"))
195 seq_printf(m, "uarch\t\t: %s\n", compat);
202 const struct seq_operations cpuinfo_op = {
209 #endif /* CONFIG_PROC_FS */