| 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. | 
|  | 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> | 
|  | 13 | #include <asm/mipsregs.h> | 
|  | 14 | #include <asm/processor.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 15 |  | 
|  | 16 | unsigned int vced_count, vcei_count; | 
|  | 17 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 18 | static int show_cpuinfo(struct seq_file *m, void *v) | 
|  | 19 | { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 20 | unsigned long n = (unsigned long) v - 1; | 
| Karl-Johan Karlsson | 31aa366 | 2006-10-08 01:15:02 +0200 | [diff] [blame] | 21 | unsigned int version = cpu_data[n].processor_id; | 
|  | 22 | unsigned int fp_vers = cpu_data[n].fpu_id; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 | char fmt [64]; | 
| David Daney | 654f57b | 2008-09-23 00:07:16 -0700 | [diff] [blame] | 24 | int i; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 |  | 
|  | 26 | #ifdef CONFIG_SMP | 
|  | 27 | if (!cpu_isset(n, cpu_online_map)) | 
|  | 28 | return 0; | 
|  | 29 | #endif | 
|  | 30 |  | 
|  | 31 | /* | 
|  | 32 | * For the first processor also print the system type | 
|  | 33 | */ | 
|  | 34 | if (n == 0) | 
|  | 35 | seq_printf(m, "system type\t\t: %s\n", get_system_type()); | 
|  | 36 |  | 
|  | 37 | seq_printf(m, "processor\t\t: %ld\n", n); | 
|  | 38 | sprintf(fmt, "cpu model\t\t: %%s V%%d.%%d%s\n", | 
| Atsushi Nemoto | e04582b | 2006-10-09 00:10:01 +0900 | [diff] [blame] | 39 | cpu_data[n].options & MIPS_CPU_FPU ? "  FPU V%d.%d" : ""); | 
| Johannes Dickgreber | e47c659 | 2008-10-13 19:36:21 +0200 | [diff] [blame] | 40 | seq_printf(m, fmt, __cpu_name[n], | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 | (version >> 4) & 0x0f, version & 0x0f, | 
|  | 42 | (fp_vers >> 4) & 0x0f, fp_vers & 0x0f); | 
| Ralf Baechle | 5636919 | 2009-02-28 09:44:28 +0000 | [diff] [blame] | 43 | seq_printf(m, "BogoMIPS\t\t: %u.%02u\n", | 
| Ralf Baechle | 0ac3548 | 2005-02-21 21:34:24 +0000 | [diff] [blame] | 44 | cpu_data[n].udelay_val / (500000/HZ), | 
|  | 45 | (cpu_data[n].udelay_val / (5000/HZ)) % 100); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | seq_printf(m, "wait instruction\t: %s\n", cpu_wait ? "yes" : "no"); | 
|  | 47 | seq_printf(m, "microsecond timers\t: %s\n", | 
|  | 48 | cpu_has_counter ? "yes" : "no"); | 
| Karl-Johan Karlsson | 31aa366 | 2006-10-08 01:15:02 +0200 | [diff] [blame] | 49 | 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] | 50 | seq_printf(m, "extra interrupt vector\t: %s\n", | 
|  | 51 | cpu_has_divec ? "yes" : "no"); | 
| David Daney | 654f57b | 2008-09-23 00:07:16 -0700 | [diff] [blame] | 52 | seq_printf(m, "hardware watchpoint\t: %s", | 
|  | 53 | cpu_has_watch ? "yes, " : "no\n"); | 
|  | 54 | if (cpu_has_watch) { | 
|  | 55 | seq_printf(m, "count: %d, address/irw mask: [", | 
|  | 56 | cpu_data[n].watch_reg_count); | 
|  | 57 | for (i = 0; i < cpu_data[n].watch_reg_count; i++) | 
|  | 58 | seq_printf(m, "%s0x%04x", i ? ", " : "" , | 
|  | 59 | cpu_data[n].watch_reg_masks[i]); | 
|  | 60 | seq_printf(m, "]\n"); | 
|  | 61 | } | 
| Ralf Baechle | e027802 | 2005-08-16 16:39:15 +0000 | [diff] [blame] | 62 | seq_printf(m, "ASEs implemented\t:%s%s%s%s%s%s\n", | 
| Ralf Baechle | 4194318 | 2005-05-05 16:45:59 +0000 | [diff] [blame] | 63 | cpu_has_mips16 ? " mips16" : "", | 
|  | 64 | cpu_has_mdmx ? " mdmx" : "", | 
|  | 65 | cpu_has_mips3d ? " mips3d" : "", | 
| Ralf Baechle | e027802 | 2005-08-16 16:39:15 +0000 | [diff] [blame] | 66 | cpu_has_smartmips ? " smartmips" : "", | 
|  | 67 | cpu_has_dsp ? " dsp" : "", | 
|  | 68 | cpu_has_mipsmt ? " mt" : "" | 
|  | 69 | ); | 
| Ralf Baechle | f6771db | 2007-11-08 18:02:29 +0000 | [diff] [blame] | 70 | seq_printf(m, "shadow register sets\t: %d\n", | 
|  | 71 | cpu_data[n].srsets); | 
| Ralf Baechle | 0ab7aef | 2007-03-02 20:42:04 +0000 | [diff] [blame] | 72 | seq_printf(m, "core\t\t\t: %d\n", cpu_data[n].core); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 73 |  | 
|  | 74 | sprintf(fmt, "VCE%%c exceptions\t\t: %s\n", | 
|  | 75 | cpu_has_vce ? "%u" : "not available"); | 
|  | 76 | seq_printf(m, fmt, 'D', vced_count); | 
|  | 77 | seq_printf(m, fmt, 'I', vcei_count); | 
| Martin Michlmayr | 1725605 | 2006-03-20 02:51:20 +0000 | [diff] [blame] | 78 | seq_printf(m, "\n"); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 79 |  | 
|  | 80 | return 0; | 
|  | 81 | } | 
|  | 82 |  | 
|  | 83 | static void *c_start(struct seq_file *m, loff_t *pos) | 
|  | 84 | { | 
|  | 85 | unsigned long i = *pos; | 
|  | 86 |  | 
|  | 87 | return i < NR_CPUS ? (void *) (i + 1) : NULL; | 
|  | 88 | } | 
|  | 89 |  | 
|  | 90 | static void *c_next(struct seq_file *m, void *v, loff_t *pos) | 
|  | 91 | { | 
|  | 92 | ++*pos; | 
|  | 93 | return c_start(m, pos); | 
|  | 94 | } | 
|  | 95 |  | 
|  | 96 | static void c_stop(struct seq_file *m, void *v) | 
|  | 97 | { | 
|  | 98 | } | 
|  | 99 |  | 
| Jan Engelhardt | 12323ca | 2008-01-22 20:42:33 +0100 | [diff] [blame] | 100 | const struct seq_operations cpuinfo_op = { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 101 | .start	= c_start, | 
|  | 102 | .next	= c_next, | 
|  | 103 | .stop	= c_stop, | 
|  | 104 | .show	= show_cpuinfo, | 
|  | 105 | }; |