cpu.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:3k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /* cpu.c: Dinky routines to look for the kind of Sparc cpu
  2.  *        we are on.
  3.  *
  4.  * Copyright (C) 1996 David S. Miller (davem@caip.rutgers.edu)
  5.  */
  6. #include <linux/config.h>
  7. #include <linux/kernel.h>
  8. #include <linux/init.h>
  9. #include <linux/sched.h>
  10. #include <linux/smp.h>
  11. #include <asm/asi.h>
  12. #include <asm/system.h>
  13. #include <asm/fpumacro.h>
  14. struct cpu_iu_info {
  15.   short manuf;
  16.   short impl;
  17.   char* cpu_name;   /* should be enough I hope... */
  18. };
  19. struct cpu_fp_info {
  20.   short manuf;
  21.   short impl;
  22.   char fpu_vers;
  23.   char* fp_name;
  24. };
  25. /* In order to get the fpu type correct, you need to take the IDPROM's
  26.  * machine type value into consideration too.  I will fix this.
  27.  */
  28. struct cpu_fp_info linux_sparc_fpu[] = {
  29.   { 0x17, 0x10, 0, "UltraSparc I integrated FPU"},
  30.   { 0x22, 0x10, 0, "UltraSparc I integrated FPU"},
  31.   { 0x17, 0x11, 0, "UltraSparc II integrated FPU"},
  32.   { 0x17, 0x12, 0, "UltraSparc IIi integrated FPU"},
  33.   { 0x17, 0x13, 0, "UltraSparc IIe integrated FPU"},
  34.   { 0x3e, 0x14, 0, "UltraSparc III integrated FPU"},
  35.   { 0x3e, 0x15, 0, "UltraSparc III+ integrated FPU"},
  36. };
  37. #define NSPARCFPU  (sizeof(linux_sparc_fpu)/sizeof(struct cpu_fp_info))
  38. struct cpu_iu_info linux_sparc_chips[] = {
  39.   { 0x17, 0x10, "TI UltraSparc I   (SpitFire)"},
  40.   { 0x22, 0x10, "TI UltraSparc I   (SpitFire)"},
  41.   { 0x17, 0x11, "TI UltraSparc II  (BlackBird)"},
  42.   { 0x17, 0x12, "TI UltraSparc IIi"},
  43.   { 0x17, 0x13, "TI UltraSparc IIe"},
  44.   { 0x3e, 0x14, "TI UltraSparc III (Cheetah)"},
  45.   { 0x3e, 0x15, "TI UltraSparc III+ (Cheetah+)"},
  46. };
  47. #define NSPARCCHIPS  (sizeof(linux_sparc_chips)/sizeof(struct cpu_iu_info))
  48. #ifdef CONFIG_SMP
  49. char *sparc_cpu_type[64] = { "cpu-oops", "cpu-oops1", "cpu-oops2", "cpu-oops3" };
  50. char *sparc_fpu_type[64] = { "fpu-oops", "fpu-oops1", "fpu-oops2", "fpu-oops3" };
  51. #else
  52. char *sparc_cpu_type[64] = { "cpu-oops", };
  53. char *sparc_fpu_type[64] = { "fpu-oops", };
  54. #endif
  55. unsigned int fsr_storage;
  56. void __init cpu_probe(void)
  57. {
  58. unsigned long ver, fpu_vers, manuf, impl, fprs;
  59. int i, cpuid;
  60. cpuid = hard_smp_processor_id();
  61. fprs = fprs_read();
  62. fprs_write(FPRS_FEF);
  63. __asm__ __volatile__ ("rdpr %%ver, %0; stx %%fsr, [%1]"
  64.       : "=&r" (ver)
  65.       : "r" (&fpu_vers));
  66. fprs_write(fprs);
  67. manuf = ((ver >> 48) & 0xffff);
  68. impl = ((ver >> 32) & 0xffff);
  69. fpu_vers = ((fpu_vers >> 17) & 0x7);
  70.  retry:
  71. for (i = 0; i < NSPARCCHIPS; i++) {
  72. if (linux_sparc_chips[i].manuf == manuf) {
  73. if (linux_sparc_chips[i].impl == impl) {
  74. sparc_cpu_type[cpuid]
  75. = linux_sparc_chips[i].cpu_name;
  76. break;
  77. }
  78. }
  79. }
  80. if (i == NSPARCCHIPS) {
  81. /* Maybe it is a cheetah+ derivative, report it as cheetah+
  82.  * in that case until we learn the real names.
  83.  */
  84. if (manuf == 0x3e &&
  85.     impl > 0x15) {
  86. impl = 0x15;
  87. goto retry;
  88. } else {
  89. printk("DEBUG: manuf[%lx] impl[%lx]n",
  90.        manuf, impl);
  91. }
  92. sparc_cpu_type[cpuid] = "Unknown CPU";
  93. }
  94. for (i = 0; i < NSPARCFPU; i++) {
  95. if (linux_sparc_fpu[i].manuf == manuf &&
  96.     linux_sparc_fpu[i].impl == impl) {
  97. if (linux_sparc_fpu[i].fpu_vers == fpu_vers) {
  98. sparc_fpu_type[cpuid]
  99. = linux_sparc_fpu[i].fp_name;
  100. break;
  101. }
  102. }
  103. }
  104. if (i == NSPARCFPU) {
  105. printk("DEBUG: manuf[%lx] impl[%lx] fsr.vers[%lx]n",
  106.        manuf, impl, fpu_vers);
  107. sparc_fpu_type[cpuid] = "Unknown FPU";
  108. }
  109. }