blob: 0978a4a39418acd6c9cdabcb0dc85d38b5785d55 [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 Shimamoto2aef7722008-02-20 10:48:02 -080011#ifdef CONFIG_X86_32
Hiroshi Shimamotoa967cea2008-02-20 10:45:29 -080012static void show_cpuinfo_core(struct seq_file *m, struct cpuinfo_x86 *c,
13 unsigned int cpu)
14{
15#ifdef CONFIG_X86_HT
16 if (c->x86_max_cores * smp_num_siblings > 1) {
17 seq_printf(m, "physical id\t: %d\n", c->phys_proc_id);
18 seq_printf(m, "siblings\t: %d\n",
19 cpus_weight(per_cpu(cpu_core_map, cpu)));
20 seq_printf(m, "core id\t\t: %d\n", c->cpu_core_id);
21 seq_printf(m, "cpu cores\t: %d\n", c->booted_cores);
Yinghai Lu01aaea12008-03-06 13:46:39 -080022 seq_printf(m, "apicid\t\t: %d\n", c->apicid);
23 seq_printf(m, "initial apicid\t: %d\n", c->initial_apicid);
Hiroshi Shimamotoa967cea2008-02-20 10:45:29 -080024 }
25#endif
26}
27
28static void show_cpuinfo_misc(struct seq_file *m, struct cpuinfo_x86 *c)
29{
30 /*
31 * We use exception 16 if we have hardware math and we've either seen
32 * it or the CPU claims it is internal
33 */
34 int fpu_exception = c->hard_math && (ignore_fpu_irq || cpu_has_fpu);
35 seq_printf(m,
36 "fdiv_bug\t: %s\n"
37 "hlt_bug\t\t: %s\n"
38 "f00f_bug\t: %s\n"
39 "coma_bug\t: %s\n"
40 "fpu\t\t: %s\n"
41 "fpu_exception\t: %s\n"
42 "cpuid level\t: %d\n"
43 "wp\t\t: %s\n",
44 c->fdiv_bug ? "yes" : "no",
45 c->hlt_works_ok ? "no" : "yes",
46 c->f00f_bug ? "yes" : "no",
47 c->coma_bug ? "yes" : "no",
48 c->hard_math ? "yes" : "no",
49 fpu_exception ? "yes" : "no",
50 c->cpuid_level,
51 c->wp_works_ok ? "yes" : "no");
52}
Hiroshi Shimamoto2aef7722008-02-20 10:48:02 -080053#else
54static void show_cpuinfo_core(struct seq_file *m, struct cpuinfo_x86 *c,
55 unsigned int cpu)
56{
57#ifdef CONFIG_SMP
58 if (c->x86_max_cores * smp_num_siblings > 1) {
59 seq_printf(m, "physical id\t: %d\n", c->phys_proc_id);
60 seq_printf(m, "siblings\t: %d\n",
61 cpus_weight(per_cpu(cpu_core_map, cpu)));
62 seq_printf(m, "core id\t\t: %d\n", c->cpu_core_id);
63 seq_printf(m, "cpu cores\t: %d\n", c->booted_cores);
Yinghai Lu282bfe22008-03-06 01:13:34 -080064 seq_printf(m, "apicid\t\t: %d\n", c->apicid);
Yinghai Lu01aaea12008-03-06 13:46:39 -080065 seq_printf(m, "initial apicid\t: %d\n", c->initial_apicid);
Hiroshi Shimamoto2aef7722008-02-20 10:48:02 -080066 }
67#endif
68}
69
70static void show_cpuinfo_misc(struct seq_file *m, struct cpuinfo_x86 *c)
71{
72 seq_printf(m,
73 "fpu\t\t: yes\n"
74 "fpu_exception\t: yes\n"
75 "cpuid level\t: %d\n"
76 "wp\t\t: yes\n",
77 c->cpuid_level);
78}
79#endif
Hiroshi Shimamotoa967cea2008-02-20 10:45:29 -080080
Linus Torvalds1da177e2005-04-16 15:20:36 -070081static int show_cpuinfo(struct seq_file *m, void *v)
82{
Linus Torvalds1da177e2005-04-16 15:20:36 -070083 struct cpuinfo_x86 *c = v;
Hiroshi Shimamotoa967cea2008-02-20 10:45:29 -080084 unsigned int cpu = 0;
85 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -070086
87#ifdef CONFIG_SMP
Hiroshi Shimamotoa967cea2008-02-20 10:45:29 -080088 cpu = c->cpu_index;
Linus Torvalds1da177e2005-04-16 15:20:36 -070089#endif
Hiroshi Shimamotoa967cea2008-02-20 10:45:29 -080090 seq_printf(m, "processor\t: %u\n"
91 "vendor_id\t: %s\n"
92 "cpu family\t: %d\n"
93 "model\t\t: %u\n"
94 "model name\t: %s\n",
95 cpu,
96 c->x86_vendor_id[0] ? c->x86_vendor_id : "unknown",
97 c->x86,
98 c->x86_model,
99 c->x86_model_id[0] ? c->x86_model_id : "unknown");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100
101 if (c->x86_mask || c->cpuid_level >= 0)
102 seq_printf(m, "stepping\t: %d\n", c->x86_mask);
103 else
104 seq_printf(m, "stepping\t: unknown\n");
105
Hiroshi Shimamotoa967cea2008-02-20 10:45:29 -0800106 if (cpu_has(c, X86_FEATURE_TSC)) {
107 unsigned int freq = cpufreq_quick_get(cpu);
108
Venkatesh Pallipadi95235ca2005-12-02 10:43:20 -0800109 if (!freq)
110 freq = cpu_khz;
Andrew Mortona3a255e2005-06-23 00:08:34 -0700111 seq_printf(m, "cpu MHz\t\t: %u.%03u\n",
Hiroshi Shimamotoa967cea2008-02-20 10:45:29 -0800112 freq / 1000, (freq % 1000));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 }
114
115 /* Cache size */
116 if (c->x86_cache_size >= 0)
117 seq_printf(m, "cache size\t: %d KB\n", c->x86_cache_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118
Hiroshi Shimamotoa967cea2008-02-20 10:45:29 -0800119 show_cpuinfo_core(m, c, cpu);
120 show_cpuinfo_misc(m, c);
121
122 seq_printf(m, "flags\t\t:");
123 for (i = 0; i < 32*NCAPINTS; i++)
124 if (cpu_has(c, i) && x86_cap_flags[i] != NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 seq_printf(m, " %s", x86_cap_flags[i]);
126
Hiroshi Shimamotof84c3a42008-02-20 10:47:12 -0800127 seq_printf(m, "\nbogomips\t: %lu.%02lu\n",
128 c->loops_per_jiffy/(500000/HZ),
129 (c->loops_per_jiffy/(5000/HZ)) % 100);
Hiroshi Shimamoto2aef7722008-02-20 10:48:02 -0800130
131#ifdef CONFIG_X86_64
132 if (c->x86_tlbsize > 0)
133 seq_printf(m, "TLB size\t: %d 4K pages\n", c->x86_tlbsize);
134#endif
Hiroshi Shimamotof84c3a42008-02-20 10:47:12 -0800135 seq_printf(m, "clflush size\t: %u\n", c->x86_clflush_size);
Hiroshi Shimamoto2aef7722008-02-20 10:48:02 -0800136#ifdef CONFIG_X86_64
137 seq_printf(m, "cache_alignment\t: %d\n", c->x86_cache_alignment);
138 seq_printf(m, "address sizes\t: %u bits physical, %u bits virtual\n",
139 c->x86_phys_bits, c->x86_virt_bits);
140#endif
Hiroshi Shimamotof84c3a42008-02-20 10:47:12 -0800141
142 seq_printf(m, "power management:");
143 for (i = 0; i < 32; i++) {
Andi Kleen3f98bc42006-01-11 22:42:51 +0100144 if (c->x86_power & (1 << i)) {
145 if (i < ARRAY_SIZE(x86_power_flags) &&
146 x86_power_flags[i])
147 seq_printf(m, "%s%s",
148 x86_power_flags[i][0]?" ":"",
149 x86_power_flags[i]);
150 else
151 seq_printf(m, " [%d]", i);
152 }
Hiroshi Shimamotof84c3a42008-02-20 10:47:12 -0800153 }
Andi Kleen3f98bc42006-01-11 22:42:51 +0100154
Hiroshi Shimamotof84c3a42008-02-20 10:47:12 -0800155 seq_printf(m, "\n\n");
Andi Kleen3dd9d512005-04-16 15:25:15 -0700156
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 return 0;
158}
159
160static void *c_start(struct seq_file *m, loff_t *pos)
161{
Mike Travis92cb7612007-10-19 20:35:04 +0200162 if (*pos == 0) /* just in case, cpu 0 is not the first */
Andreas Herrmannc0c52d22007-11-01 19:32:17 +0100163 *pos = first_cpu(cpu_online_map);
164 if ((*pos) < NR_CPUS && cpu_online(*pos))
Mike Travis92cb7612007-10-19 20:35:04 +0200165 return &cpu_data(*pos);
166 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167}
Hiroshi Shimamotoa967cea2008-02-20 10:45:29 -0800168
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169static void *c_next(struct seq_file *m, void *v, loff_t *pos)
170{
Andreas Herrmannc0c52d22007-11-01 19:32:17 +0100171 *pos = next_cpu(*pos, cpu_online_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 return c_start(m, pos);
173}
Hiroshi Shimamotoa967cea2008-02-20 10:45:29 -0800174
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175static void c_stop(struct seq_file *m, void *v)
176{
177}
Hiroshi Shimamotoa967cea2008-02-20 10:45:29 -0800178
Jan Engelhardt8a45eb32008-01-30 13:33:32 +0100179const struct seq_operations cpuinfo_op = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 .start = c_start,
181 .next = c_next,
182 .stop = c_stop,
183 .show = show_cpuinfo,
184};