proc.c 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. /*
  2. * linux/arch/mips/kernel/proc.c
  3. *
  4. * Copyright (C) 1995, 1996, 2001 Ralf Baechle
  5. * Copyright (C) 2001, 2004 MIPS Technologies, Inc.
  6. * Copyright (C) 2004 Maciej W. Rozycki
  7. */
  8. #include <linux/delay.h>
  9. #include <linux/kernel.h>
  10. #include <linux/sched.h>
  11. #include <linux/seq_file.h>
  12. #include <asm/bootinfo.h>
  13. #include <asm/cpu.h>
  14. #include <asm/cpu-features.h>
  15. #include <asm/mipsregs.h>
  16. #include <asm/processor.h>
  17. unsigned int vced_count, vcei_count;
  18. static int show_cpuinfo(struct seq_file *m, void *v)
  19. {
  20. unsigned long n = (unsigned long) v - 1;
  21. unsigned int version = cpu_data[n].processor_id;
  22. unsigned int fp_vers = cpu_data[n].fpu_id;
  23. char fmt [64];
  24. int i;
  25. #ifdef CONFIG_SMP
  26. if (!cpu_isset(n, cpu_online_map))
  27. return 0;
  28. #endif
  29. /*
  30. * For the first processor also print the system type
  31. */
  32. if (n == 0)
  33. seq_printf(m, "system type\t\t: %s\n", get_system_type());
  34. seq_printf(m, "processor\t\t: %ld\n", n);
  35. sprintf(fmt, "cpu model\t\t: %%s V%%d.%%d%s\n",
  36. cpu_data[n].options & MIPS_CPU_FPU ? " FPU V%d.%d" : "");
  37. seq_printf(m, fmt, __cpu_name[n],
  38. (version >> 4) & 0x0f, version & 0x0f,
  39. (fp_vers >> 4) & 0x0f, fp_vers & 0x0f);
  40. seq_printf(m, "BogoMIPS\t\t: %u.%02u\n",
  41. cpu_data[n].udelay_val / (500000/HZ),
  42. (cpu_data[n].udelay_val / (5000/HZ)) % 100);
  43. seq_printf(m, "wait instruction\t: %s\n", cpu_wait ? "yes" : "no");
  44. seq_printf(m, "microsecond timers\t: %s\n",
  45. cpu_has_counter ? "yes" : "no");
  46. seq_printf(m, "tlb_entries\t\t: %d\n", cpu_data[n].tlbsize);
  47. seq_printf(m, "extra interrupt vector\t: %s\n",
  48. cpu_has_divec ? "yes" : "no");
  49. seq_printf(m, "hardware watchpoint\t: %s",
  50. cpu_has_watch ? "yes, " : "no\n");
  51. if (cpu_has_watch) {
  52. seq_printf(m, "count: %d, address/irw mask: [",
  53. cpu_data[n].watch_reg_count);
  54. for (i = 0; i < cpu_data[n].watch_reg_count; i++)
  55. seq_printf(m, "%s0x%04x", i ? ", " : "" ,
  56. cpu_data[n].watch_reg_masks[i]);
  57. seq_printf(m, "]\n");
  58. }
  59. seq_printf(m, "ASEs implemented\t:%s%s%s%s%s%s\n",
  60. cpu_has_mips16 ? " mips16" : "",
  61. cpu_has_mdmx ? " mdmx" : "",
  62. cpu_has_mips3d ? " mips3d" : "",
  63. cpu_has_smartmips ? " smartmips" : "",
  64. cpu_has_dsp ? " dsp" : "",
  65. cpu_has_mipsmt ? " mt" : ""
  66. );
  67. seq_printf(m, "shadow register sets\t: %d\n",
  68. cpu_data[n].srsets);
  69. seq_printf(m, "core\t\t\t: %d\n", cpu_data[n].core);
  70. sprintf(fmt, "VCE%%c exceptions\t\t: %s\n",
  71. cpu_has_vce ? "%u" : "not available");
  72. seq_printf(m, fmt, 'D', vced_count);
  73. seq_printf(m, fmt, 'I', vcei_count);
  74. seq_printf(m, "\n");
  75. return 0;
  76. }
  77. static void *c_start(struct seq_file *m, loff_t *pos)
  78. {
  79. unsigned long i = *pos;
  80. return i < NR_CPUS ? (void *) (i + 1) : NULL;
  81. }
  82. static void *c_next(struct seq_file *m, void *v, loff_t *pos)
  83. {
  84. ++*pos;
  85. return c_start(m, pos);
  86. }
  87. static void c_stop(struct seq_file *m, void *v)
  88. {
  89. }
  90. const struct seq_operations cpuinfo_op = {
  91. .start = c_start,
  92. .next = c_next,
  93. .stop = c_stop,
  94. .show = show_cpuinfo,
  95. };