blob: 525514cf33c308aff9d29e66d274207e7f4e8308 [file] [log] [blame]
Jeremy Fitzhardinge1353ebb2007-05-02 19:27:12 +02001/*
Jeremy Fitzhardinge1353ebb2007-05-02 19:27:12 +02002 * Copyright (C) 1994 Linus Torvalds
3 *
4 * Cyrix stuff, June 1998 by:
5 * - Rafael R. Reilova (moved everything from head.S),
6 * <rreilova@ececs.uc.edu>
7 * - Channing Corn (tests & fixes),
8 * - Andrew D. Balsa (code cleanup).
9 */
10#include <linux/init.h>
11#include <linux/utsname.h>
Josh Triplett91eb1b72007-07-31 00:39:20 -070012#include <asm/bugs.h>
Jeremy Fitzhardinge1353ebb2007-05-02 19:27:12 +020013#include <asm/processor.h>
Dave Jones7ebad702008-01-30 13:30:39 +010014#include <asm/processor-flags.h>
Jeremy Fitzhardinge1353ebb2007-05-02 19:27:12 +020015#include <asm/i387.h>
16#include <asm/msr.h>
17#include <asm/paravirt.h>
18#include <asm/alternative.h>
19
20static int __init no_halt(char *s)
21{
Len Browncdaab4a2011-04-01 15:41:17 -040022 WARN_ONCE(1, "\"no-hlt\" is deprecated, please use \"idle=poll\"\n");
Jeremy Fitzhardinge1353ebb2007-05-02 19:27:12 +020023 boot_cpu_data.hlt_works_ok = 0;
24 return 1;
25}
26
27__setup("no-hlt", no_halt);
28
Jeremy Fitzhardinge1353ebb2007-05-02 19:27:12 +020029static int __init no_387(char *s)
30{
31 boot_cpu_data.hard_math = 0;
Dave Jones7ebad702008-01-30 13:30:39 +010032 write_cr0(X86_CR0_TS | X86_CR0_EM | X86_CR0_MP | read_cr0());
Jeremy Fitzhardinge1353ebb2007-05-02 19:27:12 +020033 return 1;
34}
35
36__setup("no387", no_387);
37
38static double __initdata x = 4195835.0;
39static double __initdata y = 3145727.0;
40
41/*
42 * This used to check for exceptions..
43 * However, it turns out that to support that,
44 * the XMM trap handlers basically had to
45 * be buggy. So let's have a correct XMM trap
46 * handler, and forget about printing out
47 * some status at boot.
48 *
49 * We should really only care about bugs here
50 * anyway. Not features.
51 */
52static void __init check_fpu(void)
53{
Krzysztof Helte0d22d02008-07-31 23:43:44 +020054 s32 fdiv_bug;
55
Jeremy Fitzhardinge1353ebb2007-05-02 19:27:12 +020056 if (!boot_cpu_data.hard_math) {
57#ifndef CONFIG_MATH_EMULATION
58 printk(KERN_EMERG "No coprocessor found and no math emulation present.\n");
59 printk(KERN_EMERG "Giving up.\n");
60 for (;;) ;
61#endif
62 return;
63 }
64
Miklos Vajnabfe4bb12008-05-17 22:48:13 +020065 /*
66 * trap_init() enabled FXSR and company _before_ testing for FP
67 * problems here.
68 *
69 * Test for the divl bug..
70 */
Jeremy Fitzhardinge1353ebb2007-05-02 19:27:12 +020071 __asm__("fninit\n\t"
72 "fldl %1\n\t"
73 "fdivl %2\n\t"
74 "fmull %2\n\t"
75 "fldl %1\n\t"
76 "fsubp %%st,%%st(1)\n\t"
77 "fistpl %0\n\t"
78 "fwait\n\t"
79 "fninit"
Krzysztof Helte0d22d02008-07-31 23:43:44 +020080 : "=m" (*&fdiv_bug)
Jeremy Fitzhardinge1353ebb2007-05-02 19:27:12 +020081 : "m" (*&x), "m" (*&y));
Krzysztof Helte0d22d02008-07-31 23:43:44 +020082
83 boot_cpu_data.fdiv_bug = fdiv_bug;
Jeremy Fitzhardinge1353ebb2007-05-02 19:27:12 +020084 if (boot_cpu_data.fdiv_bug)
Alan Cox8bdbd962009-07-04 00:35:45 +010085 printk(KERN_WARNING "Hmm, FPU with FDIV bug.\n");
Jeremy Fitzhardinge1353ebb2007-05-02 19:27:12 +020086}
87
88static void __init check_hlt(void)
89{
Jacob Pan2b107d92010-05-07 14:59:45 -070090 if (boot_cpu_data.x86 >= 5 || paravirt_enabled())
Jeremy Fitzhardinge1353ebb2007-05-02 19:27:12 +020091 return;
92
93 printk(KERN_INFO "Checking 'hlt' instruction... ");
94 if (!boot_cpu_data.hlt_works_ok) {
95 printk("disabled\n");
96 return;
97 }
98 halt();
99 halt();
100 halt();
101 halt();
Alan Cox8bdbd962009-07-04 00:35:45 +0100102 printk(KERN_CONT "OK.\n");
Jeremy Fitzhardinge1353ebb2007-05-02 19:27:12 +0200103}
104
105/*
106 * Most 386 processors have a bug where a POPAD can lock the
107 * machine even from user space.
108 */
109
110static void __init check_popad(void)
111{
112#ifndef CONFIG_X86_POPAD_OK
113 int res, inp = (int) &res;
114
115 printk(KERN_INFO "Checking for popad bug... ");
116 __asm__ __volatile__(
117 "movl $12345678,%%eax; movl $0,%%edi; pusha; popa; movl (%%edx,%%edi),%%ecx "
118 : "=&a" (res)
119 : "d" (inp)
Miklos Vajnabfe4bb12008-05-17 22:48:13 +0200120 : "ecx", "edi");
121 /*
122 * If this fails, it means that any user program may lock the
123 * CPU hard. Too bad.
124 */
125 if (res != 12345678)
Alan Cox8bdbd962009-07-04 00:35:45 +0100126 printk(KERN_CONT "Buggy.\n");
Miklos Vajnabfe4bb12008-05-17 22:48:13 +0200127 else
Alan Cox8bdbd962009-07-04 00:35:45 +0100128 printk(KERN_CONT "OK.\n");
Jeremy Fitzhardinge1353ebb2007-05-02 19:27:12 +0200129#endif
130}
131
132/*
133 * Check whether we are able to run this kernel safely on SMP.
134 *
135 * - In order to run on a i386, we need to be compiled for i386
136 * (for due to lack of "invlpg" and working WP on a i386)
137 * - In order to run on anything without a TSC, we need to be
138 * compiled for a i486.
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +0100139 */
Jeremy Fitzhardinge1353ebb2007-05-02 19:27:12 +0200140
141static void __init check_config(void)
142{
143/*
144 * We'd better not be a i386 if we're configured to use some
145 * i486+ only features! (WP works in supervisor mode and the
146 * new "invlpg" and "bswap" instructions)
147 */
Miklos Vajnabfe4bb12008-05-17 22:48:13 +0200148#if defined(CONFIG_X86_WP_WORKS_OK) || defined(CONFIG_X86_INVLPG) || \
149 defined(CONFIG_X86_BSWAP)
Jeremy Fitzhardinge1353ebb2007-05-02 19:27:12 +0200150 if (boot_cpu_data.x86 == 3)
151 panic("Kernel requires i486+ for 'invlpg' and other features");
152#endif
Jeremy Fitzhardinge1353ebb2007-05-02 19:27:12 +0200153}
154
155
156void __init check_bugs(void)
157{
158 identify_boot_cpu();
159#ifndef CONFIG_SMP
Alan Cox8bdbd962009-07-04 00:35:45 +0100160 printk(KERN_INFO "CPU: ");
Jeremy Fitzhardinge1353ebb2007-05-02 19:27:12 +0200161 print_cpu_info(&boot_cpu_data);
162#endif
163 check_config();
164 check_fpu();
165 check_hlt();
166 check_popad();
Miklos Vajnabfe4bb12008-05-17 22:48:13 +0200167 init_utsname()->machine[1] =
168 '0' + (boot_cpu_data.x86 > 6 ? 6 : boot_cpu_data.x86);
Jeremy Fitzhardinge1353ebb2007-05-02 19:27:12 +0200169 alternative_instructions();
170}