2 #include <linux/timex.h>
3 #include <linux/string.h>
4 #include <asm/semaphore.h>
5 #include <linux/seq_file.h>
6 #include <linux/cpufreq.h>
9 * Get CPU information for use by the procfs.
12 static void show_cpuinfo_core(struct seq_file *m, struct cpuinfo_x86 *c,
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);
22 seq_printf(m, "apicid\t\t: %d\n", c->apicid);
23 seq_printf(m, "initial apicid\t: %d\n", c->initial_apicid);
28 static void show_cpuinfo_misc(struct seq_file *m, struct cpuinfo_x86 *c)
31 * We use exception 16 if we have hardware math and we've either seen
32 * it or the CPU claims it is internal
34 int fpu_exception = c->hard_math && (ignore_fpu_irq || cpu_has_fpu);
41 "fpu_exception\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",
51 c->wp_works_ok ? "yes" : "no");
54 static void show_cpuinfo_core(struct seq_file *m, struct cpuinfo_x86 *c,
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);
64 seq_printf(m, "apicid\t\t: %d\n", c->apicid);
65 seq_printf(m, "initial apicid\t: %d\n", c->initial_apicid);
70 static void show_cpuinfo_misc(struct seq_file *m, struct cpuinfo_x86 *c)
74 "fpu_exception\t: yes\n"
81 static int show_cpuinfo(struct seq_file *m, void *v)
83 struct cpuinfo_x86 *c = v;
90 seq_printf(m, "processor\t: %u\n"
96 c->x86_vendor_id[0] ? c->x86_vendor_id : "unknown",
99 c->x86_model_id[0] ? c->x86_model_id : "unknown");
101 if (c->x86_mask || c->cpuid_level >= 0)
102 seq_printf(m, "stepping\t: %d\n", c->x86_mask);
104 seq_printf(m, "stepping\t: unknown\n");
106 if (cpu_has(c, X86_FEATURE_TSC)) {
107 unsigned int freq = cpufreq_quick_get(cpu);
111 seq_printf(m, "cpu MHz\t\t: %u.%03u\n",
112 freq / 1000, (freq % 1000));
116 if (c->x86_cache_size >= 0)
117 seq_printf(m, "cache size\t: %d KB\n", c->x86_cache_size);
119 show_cpuinfo_core(m, c, cpu);
120 show_cpuinfo_misc(m, c);
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)
125 seq_printf(m, " %s", x86_cap_flags[i]);
127 seq_printf(m, "\nbogomips\t: %lu.%02lu\n",
128 c->loops_per_jiffy/(500000/HZ),
129 (c->loops_per_jiffy/(5000/HZ)) % 100);
132 if (c->x86_tlbsize > 0)
133 seq_printf(m, "TLB size\t: %d 4K pages\n", c->x86_tlbsize);
135 seq_printf(m, "clflush size\t: %u\n", c->x86_clflush_size);
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);
142 seq_printf(m, "power management:");
143 for (i = 0; i < 32; i++) {
144 if (c->x86_power & (1 << i)) {
145 if (i < ARRAY_SIZE(x86_power_flags) &&
147 seq_printf(m, "%s%s",
148 x86_power_flags[i][0]?" ":"",
151 seq_printf(m, " [%d]", i);
155 seq_printf(m, "\n\n");
160 static void *c_start(struct seq_file *m, loff_t *pos)
162 if (*pos == 0) /* just in case, cpu 0 is not the first */
163 *pos = first_cpu(cpu_online_map);
164 if ((*pos) < NR_CPUS && cpu_online(*pos))
165 return &cpu_data(*pos);
169 static void *c_next(struct seq_file *m, void *v, loff_t *pos)
171 *pos = next_cpu(*pos, cpu_online_map);
172 return c_start(m, pos);
175 static void c_stop(struct seq_file *m, void *v)
179 const struct seq_operations cpuinfo_op = {
183 .show = show_cpuinfo,