1 // SPDX-License-Identifier: GPL-2.0
3 * Copyright IBM Corp. 2008
7 #define KMSG_COMPONENT "cpu"
8 #define pr_fmt(fmt) KMSG_COMPONENT ": " fmt
10 #include <linux/stop_machine.h>
11 #include <linux/cpufeature.h>
12 #include <linux/bitops.h>
13 #include <linux/kernel.h>
14 #include <linux/random.h>
15 #include <linux/sched/mm.h>
16 #include <linux/init.h>
17 #include <linux/seq_file.h>
18 #include <linux/mm_types.h>
19 #include <linux/delay.h>
20 #include <linux/cpu.h>
23 #include <asm/facility.h>
25 #include <asm/lowcore.h>
26 #include <asm/param.h>
30 unsigned long __read_mostly elf_hwcap;
31 char elf_platform[ELF_PLATFORM_SIZE];
34 unsigned int cpu_mhz_dynamic;
35 unsigned int cpu_mhz_static;
39 static DEFINE_PER_CPU(struct cpu_info, cpu_info);
40 static DEFINE_PER_CPU(int, cpu_relax_retry);
42 static bool machine_has_cpu_mhz;
44 void __init cpu_detect_mhz_feature(void)
46 if (test_facility(34) && __ecag(ECAG_CPU_ATTRIBUTE, 0) != -1UL)
47 machine_has_cpu_mhz = true;
50 static void update_cpu_mhz(void *arg)
55 mhz = __ecag(ECAG_CPU_ATTRIBUTE, 0);
56 c = this_cpu_ptr(&cpu_info);
57 c->cpu_mhz_dynamic = mhz >> 32;
58 c->cpu_mhz_static = mhz & 0xffffffff;
61 void s390_update_cpu_mhz(void)
63 s390_adjust_jiffies();
64 if (machine_has_cpu_mhz)
65 on_each_cpu(update_cpu_mhz, NULL, 0);
68 void notrace stop_machine_yield(const struct cpumask *cpumask)
72 this_cpu = smp_processor_id();
73 if (__this_cpu_inc_return(cpu_relax_retry) >= spin_retry) {
74 __this_cpu_write(cpu_relax_retry, 0);
75 cpu = cpumask_next_wrap(this_cpu, cpumask, this_cpu, false);
76 if (cpu >= nr_cpu_ids)
78 if (arch_vcpu_is_preempted(cpu))
84 * cpu_init - initializes state that is per-CPU.
88 struct cpuid *id = this_cpu_ptr(&cpu_info.cpu_id);
91 if (machine_has_cpu_mhz)
94 current->active_mm = &init_mm;
96 enter_lazy_tlb(&init_mm, current);
100 * cpu_have_feature - Test CPU features on module initialization
102 int cpu_have_feature(unsigned int num)
104 return elf_hwcap & (1UL << num);
106 EXPORT_SYMBOL(cpu_have_feature);
108 static void show_facilities(struct seq_file *m)
112 seq_puts(m, "facilities :");
113 for_each_set_bit_inv(bit, (long *)&stfle_fac_list, MAX_FACILITY_BIT)
114 seq_printf(m, " %d", bit);
118 static void show_cpu_summary(struct seq_file *m, void *v)
120 static const char *hwcap_str[] = {
121 [HWCAP_NR_ESAN3] = "esan3",
122 [HWCAP_NR_ZARCH] = "zarch",
123 [HWCAP_NR_STFLE] = "stfle",
124 [HWCAP_NR_MSA] = "msa",
125 [HWCAP_NR_LDISP] = "ldisp",
126 [HWCAP_NR_EIMM] = "eimm",
127 [HWCAP_NR_DFP] = "dfp",
128 [HWCAP_NR_HPAGE] = "edat",
129 [HWCAP_NR_ETF3EH] = "etf3eh",
130 [HWCAP_NR_HIGH_GPRS] = "highgprs",
131 [HWCAP_NR_TE] = "te",
132 [HWCAP_NR_VXRS] = "vx",
133 [HWCAP_NR_VXRS_BCD] = "vxd",
134 [HWCAP_NR_VXRS_EXT] = "vxe",
135 [HWCAP_NR_GS] = "gs",
136 [HWCAP_NR_VXRS_EXT2] = "vxe2",
137 [HWCAP_NR_VXRS_PDE] = "vxp",
138 [HWCAP_NR_SORT] = "sort",
139 [HWCAP_NR_DFLT] = "dflt",
140 [HWCAP_NR_VXRS_PDE2] = "vxp2",
141 [HWCAP_NR_NNPA] = "nnpa",
142 [HWCAP_NR_PCI_MIO] = "pcimio",
143 [HWCAP_NR_SIE] = "sie",
147 BUILD_BUG_ON(ARRAY_SIZE(hwcap_str) != HWCAP_NR_MAX);
148 seq_printf(m, "vendor_id : IBM/S390\n"
149 "# processors : %i\n"
150 "bogomips per cpu: %lu.%02lu\n",
151 num_online_cpus(), loops_per_jiffy/(500000/HZ),
152 (loops_per_jiffy/(5000/HZ))%100);
153 seq_printf(m, "max thread id : %d\n", smp_cpu_mtid);
154 seq_puts(m, "features\t: ");
155 for (i = 0; i < ARRAY_SIZE(hwcap_str); i++)
156 if (hwcap_str[i] && (elf_hwcap & (1UL << i)))
157 seq_printf(m, "%s ", hwcap_str[i]);
161 for_each_online_cpu(cpu) {
162 struct cpuid *id = &per_cpu(cpu_info.cpu_id, cpu);
164 seq_printf(m, "processor %d: "
166 "identification = %06X, "
168 cpu, id->version, id->ident, id->machine);
172 static int __init setup_hwcaps(void)
174 /* instructions named N3, "backported" to esa-mode */
175 if (test_facility(0))
176 elf_hwcap |= HWCAP_ESAN3;
178 /* z/Architecture mode active */
179 elf_hwcap |= HWCAP_ZARCH;
181 /* store-facility-list-extended */
182 if (test_facility(7))
183 elf_hwcap |= HWCAP_STFLE;
185 /* message-security assist */
186 if (test_facility(17))
187 elf_hwcap |= HWCAP_MSA;
189 /* long-displacement */
190 if (test_facility(19))
191 elf_hwcap |= HWCAP_LDISP;
193 /* extended-immediate */
194 if (test_facility(21))
195 elf_hwcap |= HWCAP_EIMM;
197 /* extended-translation facility 3 enhancement */
198 if (test_facility(22) && test_facility(30))
199 elf_hwcap |= HWCAP_ETF3EH;
201 /* decimal floating point & perform floating point operation */
202 if (test_facility(42) && test_facility(44))
203 elf_hwcap |= HWCAP_DFP;
205 /* huge page support */
206 if (MACHINE_HAS_EDAT1)
207 elf_hwcap |= HWCAP_HPAGE;
209 /* 64-bit register support for 31-bit processes */
210 elf_hwcap |= HWCAP_HIGH_GPRS;
212 /* transactional execution */
214 elf_hwcap |= HWCAP_TE;
217 * Vector extension can be disabled with the "novx" parameter.
218 * Use MACHINE_HAS_VX instead of facility bit 129.
220 if (MACHINE_HAS_VX) {
221 elf_hwcap |= HWCAP_VXRS;
222 if (test_facility(134))
223 elf_hwcap |= HWCAP_VXRS_BCD;
224 if (test_facility(135))
225 elf_hwcap |= HWCAP_VXRS_EXT;
226 if (test_facility(148))
227 elf_hwcap |= HWCAP_VXRS_EXT2;
228 if (test_facility(152))
229 elf_hwcap |= HWCAP_VXRS_PDE;
230 if (test_facility(192))
231 elf_hwcap |= HWCAP_VXRS_PDE2;
234 if (test_facility(150))
235 elf_hwcap |= HWCAP_SORT;
237 if (test_facility(151))
238 elf_hwcap |= HWCAP_DFLT;
240 if (test_facility(165))
241 elf_hwcap |= HWCAP_NNPA;
243 /* guarded storage */
245 elf_hwcap |= HWCAP_GS;
247 if (MACHINE_HAS_PCI_MIO)
248 elf_hwcap |= HWCAP_PCI_MIO;
250 /* virtualization support */
252 elf_hwcap |= HWCAP_SIE;
256 arch_initcall(setup_hwcaps);
258 static int __init setup_elf_platform(void)
263 add_device_randomness(&cpu_id, sizeof(cpu_id));
264 switch (cpu_id.machine) {
267 default: /* Use "z900" as default for 64 bit kernels. */
268 strcpy(elf_platform, "z900");
272 strcpy(elf_platform, "z990");
276 strcpy(elf_platform, "z9-109");
280 strcpy(elf_platform, "z10");
284 strcpy(elf_platform, "z196");
288 strcpy(elf_platform, "zEC12");
292 strcpy(elf_platform, "z13");
296 strcpy(elf_platform, "z14");
300 strcpy(elf_platform, "z15");
305 arch_initcall(setup_elf_platform);
307 static void show_cpu_topology(struct seq_file *m, unsigned long n)
309 #ifdef CONFIG_SCHED_TOPOLOGY
310 seq_printf(m, "physical id : %d\n", topology_physical_package_id(n));
311 seq_printf(m, "core id : %d\n", topology_core_id(n));
312 seq_printf(m, "book id : %d\n", topology_book_id(n));
313 seq_printf(m, "drawer id : %d\n", topology_drawer_id(n));
314 seq_printf(m, "dedicated : %d\n", topology_cpu_dedicated(n));
315 seq_printf(m, "address : %d\n", smp_cpu_get_cpu_address(n));
316 seq_printf(m, "siblings : %d\n", cpumask_weight(topology_core_cpumask(n)));
317 seq_printf(m, "cpu cores : %d\n", topology_booted_cores(n));
318 #endif /* CONFIG_SCHED_TOPOLOGY */
321 static void show_cpu_ids(struct seq_file *m, unsigned long n)
323 struct cpuid *id = &per_cpu(cpu_info.cpu_id, n);
325 seq_printf(m, "version : %02X\n", id->version);
326 seq_printf(m, "identification : %06X\n", id->ident);
327 seq_printf(m, "machine : %04X\n", id->machine);
330 static void show_cpu_mhz(struct seq_file *m, unsigned long n)
332 struct cpu_info *c = per_cpu_ptr(&cpu_info, n);
334 if (!machine_has_cpu_mhz)
336 seq_printf(m, "cpu MHz dynamic : %d\n", c->cpu_mhz_dynamic);
337 seq_printf(m, "cpu MHz static : %d\n", c->cpu_mhz_static);
341 * show_cpuinfo - Get information on one CPU for use by procfs.
343 static int show_cpuinfo(struct seq_file *m, void *v)
345 unsigned long n = (unsigned long) v - 1;
346 unsigned long first = cpumask_first(cpu_online_mask);
349 show_cpu_summary(m, v);
350 seq_printf(m, "\ncpu number : %ld\n", n);
351 show_cpu_topology(m, n);
357 static inline void *c_update(loff_t *pos)
360 *pos = cpumask_next(*pos - 1, cpu_online_mask);
362 *pos = cpumask_first(cpu_online_mask);
363 return *pos < nr_cpu_ids ? (void *)*pos + 1 : NULL;
366 static void *c_start(struct seq_file *m, loff_t *pos)
369 return c_update(pos);
372 static void *c_next(struct seq_file *m, void *v, loff_t *pos)
375 return c_update(pos);
378 static void c_stop(struct seq_file *m, void *v)
383 const struct seq_operations cpuinfo_op = {
387 .show = show_cpuinfo,
390 int s390_isolate_bp(void)
392 if (!test_facility(82))
394 set_thread_flag(TIF_ISOLATE_BP);
397 EXPORT_SYMBOL(s390_isolate_bp);
399 int s390_isolate_bp_guest(void)
401 if (!test_facility(82))
403 set_thread_flag(TIF_ISOLATE_BP_GUEST);
406 EXPORT_SYMBOL(s390_isolate_bp_guest);