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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  *  include/asm-i386/bugs.h
  3.  *
  4.  *  Copyright (C) 1994  Linus Torvalds
  5.  *
  6.  *  Cyrix stuff, June 1998 by:
  7.  * - Rafael R. Reilova (moved everything from head.S),
  8.  *        <rreilova@ececs.uc.edu>
  9.  * - Channing Corn (tests & fixes),
  10.  * - Andrew D. Balsa (code cleanup).
  11.  *
  12.  *  Pentium III FXSR, SSE support
  13.  * Gareth Hughes <gareth@valinux.com>, May 2000
  14.  */
  15. /*
  16.  * This is included by init/main.c to check for architecture-dependent bugs.
  17.  *
  18.  * Needs:
  19.  * void check_bugs(void);
  20.  */
  21. #include <linux/config.h>
  22. #include <asm/processor.h>
  23. #include <asm/i387.h>
  24. #include <asm/msr.h>
  25. static int __init no_halt(char *s)
  26. {
  27. boot_cpu_data.hlt_works_ok = 0;
  28. return 1;
  29. }
  30. __setup("no-hlt", no_halt);
  31. static int __init mca_pentium(char *s)
  32. {
  33. mca_pentium_flag = 1;
  34. return 1;
  35. }
  36. __setup("mca-pentium", mca_pentium);
  37. static int __init no_387(char *s)
  38. {
  39. boot_cpu_data.hard_math = 0;
  40. write_cr0(0xE | read_cr0());
  41. return 1;
  42. }
  43. __setup("no387", no_387);
  44. static double __initdata x = 4195835.0;
  45. static double __initdata y = 3145727.0;
  46. /*
  47.  * This used to check for exceptions.. 
  48.  * However, it turns out that to support that,
  49.  * the XMM trap handlers basically had to
  50.  * be buggy. So let's have a correct XMM trap
  51.  * handler, and forget about printing out
  52.  * some status at boot.
  53.  *
  54.  * We should really only care about bugs here
  55.  * anyway. Not features.
  56.  */
  57. static void __init check_fpu(void)
  58. {
  59. if (!boot_cpu_data.hard_math) {
  60. #ifndef CONFIG_MATH_EMULATION
  61. printk(KERN_EMERG "No coprocessor found and no math emulation present.n");
  62. printk(KERN_EMERG "Giving up.n");
  63. for (;;) ;
  64. #endif
  65. return;
  66. }
  67. /* Enable FXSR and company _before_ testing for FP problems. */
  68. /*
  69.  * Verify that the FXSAVE/FXRSTOR data will be 16-byte aligned.
  70.  */
  71. if (offsetof(struct task_struct, thread.i387.fxsave) & 15) {
  72. extern void __buggy_fxsr_alignment(void);
  73. __buggy_fxsr_alignment();
  74. }
  75. if (cpu_has_fxsr) {
  76. printk(KERN_INFO "Enabling fast FPU save and restore... ");
  77. set_in_cr4(X86_CR4_OSFXSR);
  78. printk("done.n");
  79. }
  80. if (cpu_has_xmm) {
  81. printk(KERN_INFO "Enabling unmasked SIMD FPU exception support... ");
  82. set_in_cr4(X86_CR4_OSXMMEXCPT);
  83. printk("done.n");
  84. }
  85. /* Test for the divl bug.. */
  86. __asm__("fninitnt"
  87. "fldl %1nt"
  88. "fdivl %2nt"
  89. "fmull %2nt"
  90. "fldl %1nt"
  91. "fsubp %%st,%%st(1)nt"
  92. "fistpl %0nt"
  93. "fwaitnt"
  94. "fninit"
  95. : "=m" (*&boot_cpu_data.fdiv_bug)
  96. : "m" (*&x), "m" (*&y));
  97. if (boot_cpu_data.fdiv_bug)
  98. printk("Hmm, FPU with FDIV bug.n");
  99. }
  100. static void __init check_hlt(void)
  101. {
  102. printk(KERN_INFO "Checking 'hlt' instruction... ");
  103. if (!boot_cpu_data.hlt_works_ok) {
  104. printk("disabledn");
  105. return;
  106. }
  107. __asm__ __volatile__("hlt ; hlt ; hlt ; hlt");
  108. printk("OK.n");
  109. }
  110. /*
  111.  * Most 386 processors have a bug where a POPAD can lock the 
  112.  * machine even from user space.
  113.  */
  114.  
  115. static void __init check_popad(void)
  116. {
  117. #ifndef CONFIG_X86_POPAD_OK
  118. int res, inp = (int) &res;
  119. printk(KERN_INFO "Checking for popad bug... ");
  120. __asm__ __volatile__( 
  121.   "movl $12345678,%%eax; movl $0,%%edi; pusha; popa; movl (%%edx,%%edi),%%ecx "
  122.   : "=&a" (res)
  123.   : "d" (inp)
  124.   : "ecx", "edi" );
  125. /* If this fails, it means that any user program may lock the CPU hard. Too bad. */
  126. if (res != 12345678) printk( "Buggy.n" );
  127.         else printk( "OK.n" );
  128. #endif
  129. }
  130. /*
  131.  * Check whether we are able to run this kernel safely on SMP.
  132.  *
  133.  * - In order to run on a i386, we need to be compiled for i386
  134.  *   (for due to lack of "invlpg" and working WP on a i386)
  135.  * - In order to run on anything without a TSC, we need to be
  136.  *   compiled for a i486.
  137.  * - In order to support the local APIC on a buggy Pentium machine,
  138.  *   we need to be compiled with CONFIG_X86_GOOD_APIC disabled,
  139.  *   which happens implicitly if compiled for a Pentium or lower
  140.  *   (unless an advanced selection of CPU features is used) as an
  141.  *   otherwise config implies a properly working local APIC without
  142.  *   the need to do extra reads from the APIC.
  143. */
  144. static void __init check_config(void)
  145. {
  146. /*
  147.  * We'd better not be a i386 if we're configured to use some
  148.  * i486+ only features! (WP works in supervisor mode and the
  149.  * new "invlpg" and "bswap" instructions)
  150.  */
  151. #if defined(CONFIG_X86_WP_WORKS_OK) || defined(CONFIG_X86_INVLPG) || defined(CONFIG_X86_BSWAP)
  152. if (boot_cpu_data.x86 == 3)
  153. panic("Kernel requires i486+ for 'invlpg' and other features");
  154. #endif
  155. /*
  156.  * If we configured ourselves for a TSC, we'd better have one!
  157.  */
  158. #ifdef CONFIG_X86_TSC
  159. if (!cpu_has_tsc)
  160. panic("Kernel compiled for Pentium+, requires TSC feature!");
  161. #endif
  162. /*
  163.  * If we configured ourselves for PGE, we'd better have it.
  164.  */
  165. #ifdef CONFIG_X86_PGE
  166. if (!cpu_has_pge)
  167. panic("Kernel compiled for PPro+, requires PGE feature!");
  168. #endif
  169. /*
  170.  * If we were told we had a good local APIC, check for buggy Pentia,
  171.  * i.e. all B steppings and the C2 stepping of P54C when using their
  172.  * integrated APIC (see 11AP erratum in "Pentium Processor
  173.  * Specification Update").
  174.  */
  175. #if defined(CONFIG_X86_LOCAL_APIC) && defined(CONFIG_X86_GOOD_APIC)
  176. if (boot_cpu_data.x86_vendor == X86_VENDOR_INTEL
  177.     && test_bit(X86_FEATURE_APIC, &boot_cpu_data.x86_capability)
  178.     && boot_cpu_data.x86 == 5
  179.     && boot_cpu_data.x86_model == 2
  180.     && (boot_cpu_data.x86_mask < 6 || boot_cpu_data.x86_mask == 11))
  181. panic("Kernel compiled for PMMX+, assumes a local APIC without the read-before-write bug!");
  182. #endif
  183. }
  184. static void __init check_bugs(void)
  185. {
  186. identify_cpu(&boot_cpu_data);
  187. #ifndef CONFIG_SMP
  188. printk("CPU: ");
  189. print_cpu_info(&boot_cpu_data);
  190. #endif
  191. check_config();
  192. check_fpu();
  193. check_hlt();
  194. check_popad();
  195. system_utsname.machine[1] = '0' + (boot_cpu_data.x86 > 6 ? 6 : boot_cpu_data.x86);
  196. }