blob: 9bc3b04421cd28e745f363c626161cc7bf7cb2e7 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#include <linux/smp.h>
2#include <linux/timex.h>
3#include <linux/string.h>
4#include <asm/semaphore.h>
5#include <linux/seq_file.h>
Venkatesh Pallipadi95235ca2005-12-02 10:43:20 -08006#include <linux/cpufreq.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007
8/*
9 * Get CPU information for use by the procfs.
10 */
Hiroshi Shimamotoa967cea2008-02-20 10:45:29 -080011static 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
Linus Torvalds1da177e2005-04-16 15:20:36 -070051static int show_cpuinfo(struct seq_file *m, void *v)
52{
Linus Torvalds1da177e2005-04-16 15:20:36 -070053 struct cpuinfo_x86 *c = v;
Hiroshi Shimamotoa967cea2008-02-20 10:45:29 -080054 unsigned int cpu = 0;
55 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
57#ifdef CONFIG_SMP
Hiroshi Shimamotoa967cea2008-02-20 10:45:29 -080058 cpu = c->cpu_index;
Linus Torvalds1da177e2005-04-16 15:20:36 -070059#endif
Hiroshi Shimamotoa967cea2008-02-20 10:45:29 -080060 seq_printf(m, "processor\t: %u\n"
61 "vendor_id\t: %s\n"
62 "cpu family\t: %d\n"
63 "model\t\t: %u\n"
64 "model name\t: %s\n",
65 cpu,
66 c->x86_vendor_id[0] ? c->x86_vendor_id : "unknown",
67 c->x86,
68 c->x86_model,
69 c->x86_model_id[0] ? c->x86_model_id : "unknown");
Linus Torvalds1da177e2005-04-16 15:20:36 -070070
71 if (c->x86_mask || c->cpuid_level >= 0)
72 seq_printf(m, "stepping\t: %d\n", c->x86_mask);
73 else
74 seq_printf(m, "stepping\t: unknown\n");
75
Hiroshi Shimamotoa967cea2008-02-20 10:45:29 -080076 if (cpu_has(c, X86_FEATURE_TSC)) {
77 unsigned int freq = cpufreq_quick_get(cpu);
78
Venkatesh Pallipadi95235ca2005-12-02 10:43:20 -080079 if (!freq)
80 freq = cpu_khz;
Andrew Mortona3a255e2005-06-23 00:08:34 -070081 seq_printf(m, "cpu MHz\t\t: %u.%03u\n",
Hiroshi Shimamotoa967cea2008-02-20 10:45:29 -080082 freq / 1000, (freq % 1000));
Linus Torvalds1da177e2005-04-16 15:20:36 -070083 }
84
85 /* Cache size */
86 if (c->x86_cache_size >= 0)
87 seq_printf(m, "cache size\t: %d KB\n", c->x86_cache_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -070088
Hiroshi Shimamotoa967cea2008-02-20 10:45:29 -080089 show_cpuinfo_core(m, c, cpu);
90 show_cpuinfo_misc(m, c);
91
92 seq_printf(m, "flags\t\t:");
93 for (i = 0; i < 32*NCAPINTS; i++)
94 if (cpu_has(c, i) && x86_cap_flags[i] != NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 seq_printf(m, " %s", x86_cap_flags[i]);
96
Andi Kleen3f98bc42006-01-11 22:42:51 +010097 for (i = 0; i < 32; i++)
98 if (c->x86_power & (1 << i)) {
99 if (i < ARRAY_SIZE(x86_power_flags) &&
100 x86_power_flags[i])
101 seq_printf(m, "%s%s",
102 x86_power_flags[i][0]?" ":"",
103 x86_power_flags[i]);
104 else
105 seq_printf(m, " [%d]", i);
106 }
107
Andi Kleen770d1322006-12-07 02:14:05 +0100108 seq_printf(m, "\nbogomips\t: %lu.%02lu\n",
Hiroshi Shimamotoa967cea2008-02-20 10:45:29 -0800109 c->loops_per_jiffy/(500000/HZ),
110 (c->loops_per_jiffy/(5000/HZ)) % 100);
Andi Kleen770d1322006-12-07 02:14:05 +0100111 seq_printf(m, "clflush size\t: %u\n\n", c->x86_clflush_size);
Andi Kleen3dd9d512005-04-16 15:25:15 -0700112
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 return 0;
114}
115
116static void *c_start(struct seq_file *m, loff_t *pos)
117{
Mike Travis92cb7612007-10-19 20:35:04 +0200118 if (*pos == 0) /* just in case, cpu 0 is not the first */
Andreas Herrmannc0c52d22007-11-01 19:32:17 +0100119 *pos = first_cpu(cpu_online_map);
120 if ((*pos) < NR_CPUS && cpu_online(*pos))
Mike Travis92cb7612007-10-19 20:35:04 +0200121 return &cpu_data(*pos);
122 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123}
Hiroshi Shimamotoa967cea2008-02-20 10:45:29 -0800124
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125static void *c_next(struct seq_file *m, void *v, loff_t *pos)
126{
Andreas Herrmannc0c52d22007-11-01 19:32:17 +0100127 *pos = next_cpu(*pos, cpu_online_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 return c_start(m, pos);
129}
Hiroshi Shimamotoa967cea2008-02-20 10:45:29 -0800130
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131static void c_stop(struct seq_file *m, void *v)
132{
133}
Hiroshi Shimamotoa967cea2008-02-20 10:45:29 -0800134
Jan Engelhardt8a45eb32008-01-30 13:33:32 +0100135const struct seq_operations cpuinfo_op = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 .start = c_start,
137 .next = c_next,
138 .stop = c_stop,
139 .show = show_cpuinfo,
140};