|
@@ -35,7 +35,6 @@
|
|
|
#include <linux/bootmem.h>
|
|
|
#include <linux/root_dev.h>
|
|
|
#include <linux/console.h>
|
|
|
-#include <linux/seq_file.h>
|
|
|
#include <linux/kernel_stat.h>
|
|
|
#include <linux/device.h>
|
|
|
#include <linux/notifier.h>
|
|
@@ -829,90 +828,3 @@ setup_arch(char **cmdline_p)
|
|
|
/* Setup zfcpdump support */
|
|
|
setup_zfcpdump(console_devno);
|
|
|
}
|
|
|
-
|
|
|
-void __cpuinit print_cpu_info(struct cpuinfo_S390 *cpuinfo)
|
|
|
-{
|
|
|
- printk(KERN_INFO "cpu %d "
|
|
|
-#ifdef CONFIG_SMP
|
|
|
- "phys_idx=%d "
|
|
|
-#endif
|
|
|
- "vers=%02X ident=%06X machine=%04X unused=%04X\n",
|
|
|
- cpuinfo->cpu_nr,
|
|
|
-#ifdef CONFIG_SMP
|
|
|
- cpuinfo->cpu_addr,
|
|
|
-#endif
|
|
|
- cpuinfo->cpu_id.version,
|
|
|
- cpuinfo->cpu_id.ident,
|
|
|
- cpuinfo->cpu_id.machine,
|
|
|
- cpuinfo->cpu_id.unused);
|
|
|
-}
|
|
|
-
|
|
|
-/*
|
|
|
- * show_cpuinfo - Get information on one CPU for use by procfs.
|
|
|
- */
|
|
|
-
|
|
|
-static int show_cpuinfo(struct seq_file *m, void *v)
|
|
|
-{
|
|
|
- static const char *hwcap_str[8] = {
|
|
|
- "esan3", "zarch", "stfle", "msa", "ldisp", "eimm", "dfp",
|
|
|
- "edat"
|
|
|
- };
|
|
|
- struct cpuinfo_S390 *cpuinfo;
|
|
|
- unsigned long n = (unsigned long) v - 1;
|
|
|
- int i;
|
|
|
-
|
|
|
- s390_adjust_jiffies();
|
|
|
- preempt_disable();
|
|
|
- if (!n) {
|
|
|
- seq_printf(m, "vendor_id : IBM/S390\n"
|
|
|
- "# processors : %i\n"
|
|
|
- "bogomips per cpu: %lu.%02lu\n",
|
|
|
- num_online_cpus(), loops_per_jiffy/(500000/HZ),
|
|
|
- (loops_per_jiffy/(5000/HZ))%100);
|
|
|
- seq_puts(m, "features\t: ");
|
|
|
- for (i = 0; i < 8; i++)
|
|
|
- if (hwcap_str[i] && (elf_hwcap & (1UL << i)))
|
|
|
- seq_printf(m, "%s ", hwcap_str[i]);
|
|
|
- seq_puts(m, "\n");
|
|
|
- }
|
|
|
-
|
|
|
- if (cpu_online(n)) {
|
|
|
-#ifdef CONFIG_SMP
|
|
|
- if (smp_processor_id() == n)
|
|
|
- cpuinfo = &S390_lowcore.cpu_data;
|
|
|
- else
|
|
|
- cpuinfo = &lowcore_ptr[n]->cpu_data;
|
|
|
-#else
|
|
|
- cpuinfo = &S390_lowcore.cpu_data;
|
|
|
-#endif
|
|
|
- seq_printf(m, "processor %li: "
|
|
|
- "version = %02X, "
|
|
|
- "identification = %06X, "
|
|
|
- "machine = %04X\n",
|
|
|
- n, cpuinfo->cpu_id.version,
|
|
|
- cpuinfo->cpu_id.ident,
|
|
|
- cpuinfo->cpu_id.machine);
|
|
|
- }
|
|
|
- preempt_enable();
|
|
|
- return 0;
|
|
|
-}
|
|
|
-
|
|
|
-static void *c_start(struct seq_file *m, loff_t *pos)
|
|
|
-{
|
|
|
- return *pos < NR_CPUS ? (void *)((unsigned long) *pos + 1) : NULL;
|
|
|
-}
|
|
|
-static void *c_next(struct seq_file *m, void *v, loff_t *pos)
|
|
|
-{
|
|
|
- ++*pos;
|
|
|
- return c_start(m, pos);
|
|
|
-}
|
|
|
-static void c_stop(struct seq_file *m, void *v)
|
|
|
-{
|
|
|
-}
|
|
|
-const struct seq_operations cpuinfo_op = {
|
|
|
- .start = c_start,
|
|
|
- .next = c_next,
|
|
|
- .stop = c_stop,
|
|
|
- .show = show_cpuinfo,
|
|
|
-};
|
|
|
-
|