cpu.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:3k
源码类别:

嵌入式Linux

开发平台:

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 II 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. };
  36. #define NSPARCFPU  (sizeof(linux_sparc_fpu)/sizeof(struct cpu_fp_info))
  37. struct cpu_iu_info linux_sparc_chips[] = {
  38.   { 0x17, 0x10, "TI UltraSparc I   (SpitFire)"},
  39.   { 0x22, 0x10, "TI UltraSparc II  (BlackBird)"},
  40.   { 0x17, 0x11, "TI UltraSparc II  (BlackBird)"},
  41.   { 0x17, 0x12, "TI UltraSparc IIi"},
  42.   { 0x17, 0x13, "TI UltraSparc IIe"},
  43.   { 0x3e, 0x14, "TI UltraSparc III (Cheetah)"},
  44. };
  45. #define NSPARCCHIPS  (sizeof(linux_sparc_chips)/sizeof(struct cpu_iu_info))
  46. #ifdef CONFIG_SMP
  47. char *sparc_cpu_type[64] = { "cpu-oops", "cpu-oops1", "cpu-oops2", "cpu-oops3" };
  48. char *sparc_fpu_type[64] = { "fpu-oops", "fpu-oops1", "fpu-oops2", "fpu-oops3" };
  49. #else
  50. char *sparc_cpu_type[64] = { "cpu-oops", };
  51. char *sparc_fpu_type[64] = { "fpu-oops", };
  52. #endif
  53. unsigned int fsr_storage;
  54. void __init cpu_probe(void)
  55. {
  56. int manuf, impl;
  57. unsigned i, cpuid;
  58. long ver, fpu_vers;
  59. long fprs;
  60. cpuid = hard_smp_processor_id();
  61. fprs = fprs_read ();
  62. fprs_write (FPRS_FEF);
  63. __asm__ __volatile__ ("rdpr %%ver, %0; stx %%fsr, [%1]" : "=&r" (ver) : "r" (&fpu_vers));
  64. fprs_write (fprs);
  65. manuf = ((ver >> 48)&0xffff);
  66. impl = ((ver >> 32)&0xffff);
  67. fpu_vers = ((fpu_vers>>17)&0x7);
  68. for(i = 0; i<NSPARCCHIPS; i++) {
  69. if(linux_sparc_chips[i].manuf == manuf)
  70. if(linux_sparc_chips[i].impl == impl) {
  71. sparc_cpu_type[cpuid] = linux_sparc_chips[i].cpu_name;
  72. break;
  73. }
  74. }
  75. if(i==NSPARCCHIPS) {
  76. printk("DEBUG: manuf = 0x%x   impl = 0x%xn", manuf, 
  77.     impl);
  78. sparc_cpu_type[cpuid] = "Unknown CPU";
  79. }
  80. for(i = 0; i<NSPARCFPU; i++) {
  81. if(linux_sparc_fpu[i].manuf == manuf && linux_sparc_fpu[i].impl == impl)
  82. if(linux_sparc_fpu[i].fpu_vers == fpu_vers) {
  83. sparc_fpu_type[cpuid] = linux_sparc_fpu[i].fp_name;
  84. break;
  85. }
  86. }
  87. if(i == NSPARCFPU) {
  88. printk("DEBUG: manuf = 0x%x  impl = 0x%x fsr.vers = 0x%xn", manuf, impl,
  89.     (unsigned)fpu_vers);
  90. sparc_fpu_type[cpuid] = "Unknown FPU";
  91. }
  92. }