Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | * Copyright (C) 1995, 1996, 2001 Ralf Baechle |
Ralf Baechle | 4194318 | 2005-05-05 16:45:59 +0000 | [diff] [blame] | 3 | * Copyright (C) 2001, 2004 MIPS Technologies, Inc. |
Ralf Baechle | 7034228 | 2013-01-22 12:59:30 +0100 | [diff] [blame] | 4 | * Copyright (C) 2004 Maciej W. Rozycki |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6 | #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 Baechle | bdc92d74 | 2013-05-21 16:59:19 +0200 | [diff] [blame] | 13 | #include <asm/idle.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 14 | #include <asm/mipsregs.h> |
| 15 | #include <asm/processor.h> |
John Crispin | 9169a5d | 2013-04-11 05:34:59 +0000 | [diff] [blame] | 16 | #include <asm/prom.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | |
| 18 | unsigned int vced_count, vcei_count; |
| 19 | |
Ralf Baechle | d6d3c9a | 2013-10-16 17:10:07 +0200 | [diff] [blame] | 20 | /* |
| 21 | * * No lock; only written during early bootup by CPU 0. |
| 22 | * */ |
| 23 | static RAW_NOTIFIER_HEAD(proc_cpuinfo_chain); |
| 24 | |
| 25 | int __ref register_proc_cpuinfo_notifier(struct notifier_block *nb) |
| 26 | { |
| 27 | return raw_notifier_chain_register(&proc_cpuinfo_chain, nb); |
| 28 | } |
| 29 | |
| 30 | int 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | static int show_cpuinfo(struct seq_file *m, void *v) |
| 36 | { |
Ralf Baechle | d6d3c9a | 2013-10-16 17:10:07 +0200 | [diff] [blame] | 37 | struct proc_cpuinfo_notifier_args proc_cpuinfo_notifier_args; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | unsigned long n = (unsigned long) v - 1; |
Karl-Johan Karlsson | 31aa366 | 2006-10-08 01:15:02 +0200 | [diff] [blame] | 39 | unsigned int version = cpu_data[n].processor_id; |
| 40 | unsigned int fp_vers = cpu_data[n].fpu_id; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 | char fmt [64]; |
David Daney | 654f57b | 2008-09-23 00:07:16 -0700 | [diff] [blame] | 42 | int i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | |
| 44 | #ifdef CONFIG_SMP |
Rusty Russell | 0b5f9c0 | 2012-03-29 15:38:30 +1030 | [diff] [blame] | 45 | if (!cpu_online(n)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | return 0; |
| 47 | #endif |
| 48 | |
| 49 | /* |
| 50 | * For the first processor also print the system type |
| 51 | */ |
Gabor Juhos | 487d70d | 2010-11-23 16:06:25 +0100 | [diff] [blame] | 52 | if (n == 0) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 53 | seq_printf(m, "system type\t\t: %s\n", get_system_type()); |
Gabor Juhos | 487d70d | 2010-11-23 16:06:25 +0100 | [diff] [blame] | 54 | if (mips_get_machine_name()) |
| 55 | seq_printf(m, "machine\t\t\t: %s\n", |
| 56 | mips_get_machine_name()); |
| 57 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 58 | |
| 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. Hill | 03751e7 | 2012-05-10 23:21:18 -0500 | [diff] [blame] | 61 | cpu_data[n].options & MIPS_CPU_FPU ? " FPU V%d.%d" : ""); |
Johannes Dickgreber | e47c659 | 2008-10-13 19:36:21 +0200 | [diff] [blame] | 62 | seq_printf(m, fmt, __cpu_name[n], |
Steven J. Hill | 03751e7 | 2012-05-10 23:21:18 -0500 | [diff] [blame] | 63 | (version >> 4) & 0x0f, version & 0x0f, |
| 64 | (fp_vers >> 4) & 0x0f, fp_vers & 0x0f); |
Ralf Baechle | 5636919 | 2009-02-28 09:44:28 +0000 | [diff] [blame] | 65 | seq_printf(m, "BogoMIPS\t\t: %u.%02u\n", |
Steven J. Hill | 03751e7 | 2012-05-10 23:21:18 -0500 | [diff] [blame] | 66 | cpu_data[n].udelay_val / (500000/HZ), |
| 67 | (cpu_data[n].udelay_val / (5000/HZ)) % 100); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 68 | seq_printf(m, "wait instruction\t: %s\n", cpu_wait ? "yes" : "no"); |
| 69 | seq_printf(m, "microsecond timers\t: %s\n", |
Steven J. Hill | 03751e7 | 2012-05-10 23:21:18 -0500 | [diff] [blame] | 70 | cpu_has_counter ? "yes" : "no"); |
Karl-Johan Karlsson | 31aa366 | 2006-10-08 01:15:02 +0200 | [diff] [blame] | 71 | seq_printf(m, "tlb_entries\t\t: %d\n", cpu_data[n].tlbsize); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 72 | seq_printf(m, "extra interrupt vector\t: %s\n", |
Steven J. Hill | 03751e7 | 2012-05-10 23:21:18 -0500 | [diff] [blame] | 73 | cpu_has_divec ? "yes" : "no"); |
David Daney | 654f57b | 2008-09-23 00:07:16 -0700 | [diff] [blame] | 74 | seq_printf(m, "hardware watchpoint\t: %s", |
Steven J. Hill | 03751e7 | 2012-05-10 23:21:18 -0500 | [diff] [blame] | 75 | cpu_has_watch ? "yes, " : "no\n"); |
David Daney | 654f57b | 2008-09-23 00:07:16 -0700 | [diff] [blame] | 76 | if (cpu_has_watch) { |
| 77 | seq_printf(m, "count: %d, address/irw mask: [", |
Steven J. Hill | 03751e7 | 2012-05-10 23:21:18 -0500 | [diff] [blame] | 78 | cpu_data[n].watch_reg_count); |
David Daney | 654f57b | 2008-09-23 00:07:16 -0700 | [diff] [blame] | 79 | for (i = 0; i < cpu_data[n].watch_reg_count; i++) |
| 80 | seq_printf(m, "%s0x%04x", i ? ", " : "" , |
Steven J. Hill | 03751e7 | 2012-05-10 23:21:18 -0500 | [diff] [blame] | 81 | cpu_data[n].watch_reg_masks[i]); |
David Daney | 654f57b | 2008-09-23 00:07:16 -0700 | [diff] [blame] | 82 | seq_printf(m, "]\n"); |
| 83 | } |
Aaro Koskinen | 41315b6 | 2013-12-31 01:26:31 +0200 | [diff] [blame] | 84 | |
Markos Chandras | 515a639 | 2014-11-14 10:10:02 +0000 | [diff] [blame] | 85 | seq_printf(m, "isa\t\t\t:"); |
| 86 | if (cpu_has_mips_r1) |
| 87 | seq_printf(m, " mips1"); |
Aaro Koskinen | 41315b6 | 2013-12-31 01:26:31 +0200 | [diff] [blame] | 88 | 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 Chandras | 515a639 | 2014-11-14 10:10:02 +0000 | [diff] [blame] | 100 | if (cpu_has_mips32r6) |
| 101 | seq_printf(m, "%s", " mips32r6"); |
Aaro Koskinen | 41315b6 | 2013-12-31 01:26:31 +0200 | [diff] [blame] | 102 | if (cpu_has_mips64r1) |
| 103 | seq_printf(m, "%s", " mips64r1"); |
| 104 | if (cpu_has_mips64r2) |
| 105 | seq_printf(m, "%s", " mips64r2"); |
Markos Chandras | 515a639 | 2014-11-14 10:10:02 +0000 | [diff] [blame] | 106 | if (cpu_has_mips64r6) |
| 107 | seq_printf(m, "%s", " mips64r6"); |
Aaro Koskinen | 41315b6 | 2013-12-31 01:26:31 +0200 | [diff] [blame] | 108 | seq_printf(m, "\n"); |
Ralf Baechle | 981ef0d | 2012-08-20 16:39:11 +0200 | [diff] [blame] | 109 | |
| 110 | seq_printf(m, "ASEs implemented\t:"); |
| 111 | if (cpu_has_mips16) seq_printf(m, "%s", " mips16"); |
Maciej W. Rozycki | 92ecd19 | 2017-07-08 16:00:09 +0100 | [diff] [blame^] | 112 | if (cpu_has_mips16e2) seq_printf(m, "%s", " mips16e2"); |
Ralf Baechle | 981ef0d | 2012-08-20 16:39:11 +0200 | [diff] [blame] | 113 | 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 Kakakhel | b5a6455 | 2016-03-29 15:50:25 +0100 | [diff] [blame] | 118 | if (cpu_has_dsp3) seq_printf(m, "%s", " dsp3"); |
Ralf Baechle | 981ef0d | 2012-08-20 16:39:11 +0200 | [diff] [blame] | 119 | if (cpu_has_mipsmt) seq_printf(m, "%s", " mt"); |
Steven J. Hill | f8fa481 | 2012-12-07 03:51:35 +0000 | [diff] [blame] | 120 | if (cpu_has_mmips) seq_printf(m, "%s", " micromips"); |
David Daney | 1e7decd | 2013-02-16 23:42:43 +0100 | [diff] [blame] | 121 | if (cpu_has_vz) seq_printf(m, "%s", " vz"); |
Paul Burton | a5e9a69 | 2014-01-27 15:23:10 +0000 | [diff] [blame] | 122 | if (cpu_has_msa) seq_printf(m, "%s", " msa"); |
Markos Chandras | 9111968 | 2014-01-27 15:10:40 +0000 | [diff] [blame] | 123 | if (cpu_has_eva) seq_printf(m, "%s", " eva"); |
Markos Chandras | e647e6b | 2014-07-14 12:43:28 +0100 | [diff] [blame] | 124 | if (cpu_has_htw) seq_printf(m, "%s", " htw"); |
Steven J. Hill | c5b3678 | 2015-02-26 18:16:38 -0600 | [diff] [blame] | 125 | if (cpu_has_xpa) seq_printf(m, "%s", " xpa"); |
Ralf Baechle | 981ef0d | 2012-08-20 16:39:11 +0200 | [diff] [blame] | 126 | seq_printf(m, "\n"); |
| 127 | |
Steven J. Hill | bce8608 | 2013-03-25 13:27:11 -0500 | [diff] [blame] | 128 | 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 Baechle | f6771db | 2007-11-08 18:02:29 +0000 | [diff] [blame] | 132 | seq_printf(m, "shadow register sets\t: %d\n", |
Steven J. Hill | 03751e7 | 2012-05-10 23:21:18 -0500 | [diff] [blame] | 133 | cpu_data[n].srsets); |
David Daney | e77c32f | 2010-12-21 14:19:09 -0800 | [diff] [blame] | 134 | seq_printf(m, "kscratch registers\t: %d\n", |
Steven J. Hill | 03751e7 | 2012-05-10 23:21:18 -0500 | [diff] [blame] | 135 | hweight8(cpu_data[n].kscratch_mask)); |
Huacai Chen | bda4584 | 2014-06-26 11:41:26 +0800 | [diff] [blame] | 136 | seq_printf(m, "package\t\t\t: %d\n", cpu_data[n].package); |
Ralf Baechle | 0ab7aef | 2007-03-02 20:42:04 +0000 | [diff] [blame] | 137 | seq_printf(m, "core\t\t\t: %d\n", cpu_data[n].core); |
Ralf Baechle | 5508d45 | 2014-04-03 13:14:05 +0200 | [diff] [blame] | 138 | |
Matt Redfearn | 765b064 | 2016-08-04 17:19:38 +0100 | [diff] [blame] | 139 | #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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 146 | sprintf(fmt, "VCE%%c exceptions\t\t: %s\n", |
Steven J. Hill | 03751e7 | 2012-05-10 23:21:18 -0500 | [diff] [blame] | 147 | cpu_has_vce ? "%u" : "not available"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 148 | seq_printf(m, fmt, 'D', vced_count); |
| 149 | seq_printf(m, fmt, 'I', vcei_count); |
Ralf Baechle | d6d3c9a | 2013-10-16 17:10:07 +0200 | [diff] [blame] | 150 | |
| 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 Michlmayr | 1725605 | 2006-03-20 02:51:20 +0000 | [diff] [blame] | 157 | seq_printf(m, "\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 158 | |
| 159 | return 0; |
| 160 | } |
| 161 | |
| 162 | static 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 | |
| 169 | static void *c_next(struct seq_file *m, void *v, loff_t *pos) |
| 170 | { |
| 171 | ++*pos; |
| 172 | return c_start(m, pos); |
| 173 | } |
| 174 | |
| 175 | static void c_stop(struct seq_file *m, void *v) |
| 176 | { |
| 177 | } |
| 178 | |
Jan Engelhardt | 12323ca | 2008-01-22 20:42:33 +0100 | [diff] [blame] | 179 | const struct seq_operations cpuinfo_op = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 180 | .start = c_start, |
| 181 | .next = c_next, |
| 182 | .stop = c_stop, |
| 183 | .show = show_cpuinfo, |
| 184 | }; |