1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17#include <asm/arch_timer.h>
18#include <asm/cache.h>
19#include <asm/cpu.h>
20#include <asm/cputype.h>
21#include <asm/cpufeature.h>
22#include <asm/fpsimd.h>
23
24#include <linux/bitops.h>
25#include <linux/bug.h>
26#include <linux/compat.h>
27#include <linux/elf.h>
28#include <linux/init.h>
29#include <linux/kernel.h>
30#include <linux/personality.h>
31#include <linux/preempt.h>
32#include <linux/printk.h>
33#include <linux/seq_file.h>
34#include <linux/sched.h>
35#include <linux/smp.h>
36#include <linux/delay.h>
37
38
39
40
41
42
43DEFINE_PER_CPU(struct cpuinfo_arm64, cpu_data);
44static struct cpuinfo_arm64 boot_cpu_data;
45
46static char *icache_policy_str[] = {
47 [0 ... ICACHE_POLICY_PIPT] = "RESERVED/UNKNOWN",
48 [ICACHE_POLICY_VIPT] = "VIPT",
49 [ICACHE_POLICY_PIPT] = "PIPT",
50 [ICACHE_POLICY_VPIPT] = "VPIPT",
51};
52
53unsigned long __icache_flags;
54
55static const char *const hwcap_str[] = {
56 "fp",
57 "asimd",
58 "evtstrm",
59 "aes",
60 "pmull",
61 "sha1",
62 "sha2",
63 "crc32",
64 "atomics",
65 "fphp",
66 "asimdhp",
67 "cpuid",
68 "asimdrdm",
69 "jscvt",
70 "fcma",
71 "lrcpc",
72 "dcpop",
73 "sha3",
74 "sm3",
75 "sm4",
76 "asimddp",
77 "sha512",
78 "sve",
79 "asimdfhm",
80 "dit",
81 "uscat",
82 "ilrcpc",
83 "flagm",
84 NULL
85};
86
87#ifdef CONFIG_COMPAT
88static const char *const compat_hwcap_str[] = {
89 "swp",
90 "half",
91 "thumb",
92 "26bit",
93 "fastmult",
94 "fpa",
95 "vfp",
96 "edsp",
97 "java",
98 "iwmmxt",
99 "crunch",
100 "thumbee",
101 "neon",
102 "vfpv3",
103 "vfpv3d16",
104 "tls",
105 "vfpv4",
106 "idiva",
107 "idivt",
108 "vfpd32",
109 "lpae",
110 "evtstrm",
111 NULL
112};
113
114static const char *const compat_hwcap2_str[] = {
115 "aes",
116 "pmull",
117 "sha1",
118 "sha2",
119 "crc32",
120 NULL
121};
122#endif
123
124static int c_show(struct seq_file *m, void *v)
125{
126 int i, j;
127 bool compat = personality(current->personality) == PER_LINUX32;
128
129 for_each_online_cpu(i) {
130 struct cpuinfo_arm64 *cpuinfo = &per_cpu(cpu_data, i);
131 u32 midr = cpuinfo->reg_midr;
132
133
134
135
136
137
138 seq_printf(m, "processor\t: %d\n", i);
139 if (compat)
140 seq_printf(m, "model name\t: ARMv8 Processor rev %d (%s)\n",
141 MIDR_REVISION(midr), COMPAT_ELF_PLATFORM);
142
143 seq_printf(m, "BogoMIPS\t: %lu.%02lu\n",
144 loops_per_jiffy / (500000UL/HZ),
145 loops_per_jiffy / (5000UL/HZ) % 100);
146
147
148
149
150
151
152
153 seq_puts(m, "Features\t:");
154 if (compat) {
155#ifdef CONFIG_COMPAT
156 for (j = 0; compat_hwcap_str[j]; j++)
157 if (compat_elf_hwcap & (1 << j))
158 seq_printf(m, " %s", compat_hwcap_str[j]);
159
160 for (j = 0; compat_hwcap2_str[j]; j++)
161 if (compat_elf_hwcap2 & (1 << j))
162 seq_printf(m, " %s", compat_hwcap2_str[j]);
163#endif
164 } else {
165 for (j = 0; hwcap_str[j]; j++)
166 if (elf_hwcap & (1 << j))
167 seq_printf(m, " %s", hwcap_str[j]);
168 }
169 seq_puts(m, "\n");
170
171 seq_printf(m, "CPU implementer\t: 0x%02x\n",
172 MIDR_IMPLEMENTOR(midr));
173 seq_printf(m, "CPU architecture: 8\n");
174 seq_printf(m, "CPU variant\t: 0x%x\n", MIDR_VARIANT(midr));
175 seq_printf(m, "CPU part\t: 0x%03x\n", MIDR_PARTNUM(midr));
176 seq_printf(m, "CPU revision\t: %d\n\n", MIDR_REVISION(midr));
177 }
178
179 return 0;
180}
181
182static void *c_start(struct seq_file *m, loff_t *pos)
183{
184 return *pos < 1 ? (void *)1 : NULL;
185}
186
187static void *c_next(struct seq_file *m, void *v, loff_t *pos)
188{
189 ++*pos;
190 return NULL;
191}
192
193static void c_stop(struct seq_file *m, void *v)
194{
195}
196
197const struct seq_operations cpuinfo_op = {
198 .start = c_start,
199 .next = c_next,
200 .stop = c_stop,
201 .show = c_show
202};
203
204
205static struct kobj_type cpuregs_kobj_type = {
206 .sysfs_ops = &kobj_sysfs_ops,
207};
208
209
210
211
212
213
214
215
216
217
218
219
220#define kobj_to_cpuinfo(kobj) container_of(kobj, struct cpuinfo_arm64, kobj)
221#define CPUREGS_ATTR_RO(_name, _field) \
222 static ssize_t _name##_show(struct kobject *kobj, \
223 struct kobj_attribute *attr, char *buf) \
224 { \
225 struct cpuinfo_arm64 *info = kobj_to_cpuinfo(kobj); \
226 \
227 if (info->reg_midr) \
228 return sprintf(buf, "0x%016x\n", info->reg_##_field); \
229 else \
230 return 0; \
231 } \
232 static struct kobj_attribute cpuregs_attr_##_name = __ATTR_RO(_name)
233
234CPUREGS_ATTR_RO(midr_el1, midr);
235CPUREGS_ATTR_RO(revidr_el1, revidr);
236
237static struct attribute *cpuregs_id_attrs[] = {
238 &cpuregs_attr_midr_el1.attr,
239 &cpuregs_attr_revidr_el1.attr,
240 NULL
241};
242
243static const struct attribute_group cpuregs_attr_group = {
244 .attrs = cpuregs_id_attrs,
245 .name = "identification"
246};
247
248static int cpuid_cpu_online(unsigned int cpu)
249{
250 int rc;
251 struct device *dev;
252 struct cpuinfo_arm64 *info = &per_cpu(cpu_data, cpu);
253
254 dev = get_cpu_device(cpu);
255 if (!dev) {
256 rc = -ENODEV;
257 goto out;
258 }
259 rc = kobject_add(&info->kobj, &dev->kobj, "regs");
260 if (rc)
261 goto out;
262 rc = sysfs_create_group(&info->kobj, &cpuregs_attr_group);
263 if (rc)
264 kobject_del(&info->kobj);
265out:
266 return rc;
267}
268
269static int cpuid_cpu_offline(unsigned int cpu)
270{
271 struct device *dev;
272 struct cpuinfo_arm64 *info = &per_cpu(cpu_data, cpu);
273
274 dev = get_cpu_device(cpu);
275 if (!dev)
276 return -ENODEV;
277 if (info->kobj.parent) {
278 sysfs_remove_group(&info->kobj, &cpuregs_attr_group);
279 kobject_del(&info->kobj);
280 }
281
282 return 0;
283}
284
285static int __init cpuinfo_regs_init(void)
286{
287 int cpu, ret;
288
289 for_each_possible_cpu(cpu) {
290 struct cpuinfo_arm64 *info = &per_cpu(cpu_data, cpu);
291
292 kobject_init(&info->kobj, &cpuregs_kobj_type);
293 }
294
295 ret = cpuhp_setup_state(CPUHP_AP_ONLINE_DYN, "arm64/cpuinfo:online",
296 cpuid_cpu_online, cpuid_cpu_offline);
297 if (ret < 0) {
298 pr_err("cpuinfo: failed to register hotplug callbacks.\n");
299 return ret;
300 }
301 return 0;
302}
303static void cpuinfo_detect_icache_policy(struct cpuinfo_arm64 *info)
304{
305 unsigned int cpu = smp_processor_id();
306 u32 l1ip = CTR_L1IP(info->reg_ctr);
307
308 switch (l1ip) {
309 case ICACHE_POLICY_PIPT:
310 break;
311 case ICACHE_POLICY_VPIPT:
312 set_bit(ICACHEF_VPIPT, &__icache_flags);
313 break;
314 default:
315
316 case ICACHE_POLICY_VIPT:
317
318 set_bit(ICACHEF_ALIASING, &__icache_flags);
319 }
320
321 pr_info("Detected %s I-cache on CPU%d\n", icache_policy_str[l1ip], cpu);
322}
323
324static void __cpuinfo_store_cpu(struct cpuinfo_arm64 *info)
325{
326 info->reg_cntfrq = arch_timer_get_cntfrq();
327 info->reg_ctr = read_cpuid_cachetype();
328 info->reg_dczid = read_cpuid(DCZID_EL0);
329 info->reg_midr = read_cpuid_id();
330 info->reg_revidr = read_cpuid(REVIDR_EL1);
331
332 info->reg_id_aa64dfr0 = read_cpuid(ID_AA64DFR0_EL1);
333 info->reg_id_aa64dfr1 = read_cpuid(ID_AA64DFR1_EL1);
334 info->reg_id_aa64isar0 = read_cpuid(ID_AA64ISAR0_EL1);
335 info->reg_id_aa64isar1 = read_cpuid(ID_AA64ISAR1_EL1);
336 info->reg_id_aa64mmfr0 = read_cpuid(ID_AA64MMFR0_EL1);
337 info->reg_id_aa64mmfr1 = read_cpuid(ID_AA64MMFR1_EL1);
338 info->reg_id_aa64mmfr2 = read_cpuid(ID_AA64MMFR2_EL1);
339 info->reg_id_aa64pfr0 = read_cpuid(ID_AA64PFR0_EL1);
340 info->reg_id_aa64pfr1 = read_cpuid(ID_AA64PFR1_EL1);
341 info->reg_id_aa64zfr0 = read_cpuid(ID_AA64ZFR0_EL1);
342
343
344 if (id_aa64pfr0_32bit_el0(info->reg_id_aa64pfr0)) {
345 info->reg_id_dfr0 = read_cpuid(ID_DFR0_EL1);
346 info->reg_id_isar0 = read_cpuid(ID_ISAR0_EL1);
347 info->reg_id_isar1 = read_cpuid(ID_ISAR1_EL1);
348 info->reg_id_isar2 = read_cpuid(ID_ISAR2_EL1);
349 info->reg_id_isar3 = read_cpuid(ID_ISAR3_EL1);
350 info->reg_id_isar4 = read_cpuid(ID_ISAR4_EL1);
351 info->reg_id_isar5 = read_cpuid(ID_ISAR5_EL1);
352 info->reg_id_mmfr0 = read_cpuid(ID_MMFR0_EL1);
353 info->reg_id_mmfr1 = read_cpuid(ID_MMFR1_EL1);
354 info->reg_id_mmfr2 = read_cpuid(ID_MMFR2_EL1);
355 info->reg_id_mmfr3 = read_cpuid(ID_MMFR3_EL1);
356 info->reg_id_pfr0 = read_cpuid(ID_PFR0_EL1);
357 info->reg_id_pfr1 = read_cpuid(ID_PFR1_EL1);
358
359 info->reg_mvfr0 = read_cpuid(MVFR0_EL1);
360 info->reg_mvfr1 = read_cpuid(MVFR1_EL1);
361 info->reg_mvfr2 = read_cpuid(MVFR2_EL1);
362 }
363
364 if (IS_ENABLED(CONFIG_ARM64_SVE) &&
365 id_aa64pfr0_sve(info->reg_id_aa64pfr0))
366 info->reg_zcr = read_zcr_features();
367
368 cpuinfo_detect_icache_policy(info);
369}
370
371void cpuinfo_store_cpu(void)
372{
373 struct cpuinfo_arm64 *info = this_cpu_ptr(&cpu_data);
374 __cpuinfo_store_cpu(info);
375 update_cpu_features(smp_processor_id(), info, &boot_cpu_data);
376}
377
378void __init cpuinfo_store_boot_cpu(void)
379{
380 struct cpuinfo_arm64 *info = &per_cpu(cpu_data, 0);
381 __cpuinfo_store_cpu(info);
382
383 boot_cpu_data = *info;
384 init_cpu_features(&boot_cpu_data);
385}
386
387device_initcall(cpuinfo_regs_init);
388