blob: 6df621ae62a7c00cb4f95dbf5c41ec83e5397f71 [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004#include <linux/seq_file.h>
Venkatesh Pallipadi95235ca2005-12-02 10:43:20 -08005#include <linux/cpufreq.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006
7/*
8 * Get CPU information for use by the procfs.
9 */
Hiroshi Shimamotoa967cea2008-02-20 10:45:29 -080010static void show_cpuinfo_core(struct seq_file *m, struct cpuinfo_x86 *c,
11 unsigned int cpu)
12{
Jaswinder Singh Rajput327f4382009-02-28 18:50:21 +053013#ifdef CONFIG_SMP
HATAYAMA Daisukea477c852013-11-05 02:15:48 +090014 seq_printf(m, "physical id\t: %d\n", c->phys_proc_id);
Bartosz Golaszewski7d79a7b2015-05-26 15:11:35 +020015 seq_printf(m, "siblings\t: %d\n",
16 cpumask_weight(topology_core_cpumask(cpu)));
HATAYAMA Daisukea477c852013-11-05 02:15:48 +090017 seq_printf(m, "core id\t\t: %d\n", c->cpu_core_id);
18 seq_printf(m, "cpu cores\t: %d\n", c->booted_cores);
19 seq_printf(m, "apicid\t\t: %d\n", c->apicid);
20 seq_printf(m, "initial apicid\t: %d\n", c->initial_apicid);
Hiroshi Shimamotoa967cea2008-02-20 10:45:29 -080021#endif
22}
23
Jaswinder Singh Rajput327f4382009-02-28 18:50:21 +053024#ifdef CONFIG_X86_32
Hiroshi Shimamotoa967cea2008-02-20 10:45:29 -080025static void show_cpuinfo_misc(struct seq_file *m, struct cpuinfo_x86 *c)
26{
Hiroshi Shimamotoa967cea2008-02-20 10:45:29 -080027 seq_printf(m,
28 "fdiv_bug\t: %s\n"
Hiroshi Shimamotoa967cea2008-02-20 10:45:29 -080029 "f00f_bug\t: %s\n"
30 "coma_bug\t: %s\n"
31 "fpu\t\t: %s\n"
32 "fpu_exception\t: %s\n"
33 "cpuid level\t: %d\n"
Mathias Krause64158132017-02-12 22:12:08 +010034 "wp\t\t: yes\n",
Borislav Petkov93a829e2013-03-20 15:07:25 +010035 static_cpu_has_bug(X86_BUG_FDIV) ? "yes" : "no",
Borislav Petkove2604b42013-03-20 15:07:24 +010036 static_cpu_has_bug(X86_BUG_F00F) ? "yes" : "no",
Borislav Petkovc5b41a62013-03-20 15:07:26 +010037 static_cpu_has_bug(X86_BUG_COMA) ? "yes" : "no",
H. Peter Anvin60e019e2013-04-29 16:04:20 +020038 static_cpu_has(X86_FEATURE_FPU) ? "yes" : "no",
39 static_cpu_has(X86_FEATURE_FPU) ? "yes" : "no",
Mathias Krause64158132017-02-12 22:12:08 +010040 c->cpuid_level);
Hiroshi Shimamotoa967cea2008-02-20 10:45:29 -080041}
Hiroshi Shimamoto2aef7722008-02-20 10:48:02 -080042#else
Hiroshi Shimamoto2aef7722008-02-20 10:48:02 -080043static void show_cpuinfo_misc(struct seq_file *m, struct cpuinfo_x86 *c)
44{
45 seq_printf(m,
46 "fpu\t\t: yes\n"
47 "fpu_exception\t: yes\n"
48 "cpuid level\t: %d\n"
49 "wp\t\t: yes\n",
50 c->cpuid_level);
51}
52#endif
Hiroshi Shimamotoa967cea2008-02-20 10:45:29 -080053
Linus Torvalds1da177e2005-04-16 15:20:36 -070054static int show_cpuinfo(struct seq_file *m, void *v)
55{
Linus Torvalds1da177e2005-04-16 15:20:36 -070056 struct cpuinfo_x86 *c = v;
Kevin Winchester141168c2011-12-20 20:52:22 -040057 unsigned int cpu;
Hiroshi Shimamotoa967cea2008-02-20 10:45:29 -080058 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
Hiroshi Shimamotoa967cea2008-02-20 10:45:29 -080060 cpu = c->cpu_index;
Hiroshi Shimamotoa967cea2008-02-20 10:45:29 -080061 seq_printf(m, "processor\t: %u\n"
62 "vendor_id\t: %s\n"
63 "cpu family\t: %d\n"
64 "model\t\t: %u\n"
65 "model name\t: %s\n",
66 cpu,
67 c->x86_vendor_id[0] ? c->x86_vendor_id : "unknown",
68 c->x86,
69 c->x86_model,
70 c->x86_model_id[0] ? c->x86_model_id : "unknown");
Linus Torvalds1da177e2005-04-16 15:20:36 -070071
72 if (c->x86_mask || c->cpuid_level >= 0)
73 seq_printf(m, "stepping\t: %d\n", c->x86_mask);
74 else
Rasmus Villemoes37367082014-11-28 22:03:41 +010075 seq_puts(m, "stepping\t: unknown\n");
Andi Kleen506ed6b2011-10-12 17:46:33 -070076 if (c->microcode)
Borislav Petkov881e23e2011-10-17 16:45:10 +020077 seq_printf(m, "microcode\t: 0x%x\n", c->microcode);
Linus Torvalds1da177e2005-04-16 15:20:36 -070078
Hiroshi Shimamotoa967cea2008-02-20 10:45:29 -080079 if (cpu_has(c, X86_FEATURE_TSC)) {
80 unsigned int freq = cpufreq_quick_get(cpu);
81
Venkatesh Pallipadi95235ca2005-12-02 10:43:20 -080082 if (!freq)
83 freq = cpu_khz;
Andrew Mortona3a255e2005-06-23 00:08:34 -070084 seq_printf(m, "cpu MHz\t\t: %u.%03u\n",
Hiroshi Shimamotoa967cea2008-02-20 10:45:29 -080085 freq / 1000, (freq % 1000));
Linus Torvalds1da177e2005-04-16 15:20:36 -070086 }
87
88 /* Cache size */
89 if (c->x86_cache_size >= 0)
90 seq_printf(m, "cache size\t: %d KB\n", c->x86_cache_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -070091
Hiroshi Shimamotoa967cea2008-02-20 10:45:29 -080092 show_cpuinfo_core(m, c, cpu);
93 show_cpuinfo_misc(m, c);
94
Rasmus Villemoes37367082014-11-28 22:03:41 +010095 seq_puts(m, "flags\t\t:");
Hiroshi Shimamotoa967cea2008-02-20 10:45:29 -080096 for (i = 0; i < 32*NCAPINTS; i++)
97 if (cpu_has(c, i) && x86_cap_flags[i] != NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 seq_printf(m, " %s", x86_cap_flags[i]);
99
Rasmus Villemoes37367082014-11-28 22:03:41 +0100100 seq_puts(m, "\nbugs\t\t:");
Borislav Petkov80a208b2014-06-24 13:25:03 +0200101 for (i = 0; i < 32*NBUGINTS; i++) {
102 unsigned int bug_bit = 32*NCAPINTS + i;
103
104 if (cpu_has_bug(c, bug_bit) && x86_bug_flags[i])
105 seq_printf(m, " %s", x86_bug_flags[i]);
106 }
107
Hiroshi Shimamotof84c3a42008-02-20 10:47:12 -0800108 seq_printf(m, "\nbogomips\t: %lu.%02lu\n",
109 c->loops_per_jiffy/(500000/HZ),
110 (c->loops_per_jiffy/(5000/HZ)) % 100);
Hiroshi Shimamoto2aef7722008-02-20 10:48:02 -0800111
112#ifdef CONFIG_X86_64
113 if (c->x86_tlbsize > 0)
114 seq_printf(m, "TLB size\t: %d 4K pages\n", c->x86_tlbsize);
115#endif
Hiroshi Shimamotof84c3a42008-02-20 10:47:12 -0800116 seq_printf(m, "clflush size\t: %u\n", c->x86_clflush_size);
Hiroshi Shimamoto2aef7722008-02-20 10:48:02 -0800117 seq_printf(m, "cache_alignment\t: %d\n", c->x86_cache_alignment);
118 seq_printf(m, "address sizes\t: %u bits physical, %u bits virtual\n",
119 c->x86_phys_bits, c->x86_virt_bits);
Hiroshi Shimamotof84c3a42008-02-20 10:47:12 -0800120
Rasmus Villemoes37367082014-11-28 22:03:41 +0100121 seq_puts(m, "power management:");
Hiroshi Shimamotof84c3a42008-02-20 10:47:12 -0800122 for (i = 0; i < 32; i++) {
Andi Kleen3f98bc42006-01-11 22:42:51 +0100123 if (c->x86_power & (1 << i)) {
124 if (i < ARRAY_SIZE(x86_power_flags) &&
125 x86_power_flags[i])
126 seq_printf(m, "%s%s",
Alan Cox8bdbd962009-07-04 00:35:45 +0100127 x86_power_flags[i][0] ? " " : "",
Andi Kleen3f98bc42006-01-11 22:42:51 +0100128 x86_power_flags[i]);
129 else
130 seq_printf(m, " [%d]", i);
131 }
Hiroshi Shimamotof84c3a42008-02-20 10:47:12 -0800132 }
Andi Kleen3f98bc42006-01-11 22:42:51 +0100133
Rasmus Villemoes37367082014-11-28 22:03:41 +0100134 seq_puts(m, "\n\n");
Andi Kleen3dd9d512005-04-16 15:25:15 -0700135
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 return 0;
137}
138
139static void *c_start(struct seq_file *m, loff_t *pos)
140{
Michael Wangdec08a82012-09-19 13:42:23 +0800141 *pos = cpumask_next(*pos - 1, cpu_online_mask);
Lai Jiangshanbc8bcc72008-10-22 12:42:30 +0800142 if ((*pos) < nr_cpu_ids)
Mike Travis92cb7612007-10-19 20:35:04 +0200143 return &cpu_data(*pos);
144 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145}
Hiroshi Shimamotoa967cea2008-02-20 10:45:29 -0800146
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147static void *c_next(struct seq_file *m, void *v, loff_t *pos)
148{
Lai Jiangshanbc8bcc72008-10-22 12:42:30 +0800149 (*pos)++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 return c_start(m, pos);
151}
Hiroshi Shimamotoa967cea2008-02-20 10:45:29 -0800152
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153static void c_stop(struct seq_file *m, void *v)
154{
155}
Hiroshi Shimamotoa967cea2008-02-20 10:45:29 -0800156
Jan Engelhardt8a45eb32008-01-30 13:33:32 +0100157const struct seq_operations cpuinfo_op = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 .start = c_start,
159 .next = c_next,
160 .stop = c_stop,
161 .show = show_cpuinfo,
162};