K2.6 patches and update.
[tomato.git] / release / src-rt / linux / linux-2.6 / arch / mips / kernel / proc.c
blob4b4e65f279463be124f52b44c1fa1e80b383ae43
1 /*
2 * linux/arch/mips/kernel/proc.c
4 * Copyright (C) 1995, 1996, 2001 Ralf Baechle
5 * Copyright (C) 2001, 2004 MIPS Technologies, Inc.
6 * Copyright (C) 2004 Maciej W. Rozycki
7 */
8 #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>
18 unsigned int vced_count, vcei_count;
20 extern int bcm947xx_cpu_clk;
22 static const char *cpu_name[] = {
23 [CPU_UNKNOWN] = "unknown",
24 [CPU_R2000] = "R2000",
25 [CPU_R3000] = "R3000",
26 [CPU_R3000A] = "R3000A",
27 [CPU_R3041] = "R3041",
28 [CPU_R3051] = "R3051",
29 [CPU_R3052] = "R3052",
30 [CPU_R3081] = "R3081",
31 [CPU_R3081E] = "R3081E",
32 [CPU_R4000PC] = "R4000PC",
33 [CPU_R4000SC] = "R4000SC",
34 [CPU_R4000MC] = "R4000MC",
35 [CPU_R4200] = "R4200",
36 [CPU_R4400PC] = "R4400PC",
37 [CPU_R4400SC] = "R4400SC",
38 [CPU_R4400MC] = "R4400MC",
39 [CPU_R4600] = "R4600",
40 [CPU_R6000] = "R6000",
41 [CPU_R6000A] = "R6000A",
42 [CPU_R8000] = "R8000",
43 [CPU_R10000] = "R10000",
44 [CPU_R12000] = "R12000",
45 [CPU_R14000] = "R14000",
46 [CPU_R4300] = "R4300",
47 [CPU_R4650] = "R4650",
48 [CPU_R4700] = "R4700",
49 [CPU_R5000] = "R5000",
50 [CPU_R5000A] = "R5000A",
51 [CPU_R4640] = "R4640",
52 [CPU_NEVADA] = "Nevada",
53 [CPU_RM7000] = "RM7000",
54 [CPU_RM9000] = "RM9000",
55 [CPU_R5432] = "R5432",
56 [CPU_4KC] = "MIPS 4Kc",
57 [CPU_5KC] = "MIPS 5Kc",
58 [CPU_R4310] = "R4310",
59 [CPU_SB1] = "SiByte SB1",
60 [CPU_SB1A] = "SiByte SB1A",
61 [CPU_TX3912] = "TX3912",
62 [CPU_TX3922] = "TX3922",
63 [CPU_TX3927] = "TX3927",
64 [CPU_AU1000] = "Au1000",
65 [CPU_AU1500] = "Au1500",
66 [CPU_AU1100] = "Au1100",
67 [CPU_AU1550] = "Au1550",
68 [CPU_AU1200] = "Au1200",
69 [CPU_4KEC] = "MIPS 4KEc",
70 [CPU_4KSC] = "MIPS 4KSc",
71 [CPU_VR41XX] = "NEC Vr41xx",
72 [CPU_R5500] = "R5500",
73 [CPU_TX49XX] = "TX49xx",
74 [CPU_20KC] = "MIPS 20Kc",
75 [CPU_24K] = "MIPS 24K",
76 [CPU_25KF] = "MIPS 25Kf",
77 [CPU_34K] = "MIPS 34K",
78 [CPU_74K] = "MIPS 74K",
79 [CPU_VR4111] = "NEC VR4111",
80 [CPU_VR4121] = "NEC VR4121",
81 [CPU_VR4122] = "NEC VR4122",
82 [CPU_VR4131] = "NEC VR4131",
83 [CPU_VR4133] = "NEC VR4133",
84 [CPU_VR4181] = "NEC VR4181",
85 [CPU_VR4181A] = "NEC VR4181A",
86 [CPU_SR71000] = "Sandcraft SR71000",
87 [CPU_PR4450] = "Philips PR4450",
88 [CPU_BCM4710] = "Broadcom BCM4710",
89 [CPU_BCM3302] = "Broadcom BCM3302",
93 static int show_cpuinfo(struct seq_file *m, void *v)
95 unsigned long n = (unsigned long) v - 1;
96 unsigned int version = cpu_data[n].processor_id;
97 unsigned int fp_vers = cpu_data[n].fpu_id;
98 char fmt [64];
99 extern unsigned long unaligned_instructions;
101 #ifdef CONFIG_SMP
102 if (!cpu_isset(n, cpu_online_map))
103 return 0;
104 #endif
107 * For the first processor also print the system type
109 if (n == 0)
110 seq_printf(m, "system type\t\t: %s\n", get_system_type());
112 seq_printf(m, "processor\t\t: %ld\n", n);
113 sprintf(fmt, "cpu model\t\t: %%s V%%d.%%d%s\n",
114 cpu_data[n].options & MIPS_CPU_FPU ? " FPU V%d.%d" : "");
115 seq_printf(m, fmt, cpu_name[cpu_data[n].cputype <= CPU_LAST ?
116 cpu_data[n].cputype : CPU_UNKNOWN],
117 (version >> 4) & 0x0f, version & 0x0f,
118 (fp_vers >> 4) & 0x0f, fp_vers & 0x0f);
119 seq_printf(m, "BogoMIPS\t\t: %u.%02u\n",
120 cpu_data[n].udelay_val / (500000/HZ),
121 (cpu_data[n].udelay_val / (5000/HZ)) % 100);
122 seq_printf(m, "cpu MHz \t\t: %d\n", bcm947xx_cpu_clk);
123 seq_printf(m, "wait instruction\t: %s\n", cpu_wait ? "yes" : "no");
124 seq_printf(m, "microsecond timers\t: %s\n",
125 cpu_has_counter ? "yes" : "no");
126 seq_printf(m, "tlb_entries\t\t: %d\n", cpu_data[n].tlbsize);
127 seq_printf(m, "extra interrupt vector\t: %s\n",
128 cpu_has_divec ? "yes" : "no");
129 seq_printf(m, "hardware watchpoint\t: %s\n",
130 cpu_has_watch ? "yes" : "no");
131 seq_printf(m, "ASEs implemented\t:%s%s%s%s%s%s\n",
132 cpu_has_mips16 ? " mips16" : "",
133 cpu_has_mdmx ? " mdmx" : "",
134 cpu_has_mips3d ? " mips3d" : "",
135 cpu_has_smartmips ? " smartmips" : "",
136 cpu_has_dsp ? " dsp" : "",
137 cpu_has_mipsmt ? " mt" : ""
139 seq_printf(m, "shadow register sets\t: %d\n",
140 cpu_data[n].srsets);
142 sprintf(fmt, "VCE%%c exceptions\t\t: %s\n",
143 cpu_has_vce ? "%u" : "not available");
144 seq_printf(m, fmt, 'D', vced_count);
145 seq_printf(m, fmt, 'I', vcei_count);
146 seq_printf(m, "\n");
148 seq_printf(m, "unaligned_instructions\t: %lu\n", unaligned_instructions);
150 #ifdef CONFIG_HND_BMIPS3300_PROF
151 seq_printf(m, "dcache hits\t\t: %u\n", read_perf_cntr(0));
152 seq_printf(m, "dcache misses\t\t: %u\n", read_perf_cntr(1));
153 seq_printf(m, "icache hits\t\t: %u\n", read_perf_cntr(2));
154 seq_printf(m, "icache misses\t\t: %u\n", read_perf_cntr(3));
155 seq_printf(m, "instructions\t\t: %u\n", read_perf_cntr(4));
156 #endif
158 return 0;
161 static void *c_start(struct seq_file *m, loff_t *pos)
163 unsigned long i = *pos;
165 return i < NR_CPUS ? (void *) (i + 1) : NULL;
168 static void *c_next(struct seq_file *m, void *v, loff_t *pos)
170 ++*pos;
171 return c_start(m, pos);
174 static void c_stop(struct seq_file *m, void *v)
178 struct seq_operations cpuinfo_op = {
179 .start = c_start,
180 .next = c_next,
181 .stop = c_stop,
182 .show = show_cpuinfo,