Thomas Gleixner | 50acfb2 | 2019-05-29 07:18:00 -0700 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0-only |
Palmer Dabbelt | 76d2a04 | 2017-07-10 18:00:26 -0700 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (C) 2012 Regents of the University of California |
Palmer Dabbelt | 76d2a04 | 2017-07-10 18:00:26 -0700 | [diff] [blame] | 4 | */ |
| 5 | |
| 6 | #include <linux/init.h> |
| 7 | #include <linux/seq_file.h> |
| 8 | #include <linux/of.h> |
Atish Patra | f99fb60 | 2018-10-02 12:15:05 -0700 | [diff] [blame] | 9 | #include <asm/smp.h> |
Palmer Dabbelt | 76d2a04 | 2017-07-10 18:00:26 -0700 | [diff] [blame] | 10 | |
Palmer Dabbelt | b2f8cfa7 | 2018-10-02 12:15:00 -0700 | [diff] [blame] | 11 | /* |
Johan Hovold | 149820c | 2019-01-18 15:03:06 +0100 | [diff] [blame] | 12 | * Returns the hart ID of the given device tree node, or -ENODEV if the node |
| 13 | * isn't an enabled and valid RISC-V hart node. |
Palmer Dabbelt | b2f8cfa7 | 2018-10-02 12:15:00 -0700 | [diff] [blame] | 14 | */ |
| 15 | int riscv_of_processor_hartid(struct device_node *node) |
Palmer Dabbelt | 76d2a04 | 2017-07-10 18:00:26 -0700 | [diff] [blame] | 16 | { |
Johan Hovold | e3d794d | 2019-01-18 15:03:07 +0100 | [diff] [blame] | 17 | const char *isa; |
Palmer Dabbelt | 76d2a04 | 2017-07-10 18:00:26 -0700 | [diff] [blame] | 18 | u32 hart; |
| 19 | |
| 20 | if (!of_device_is_compatible(node, "riscv")) { |
| 21 | pr_warn("Found incompatible CPU\n"); |
Johan Hovold | 149820c | 2019-01-18 15:03:06 +0100 | [diff] [blame] | 22 | return -ENODEV; |
Palmer Dabbelt | 76d2a04 | 2017-07-10 18:00:26 -0700 | [diff] [blame] | 23 | } |
| 24 | |
| 25 | if (of_property_read_u32(node, "reg", &hart)) { |
| 26 | pr_warn("Found CPU without hart ID\n"); |
Johan Hovold | 149820c | 2019-01-18 15:03:06 +0100 | [diff] [blame] | 27 | return -ENODEV; |
Palmer Dabbelt | 76d2a04 | 2017-07-10 18:00:26 -0700 | [diff] [blame] | 28 | } |
Palmer Dabbelt | 76d2a04 | 2017-07-10 18:00:26 -0700 | [diff] [blame] | 29 | |
Johan Hovold | e3d794d | 2019-01-18 15:03:07 +0100 | [diff] [blame] | 30 | if (!of_device_is_available(node)) { |
| 31 | pr_info("CPU with hartid=%d is not available\n", hart); |
Johan Hovold | 149820c | 2019-01-18 15:03:06 +0100 | [diff] [blame] | 32 | return -ENODEV; |
Palmer Dabbelt | 76d2a04 | 2017-07-10 18:00:26 -0700 | [diff] [blame] | 33 | } |
| 34 | |
| 35 | if (of_property_read_string(node, "riscv,isa", &isa)) { |
| 36 | pr_warn("CPU with hartid=%d has no \"riscv,isa\" property\n", hart); |
Johan Hovold | 149820c | 2019-01-18 15:03:06 +0100 | [diff] [blame] | 37 | return -ENODEV; |
Palmer Dabbelt | 76d2a04 | 2017-07-10 18:00:26 -0700 | [diff] [blame] | 38 | } |
| 39 | if (isa[0] != 'r' || isa[1] != 'v') { |
| 40 | pr_warn("CPU with hartid=%d has an invalid ISA of \"%s\"\n", hart, isa); |
Johan Hovold | 149820c | 2019-01-18 15:03:06 +0100 | [diff] [blame] | 41 | return -ENODEV; |
Palmer Dabbelt | 76d2a04 | 2017-07-10 18:00:26 -0700 | [diff] [blame] | 42 | } |
| 43 | |
| 44 | return hart; |
| 45 | } |
| 46 | |
| 47 | #ifdef CONFIG_PROC_FS |
| 48 | |
Atish Patra | 1edd28b | 2019-10-09 15:00:57 -0700 | [diff] [blame] | 49 | static void print_isa(struct seq_file *f, const char *isa) |
Palmer Dabbelt | 19ccf29 | 2018-10-02 12:14:56 -0700 | [diff] [blame] | 50 | { |
Atish Patra | 1edd28b | 2019-10-09 15:00:57 -0700 | [diff] [blame] | 51 | /* Print the entire ISA as it is */ |
Anup Patel | 4b26d22 | 2018-10-02 12:15:06 -0700 | [diff] [blame] | 52 | seq_puts(f, "isa\t\t: "); |
Atish Patra | 1edd28b | 2019-10-09 15:00:57 -0700 | [diff] [blame] | 53 | seq_write(f, isa, strlen(isa)); |
Anup Patel | 4b26d22 | 2018-10-02 12:15:06 -0700 | [diff] [blame] | 54 | seq_puts(f, "\n"); |
Palmer Dabbelt | 19ccf29 | 2018-10-02 12:14:56 -0700 | [diff] [blame] | 55 | } |
| 56 | |
| 57 | static void print_mmu(struct seq_file *f, const char *mmu_type) |
| 58 | { |
| 59 | #if defined(CONFIG_32BIT) |
| 60 | if (strcmp(mmu_type, "riscv,sv32") != 0) |
| 61 | return; |
| 62 | #elif defined(CONFIG_64BIT) |
| 63 | if (strcmp(mmu_type, "riscv,sv39") != 0 && |
| 64 | strcmp(mmu_type, "riscv,sv48") != 0) |
| 65 | return; |
| 66 | #endif |
| 67 | |
Anup Patel | 4b26d22 | 2018-10-02 12:15:06 -0700 | [diff] [blame] | 68 | seq_printf(f, "mmu\t\t: %s\n", mmu_type+6); |
Palmer Dabbelt | 19ccf29 | 2018-10-02 12:14:56 -0700 | [diff] [blame] | 69 | } |
| 70 | |
Palmer Dabbelt | 76d2a04 | 2017-07-10 18:00:26 -0700 | [diff] [blame] | 71 | static void *c_start(struct seq_file *m, loff_t *pos) |
| 72 | { |
| 73 | *pos = cpumask_next(*pos - 1, cpu_online_mask); |
| 74 | if ((*pos) < nr_cpu_ids) |
| 75 | return (void *)(uintptr_t)(1 + *pos); |
| 76 | return NULL; |
| 77 | } |
| 78 | |
| 79 | static void *c_next(struct seq_file *m, void *v, loff_t *pos) |
| 80 | { |
| 81 | (*pos)++; |
| 82 | return c_start(m, pos); |
| 83 | } |
| 84 | |
| 85 | static void c_stop(struct seq_file *m, void *v) |
| 86 | { |
| 87 | } |
| 88 | |
| 89 | static int c_show(struct seq_file *m, void *v) |
| 90 | { |
Atish Patra | f99fb60 | 2018-10-02 12:15:05 -0700 | [diff] [blame] | 91 | unsigned long cpu_id = (unsigned long)v - 1; |
Atish Patra | 7011456 | 2019-04-24 14:47:58 -0700 | [diff] [blame] | 92 | struct device_node *node = of_get_cpu_node(cpu_id, NULL); |
Palmer Dabbelt | 76d2a04 | 2017-07-10 18:00:26 -0700 | [diff] [blame] | 93 | const char *compat, *isa, *mmu; |
| 94 | |
Anup Patel | 4b26d22 | 2018-10-02 12:15:06 -0700 | [diff] [blame] | 95 | seq_printf(m, "processor\t: %lu\n", cpu_id); |
| 96 | seq_printf(m, "hart\t\t: %lu\n", cpuid_to_hartid_map(cpu_id)); |
Palmer Dabbelt | 19ccf29 | 2018-10-02 12:14:56 -0700 | [diff] [blame] | 97 | if (!of_property_read_string(node, "riscv,isa", &isa)) |
| 98 | print_isa(m, isa); |
| 99 | if (!of_property_read_string(node, "mmu-type", &mmu)) |
| 100 | print_mmu(m, mmu); |
Palmer Dabbelt | 76d2a04 | 2017-07-10 18:00:26 -0700 | [diff] [blame] | 101 | if (!of_property_read_string(node, "compatible", &compat) |
| 102 | && strcmp(compat, "riscv")) |
Anup Patel | 4b26d22 | 2018-10-02 12:15:06 -0700 | [diff] [blame] | 103 | seq_printf(m, "uarch\t\t: %s\n", compat); |
Palmer Dabbelt | 76d2a04 | 2017-07-10 18:00:26 -0700 | [diff] [blame] | 104 | seq_puts(m, "\n"); |
Atish Patra | 94f9bf1 | 2018-11-20 15:07:50 -0800 | [diff] [blame] | 105 | of_node_put(node); |
Palmer Dabbelt | 76d2a04 | 2017-07-10 18:00:26 -0700 | [diff] [blame] | 106 | |
| 107 | return 0; |
| 108 | } |
| 109 | |
| 110 | const struct seq_operations cpuinfo_op = { |
| 111 | .start = c_start, |
| 112 | .next = c_next, |
| 113 | .stop = c_stop, |
| 114 | .show = c_show |
| 115 | }; |
| 116 | |
| 117 | #endif /* CONFIG_PROC_FS */ |