blob: f8d36710cd581f8b628056d09c406f8195c43619 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 * Copyright (C) 1995, 1996, 2001 Ralf Baechle
Ralf Baechle41943182005-05-05 16:45:59 +00004 * Copyright (C) 2001, 2004 MIPS Technologies, Inc.
Ralf Baechle70342282013-01-22 12:59:30 +01005 * Copyright (C) 2004 Maciej W. Rozycki
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07007#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>
Ralf Baechlebdc92d742013-05-21 16:59:19 +020014#include <asm/idle.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <asm/mipsregs.h>
16#include <asm/processor.h>
John Crispin9169a5d2013-04-11 05:34:59 +000017#include <asm/prom.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018
19unsigned int vced_count, vcei_count;
20
Ralf Baechled6d3c9a2013-10-16 17:10:07 +020021/*
22 * * No lock; only written during early bootup by CPU 0.
23 * */
24static RAW_NOTIFIER_HEAD(proc_cpuinfo_chain);
25
26int __ref register_proc_cpuinfo_notifier(struct notifier_block *nb)
27{
28 return raw_notifier_chain_register(&proc_cpuinfo_chain, nb);
29}
30
31int proc_cpuinfo_notifier_call_chain(unsigned long val, void *v)
32{
33 return raw_notifier_call_chain(&proc_cpuinfo_chain, val, v);
34}
35
Linus Torvalds1da177e2005-04-16 15:20:36 -070036static int show_cpuinfo(struct seq_file *m, void *v)
37{
Ralf Baechled6d3c9a2013-10-16 17:10:07 +020038 struct proc_cpuinfo_notifier_args proc_cpuinfo_notifier_args;
Linus Torvalds1da177e2005-04-16 15:20:36 -070039 unsigned long n = (unsigned long) v - 1;
Karl-Johan Karlsson31aa3662006-10-08 01:15:02 +020040 unsigned int version = cpu_data[n].processor_id;
41 unsigned int fp_vers = cpu_data[n].fpu_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -070042 char fmt [64];
David Daney654f57b2008-09-23 00:07:16 -070043 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -070044
45#ifdef CONFIG_SMP
Rusty Russell0b5f9c02012-03-29 15:38:30 +103046 if (!cpu_online(n))
Linus Torvalds1da177e2005-04-16 15:20:36 -070047 return 0;
48#endif
49
50 /*
51 * For the first processor also print the system type
52 */
Gabor Juhos487d70d2010-11-23 16:06:25 +010053 if (n == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070054 seq_printf(m, "system type\t\t: %s\n", get_system_type());
Gabor Juhos487d70d2010-11-23 16:06:25 +010055 if (mips_get_machine_name())
56 seq_printf(m, "machine\t\t\t: %s\n",
57 mips_get_machine_name());
58 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
60 seq_printf(m, "processor\t\t: %ld\n", n);
61 sprintf(fmt, "cpu model\t\t: %%s V%%d.%%d%s\n",
Steven J. Hill03751e72012-05-10 23:21:18 -050062 cpu_data[n].options & MIPS_CPU_FPU ? " FPU V%d.%d" : "");
Johannes Dickgrebere47c6592008-10-13 19:36:21 +020063 seq_printf(m, fmt, __cpu_name[n],
Steven J. Hill03751e72012-05-10 23:21:18 -050064 (version >> 4) & 0x0f, version & 0x0f,
65 (fp_vers >> 4) & 0x0f, fp_vers & 0x0f);
Ralf Baechle56369192009-02-28 09:44:28 +000066 seq_printf(m, "BogoMIPS\t\t: %u.%02u\n",
Steven J. Hill03751e72012-05-10 23:21:18 -050067 cpu_data[n].udelay_val / (500000/HZ),
68 (cpu_data[n].udelay_val / (5000/HZ)) % 100);
Linus Torvalds1da177e2005-04-16 15:20:36 -070069 seq_printf(m, "wait instruction\t: %s\n", cpu_wait ? "yes" : "no");
70 seq_printf(m, "microsecond timers\t: %s\n",
Steven J. Hill03751e72012-05-10 23:21:18 -050071 cpu_has_counter ? "yes" : "no");
Karl-Johan Karlsson31aa3662006-10-08 01:15:02 +020072 seq_printf(m, "tlb_entries\t\t: %d\n", cpu_data[n].tlbsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -070073 seq_printf(m, "extra interrupt vector\t: %s\n",
Steven J. Hill03751e72012-05-10 23:21:18 -050074 cpu_has_divec ? "yes" : "no");
David Daney654f57b2008-09-23 00:07:16 -070075 seq_printf(m, "hardware watchpoint\t: %s",
Steven J. Hill03751e72012-05-10 23:21:18 -050076 cpu_has_watch ? "yes, " : "no\n");
David Daney654f57b2008-09-23 00:07:16 -070077 if (cpu_has_watch) {
78 seq_printf(m, "count: %d, address/irw mask: [",
Steven J. Hill03751e72012-05-10 23:21:18 -050079 cpu_data[n].watch_reg_count);
David Daney654f57b2008-09-23 00:07:16 -070080 for (i = 0; i < cpu_data[n].watch_reg_count; i++)
81 seq_printf(m, "%s0x%04x", i ? ", " : "" ,
Steven J. Hill03751e72012-05-10 23:21:18 -050082 cpu_data[n].watch_reg_masks[i]);
David Daney654f57b2008-09-23 00:07:16 -070083 seq_printf(m, "]\n");
84 }
Aaro Koskinen41315b62013-12-31 01:26:31 +020085
Markos Chandras515a6392014-11-14 10:10:02 +000086 seq_printf(m, "isa\t\t\t:");
Maciej W. Rozyckie5f5a5b2017-07-08 23:24:44 +010087 if (cpu_has_mips_1)
Markos Chandras515a6392014-11-14 10:10:02 +000088 seq_printf(m, " mips1");
Aaro Koskinen41315b62013-12-31 01:26:31 +020089 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");
Markos Chandras515a6392014-11-14 10:10:02 +0000101 if (cpu_has_mips32r6)
102 seq_printf(m, "%s", " mips32r6");
Aaro Koskinen41315b62013-12-31 01:26:31 +0200103 if (cpu_has_mips64r1)
104 seq_printf(m, "%s", " mips64r1");
105 if (cpu_has_mips64r2)
106 seq_printf(m, "%s", " mips64r2");
Markos Chandras515a6392014-11-14 10:10:02 +0000107 if (cpu_has_mips64r6)
108 seq_printf(m, "%s", " mips64r6");
Aaro Koskinen41315b62013-12-31 01:26:31 +0200109 seq_printf(m, "\n");
Ralf Baechle981ef0d2012-08-20 16:39:11 +0200110
111 seq_printf(m, "ASEs implemented\t:");
112 if (cpu_has_mips16) seq_printf(m, "%s", " mips16");
Maciej W. Rozycki92ecd192017-07-08 16:00:09 +0100113 if (cpu_has_mips16e2) seq_printf(m, "%s", " mips16e2");
Ralf Baechle981ef0d2012-08-20 16:39:11 +0200114 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");
Zubair Lutfullah Kakakhelb5a64552016-03-29 15:50:25 +0100119 if (cpu_has_dsp3) seq_printf(m, "%s", " dsp3");
Ralf Baechle981ef0d2012-08-20 16:39:11 +0200120 if (cpu_has_mipsmt) seq_printf(m, "%s", " mt");
Steven J. Hillf8fa4812012-12-07 03:51:35 +0000121 if (cpu_has_mmips) seq_printf(m, "%s", " micromips");
David Daney1e7decd2013-02-16 23:42:43 +0100122 if (cpu_has_vz) seq_printf(m, "%s", " vz");
Paul Burtona5e9a692014-01-27 15:23:10 +0000123 if (cpu_has_msa) seq_printf(m, "%s", " msa");
Markos Chandras91119682014-01-27 15:10:40 +0000124 if (cpu_has_eva) seq_printf(m, "%s", " eva");
Markos Chandrase647e6b2014-07-14 12:43:28 +0100125 if (cpu_has_htw) seq_printf(m, "%s", " htw");
Steven J. Hillc5b36782015-02-26 18:16:38 -0600126 if (cpu_has_xpa) seq_printf(m, "%s", " xpa");
Jiaxun Yangd2f96552019-05-29 16:42:59 +0800127 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");
Ralf Baechle981ef0d2012-08-20 16:39:11 +0200131 seq_printf(m, "\n");
132
Steven J. Hillbce86082013-03-25 13:27:11 -0500133 if (cpu_has_mmips) {
134 seq_printf(m, "micromips kernel\t: %s\n",
135 (read_c0_config3() & MIPS_CONF3_ISA_OE) ? "yes" : "no");
136 }
Ralf Baechlef6771db2007-11-08 18:02:29 +0000137 seq_printf(m, "shadow register sets\t: %d\n",
Steven J. Hill03751e72012-05-10 23:21:18 -0500138 cpu_data[n].srsets);
David Daneye77c32f2010-12-21 14:19:09 -0800139 seq_printf(m, "kscratch registers\t: %d\n",
Steven J. Hill03751e72012-05-10 23:21:18 -0500140 hweight8(cpu_data[n].kscratch_mask));
Huacai Chenbda45842014-06-26 11:41:26 +0800141 seq_printf(m, "package\t\t\t: %d\n", cpu_data[n].package);
Paul Burtonf875a8322017-08-12 19:49:35 -0700142 seq_printf(m, "core\t\t\t: %d\n", cpu_core(&cpu_data[n]));
Ralf Baechle5508d452014-04-03 13:14:05 +0200143
Matt Redfearn765b0642016-08-04 17:19:38 +0100144#if defined(CONFIG_MIPS_MT_SMP) || defined(CONFIG_CPU_MIPSR6)
145 if (cpu_has_mipsmt)
Paul Burtonf875a8322017-08-12 19:49:35 -0700146 seq_printf(m, "VPE\t\t\t: %d\n", cpu_vpe_id(&cpu_data[n]));
Matt Redfearn765b0642016-08-04 17:19:38 +0100147 else if (cpu_has_vp)
Paul Burtonf875a8322017-08-12 19:49:35 -0700148 seq_printf(m, "VP\t\t\t: %d\n", cpu_vpe_id(&cpu_data[n]));
Matt Redfearn765b0642016-08-04 17:19:38 +0100149#endif
150
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 sprintf(fmt, "VCE%%c exceptions\t\t: %s\n",
Steven J. Hill03751e72012-05-10 23:21:18 -0500152 cpu_has_vce ? "%u" : "not available");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 seq_printf(m, fmt, 'D', vced_count);
154 seq_printf(m, fmt, 'I', vcei_count);
Ralf Baechled6d3c9a2013-10-16 17:10:07 +0200155
156 proc_cpuinfo_notifier_args.m = m;
157 proc_cpuinfo_notifier_args.n = n;
158
159 raw_notifier_call_chain(&proc_cpuinfo_chain, 0,
160 &proc_cpuinfo_notifier_args);
161
Martin Michlmayr17256052006-03-20 02:51:20 +0000162 seq_printf(m, "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163
164 return 0;
165}
166
167static void *c_start(struct seq_file *m, loff_t *pos)
168{
169 unsigned long i = *pos;
170
171 return i < NR_CPUS ? (void *) (i + 1) : NULL;
172}
173
174static void *c_next(struct seq_file *m, void *v, loff_t *pos)
175{
176 ++*pos;
177 return c_start(m, pos);
178}
179
180static void c_stop(struct seq_file *m, void *v)
181{
182}
183
Jan Engelhardt12323ca2008-01-22 20:42:33 +0100184const struct seq_operations cpuinfo_op = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 .start = c_start,
186 .next = c_next,
187 .stop = c_stop,
188 .show = show_cpuinfo,
189};