blob: e0a4ac18fa07e72f62d38089aa9d3ba9f472c51f [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/arch/mips/kernel/proc.c
3 *
4 * Copyright (C) 1995, 1996, 2001 Ralf Baechle
Ralf Baechle41943182005-05-05 16:45:59 +00005 * Copyright (C) 2001, 2004 MIPS Technologies, Inc.
6 * Copyright (C) 2004 Maciej W. Rozycki
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07008#include <linux/delay.h>
9#include <linux/kernel.h>
10#include <linux/sched.h>
11#include <linux/seq_file.h>
12#include <asm/bootinfo.h>
13#include <asm/cpu.h>
14#include <asm/cpu-features.h>
15#include <asm/mipsregs.h>
16#include <asm/processor.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017
18unsigned int vced_count, vcei_count;
19
Linus Torvalds1da177e2005-04-16 15:20:36 -070020static int show_cpuinfo(struct seq_file *m, void *v)
21{
Linus Torvalds1da177e2005-04-16 15:20:36 -070022 unsigned long n = (unsigned long) v - 1;
Karl-Johan Karlsson31aa3662006-10-08 01:15:02 +020023 unsigned int version = cpu_data[n].processor_id;
24 unsigned int fp_vers = cpu_data[n].fpu_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -070025 char fmt [64];
David Daney654f57b2008-09-23 00:07:16 -070026 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -070027
28#ifdef CONFIG_SMP
29 if (!cpu_isset(n, cpu_online_map))
30 return 0;
31#endif
32
33 /*
34 * For the first processor also print the system type
35 */
36 if (n == 0)
37 seq_printf(m, "system type\t\t: %s\n", get_system_type());
38
39 seq_printf(m, "processor\t\t: %ld\n", n);
40 sprintf(fmt, "cpu model\t\t: %%s V%%d.%%d%s\n",
Atsushi Nemotoe04582b2006-10-09 00:10:01 +090041 cpu_data[n].options & MIPS_CPU_FPU ? " FPU V%d.%d" : "");
Johannes Dickgrebere47c6592008-10-13 19:36:21 +020042 seq_printf(m, fmt, __cpu_name[n],
Linus Torvalds1da177e2005-04-16 15:20:36 -070043 (version >> 4) & 0x0f, version & 0x0f,
44 (fp_vers >> 4) & 0x0f, fp_vers & 0x0f);
Ralf Baechle56369192009-02-28 09:44:28 +000045 seq_printf(m, "BogoMIPS\t\t: %u.%02u\n",
Ralf Baechle0ac35482005-02-21 21:34:24 +000046 cpu_data[n].udelay_val / (500000/HZ),
47 (cpu_data[n].udelay_val / (5000/HZ)) % 100);
Linus Torvalds1da177e2005-04-16 15:20:36 -070048 seq_printf(m, "wait instruction\t: %s\n", cpu_wait ? "yes" : "no");
49 seq_printf(m, "microsecond timers\t: %s\n",
50 cpu_has_counter ? "yes" : "no");
Karl-Johan Karlsson31aa3662006-10-08 01:15:02 +020051 seq_printf(m, "tlb_entries\t\t: %d\n", cpu_data[n].tlbsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -070052 seq_printf(m, "extra interrupt vector\t: %s\n",
53 cpu_has_divec ? "yes" : "no");
David Daney654f57b2008-09-23 00:07:16 -070054 seq_printf(m, "hardware watchpoint\t: %s",
55 cpu_has_watch ? "yes, " : "no\n");
56 if (cpu_has_watch) {
57 seq_printf(m, "count: %d, address/irw mask: [",
58 cpu_data[n].watch_reg_count);
59 for (i = 0; i < cpu_data[n].watch_reg_count; i++)
60 seq_printf(m, "%s0x%04x", i ? ", " : "" ,
61 cpu_data[n].watch_reg_masks[i]);
62 seq_printf(m, "]\n");
63 }
Ralf Baechlee0278022005-08-16 16:39:15 +000064 seq_printf(m, "ASEs implemented\t:%s%s%s%s%s%s\n",
Ralf Baechle41943182005-05-05 16:45:59 +000065 cpu_has_mips16 ? " mips16" : "",
66 cpu_has_mdmx ? " mdmx" : "",
67 cpu_has_mips3d ? " mips3d" : "",
Ralf Baechlee0278022005-08-16 16:39:15 +000068 cpu_has_smartmips ? " smartmips" : "",
69 cpu_has_dsp ? " dsp" : "",
70 cpu_has_mipsmt ? " mt" : ""
71 );
Ralf Baechlef6771db2007-11-08 18:02:29 +000072 seq_printf(m, "shadow register sets\t: %d\n",
73 cpu_data[n].srsets);
Ralf Baechle0ab7aef2007-03-02 20:42:04 +000074 seq_printf(m, "core\t\t\t: %d\n", cpu_data[n].core);
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
76 sprintf(fmt, "VCE%%c exceptions\t\t: %s\n",
77 cpu_has_vce ? "%u" : "not available");
78 seq_printf(m, fmt, 'D', vced_count);
79 seq_printf(m, fmt, 'I', vcei_count);
Martin Michlmayr17256052006-03-20 02:51:20 +000080 seq_printf(m, "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070081
82 return 0;
83}
84
85static void *c_start(struct seq_file *m, loff_t *pos)
86{
87 unsigned long i = *pos;
88
89 return i < NR_CPUS ? (void *) (i + 1) : NULL;
90}
91
92static void *c_next(struct seq_file *m, void *v, loff_t *pos)
93{
94 ++*pos;
95 return c_start(m, pos);
96}
97
98static void c_stop(struct seq_file *m, void *v)
99{
100}
101
Jan Engelhardt12323ca2008-01-22 20:42:33 +0100102const struct seq_operations cpuinfo_op = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 .start = c_start,
104 .next = c_next,
105 .stop = c_stop,
106 .show = show_cpuinfo,
107};