b.liu | e958203 | 2025-04-17 19:18:16 +0800 | [diff] [blame^] | 1 | // SPDX-License-Identifier: GPL-2.0 |
| 2 | /* |
| 3 | * Copyright (C) 1995, 1996, 2001 Ralf Baechle |
| 4 | * Copyright (C) 2001, 2004 MIPS Technologies, Inc. |
| 5 | * Copyright (C) 2004 Maciej W. Rozycki |
| 6 | */ |
| 7 | #include <linux/delay.h> |
| 8 | #include <linux/kernel.h> |
| 9 | #include <linux/sched.h> |
| 10 | #include <linux/seq_file.h> |
| 11 | #include <asm/bootinfo.h> |
| 12 | #include <asm/cpu.h> |
| 13 | #include <asm/cpu-features.h> |
| 14 | #include <asm/idle.h> |
| 15 | #include <asm/mipsregs.h> |
| 16 | #include <asm/processor.h> |
| 17 | #include <asm/prom.h> |
| 18 | |
| 19 | unsigned int vced_count, vcei_count; |
| 20 | |
| 21 | /* |
| 22 | * * No lock; only written during early bootup by CPU 0. |
| 23 | * */ |
| 24 | static RAW_NOTIFIER_HEAD(proc_cpuinfo_chain); |
| 25 | |
| 26 | int __ref register_proc_cpuinfo_notifier(struct notifier_block *nb) |
| 27 | { |
| 28 | return raw_notifier_chain_register(&proc_cpuinfo_chain, nb); |
| 29 | } |
| 30 | |
| 31 | int proc_cpuinfo_notifier_call_chain(unsigned long val, void *v) |
| 32 | { |
| 33 | return raw_notifier_call_chain(&proc_cpuinfo_chain, val, v); |
| 34 | } |
| 35 | |
| 36 | static int show_cpuinfo(struct seq_file *m, void *v) |
| 37 | { |
| 38 | struct proc_cpuinfo_notifier_args proc_cpuinfo_notifier_args; |
| 39 | unsigned long n = (unsigned long) v - 1; |
| 40 | unsigned int version = cpu_data[n].processor_id; |
| 41 | unsigned int fp_vers = cpu_data[n].fpu_id; |
| 42 | char fmt [64]; |
| 43 | int i; |
| 44 | |
| 45 | #ifdef CONFIG_SMP |
| 46 | if (!cpu_online(n)) |
| 47 | return 0; |
| 48 | #endif |
| 49 | |
| 50 | /* |
| 51 | * For the first processor also print the system type |
| 52 | */ |
| 53 | if (n == 0) { |
| 54 | seq_printf(m, "system type\t\t: %s\n", get_system_type()); |
| 55 | if (mips_get_machine_name()) |
| 56 | seq_printf(m, "machine\t\t\t: %s\n", |
| 57 | mips_get_machine_name()); |
| 58 | } |
| 59 | |
| 60 | seq_printf(m, "processor\t\t: %ld\n", n); |
| 61 | sprintf(fmt, "cpu model\t\t: %%s V%%d.%%d%s\n", |
| 62 | cpu_data[n].options & MIPS_CPU_FPU ? " FPU V%d.%d" : ""); |
| 63 | seq_printf(m, fmt, __cpu_name[n], |
| 64 | (version >> 4) & 0x0f, version & 0x0f, |
| 65 | (fp_vers >> 4) & 0x0f, fp_vers & 0x0f); |
| 66 | seq_printf(m, "BogoMIPS\t\t: %u.%02u\n", |
| 67 | cpu_data[n].udelay_val / (500000/HZ), |
| 68 | (cpu_data[n].udelay_val / (5000/HZ)) % 100); |
| 69 | seq_printf(m, "wait instruction\t: %s\n", cpu_wait ? "yes" : "no"); |
| 70 | seq_printf(m, "microsecond timers\t: %s\n", |
| 71 | cpu_has_counter ? "yes" : "no"); |
| 72 | seq_printf(m, "tlb_entries\t\t: %d\n", cpu_data[n].tlbsize); |
| 73 | seq_printf(m, "extra interrupt vector\t: %s\n", |
| 74 | cpu_has_divec ? "yes" : "no"); |
| 75 | seq_printf(m, "hardware watchpoint\t: %s", |
| 76 | cpu_has_watch ? "yes, " : "no\n"); |
| 77 | if (cpu_has_watch) { |
| 78 | seq_printf(m, "count: %d, address/irw mask: [", |
| 79 | cpu_data[n].watch_reg_count); |
| 80 | for (i = 0; i < cpu_data[n].watch_reg_count; i++) |
| 81 | seq_printf(m, "%s0x%04x", i ? ", " : "" , |
| 82 | cpu_data[n].watch_reg_masks[i]); |
| 83 | seq_printf(m, "]\n"); |
| 84 | } |
| 85 | |
| 86 | seq_printf(m, "isa\t\t\t:"); |
| 87 | if (cpu_has_mips_1) |
| 88 | seq_printf(m, " mips1"); |
| 89 | if (cpu_has_mips_2) |
| 90 | seq_printf(m, "%s", " mips2"); |
| 91 | if (cpu_has_mips_3) |
| 92 | seq_printf(m, "%s", " mips3"); |
| 93 | if (cpu_has_mips_4) |
| 94 | seq_printf(m, "%s", " mips4"); |
| 95 | if (cpu_has_mips_5) |
| 96 | seq_printf(m, "%s", " mips5"); |
| 97 | if (cpu_has_mips32r1) |
| 98 | seq_printf(m, "%s", " mips32r1"); |
| 99 | if (cpu_has_mips32r2) |
| 100 | seq_printf(m, "%s", " mips32r2"); |
| 101 | if (cpu_has_mips32r6) |
| 102 | seq_printf(m, "%s", " mips32r6"); |
| 103 | if (cpu_has_mips64r1) |
| 104 | seq_printf(m, "%s", " mips64r1"); |
| 105 | if (cpu_has_mips64r2) |
| 106 | seq_printf(m, "%s", " mips64r2"); |
| 107 | if (cpu_has_mips64r6) |
| 108 | seq_printf(m, "%s", " mips64r6"); |
| 109 | seq_printf(m, "\n"); |
| 110 | |
| 111 | seq_printf(m, "ASEs implemented\t:"); |
| 112 | if (cpu_has_mips16) seq_printf(m, "%s", " mips16"); |
| 113 | if (cpu_has_mips16e2) seq_printf(m, "%s", " mips16e2"); |
| 114 | if (cpu_has_mdmx) seq_printf(m, "%s", " mdmx"); |
| 115 | if (cpu_has_mips3d) seq_printf(m, "%s", " mips3d"); |
| 116 | if (cpu_has_smartmips) seq_printf(m, "%s", " smartmips"); |
| 117 | if (cpu_has_dsp) seq_printf(m, "%s", " dsp"); |
| 118 | if (cpu_has_dsp2) seq_printf(m, "%s", " dsp2"); |
| 119 | if (cpu_has_dsp3) seq_printf(m, "%s", " dsp3"); |
| 120 | if (cpu_has_mipsmt) seq_printf(m, "%s", " mt"); |
| 121 | if (cpu_has_mmips) seq_printf(m, "%s", " micromips"); |
| 122 | if (cpu_has_vz) seq_printf(m, "%s", " vz"); |
| 123 | if (cpu_has_msa) seq_printf(m, "%s", " msa"); |
| 124 | if (cpu_has_eva) seq_printf(m, "%s", " eva"); |
| 125 | if (cpu_has_htw) seq_printf(m, "%s", " htw"); |
| 126 | if (cpu_has_xpa) seq_printf(m, "%s", " xpa"); |
| 127 | if (cpu_has_loongson_mmi) seq_printf(m, "%s", " loongson-mmi"); |
| 128 | if (cpu_has_loongson_cam) seq_printf(m, "%s", " loongson-cam"); |
| 129 | if (cpu_has_loongson_ext) seq_printf(m, "%s", " loongson-ext"); |
| 130 | if (cpu_has_loongson_ext2) seq_printf(m, "%s", " loongson-ext2"); |
| 131 | seq_printf(m, "\n"); |
| 132 | |
| 133 | if (cpu_has_mmips) { |
| 134 | seq_printf(m, "micromips kernel\t: %s\n", |
| 135 | (read_c0_config3() & MIPS_CONF3_ISA_OE) ? "yes" : "no"); |
| 136 | } |
| 137 | |
| 138 | seq_printf(m, "Options implemented\t:"); |
| 139 | if (cpu_has_tlb) |
| 140 | seq_printf(m, "%s", " tlb"); |
| 141 | if (cpu_has_ftlb) |
| 142 | seq_printf(m, "%s", " ftlb"); |
| 143 | if (cpu_has_tlbinv) |
| 144 | seq_printf(m, "%s", " tlbinv"); |
| 145 | if (cpu_has_segments) |
| 146 | seq_printf(m, "%s", " segments"); |
| 147 | if (cpu_has_rixiex) |
| 148 | seq_printf(m, "%s", " rixiex"); |
| 149 | if (cpu_has_ldpte) |
| 150 | seq_printf(m, "%s", " ldpte"); |
| 151 | if (cpu_has_maar) |
| 152 | seq_printf(m, "%s", " maar"); |
| 153 | if (cpu_has_rw_llb) |
| 154 | seq_printf(m, "%s", " rw_llb"); |
| 155 | if (cpu_has_4kex) |
| 156 | seq_printf(m, "%s", " 4kex"); |
| 157 | if (cpu_has_3k_cache) |
| 158 | seq_printf(m, "%s", " 3k_cache"); |
| 159 | if (cpu_has_4k_cache) |
| 160 | seq_printf(m, "%s", " 4k_cache"); |
| 161 | if (cpu_has_6k_cache) |
| 162 | seq_printf(m, "%s", " 6k_cache"); |
| 163 | if (cpu_has_8k_cache) |
| 164 | seq_printf(m, "%s", " 8k_cache"); |
| 165 | if (cpu_has_tx39_cache) |
| 166 | seq_printf(m, "%s", " tx39_cache"); |
| 167 | if (cpu_has_octeon_cache) |
| 168 | seq_printf(m, "%s", " octeon_cache"); |
| 169 | if (cpu_has_fpu) |
| 170 | seq_printf(m, "%s", " fpu"); |
| 171 | if (cpu_has_32fpr) |
| 172 | seq_printf(m, "%s", " 32fpr"); |
| 173 | if (cpu_has_cache_cdex_p) |
| 174 | seq_printf(m, "%s", " cache_cdex_p"); |
| 175 | if (cpu_has_cache_cdex_s) |
| 176 | seq_printf(m, "%s", " cache_cdex_s"); |
| 177 | if (cpu_has_prefetch) |
| 178 | seq_printf(m, "%s", " prefetch"); |
| 179 | if (cpu_has_mcheck) |
| 180 | seq_printf(m, "%s", " mcheck"); |
| 181 | if (cpu_has_ejtag) |
| 182 | seq_printf(m, "%s", " ejtag"); |
| 183 | if (cpu_has_llsc) |
| 184 | seq_printf(m, "%s", " llsc"); |
| 185 | if (cpu_has_bp_ghist) |
| 186 | seq_printf(m, "%s", " bp_ghist"); |
| 187 | if (cpu_has_guestctl0ext) |
| 188 | seq_printf(m, "%s", " guestctl0ext"); |
| 189 | if (cpu_has_guestctl1) |
| 190 | seq_printf(m, "%s", " guestctl1"); |
| 191 | if (cpu_has_guestctl2) |
| 192 | seq_printf(m, "%s", " guestctl2"); |
| 193 | if (cpu_has_guestid) |
| 194 | seq_printf(m, "%s", " guestid"); |
| 195 | if (cpu_has_drg) |
| 196 | seq_printf(m, "%s", " drg"); |
| 197 | if (cpu_has_rixi) |
| 198 | seq_printf(m, "%s", " rixi"); |
| 199 | if (cpu_has_lpa) |
| 200 | seq_printf(m, "%s", " lpa"); |
| 201 | if (cpu_has_mvh) |
| 202 | seq_printf(m, "%s", " mvh"); |
| 203 | if (cpu_has_vtag_icache) |
| 204 | seq_printf(m, "%s", " vtag_icache"); |
| 205 | if (cpu_has_dc_aliases) |
| 206 | seq_printf(m, "%s", " dc_aliases"); |
| 207 | if (cpu_has_ic_fills_f_dc) |
| 208 | seq_printf(m, "%s", " ic_fills_f_dc"); |
| 209 | if (cpu_has_pindexed_dcache) |
| 210 | seq_printf(m, "%s", " pindexed_dcache"); |
| 211 | if (cpu_has_userlocal) |
| 212 | seq_printf(m, "%s", " userlocal"); |
| 213 | if (cpu_has_nofpuex) |
| 214 | seq_printf(m, "%s", " nofpuex"); |
| 215 | if (cpu_has_vint) |
| 216 | seq_printf(m, "%s", " vint"); |
| 217 | if (cpu_has_veic) |
| 218 | seq_printf(m, "%s", " veic"); |
| 219 | if (cpu_has_inclusive_pcaches) |
| 220 | seq_printf(m, "%s", " inclusive_pcaches"); |
| 221 | if (cpu_has_perf_cntr_intr_bit) |
| 222 | seq_printf(m, "%s", " perf_cntr_intr_bit"); |
| 223 | if (cpu_has_ufr) |
| 224 | seq_printf(m, "%s", " ufr"); |
| 225 | if (cpu_has_fre) |
| 226 | seq_printf(m, "%s", " fre"); |
| 227 | if (cpu_has_cdmm) |
| 228 | seq_printf(m, "%s", " cdmm"); |
| 229 | if (cpu_has_small_pages) |
| 230 | seq_printf(m, "%s", " small_pages"); |
| 231 | if (cpu_has_nan_legacy) |
| 232 | seq_printf(m, "%s", " nan_legacy"); |
| 233 | if (cpu_has_nan_2008) |
| 234 | seq_printf(m, "%s", " nan_2008"); |
| 235 | if (cpu_has_ebase_wg) |
| 236 | seq_printf(m, "%s", " ebase_wg"); |
| 237 | if (cpu_has_badinstr) |
| 238 | seq_printf(m, "%s", " badinstr"); |
| 239 | if (cpu_has_badinstrp) |
| 240 | seq_printf(m, "%s", " badinstrp"); |
| 241 | if (cpu_has_contextconfig) |
| 242 | seq_printf(m, "%s", " contextconfig"); |
| 243 | if (cpu_has_perf) |
| 244 | seq_printf(m, "%s", " perf"); |
| 245 | if (cpu_has_shared_ftlb_ram) |
| 246 | seq_printf(m, "%s", " shared_ftlb_ram"); |
| 247 | if (cpu_has_shared_ftlb_entries) |
| 248 | seq_printf(m, "%s", " shared_ftlb_entries"); |
| 249 | if (cpu_has_mipsmt_pertccounters) |
| 250 | seq_printf(m, "%s", " mipsmt_pertccounters"); |
| 251 | seq_printf(m, "\n"); |
| 252 | |
| 253 | seq_printf(m, "shadow register sets\t: %d\n", |
| 254 | cpu_data[n].srsets); |
| 255 | seq_printf(m, "kscratch registers\t: %d\n", |
| 256 | hweight8(cpu_data[n].kscratch_mask)); |
| 257 | seq_printf(m, "package\t\t\t: %d\n", cpu_data[n].package); |
| 258 | seq_printf(m, "core\t\t\t: %d\n", cpu_core(&cpu_data[n])); |
| 259 | |
| 260 | #if defined(CONFIG_MIPS_MT_SMP) || defined(CONFIG_CPU_MIPSR6) |
| 261 | if (cpu_has_mipsmt) |
| 262 | seq_printf(m, "VPE\t\t\t: %d\n", cpu_vpe_id(&cpu_data[n])); |
| 263 | else if (cpu_has_vp) |
| 264 | seq_printf(m, "VP\t\t\t: %d\n", cpu_vpe_id(&cpu_data[n])); |
| 265 | #endif |
| 266 | |
| 267 | sprintf(fmt, "VCE%%c exceptions\t\t: %s\n", |
| 268 | cpu_has_vce ? "%u" : "not available"); |
| 269 | seq_printf(m, fmt, 'D', vced_count); |
| 270 | seq_printf(m, fmt, 'I', vcei_count); |
| 271 | |
| 272 | proc_cpuinfo_notifier_args.m = m; |
| 273 | proc_cpuinfo_notifier_args.n = n; |
| 274 | |
| 275 | raw_notifier_call_chain(&proc_cpuinfo_chain, 0, |
| 276 | &proc_cpuinfo_notifier_args); |
| 277 | |
| 278 | seq_printf(m, "\n"); |
| 279 | |
| 280 | return 0; |
| 281 | } |
| 282 | |
| 283 | static void *c_start(struct seq_file *m, loff_t *pos) |
| 284 | { |
| 285 | unsigned long i = *pos; |
| 286 | |
| 287 | return i < nr_cpu_ids ? (void *) (i + 1) : NULL; |
| 288 | } |
| 289 | |
| 290 | static void *c_next(struct seq_file *m, void *v, loff_t *pos) |
| 291 | { |
| 292 | ++*pos; |
| 293 | return c_start(m, pos); |
| 294 | } |
| 295 | |
| 296 | static void c_stop(struct seq_file *m, void *v) |
| 297 | { |
| 298 | } |
| 299 | |
| 300 | const struct seq_operations cpuinfo_op = { |
| 301 | .start = c_start, |
| 302 | .next = c_next, |
| 303 | .stop = c_stop, |
| 304 | .show = show_cpuinfo, |
| 305 | }; |