Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | #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 Pallipadi | 95235ca | 2005-12-02 10:43:20 -0800 | [diff] [blame] | 6 | #include <linux/cpufreq.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7 | |
| 8 | /* |
| 9 | * Get CPU information for use by the procfs. |
| 10 | */ |
Hiroshi Shimamoto | 2aef7720 | 2008-02-20 10:48:02 -0800 | [diff] [blame^] | 11 | #ifdef CONFIG_X86_32 |
Hiroshi Shimamoto | a967cea | 2008-02-20 10:45:29 -0800 | [diff] [blame] | 12 | static 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); |
| 22 | } |
| 23 | #endif |
| 24 | } |
| 25 | |
| 26 | static void show_cpuinfo_misc(struct seq_file *m, struct cpuinfo_x86 *c) |
| 27 | { |
| 28 | /* |
| 29 | * We use exception 16 if we have hardware math and we've either seen |
| 30 | * it or the CPU claims it is internal |
| 31 | */ |
| 32 | int fpu_exception = c->hard_math && (ignore_fpu_irq || cpu_has_fpu); |
| 33 | seq_printf(m, |
| 34 | "fdiv_bug\t: %s\n" |
| 35 | "hlt_bug\t\t: %s\n" |
| 36 | "f00f_bug\t: %s\n" |
| 37 | "coma_bug\t: %s\n" |
| 38 | "fpu\t\t: %s\n" |
| 39 | "fpu_exception\t: %s\n" |
| 40 | "cpuid level\t: %d\n" |
| 41 | "wp\t\t: %s\n", |
| 42 | c->fdiv_bug ? "yes" : "no", |
| 43 | c->hlt_works_ok ? "no" : "yes", |
| 44 | c->f00f_bug ? "yes" : "no", |
| 45 | c->coma_bug ? "yes" : "no", |
| 46 | c->hard_math ? "yes" : "no", |
| 47 | fpu_exception ? "yes" : "no", |
| 48 | c->cpuid_level, |
| 49 | c->wp_works_ok ? "yes" : "no"); |
| 50 | } |
Hiroshi Shimamoto | 2aef7720 | 2008-02-20 10:48:02 -0800 | [diff] [blame^] | 51 | #else |
| 52 | static void show_cpuinfo_core(struct seq_file *m, struct cpuinfo_x86 *c, |
| 53 | unsigned int cpu) |
| 54 | { |
| 55 | #ifdef CONFIG_SMP |
| 56 | if (c->x86_max_cores * smp_num_siblings > 1) { |
| 57 | seq_printf(m, "physical id\t: %d\n", c->phys_proc_id); |
| 58 | seq_printf(m, "siblings\t: %d\n", |
| 59 | cpus_weight(per_cpu(cpu_core_map, cpu))); |
| 60 | seq_printf(m, "core id\t\t: %d\n", c->cpu_core_id); |
| 61 | seq_printf(m, "cpu cores\t: %d\n", c->booted_cores); |
| 62 | } |
| 63 | #endif |
| 64 | } |
| 65 | |
| 66 | static void show_cpuinfo_misc(struct seq_file *m, struct cpuinfo_x86 *c) |
| 67 | { |
| 68 | seq_printf(m, |
| 69 | "fpu\t\t: yes\n" |
| 70 | "fpu_exception\t: yes\n" |
| 71 | "cpuid level\t: %d\n" |
| 72 | "wp\t\t: yes\n", |
| 73 | c->cpuid_level); |
| 74 | } |
| 75 | #endif |
Hiroshi Shimamoto | a967cea | 2008-02-20 10:45:29 -0800 | [diff] [blame] | 76 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 77 | static int show_cpuinfo(struct seq_file *m, void *v) |
| 78 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 79 | struct cpuinfo_x86 *c = v; |
Hiroshi Shimamoto | a967cea | 2008-02-20 10:45:29 -0800 | [diff] [blame] | 80 | unsigned int cpu = 0; |
| 81 | int i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 82 | |
| 83 | #ifdef CONFIG_SMP |
Hiroshi Shimamoto | a967cea | 2008-02-20 10:45:29 -0800 | [diff] [blame] | 84 | cpu = c->cpu_index; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 85 | #endif |
Hiroshi Shimamoto | a967cea | 2008-02-20 10:45:29 -0800 | [diff] [blame] | 86 | seq_printf(m, "processor\t: %u\n" |
| 87 | "vendor_id\t: %s\n" |
| 88 | "cpu family\t: %d\n" |
| 89 | "model\t\t: %u\n" |
| 90 | "model name\t: %s\n", |
| 91 | cpu, |
| 92 | c->x86_vendor_id[0] ? c->x86_vendor_id : "unknown", |
| 93 | c->x86, |
| 94 | c->x86_model, |
| 95 | c->x86_model_id[0] ? c->x86_model_id : "unknown"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 96 | |
| 97 | if (c->x86_mask || c->cpuid_level >= 0) |
| 98 | seq_printf(m, "stepping\t: %d\n", c->x86_mask); |
| 99 | else |
| 100 | seq_printf(m, "stepping\t: unknown\n"); |
| 101 | |
Hiroshi Shimamoto | a967cea | 2008-02-20 10:45:29 -0800 | [diff] [blame] | 102 | if (cpu_has(c, X86_FEATURE_TSC)) { |
| 103 | unsigned int freq = cpufreq_quick_get(cpu); |
| 104 | |
Venkatesh Pallipadi | 95235ca | 2005-12-02 10:43:20 -0800 | [diff] [blame] | 105 | if (!freq) |
| 106 | freq = cpu_khz; |
Andrew Morton | a3a255e | 2005-06-23 00:08:34 -0700 | [diff] [blame] | 107 | seq_printf(m, "cpu MHz\t\t: %u.%03u\n", |
Hiroshi Shimamoto | a967cea | 2008-02-20 10:45:29 -0800 | [diff] [blame] | 108 | freq / 1000, (freq % 1000)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 109 | } |
| 110 | |
| 111 | /* Cache size */ |
| 112 | if (c->x86_cache_size >= 0) |
| 113 | seq_printf(m, "cache size\t: %d KB\n", c->x86_cache_size); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 114 | |
Hiroshi Shimamoto | a967cea | 2008-02-20 10:45:29 -0800 | [diff] [blame] | 115 | show_cpuinfo_core(m, c, cpu); |
| 116 | show_cpuinfo_misc(m, c); |
| 117 | |
| 118 | seq_printf(m, "flags\t\t:"); |
| 119 | for (i = 0; i < 32*NCAPINTS; i++) |
| 120 | if (cpu_has(c, i) && x86_cap_flags[i] != NULL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 121 | seq_printf(m, " %s", x86_cap_flags[i]); |
| 122 | |
Hiroshi Shimamoto | f84c3a4 | 2008-02-20 10:47:12 -0800 | [diff] [blame] | 123 | seq_printf(m, "\nbogomips\t: %lu.%02lu\n", |
| 124 | c->loops_per_jiffy/(500000/HZ), |
| 125 | (c->loops_per_jiffy/(5000/HZ)) % 100); |
Hiroshi Shimamoto | 2aef7720 | 2008-02-20 10:48:02 -0800 | [diff] [blame^] | 126 | |
| 127 | #ifdef CONFIG_X86_64 |
| 128 | if (c->x86_tlbsize > 0) |
| 129 | seq_printf(m, "TLB size\t: %d 4K pages\n", c->x86_tlbsize); |
| 130 | #endif |
Hiroshi Shimamoto | f84c3a4 | 2008-02-20 10:47:12 -0800 | [diff] [blame] | 131 | seq_printf(m, "clflush size\t: %u\n", c->x86_clflush_size); |
Hiroshi Shimamoto | 2aef7720 | 2008-02-20 10:48:02 -0800 | [diff] [blame^] | 132 | #ifdef CONFIG_X86_64 |
| 133 | seq_printf(m, "cache_alignment\t: %d\n", c->x86_cache_alignment); |
| 134 | seq_printf(m, "address sizes\t: %u bits physical, %u bits virtual\n", |
| 135 | c->x86_phys_bits, c->x86_virt_bits); |
| 136 | #endif |
Hiroshi Shimamoto | f84c3a4 | 2008-02-20 10:47:12 -0800 | [diff] [blame] | 137 | |
| 138 | seq_printf(m, "power management:"); |
| 139 | for (i = 0; i < 32; i++) { |
Andi Kleen | 3f98bc4 | 2006-01-11 22:42:51 +0100 | [diff] [blame] | 140 | if (c->x86_power & (1 << i)) { |
| 141 | if (i < ARRAY_SIZE(x86_power_flags) && |
| 142 | x86_power_flags[i]) |
| 143 | seq_printf(m, "%s%s", |
| 144 | x86_power_flags[i][0]?" ":"", |
| 145 | x86_power_flags[i]); |
| 146 | else |
| 147 | seq_printf(m, " [%d]", i); |
| 148 | } |
Hiroshi Shimamoto | f84c3a4 | 2008-02-20 10:47:12 -0800 | [diff] [blame] | 149 | } |
Andi Kleen | 3f98bc4 | 2006-01-11 22:42:51 +0100 | [diff] [blame] | 150 | |
Hiroshi Shimamoto | f84c3a4 | 2008-02-20 10:47:12 -0800 | [diff] [blame] | 151 | seq_printf(m, "\n\n"); |
Andi Kleen | 3dd9d51 | 2005-04-16 15:25:15 -0700 | [diff] [blame] | 152 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 153 | return 0; |
| 154 | } |
| 155 | |
| 156 | static void *c_start(struct seq_file *m, loff_t *pos) |
| 157 | { |
Mike Travis | 92cb761 | 2007-10-19 20:35:04 +0200 | [diff] [blame] | 158 | if (*pos == 0) /* just in case, cpu 0 is not the first */ |
Andreas Herrmann | c0c52d2 | 2007-11-01 19:32:17 +0100 | [diff] [blame] | 159 | *pos = first_cpu(cpu_online_map); |
| 160 | if ((*pos) < NR_CPUS && cpu_online(*pos)) |
Mike Travis | 92cb761 | 2007-10-19 20:35:04 +0200 | [diff] [blame] | 161 | return &cpu_data(*pos); |
| 162 | return NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 163 | } |
Hiroshi Shimamoto | a967cea | 2008-02-20 10:45:29 -0800 | [diff] [blame] | 164 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 165 | static void *c_next(struct seq_file *m, void *v, loff_t *pos) |
| 166 | { |
Andreas Herrmann | c0c52d2 | 2007-11-01 19:32:17 +0100 | [diff] [blame] | 167 | *pos = next_cpu(*pos, cpu_online_map); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 168 | return c_start(m, pos); |
| 169 | } |
Hiroshi Shimamoto | a967cea | 2008-02-20 10:45:29 -0800 | [diff] [blame] | 170 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 171 | static void c_stop(struct seq_file *m, void *v) |
| 172 | { |
| 173 | } |
Hiroshi Shimamoto | a967cea | 2008-02-20 10:45:29 -0800 | [diff] [blame] | 174 | |
Jan Engelhardt | 8a45eb3 | 2008-01-30 13:33:32 +0100 | [diff] [blame] | 175 | const struct seq_operations cpuinfo_op = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 176 | .start = c_start, |
| 177 | .next = c_next, |
| 178 | .stop = c_stop, |
| 179 | .show = show_cpuinfo, |
| 180 | }; |