blob: bbd83b810e51965f88174c653dbd9afa4664837b [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * Copyright (C) 1995, 1996, 2001 Ralf Baechle
Ralf Baechle41943182005-05-05 16:45:59 +00003 * Copyright (C) 2001, 2004 MIPS Technologies, Inc.
Ralf Baechle70342282013-01-22 12:59:30 +01004 * Copyright (C) 2004 Maciej W. Rozycki
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006#include <linux/delay.h>
7#include <linux/kernel.h>
8#include <linux/sched.h>
9#include <linux/seq_file.h>
10#include <asm/bootinfo.h>
11#include <asm/cpu.h>
12#include <asm/cpu-features.h>
Ralf Baechlebdc92d742013-05-21 16:59:19 +020013#include <asm/idle.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <asm/mipsregs.h>
15#include <asm/processor.h>
John Crispin9169a5d2013-04-11 05:34:59 +000016#include <asm/prom.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017
18unsigned int vced_count, vcei_count;
19
Ralf Baechled6d3c9a2013-10-16 17:10:07 +020020/*
21 * * No lock; only written during early bootup by CPU 0.
22 * */
23static RAW_NOTIFIER_HEAD(proc_cpuinfo_chain);
24
25int __ref register_proc_cpuinfo_notifier(struct notifier_block *nb)
26{
27 return raw_notifier_chain_register(&proc_cpuinfo_chain, nb);
28}
29
30int proc_cpuinfo_notifier_call_chain(unsigned long val, void *v)
31{
32 return raw_notifier_call_chain(&proc_cpuinfo_chain, val, v);
33}
34
Linus Torvalds1da177e2005-04-16 15:20:36 -070035static int show_cpuinfo(struct seq_file *m, void *v)
36{
Ralf Baechled6d3c9a2013-10-16 17:10:07 +020037 struct proc_cpuinfo_notifier_args proc_cpuinfo_notifier_args;
Linus Torvalds1da177e2005-04-16 15:20:36 -070038 unsigned long n = (unsigned long) v - 1;
Karl-Johan Karlsson31aa3662006-10-08 01:15:02 +020039 unsigned int version = cpu_data[n].processor_id;
40 unsigned int fp_vers = cpu_data[n].fpu_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -070041 char fmt [64];
David Daney654f57b2008-09-23 00:07:16 -070042 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -070043
44#ifdef CONFIG_SMP
Rusty Russell0b5f9c02012-03-29 15:38:30 +103045 if (!cpu_online(n))
Linus Torvalds1da177e2005-04-16 15:20:36 -070046 return 0;
47#endif
48
49 /*
50 * For the first processor also print the system type
51 */
Gabor Juhos487d70d2010-11-23 16:06:25 +010052 if (n == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070053 seq_printf(m, "system type\t\t: %s\n", get_system_type());
Gabor Juhos487d70d2010-11-23 16:06:25 +010054 if (mips_get_machine_name())
55 seq_printf(m, "machine\t\t\t: %s\n",
56 mips_get_machine_name());
57 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070058
59 seq_printf(m, "processor\t\t: %ld\n", n);
60 sprintf(fmt, "cpu model\t\t: %%s V%%d.%%d%s\n",
Steven J. Hill03751e72012-05-10 23:21:18 -050061 cpu_data[n].options & MIPS_CPU_FPU ? " FPU V%d.%d" : "");
Johannes Dickgrebere47c6592008-10-13 19:36:21 +020062 seq_printf(m, fmt, __cpu_name[n],
Steven J. Hill03751e72012-05-10 23:21:18 -050063 (version >> 4) & 0x0f, version & 0x0f,
64 (fp_vers >> 4) & 0x0f, fp_vers & 0x0f);
Ralf Baechle56369192009-02-28 09:44:28 +000065 seq_printf(m, "BogoMIPS\t\t: %u.%02u\n",
Steven J. Hill03751e72012-05-10 23:21:18 -050066 cpu_data[n].udelay_val / (500000/HZ),
67 (cpu_data[n].udelay_val / (5000/HZ)) % 100);
Linus Torvalds1da177e2005-04-16 15:20:36 -070068 seq_printf(m, "wait instruction\t: %s\n", cpu_wait ? "yes" : "no");
69 seq_printf(m, "microsecond timers\t: %s\n",
Steven J. Hill03751e72012-05-10 23:21:18 -050070 cpu_has_counter ? "yes" : "no");
Karl-Johan Karlsson31aa3662006-10-08 01:15:02 +020071 seq_printf(m, "tlb_entries\t\t: %d\n", cpu_data[n].tlbsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 seq_printf(m, "extra interrupt vector\t: %s\n",
Steven J. Hill03751e72012-05-10 23:21:18 -050073 cpu_has_divec ? "yes" : "no");
David Daney654f57b2008-09-23 00:07:16 -070074 seq_printf(m, "hardware watchpoint\t: %s",
Steven J. Hill03751e72012-05-10 23:21:18 -050075 cpu_has_watch ? "yes, " : "no\n");
David Daney654f57b2008-09-23 00:07:16 -070076 if (cpu_has_watch) {
77 seq_printf(m, "count: %d, address/irw mask: [",
Steven J. Hill03751e72012-05-10 23:21:18 -050078 cpu_data[n].watch_reg_count);
David Daney654f57b2008-09-23 00:07:16 -070079 for (i = 0; i < cpu_data[n].watch_reg_count; i++)
80 seq_printf(m, "%s0x%04x", i ? ", " : "" ,
Steven J. Hill03751e72012-05-10 23:21:18 -050081 cpu_data[n].watch_reg_masks[i]);
David Daney654f57b2008-09-23 00:07:16 -070082 seq_printf(m, "]\n");
83 }
Aaro Koskinen41315b62013-12-31 01:26:31 +020084
Markos Chandras515a6392014-11-14 10:10:02 +000085 seq_printf(m, "isa\t\t\t:");
86 if (cpu_has_mips_r1)
87 seq_printf(m, " mips1");
Aaro Koskinen41315b62013-12-31 01:26:31 +020088 if (cpu_has_mips_2)
89 seq_printf(m, "%s", " mips2");
90 if (cpu_has_mips_3)
91 seq_printf(m, "%s", " mips3");
92 if (cpu_has_mips_4)
93 seq_printf(m, "%s", " mips4");
94 if (cpu_has_mips_5)
95 seq_printf(m, "%s", " mips5");
96 if (cpu_has_mips32r1)
97 seq_printf(m, "%s", " mips32r1");
98 if (cpu_has_mips32r2)
99 seq_printf(m, "%s", " mips32r2");
Markos Chandras515a6392014-11-14 10:10:02 +0000100 if (cpu_has_mips32r6)
101 seq_printf(m, "%s", " mips32r6");
Aaro Koskinen41315b62013-12-31 01:26:31 +0200102 if (cpu_has_mips64r1)
103 seq_printf(m, "%s", " mips64r1");
104 if (cpu_has_mips64r2)
105 seq_printf(m, "%s", " mips64r2");
Markos Chandras515a6392014-11-14 10:10:02 +0000106 if (cpu_has_mips64r6)
107 seq_printf(m, "%s", " mips64r6");
Aaro Koskinen41315b62013-12-31 01:26:31 +0200108 seq_printf(m, "\n");
Ralf Baechle981ef0d2012-08-20 16:39:11 +0200109
110 seq_printf(m, "ASEs implemented\t:");
111 if (cpu_has_mips16) seq_printf(m, "%s", " mips16");
Maciej W. Rozycki92ecd192017-07-08 16:00:09 +0100112 if (cpu_has_mips16e2) seq_printf(m, "%s", " mips16e2");
Ralf Baechle981ef0d2012-08-20 16:39:11 +0200113 if (cpu_has_mdmx) seq_printf(m, "%s", " mdmx");
114 if (cpu_has_mips3d) seq_printf(m, "%s", " mips3d");
115 if (cpu_has_smartmips) seq_printf(m, "%s", " smartmips");
116 if (cpu_has_dsp) seq_printf(m, "%s", " dsp");
117 if (cpu_has_dsp2) seq_printf(m, "%s", " dsp2");
Zubair Lutfullah Kakakhelb5a64552016-03-29 15:50:25 +0100118 if (cpu_has_dsp3) seq_printf(m, "%s", " dsp3");
Ralf Baechle981ef0d2012-08-20 16:39:11 +0200119 if (cpu_has_mipsmt) seq_printf(m, "%s", " mt");
Steven J. Hillf8fa4812012-12-07 03:51:35 +0000120 if (cpu_has_mmips) seq_printf(m, "%s", " micromips");
David Daney1e7decd2013-02-16 23:42:43 +0100121 if (cpu_has_vz) seq_printf(m, "%s", " vz");
Paul Burtona5e9a692014-01-27 15:23:10 +0000122 if (cpu_has_msa) seq_printf(m, "%s", " msa");
Markos Chandras91119682014-01-27 15:10:40 +0000123 if (cpu_has_eva) seq_printf(m, "%s", " eva");
Markos Chandrase647e6b2014-07-14 12:43:28 +0100124 if (cpu_has_htw) seq_printf(m, "%s", " htw");
Steven J. Hillc5b36782015-02-26 18:16:38 -0600125 if (cpu_has_xpa) seq_printf(m, "%s", " xpa");
Ralf Baechle981ef0d2012-08-20 16:39:11 +0200126 seq_printf(m, "\n");
127
Steven J. Hillbce86082013-03-25 13:27:11 -0500128 if (cpu_has_mmips) {
129 seq_printf(m, "micromips kernel\t: %s\n",
130 (read_c0_config3() & MIPS_CONF3_ISA_OE) ? "yes" : "no");
131 }
Ralf Baechlef6771db2007-11-08 18:02:29 +0000132 seq_printf(m, "shadow register sets\t: %d\n",
Steven J. Hill03751e72012-05-10 23:21:18 -0500133 cpu_data[n].srsets);
David Daneye77c32f2010-12-21 14:19:09 -0800134 seq_printf(m, "kscratch registers\t: %d\n",
Steven J. Hill03751e72012-05-10 23:21:18 -0500135 hweight8(cpu_data[n].kscratch_mask));
Huacai Chenbda45842014-06-26 11:41:26 +0800136 seq_printf(m, "package\t\t\t: %d\n", cpu_data[n].package);
Ralf Baechle0ab7aef2007-03-02 20:42:04 +0000137 seq_printf(m, "core\t\t\t: %d\n", cpu_data[n].core);
Ralf Baechle5508d452014-04-03 13:14:05 +0200138
Matt Redfearn765b0642016-08-04 17:19:38 +0100139#if defined(CONFIG_MIPS_MT_SMP) || defined(CONFIG_CPU_MIPSR6)
140 if (cpu_has_mipsmt)
141 seq_printf(m, "VPE\t\t\t: %d\n", cpu_data[n].vpe_id);
142 else if (cpu_has_vp)
143 seq_printf(m, "VP\t\t\t: %d\n", cpu_data[n].vpe_id);
144#endif
145
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 sprintf(fmt, "VCE%%c exceptions\t\t: %s\n",
Steven J. Hill03751e72012-05-10 23:21:18 -0500147 cpu_has_vce ? "%u" : "not available");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 seq_printf(m, fmt, 'D', vced_count);
149 seq_printf(m, fmt, 'I', vcei_count);
Ralf Baechled6d3c9a2013-10-16 17:10:07 +0200150
151 proc_cpuinfo_notifier_args.m = m;
152 proc_cpuinfo_notifier_args.n = n;
153
154 raw_notifier_call_chain(&proc_cpuinfo_chain, 0,
155 &proc_cpuinfo_notifier_args);
156
Martin Michlmayr17256052006-03-20 02:51:20 +0000157 seq_printf(m, "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158
159 return 0;
160}
161
162static void *c_start(struct seq_file *m, loff_t *pos)
163{
164 unsigned long i = *pos;
165
166 return i < NR_CPUS ? (void *) (i + 1) : NULL;
167}
168
169static void *c_next(struct seq_file *m, void *v, loff_t *pos)
170{
171 ++*pos;
172 return c_start(m, pos);
173}
174
175static void c_stop(struct seq_file *m, void *v)
176{
177}
178
Jan Engelhardt12323ca2008-01-22 20:42:33 +0100179const struct seq_operations cpuinfo_op = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 .start = c_start,
181 .next = c_next,
182 .stop = c_stop,
183 .show = show_cpuinfo,
184};