]> git.proxmox.com Git - mirror_ubuntu-kernels.git/blame - arch/mips/kernel/proc.c
License cleanup: add SPDX GPL-2.0 license identifier to files with no license
[mirror_ubuntu-kernels.git] / arch / mips / kernel / proc.c
CommitLineData
b2441318 1// SPDX-License-Identifier: GPL-2.0
1da177e4 2/*
1da177e4 3 * Copyright (C) 1995, 1996, 2001 Ralf Baechle
4194318c 4 * Copyright (C) 2001, 2004 MIPS Technologies, Inc.
70342287 5 * Copyright (C) 2004 Maciej W. Rozycki
1da177e4 6 */
1da177e4
LT
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>
bdc92d74 14#include <asm/idle.h>
1da177e4
LT
15#include <asm/mipsregs.h>
16#include <asm/processor.h>
9169a5d0 17#include <asm/prom.h>
1da177e4
LT
18
19unsigned int vced_count, vcei_count;
20
d6d3c9af
RB
21/*
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
1da177e4
LT
36static int show_cpuinfo(struct seq_file *m, void *v)
37{
d6d3c9af 38 struct proc_cpuinfo_notifier_args proc_cpuinfo_notifier_args;
1da177e4 39 unsigned long n = (unsigned long) v - 1;
31aa3665
KJK
40 unsigned int version = cpu_data[n].processor_id;
41 unsigned int fp_vers = cpu_data[n].fpu_id;
1da177e4 42 char fmt [64];
654f57bf 43 int i;
1da177e4
LT
44
45#ifdef CONFIG_SMP
0b5f9c00 46 if (!cpu_online(n))
1da177e4
LT
47 return 0;
48#endif
49
50 /*
51 * For the first processor also print the system type
52 */
487d70d0 53 if (n == 0) {
1da177e4 54 seq_printf(m, "system type\t\t: %s\n", get_system_type());
487d70d0
GJ
55 if (mips_get_machine_name())
56 seq_printf(m, "machine\t\t\t: %s\n",
57 mips_get_machine_name());
58 }
1da177e4
LT
59
60 seq_printf(m, "processor\t\t: %ld\n", n);
61 sprintf(fmt, "cpu model\t\t: %%s V%%d.%%d%s\n",
03751e79 62 cpu_data[n].options & MIPS_CPU_FPU ? " FPU V%d.%d" : "");
e47c659b 63 seq_printf(m, fmt, __cpu_name[n],
03751e79
SH
64 (version >> 4) & 0x0f, version & 0x0f,
65 (fp_vers >> 4) & 0x0f, fp_vers & 0x0f);
5636919b 66 seq_printf(m, "BogoMIPS\t\t: %u.%02u\n",
03751e79
SH
67 cpu_data[n].udelay_val / (500000/HZ),
68 (cpu_data[n].udelay_val / (5000/HZ)) % 100);
1da177e4
LT
69 seq_printf(m, "wait instruction\t: %s\n", cpu_wait ? "yes" : "no");
70 seq_printf(m, "microsecond timers\t: %s\n",
03751e79 71 cpu_has_counter ? "yes" : "no");
31aa3665 72 seq_printf(m, "tlb_entries\t\t: %d\n", cpu_data[n].tlbsize);
1da177e4 73 seq_printf(m, "extra interrupt vector\t: %s\n",
03751e79 74 cpu_has_divec ? "yes" : "no");
654f57bf 75 seq_printf(m, "hardware watchpoint\t: %s",
03751e79 76 cpu_has_watch ? "yes, " : "no\n");
654f57bf
DD
77 if (cpu_has_watch) {
78 seq_printf(m, "count: %d, address/irw mask: [",
03751e79 79 cpu_data[n].watch_reg_count);
654f57bf
DD
80 for (i = 0; i < cpu_data[n].watch_reg_count; i++)
81 seq_printf(m, "%s0x%04x", i ? ", " : "" ,
03751e79 82 cpu_data[n].watch_reg_masks[i]);
654f57bf
DD
83 seq_printf(m, "]\n");
84 }
41315b6e 85
515a6393 86 seq_printf(m, "isa\t\t\t:");
e5f5a5b0 87 if (cpu_has_mips_1)
515a6393 88 seq_printf(m, " mips1");
41315b6e
AK
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");
515a6393
MC
101 if (cpu_has_mips32r6)
102 seq_printf(m, "%s", " mips32r6");
41315b6e
AK
103 if (cpu_has_mips64r1)
104 seq_printf(m, "%s", " mips64r1");
105 if (cpu_has_mips64r2)
106 seq_printf(m, "%s", " mips64r2");
515a6393
MC
107 if (cpu_has_mips64r6)
108 seq_printf(m, "%s", " mips64r6");
41315b6e 109 seq_printf(m, "\n");
981ef0de
RB
110
111 seq_printf(m, "ASEs implemented\t:");
112 if (cpu_has_mips16) seq_printf(m, "%s", " mips16");
92ecd19a 113 if (cpu_has_mips16e2) seq_printf(m, "%s", " mips16e2");
981ef0de
RB
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");
b5a6455c 119 if (cpu_has_dsp3) seq_printf(m, "%s", " dsp3");
981ef0de 120 if (cpu_has_mipsmt) seq_printf(m, "%s", " mt");
f8fa4811 121 if (cpu_has_mmips) seq_printf(m, "%s", " micromips");
1e7decdb 122 if (cpu_has_vz) seq_printf(m, "%s", " vz");
a5e9a69e 123 if (cpu_has_msa) seq_printf(m, "%s", " msa");
91119686 124 if (cpu_has_eva) seq_printf(m, "%s", " eva");
e647e6b5 125 if (cpu_has_htw) seq_printf(m, "%s", " htw");
c5b36783 126 if (cpu_has_xpa) seq_printf(m, "%s", " xpa");
981ef0de
RB
127 seq_printf(m, "\n");
128
bce86083
SH
129 if (cpu_has_mmips) {
130 seq_printf(m, "micromips kernel\t: %s\n",
131 (read_c0_config3() & MIPS_CONF3_ISA_OE) ? "yes" : "no");
132 }
f6771dbb 133 seq_printf(m, "shadow register sets\t: %d\n",
03751e79 134 cpu_data[n].srsets);
e77c32fe 135 seq_printf(m, "kscratch registers\t: %d\n",
03751e79 136 hweight8(cpu_data[n].kscratch_mask));
bda4584c 137 seq_printf(m, "package\t\t\t: %d\n", cpu_data[n].package);
f875a832 138 seq_printf(m, "core\t\t\t: %d\n", cpu_core(&cpu_data[n]));
5508d456 139
765b0647
MR
140#if defined(CONFIG_MIPS_MT_SMP) || defined(CONFIG_CPU_MIPSR6)
141 if (cpu_has_mipsmt)
f875a832 142 seq_printf(m, "VPE\t\t\t: %d\n", cpu_vpe_id(&cpu_data[n]));
765b0647 143 else if (cpu_has_vp)
f875a832 144 seq_printf(m, "VP\t\t\t: %d\n", cpu_vpe_id(&cpu_data[n]));
765b0647
MR
145#endif
146
1da177e4 147 sprintf(fmt, "VCE%%c exceptions\t\t: %s\n",
03751e79 148 cpu_has_vce ? "%u" : "not available");
1da177e4
LT
149 seq_printf(m, fmt, 'D', vced_count);
150 seq_printf(m, fmt, 'I', vcei_count);
d6d3c9af
RB
151
152 proc_cpuinfo_notifier_args.m = m;
153 proc_cpuinfo_notifier_args.n = n;
154
155 raw_notifier_call_chain(&proc_cpuinfo_chain, 0,
156 &proc_cpuinfo_notifier_args);
157
17256052 158 seq_printf(m, "\n");
1da177e4
LT
159
160 return 0;
161}
162
163static void *c_start(struct seq_file *m, loff_t *pos)
164{
165 unsigned long i = *pos;
166
167 return i < NR_CPUS ? (void *) (i + 1) : NULL;
168}
169
170static void *c_next(struct seq_file *m, void *v, loff_t *pos)
171{
172 ++*pos;
173 return c_start(m, pos);
174}
175
176static void c_stop(struct seq_file *m, void *v)
177{
178}
179
12323cac 180const struct seq_operations cpuinfo_op = {
1da177e4
LT
181 .start = c_start,
182 .next = c_next,
183 .stop = c_stop,
184 .show = show_cpuinfo,
185};