proc.c 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189
  1. // SPDX-License-Identifier: GPL-2.0
  2. /*
  3. * Copyright (C) 1995, 1996, 2001 Ralf Baechle
  4. * Copyright (C) 2001, 2004 MIPS Technologies, Inc.
  5. * Copyright (C) 2004 Maciej W. Rozycki
  6. */
  7. #include <linux/delay.h>
  8. #include <linux/kernel.h>
  9. #include <linux/sched.h>
  10. #include <linux/seq_file.h>
  11. #include <asm/bootinfo.h>
  12. #include <asm/cpu.h>
  13. #include <asm/cpu-features.h>
  14. #include <asm/idle.h>
  15. #include <asm/mipsregs.h>
  16. #include <asm/processor.h>
  17. #include <asm/prom.h>
  18. unsigned int vced_count, vcei_count;
  19. /*
  20. * * No lock; only written during early bootup by CPU 0.
  21. * */
  22. static RAW_NOTIFIER_HEAD(proc_cpuinfo_chain);
  23. int __ref register_proc_cpuinfo_notifier(struct notifier_block *nb)
  24. {
  25. return raw_notifier_chain_register(&proc_cpuinfo_chain, nb);
  26. }
  27. int proc_cpuinfo_notifier_call_chain(unsigned long val, void *v)
  28. {
  29. return raw_notifier_call_chain(&proc_cpuinfo_chain, val, v);
  30. }
  31. static int show_cpuinfo(struct seq_file *m, void *v)
  32. {
  33. struct proc_cpuinfo_notifier_args proc_cpuinfo_notifier_args;
  34. unsigned long n = (unsigned long) v - 1;
  35. unsigned int version = cpu_data[n].processor_id;
  36. unsigned int fp_vers = cpu_data[n].fpu_id;
  37. char fmt [64];
  38. int i;
  39. #ifdef CONFIG_SMP
  40. if (!cpu_online(n))
  41. return 0;
  42. #endif
  43. /*
  44. * For the first processor also print the system type
  45. */
  46. if (n == 0) {
  47. seq_printf(m, "system type\t\t: %s\n", get_system_type());
  48. if (mips_get_machine_name())
  49. seq_printf(m, "machine\t\t\t: %s\n",
  50. mips_get_machine_name());
  51. }
  52. seq_printf(m, "processor\t\t: %ld\n", n);
  53. sprintf(fmt, "cpu model\t\t: %%s V%%d.%%d%s\n",
  54. cpu_data[n].options & MIPS_CPU_FPU ? " FPU V%d.%d" : "");
  55. seq_printf(m, fmt, __cpu_name[n],
  56. (version >> 4) & 0x0f, version & 0x0f,
  57. (fp_vers >> 4) & 0x0f, fp_vers & 0x0f);
  58. seq_printf(m, "BogoMIPS\t\t: %u.%02u\n",
  59. cpu_data[n].udelay_val / (500000/HZ),
  60. (cpu_data[n].udelay_val / (5000/HZ)) % 100);
  61. seq_printf(m, "wait instruction\t: %s\n", cpu_wait ? "yes" : "no");
  62. seq_printf(m, "microsecond timers\t: %s\n",
  63. cpu_has_counter ? "yes" : "no");
  64. seq_printf(m, "tlb_entries\t\t: %d\n", cpu_data[n].tlbsize);
  65. seq_printf(m, "extra interrupt vector\t: %s\n",
  66. cpu_has_divec ? "yes" : "no");
  67. seq_printf(m, "hardware watchpoint\t: %s",
  68. cpu_has_watch ? "yes, " : "no\n");
  69. if (cpu_has_watch) {
  70. seq_printf(m, "count: %d, address/irw mask: [",
  71. cpu_data[n].watch_reg_count);
  72. for (i = 0; i < cpu_data[n].watch_reg_count; i++)
  73. seq_printf(m, "%s0x%04x", i ? ", " : "" ,
  74. cpu_data[n].watch_reg_masks[i]);
  75. seq_printf(m, "]\n");
  76. }
  77. seq_printf(m, "isa\t\t\t:");
  78. if (cpu_has_mips_1)
  79. seq_printf(m, " mips1");
  80. if (cpu_has_mips_2)
  81. seq_printf(m, "%s", " mips2");
  82. if (cpu_has_mips_3)
  83. seq_printf(m, "%s", " mips3");
  84. if (cpu_has_mips_4)
  85. seq_printf(m, "%s", " mips4");
  86. if (cpu_has_mips_5)
  87. seq_printf(m, "%s", " mips5");
  88. if (cpu_has_mips32r1)
  89. seq_printf(m, "%s", " mips32r1");
  90. if (cpu_has_mips32r2)
  91. seq_printf(m, "%s", " mips32r2");
  92. if (cpu_has_mips32r6)
  93. seq_printf(m, "%s", " mips32r6");
  94. if (cpu_has_mips64r1)
  95. seq_printf(m, "%s", " mips64r1");
  96. if (cpu_has_mips64r2)
  97. seq_printf(m, "%s", " mips64r2");
  98. if (cpu_has_mips64r6)
  99. seq_printf(m, "%s", " mips64r6");
  100. seq_printf(m, "\n");
  101. seq_printf(m, "ASEs implemented\t:");
  102. if (cpu_has_mips16) seq_printf(m, "%s", " mips16");
  103. if (cpu_has_mips16e2) seq_printf(m, "%s", " mips16e2");
  104. if (cpu_has_mdmx) seq_printf(m, "%s", " mdmx");
  105. if (cpu_has_mips3d) seq_printf(m, "%s", " mips3d");
  106. if (cpu_has_smartmips) seq_printf(m, "%s", " smartmips");
  107. if (cpu_has_dsp) seq_printf(m, "%s", " dsp");
  108. if (cpu_has_dsp2) seq_printf(m, "%s", " dsp2");
  109. if (cpu_has_dsp3) seq_printf(m, "%s", " dsp3");
  110. if (cpu_has_mipsmt) seq_printf(m, "%s", " mt");
  111. if (cpu_has_mmips) seq_printf(m, "%s", " micromips");
  112. if (cpu_has_vz) seq_printf(m, "%s", " vz");
  113. if (cpu_has_msa) seq_printf(m, "%s", " msa");
  114. if (cpu_has_eva) seq_printf(m, "%s", " eva");
  115. if (cpu_has_htw) seq_printf(m, "%s", " htw");
  116. if (cpu_has_xpa) seq_printf(m, "%s", " xpa");
  117. if (cpu_has_loongson_mmi) seq_printf(m, "%s", " loongson-mmi");
  118. if (cpu_has_loongson_cam) seq_printf(m, "%s", " loongson-cam");
  119. if (cpu_has_loongson_ext) seq_printf(m, "%s", " loongson-ext");
  120. if (cpu_has_loongson_ext2) seq_printf(m, "%s", " loongson-ext2");
  121. seq_printf(m, "\n");
  122. if (cpu_has_mmips) {
  123. seq_printf(m, "micromips kernel\t: %s\n",
  124. (read_c0_config3() & MIPS_CONF3_ISA_OE) ? "yes" : "no");
  125. }
  126. seq_printf(m, "shadow register sets\t: %d\n",
  127. cpu_data[n].srsets);
  128. seq_printf(m, "kscratch registers\t: %d\n",
  129. hweight8(cpu_data[n].kscratch_mask));
  130. seq_printf(m, "package\t\t\t: %d\n", cpu_data[n].package);
  131. seq_printf(m, "core\t\t\t: %d\n", cpu_core(&cpu_data[n]));
  132. #if defined(CONFIG_MIPS_MT_SMP) || defined(CONFIG_CPU_MIPSR6)
  133. if (cpu_has_mipsmt)
  134. seq_printf(m, "VPE\t\t\t: %d\n", cpu_vpe_id(&cpu_data[n]));
  135. else if (cpu_has_vp)
  136. seq_printf(m, "VP\t\t\t: %d\n", cpu_vpe_id(&cpu_data[n]));
  137. #endif
  138. sprintf(fmt, "VCE%%c exceptions\t\t: %s\n",
  139. cpu_has_vce ? "%u" : "not available");
  140. seq_printf(m, fmt, 'D', vced_count);
  141. seq_printf(m, fmt, 'I', vcei_count);
  142. proc_cpuinfo_notifier_args.m = m;
  143. proc_cpuinfo_notifier_args.n = n;
  144. raw_notifier_call_chain(&proc_cpuinfo_chain, 0,
  145. &proc_cpuinfo_notifier_args);
  146. seq_printf(m, "\n");
  147. return 0;
  148. }
  149. static void *c_start(struct seq_file *m, loff_t *pos)
  150. {
  151. unsigned long i = *pos;
  152. return i < NR_CPUS ? (void *) (i + 1) : NULL;
  153. }
  154. static void *c_next(struct seq_file *m, void *v, loff_t *pos)
  155. {
  156. ++*pos;
  157. return c_start(m, pos);
  158. }
  159. static void c_stop(struct seq_file *m, void *v)
  160. {
  161. }
  162. const struct seq_operations cpuinfo_op = {
  163. .start = c_start,
  164. .next = c_next,
  165. .stop = c_stop,
  166. .show = show_cpuinfo,
  167. };