aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHiroshi Shimamoto <h-shimamoto@ct.jp.nec.com>2008-02-20 13:45:29 -0500
committerIngo Molnar <mingo@elte.hu>2008-04-17 11:40:48 -0400
commita967ceac01cd3847011e2a777b8365b30afa770a (patch)
tree32ac8565a41f54a4ff5542cfee6c3dac0be4754c
parent8fa6878ffc6366f490e99a1ab31127fb599657c9 (diff)
x86: make cpu/proc|_64.c similar
clean up for unification. Signed-off-by: Hiroshi Shimamoto <h-shimamoto@ct.jp.nec.com> Signed-off-by: Ingo Molnar <mingo@elte.hu>
-rw-r--r--arch/x86/kernel/cpu/proc.c120
-rw-r--r--arch/x86/kernel/cpu/proc_64.c63
2 files changed, 105 insertions, 78 deletions
diff --git a/arch/x86/kernel/cpu/proc.c b/arch/x86/kernel/cpu/proc.c
index af11d31dce0a..9bc3b04421cd 100644
--- a/arch/x86/kernel/cpu/proc.c
+++ b/arch/x86/kernel/cpu/proc.c
@@ -8,75 +8,90 @@
8/* 8/*
9 * Get CPU information for use by the procfs. 9 * Get CPU information for use by the procfs.
10 */ 10 */
11static void show_cpuinfo_core(struct seq_file *m, struct cpuinfo_x86 *c,
12 unsigned int cpu)
13{
14#ifdef CONFIG_X86_HT
15 if (c->x86_max_cores * smp_num_siblings > 1) {
16 seq_printf(m, "physical id\t: %d\n", c->phys_proc_id);
17 seq_printf(m, "siblings\t: %d\n",
18 cpus_weight(per_cpu(cpu_core_map, cpu)));
19 seq_printf(m, "core id\t\t: %d\n", c->cpu_core_id);
20 seq_printf(m, "cpu cores\t: %d\n", c->booted_cores);
21 }
22#endif
23}
24
25static void show_cpuinfo_misc(struct seq_file *m, struct cpuinfo_x86 *c)
26{
27 /*
28 * We use exception 16 if we have hardware math and we've either seen
29 * it or the CPU claims it is internal
30 */
31 int fpu_exception = c->hard_math && (ignore_fpu_irq || cpu_has_fpu);
32 seq_printf(m,
33 "fdiv_bug\t: %s\n"
34 "hlt_bug\t\t: %s\n"
35 "f00f_bug\t: %s\n"
36 "coma_bug\t: %s\n"
37 "fpu\t\t: %s\n"
38 "fpu_exception\t: %s\n"
39 "cpuid level\t: %d\n"
40 "wp\t\t: %s\n",
41 c->fdiv_bug ? "yes" : "no",
42 c->hlt_works_ok ? "no" : "yes",
43 c->f00f_bug ? "yes" : "no",
44 c->coma_bug ? "yes" : "no",
45 c->hard_math ? "yes" : "no",
46 fpu_exception ? "yes" : "no",
47 c->cpuid_level,
48 c->wp_works_ok ? "yes" : "no");
49}
50
11static int show_cpuinfo(struct seq_file *m, void *v) 51static int show_cpuinfo(struct seq_file *m, void *v)
12{ 52{
13 struct cpuinfo_x86 *c = v; 53 struct cpuinfo_x86 *c = v;
14 int i, n = 0; 54 unsigned int cpu = 0;
15 int fpu_exception; 55 int i;
16 56
17#ifdef CONFIG_SMP 57#ifdef CONFIG_SMP
18 n = c->cpu_index; 58 cpu = c->cpu_index;
19#endif 59#endif
20 seq_printf(m, "processor\t: %d\n" 60 seq_printf(m, "processor\t: %u\n"
21 "vendor_id\t: %s\n" 61 "vendor_id\t: %s\n"
22 "cpu family\t: %d\n" 62 "cpu family\t: %d\n"
23 "model\t\t: %d\n" 63 "model\t\t: %u\n"
24 "model name\t: %s\n", 64 "model name\t: %s\n",
25 n, 65 cpu,
26 c->x86_vendor_id[0] ? c->x86_vendor_id : "unknown", 66 c->x86_vendor_id[0] ? c->x86_vendor_id : "unknown",
27 c->x86, 67 c->x86,
28 c->x86_model, 68 c->x86_model,
29 c->x86_model_id[0] ? c->x86_model_id : "unknown"); 69 c->x86_model_id[0] ? c->x86_model_id : "unknown");
30 70
31 if (c->x86_mask || c->cpuid_level >= 0) 71 if (c->x86_mask || c->cpuid_level >= 0)
32 seq_printf(m, "stepping\t: %d\n", c->x86_mask); 72 seq_printf(m, "stepping\t: %d\n", c->x86_mask);
33 else 73 else
34 seq_printf(m, "stepping\t: unknown\n"); 74 seq_printf(m, "stepping\t: unknown\n");
35 75
36 if ( cpu_has(c, X86_FEATURE_TSC) ) { 76 if (cpu_has(c, X86_FEATURE_TSC)) {
37 unsigned int freq = cpufreq_quick_get(n); 77 unsigned int freq = cpufreq_quick_get(cpu);
78
38 if (!freq) 79 if (!freq)
39 freq = cpu_khz; 80 freq = cpu_khz;
40 seq_printf(m, "cpu MHz\t\t: %u.%03u\n", 81 seq_printf(m, "cpu MHz\t\t: %u.%03u\n",
41 freq / 1000, (freq % 1000)); 82 freq / 1000, (freq % 1000));
42 } 83 }
43 84
44 /* Cache size */ 85 /* Cache size */
45 if (c->x86_cache_size >= 0) 86 if (c->x86_cache_size >= 0)
46 seq_printf(m, "cache size\t: %d KB\n", c->x86_cache_size); 87 seq_printf(m, "cache size\t: %d KB\n", c->x86_cache_size);
47#ifdef CONFIG_X86_HT 88
48 if (c->x86_max_cores * smp_num_siblings > 1) { 89 show_cpuinfo_core(m, c, cpu);
49 seq_printf(m, "physical id\t: %d\n", c->phys_proc_id); 90 show_cpuinfo_misc(m, c);
50 seq_printf(m, "siblings\t: %d\n", 91
51 cpus_weight(per_cpu(cpu_core_map, n))); 92 seq_printf(m, "flags\t\t:");
52 seq_printf(m, "core id\t\t: %d\n", c->cpu_core_id); 93 for (i = 0; i < 32*NCAPINTS; i++)
53 seq_printf(m, "cpu cores\t: %d\n", c->booted_cores); 94 if (cpu_has(c, i) && x86_cap_flags[i] != NULL)
54 }
55#endif
56
57 /* We use exception 16 if we have hardware math and we've either seen it or the CPU claims it is internal */
58 fpu_exception = c->hard_math && (ignore_fpu_irq || cpu_has_fpu);
59 seq_printf(m, "fdiv_bug\t: %s\n"
60 "hlt_bug\t\t: %s\n"
61 "f00f_bug\t: %s\n"
62 "coma_bug\t: %s\n"
63 "fpu\t\t: %s\n"
64 "fpu_exception\t: %s\n"
65 "cpuid level\t: %d\n"
66 "wp\t\t: %s\n"
67 "flags\t\t:",
68 c->fdiv_bug ? "yes" : "no",
69 c->hlt_works_ok ? "no" : "yes",
70 c->f00f_bug ? "yes" : "no",
71 c->coma_bug ? "yes" : "no",
72 c->hard_math ? "yes" : "no",
73 fpu_exception ? "yes" : "no",
74 c->cpuid_level,
75 c->wp_works_ok ? "yes" : "no");
76
77 for ( i = 0 ; i < 32*NCAPINTS ; i++ )
78 if ( test_bit(i, c->x86_capability) &&
79 x86_cap_flags[i] != NULL )
80 seq_printf(m, " %s", x86_cap_flags[i]); 95 seq_printf(m, " %s", x86_cap_flags[i]);
81 96
82 for (i = 0; i < 32; i++) 97 for (i = 0; i < 32; i++)
@@ -91,8 +106,8 @@ static int show_cpuinfo(struct seq_file *m, void *v)
91 } 106 }
92 107
93 seq_printf(m, "\nbogomips\t: %lu.%02lu\n", 108 seq_printf(m, "\nbogomips\t: %lu.%02lu\n",
94 c->loops_per_jiffy/(500000/HZ), 109 c->loops_per_jiffy/(500000/HZ),
95 (c->loops_per_jiffy/(5000/HZ)) % 100); 110 (c->loops_per_jiffy/(5000/HZ)) % 100);
96 seq_printf(m, "clflush size\t: %u\n\n", c->x86_clflush_size); 111 seq_printf(m, "clflush size\t: %u\n\n", c->x86_clflush_size);
97 112
98 return 0; 113 return 0;
@@ -106,14 +121,17 @@ static void *c_start(struct seq_file *m, loff_t *pos)
106 return &cpu_data(*pos); 121 return &cpu_data(*pos);
107 return NULL; 122 return NULL;
108} 123}
124
109static void *c_next(struct seq_file *m, void *v, loff_t *pos) 125static void *c_next(struct seq_file *m, void *v, loff_t *pos)
110{ 126{
111 *pos = next_cpu(*pos, cpu_online_map); 127 *pos = next_cpu(*pos, cpu_online_map);
112 return c_start(m, pos); 128 return c_start(m, pos);
113} 129}
130
114static void c_stop(struct seq_file *m, void *v) 131static void c_stop(struct seq_file *m, void *v)
115{ 132{
116} 133}
134
117const struct seq_operations cpuinfo_op = { 135const struct seq_operations cpuinfo_op = {
118 .start = c_start, 136 .start = c_start,
119 .next = c_next, 137 .next = c_next,
diff --git a/arch/x86/kernel/cpu/proc_64.c b/arch/x86/kernel/cpu/proc_64.c
index bf4a94b4b0f0..ce1b08f96820 100644
--- a/arch/x86/kernel/cpu/proc_64.c
+++ b/arch/x86/kernel/cpu/proc_64.c
@@ -8,25 +8,48 @@
8/* 8/*
9 * Get CPU information for use by the procfs. 9 * Get CPU information for use by the procfs.
10 */ 10 */
11static void show_cpuinfo_core(struct seq_file *m, struct cpuinfo_x86 *c,
12 unsigned int cpu)
13{
14#ifdef CONFIG_SMP
15 if (c->x86_max_cores * smp_num_siblings > 1) {
16 seq_printf(m, "physical id\t: %d\n", c->phys_proc_id);
17 seq_printf(m, "siblings\t: %d\n",
18 cpus_weight(per_cpu(cpu_core_map, cpu)));
19 seq_printf(m, "core id\t\t: %d\n", c->cpu_core_id);
20 seq_printf(m, "cpu cores\t: %d\n", c->booted_cores);
21 }
22#endif
23}
24
25static void show_cpuinfo_misc(struct seq_file *m, struct cpuinfo_x86 *c)
26{
27 seq_printf(m,
28 "fpu\t\t: yes\n"
29 "fpu_exception\t: yes\n"
30 "cpuid level\t: %d\n"
31 "wp\t\t: yes\n",
32 c->cpuid_level);
33}
11 34
12static int show_cpuinfo(struct seq_file *m, void *v) 35static int show_cpuinfo(struct seq_file *m, void *v)
13{ 36{
14 struct cpuinfo_x86 *c = v; 37 struct cpuinfo_x86 *c = v;
15 int cpu = 0, i; 38 unsigned int cpu = 0;
39 int i;
16 40
17#ifdef CONFIG_SMP 41#ifdef CONFIG_SMP
18 cpu = c->cpu_index; 42 cpu = c->cpu_index;
19#endif 43#endif
20
21 seq_printf(m, "processor\t: %u\n" 44 seq_printf(m, "processor\t: %u\n"
22 "vendor_id\t: %s\n" 45 "vendor_id\t: %s\n"
23 "cpu family\t: %d\n" 46 "cpu family\t: %d\n"
24 "model\t\t: %d\n" 47 "model\t\t: %u\n"
25 "model name\t: %s\n", 48 "model name\t: %s\n",
26 (unsigned)cpu, 49 cpu,
27 c->x86_vendor_id[0] ? c->x86_vendor_id : "unknown", 50 c->x86_vendor_id[0] ? c->x86_vendor_id : "unknown",
28 c->x86, 51 c->x86,
29 (int)c->x86_model, 52 c->x86_model,
30 c->x86_model_id[0] ? c->x86_model_id : "unknown"); 53 c->x86_model_id[0] ? c->x86_model_id : "unknown");
31 54
32 if (c->x86_mask || c->cpuid_level >= 0) 55 if (c->x86_mask || c->cpuid_level >= 0)
@@ -35,7 +58,7 @@ static int show_cpuinfo(struct seq_file *m, void *v)
35 seq_printf(m, "stepping\t: unknown\n"); 58 seq_printf(m, "stepping\t: unknown\n");
36 59
37 if (cpu_has(c, X86_FEATURE_TSC)) { 60 if (cpu_has(c, X86_FEATURE_TSC)) {
38 unsigned int freq = cpufreq_quick_get((unsigned)cpu); 61 unsigned int freq = cpufreq_quick_get(cpu);
39 62
40 if (!freq) 63 if (!freq)
41 freq = cpu_khz; 64 freq = cpu_khz;
@@ -47,24 +70,10 @@ static int show_cpuinfo(struct seq_file *m, void *v)
47 if (c->x86_cache_size >= 0) 70 if (c->x86_cache_size >= 0)
48 seq_printf(m, "cache size\t: %d KB\n", c->x86_cache_size); 71 seq_printf(m, "cache size\t: %d KB\n", c->x86_cache_size);
49 72
50#ifdef CONFIG_SMP 73 show_cpuinfo_core(m, c, cpu);
51 if (smp_num_siblings * c->x86_max_cores > 1) { 74 show_cpuinfo_misc(m, c);
52 seq_printf(m, "physical id\t: %d\n", c->phys_proc_id);
53 seq_printf(m, "siblings\t: %d\n",
54 cpus_weight(per_cpu(cpu_core_map, cpu)));
55 seq_printf(m, "core id\t\t: %d\n", c->cpu_core_id);
56 seq_printf(m, "cpu cores\t: %d\n", c->booted_cores);
57 }
58#endif
59
60 seq_printf(m,
61 "fpu\t\t: yes\n"
62 "fpu_exception\t: yes\n"
63 "cpuid level\t: %d\n"
64 "wp\t\t: yes\n"
65 "flags\t\t:",
66 c->cpuid_level);
67 75
76 seq_printf(m, "flags\t\t:");
68 for (i = 0; i < 32*NCAPINTS; i++) 77 for (i = 0; i < 32*NCAPINTS; i++)
69 if (cpu_has(c, i) && x86_cap_flags[i] != NULL) 78 if (cpu_has(c, i) && x86_cap_flags[i] != NULL)
70 seq_printf(m, " %s", x86_cap_flags[i]); 79 seq_printf(m, " %s", x86_cap_flags[i]);
@@ -119,8 +128,8 @@ static void c_stop(struct seq_file *m, void *v)
119} 128}
120 129
121const struct seq_operations cpuinfo_op = { 130const struct seq_operations cpuinfo_op = {
122 .start = c_start, 131 .start = c_start,
123 .next = c_next, 132 .next = c_next,
124 .stop = c_stop, 133 .stop = c_stop,
125 .show = show_cpuinfo, 134 .show = show_cpuinfo,
126}; 135};