]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
s390/cpuinfo: show facilities as reported by stfle
authorHeiko Carstens <heiko.carstens@de.ibm.com>
Sat, 25 Feb 2017 11:16:48 +0000 (12:16 +0100)
committerMartin Schwidefsky <schwidefsky@de.ibm.com>
Wed, 22 Mar 2017 07:29:02 +0000 (08:29 +0100)
Add a new line to /proc/cpuinfo which shows all available facilities
as reported by the stfle instruction:

> cat /proc/cpuinfo
...
facilities      : 0 1 2 3 4 6 7 ...
...

Reviewed-by: Peter Oberparleiter <oberpar@linux.vnet.ibm.com>
Signed-off-by: Heiko Carstens <heiko.carstens@de.ibm.com>
Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
arch/s390/kernel/processor.c

index c73709869447fd474461d5083e0e7988b5103d16..778cd653617553bcd1428b44468748ea13643bf4 100644 (file)
@@ -7,6 +7,7 @@
 #define pr_fmt(fmt) KMSG_COMPONENT ": " fmt
 
 #include <linux/cpufeature.h>
+#include <linux/bitops.h>
 #include <linux/kernel.h>
 #include <linux/sched/mm.h>
 #include <linux/init.h>
@@ -91,6 +92,18 @@ int cpu_have_feature(unsigned int num)
 }
 EXPORT_SYMBOL(cpu_have_feature);
 
+static void show_facilities(struct seq_file *m)
+{
+       unsigned int bit;
+       long *facilities;
+
+       facilities = (long *)&S390_lowcore.stfle_fac_list;
+       seq_puts(m, "facilities      :");
+       for_each_set_bit_inv(bit, facilities, MAX_FACILITY_BIT)
+               seq_printf(m, " %d", bit);
+       seq_putc(m, '\n');
+}
+
 static void show_cpu_summary(struct seq_file *m, void *v)
 {
        static const char *hwcap_str[] = {
@@ -116,6 +129,7 @@ static void show_cpu_summary(struct seq_file *m, void *v)
                if (int_hwcap_str[i] && (int_hwcap & (1UL << i)))
                        seq_printf(m, "%s ", int_hwcap_str[i]);
        seq_puts(m, "\n");
+       show_facilities(m);
        show_cacheinfo(m);
        for_each_online_cpu(cpu) {
                struct cpuid *id = &per_cpu(cpu_info.cpu_id, cpu);