perf/x86: Only allow rdpmc if a perf_event is mapped
[deliverable/linux.git] / arch / x86 / kernel / i387.c
CommitLineData
1da177e4 1/*
1da177e4
LT
2 * Copyright (C) 1994 Linus Torvalds
3 *
4 * Pentium III FXSR, SSE support
5 * General FPU state handling cleanups
6 * Gareth Hughes <gareth@valinux.com>, May 2000
7 */
129f6946 8#include <linux/module.h>
44210111 9#include <linux/regset.h>
f668964e 10#include <linux/sched.h>
5a0e3ad6 11#include <linux/slab.h>
f668964e
IM
12
13#include <asm/sigcontext.h>
1da177e4 14#include <asm/processor.h>
1da177e4 15#include <asm/math_emu.h>
375074cc 16#include <asm/tlbflush.h>
1da177e4 17#include <asm/uaccess.h>
f668964e
IM
18#include <asm/ptrace.h>
19#include <asm/i387.h>
1361b83a 20#include <asm/fpu-internal.h>
f668964e 21#include <asm/user.h>
1da177e4 22
8546c008
LT
23/*
24 * Were we in an interrupt that interrupted kernel mode?
25 *
304bceda 26 * On others, we can do a kernel_fpu_begin/end() pair *ONLY* if that
8546c008
LT
27 * pair does nothing at all: the thread must not have fpu (so
28 * that we don't try to save the FPU state), and TS must
29 * be set (so that the clts/stts pair does nothing that is
30 * visible in the interrupted kernel thread).
5187b28f
PR
31 *
32 * Except for the eagerfpu case when we return 1 unless we've already
33 * been eager and saved the state in kernel_fpu_begin().
8546c008
LT
34 */
35static inline bool interrupted_kernel_fpu_idle(void)
36{
5d2bd700 37 if (use_eager_fpu())
5187b28f 38 return __thread_has_fpu(current);
304bceda 39
8546c008
LT
40 return !__thread_has_fpu(current) &&
41 (read_cr0() & X86_CR0_TS);
42}
43
44/*
45 * Were we in user mode (or vm86 mode) when we were
46 * interrupted?
47 *
48 * Doing kernel_fpu_begin/end() is ok if we are running
49 * in an interrupt context from user mode - we'll just
50 * save the FPU state as required.
51 */
52static inline bool interrupted_user_mode(void)
53{
54 struct pt_regs *regs = get_irq_regs();
55 return regs && user_mode_vm(regs);
56}
57
58/*
59 * Can we use the FPU in kernel mode with the
60 * whole "kernel_fpu_begin/end()" sequence?
61 *
62 * It's always ok in process context (ie "not interrupt")
63 * but it is sometimes ok even from an irq.
64 */
65bool irq_fpu_usable(void)
66{
67 return !in_interrupt() ||
68 interrupted_user_mode() ||
69 interrupted_kernel_fpu_idle();
70}
71EXPORT_SYMBOL(irq_fpu_usable);
72
b1a74bf8 73void __kernel_fpu_begin(void)
8546c008
LT
74{
75 struct task_struct *me = current;
76
8546c008 77 if (__thread_has_fpu(me)) {
8546c008 78 __thread_clear_has_fpu(me);
5187b28f 79 __save_init_fpu(me);
b1a74bf8 80 /* We do 'stts()' in __kernel_fpu_end() */
5d2bd700 81 } else if (!use_eager_fpu()) {
c6ae41e7 82 this_cpu_write(fpu_owner_task, NULL);
8546c008
LT
83 clts();
84 }
85}
b1a74bf8 86EXPORT_SYMBOL(__kernel_fpu_begin);
8546c008 87
b1a74bf8 88void __kernel_fpu_end(void)
8546c008 89{
731bd6a9
SS
90 if (use_eager_fpu()) {
91 /*
92 * For eager fpu, most the time, tsk_used_math() is true.
93 * Restore the user math as we are done with the kernel usage.
94 * At few instances during thread exit, signal handling etc,
95 * tsk_used_math() is false. Those few places will take proper
96 * actions, so we don't need to restore the math here.
97 */
98 if (likely(tsk_used_math(current)))
99 math_state_restore();
100 } else {
304bceda 101 stts();
731bd6a9 102 }
8546c008 103}
b1a74bf8 104EXPORT_SYMBOL(__kernel_fpu_end);
8546c008
LT
105
106void unlazy_fpu(struct task_struct *tsk)
107{
108 preempt_disable();
109 if (__thread_has_fpu(tsk)) {
110 __save_init_fpu(tsk);
111 __thread_fpu_end(tsk);
112 } else
c375f15a 113 tsk->thread.fpu_counter = 0;
8546c008
LT
114 preempt_enable();
115}
116EXPORT_SYMBOL(unlazy_fpu);
117
72a671ce 118unsigned int mxcsr_feature_mask __read_mostly = 0xffffffffu;
61c4628b 119unsigned int xstate_size;
f45755b8 120EXPORT_SYMBOL_GPL(xstate_size);
148f9bb8 121static struct i387_fxsave_struct fx_scratch;
1da177e4 122
148f9bb8 123static void mxcsr_feature_mask_init(void)
1da177e4
LT
124{
125 unsigned long mask = 0;
f668964e 126
1da177e4 127 if (cpu_has_fxsr) {
61c4628b 128 memset(&fx_scratch, 0, sizeof(struct i387_fxsave_struct));
eaa5a990 129 asm volatile("fxsave %0" : "+m" (fx_scratch));
61c4628b 130 mask = fx_scratch.mxcsr_mask;
3b095a04
CG
131 if (mask == 0)
132 mask = 0x0000ffbf;
133 }
1da177e4 134 mxcsr_feature_mask &= mask;
1da177e4
LT
135}
136
148f9bb8 137static void init_thread_xstate(void)
61c4628b 138{
0e49bf66
RR
139 /*
140 * Note that xstate_size might be overwriten later during
141 * xsave_init().
142 */
143
60e019eb 144 if (!cpu_has_fpu) {
1f999ab5
RR
145 /*
146 * Disable xsave as we do not support it if i387
147 * emulation is enabled.
148 */
149 setup_clear_cpu_cap(X86_FEATURE_XSAVE);
150 setup_clear_cpu_cap(X86_FEATURE_XSAVEOPT);
e8a496ac
SS
151 xstate_size = sizeof(struct i387_soft_struct);
152 return;
153 }
154
61c4628b
SS
155 if (cpu_has_fxsr)
156 xstate_size = sizeof(struct i387_fxsave_struct);
61c4628b
SS
157 else
158 xstate_size = sizeof(struct i387_fsave_struct);
61c4628b
SS
159}
160
44210111
RM
161/*
162 * Called at bootup to set up the initial FPU state that is later cloned
163 * into all processes.
164 */
0e49bf66 165
148f9bb8 166void fpu_init(void)
44210111 167{
6ac8bac2
BG
168 unsigned long cr0;
169 unsigned long cr4_mask = 0;
44210111 170
60e019eb
PA
171#ifndef CONFIG_MATH_EMULATION
172 if (!cpu_has_fpu) {
173 pr_emerg("No FPU found and no math emulation present\n");
174 pr_emerg("Giving up\n");
175 for (;;)
176 asm volatile("hlt");
177 }
178#endif
6ac8bac2
BG
179 if (cpu_has_fxsr)
180 cr4_mask |= X86_CR4_OSFXSR;
181 if (cpu_has_xmm)
182 cr4_mask |= X86_CR4_OSXMMEXCPT;
183 if (cr4_mask)
375074cc 184 cr4_set_bits(cr4_mask);
6ac8bac2
BG
185
186 cr0 = read_cr0();
187 cr0 &= ~(X86_CR0_TS|X86_CR0_EM); /* clear TS and EM */
60e019eb 188 if (!cpu_has_fpu)
6ac8bac2
BG
189 cr0 |= X86_CR0_EM;
190 write_cr0(cr0);
44210111 191
6f5298c2
FY
192 /*
193 * init_thread_xstate is only called once to avoid overriding
194 * xstate_size during boot time or during CPU hotplug.
195 */
196 if (xstate_size == 0)
dc1e35c6 197 init_thread_xstate();
dc1e35c6 198
44210111 199 mxcsr_feature_mask_init();
5d2bd700
SS
200 xsave_init();
201 eager_fpu_init();
44210111 202}
0e49bf66 203
5ee481da 204void fpu_finit(struct fpu *fpu)
1da177e4 205{
60e019eb 206 if (!cpu_has_fpu) {
86603283
AK
207 finit_soft_fpu(&fpu->state->soft);
208 return;
e8a496ac 209 }
e8a496ac 210
1da177e4 211 if (cpu_has_fxsr) {
5d2bd700 212 fx_finit(&fpu->state->fxsave);
1da177e4 213 } else {
86603283 214 struct i387_fsave_struct *fp = &fpu->state->fsave;
61c4628b
SS
215 memset(fp, 0, xstate_size);
216 fp->cwd = 0xffff037fu;
217 fp->swd = 0xffff0000u;
218 fp->twd = 0xffffffffu;
219 fp->fos = 0xffff0000u;
1da177e4 220 }
86603283 221}
5ee481da 222EXPORT_SYMBOL_GPL(fpu_finit);
86603283
AK
223
224/*
225 * The _current_ task is using the FPU for the first time
226 * so initialize it and set the mxcsr to its default
227 * value at reset if we support XMM instructions and then
0d2eb44f 228 * remember the current task has used the FPU.
86603283
AK
229 */
230int init_fpu(struct task_struct *tsk)
231{
232 int ret;
233
234 if (tsk_used_math(tsk)) {
60e019eb 235 if (cpu_has_fpu && tsk == current)
86603283 236 unlazy_fpu(tsk);
089f9fba 237 tsk->thread.fpu.last_cpu = ~0;
86603283
AK
238 return 0;
239 }
240
44210111 241 /*
86603283 242 * Memory allocation at the first usage of the FPU and other state.
44210111 243 */
86603283
AK
244 ret = fpu_alloc(&tsk->thread.fpu);
245 if (ret)
246 return ret;
247
248 fpu_finit(&tsk->thread.fpu);
249
1da177e4 250 set_stopped_child_used_math(tsk);
aa283f49 251 return 0;
1da177e4 252}
e5c30142 253EXPORT_SYMBOL_GPL(init_fpu);
1da177e4 254
5b3efd50
SS
255/*
256 * The xstateregs_active() routine is the same as the fpregs_active() routine,
257 * as the "regset->n" for the xstate regset will be updated based on the feature
258 * capabilites supported by the xsave.
259 */
44210111
RM
260int fpregs_active(struct task_struct *target, const struct user_regset *regset)
261{
262 return tsk_used_math(target) ? regset->n : 0;
263}
1da177e4 264
44210111 265int xfpregs_active(struct task_struct *target, const struct user_regset *regset)
1da177e4 266{
44210111
RM
267 return (cpu_has_fxsr && tsk_used_math(target)) ? regset->n : 0;
268}
1da177e4 269
44210111
RM
270int xfpregs_get(struct task_struct *target, const struct user_regset *regset,
271 unsigned int pos, unsigned int count,
272 void *kbuf, void __user *ubuf)
273{
aa283f49
SS
274 int ret;
275
44210111
RM
276 if (!cpu_has_fxsr)
277 return -ENODEV;
278
aa283f49
SS
279 ret = init_fpu(target);
280 if (ret)
281 return ret;
44210111 282
29104e10
SS
283 sanitize_i387_state(target);
284
44210111 285 return user_regset_copyout(&pos, &count, &kbuf, &ubuf,
86603283 286 &target->thread.fpu.state->fxsave, 0, -1);
1da177e4 287}
44210111
RM
288
289int xfpregs_set(struct task_struct *target, const struct user_regset *regset,
290 unsigned int pos, unsigned int count,
291 const void *kbuf, const void __user *ubuf)
292{
293 int ret;
294
295 if (!cpu_has_fxsr)
296 return -ENODEV;
297
aa283f49
SS
298 ret = init_fpu(target);
299 if (ret)
300 return ret;
301
29104e10
SS
302 sanitize_i387_state(target);
303
44210111 304 ret = user_regset_copyin(&pos, &count, &kbuf, &ubuf,
86603283 305 &target->thread.fpu.state->fxsave, 0, -1);
44210111
RM
306
307 /*
308 * mxcsr reserved bits must be masked to zero for security reasons.
309 */
86603283 310 target->thread.fpu.state->fxsave.mxcsr &= mxcsr_feature_mask;
44210111 311
42deec6f
SS
312 /*
313 * update the header bits in the xsave header, indicating the
314 * presence of FP and SSE state.
315 */
316 if (cpu_has_xsave)
86603283 317 target->thread.fpu.state->xsave.xsave_hdr.xstate_bv |= XSTATE_FPSSE;
42deec6f 318
44210111
RM
319 return ret;
320}
321
5b3efd50
SS
322int xstateregs_get(struct task_struct *target, const struct user_regset *regset,
323 unsigned int pos, unsigned int count,
324 void *kbuf, void __user *ubuf)
325{
326 int ret;
327
328 if (!cpu_has_xsave)
329 return -ENODEV;
330
331 ret = init_fpu(target);
332 if (ret)
333 return ret;
334
335 /*
ff7fbc72
SS
336 * Copy the 48bytes defined by the software first into the xstate
337 * memory layout in the thread struct, so that we can copy the entire
338 * xstateregs to the user using one user_regset_copyout().
5b3efd50 339 */
86603283 340 memcpy(&target->thread.fpu.state->fxsave.sw_reserved,
ff7fbc72 341 xstate_fx_sw_bytes, sizeof(xstate_fx_sw_bytes));
5b3efd50
SS
342
343 /*
ff7fbc72 344 * Copy the xstate memory layout.
5b3efd50
SS
345 */
346 ret = user_regset_copyout(&pos, &count, &kbuf, &ubuf,
86603283 347 &target->thread.fpu.state->xsave, 0, -1);
5b3efd50
SS
348 return ret;
349}
350
351int xstateregs_set(struct task_struct *target, const struct user_regset *regset,
352 unsigned int pos, unsigned int count,
353 const void *kbuf, const void __user *ubuf)
354{
355 int ret;
356 struct xsave_hdr_struct *xsave_hdr;
357
358 if (!cpu_has_xsave)
359 return -ENODEV;
360
361 ret = init_fpu(target);
362 if (ret)
363 return ret;
364
365 ret = user_regset_copyin(&pos, &count, &kbuf, &ubuf,
86603283 366 &target->thread.fpu.state->xsave, 0, -1);
5b3efd50
SS
367
368 /*
369 * mxcsr reserved bits must be masked to zero for security reasons.
370 */
86603283 371 target->thread.fpu.state->fxsave.mxcsr &= mxcsr_feature_mask;
5b3efd50 372
86603283 373 xsave_hdr = &target->thread.fpu.state->xsave.xsave_hdr;
5b3efd50
SS
374
375 xsave_hdr->xstate_bv &= pcntxt_mask;
376 /*
377 * These bits must be zero.
378 */
21e726c4 379 memset(xsave_hdr->reserved, 0, 48);
5b3efd50
SS
380
381 return ret;
382}
383
44210111 384#if defined CONFIG_X86_32 || defined CONFIG_IA32_EMULATION
1da177e4 385
1da177e4
LT
386/*
387 * FPU tag word conversions.
388 */
389
3b095a04 390static inline unsigned short twd_i387_to_fxsr(unsigned short twd)
1da177e4
LT
391{
392 unsigned int tmp; /* to avoid 16 bit prefixes in the code */
3b095a04 393
1da177e4 394 /* Transform each pair of bits into 01 (valid) or 00 (empty) */
3b095a04 395 tmp = ~twd;
44210111 396 tmp = (tmp | (tmp>>1)) & 0x5555; /* 0V0V0V0V0V0V0V0V */
3b095a04
CG
397 /* and move the valid bits to the lower byte. */
398 tmp = (tmp | (tmp >> 1)) & 0x3333; /* 00VV00VV00VV00VV */
399 tmp = (tmp | (tmp >> 2)) & 0x0f0f; /* 0000VVVV0000VVVV */
400 tmp = (tmp | (tmp >> 4)) & 0x00ff; /* 00000000VVVVVVVV */
f668964e 401
3b095a04 402 return tmp;
1da177e4
LT
403}
404
497888cf 405#define FPREG_ADDR(f, n) ((void *)&(f)->st_space + (n) * 16)
44210111
RM
406#define FP_EXP_TAG_VALID 0
407#define FP_EXP_TAG_ZERO 1
408#define FP_EXP_TAG_SPECIAL 2
409#define FP_EXP_TAG_EMPTY 3
410
411static inline u32 twd_fxsr_to_i387(struct i387_fxsave_struct *fxsave)
412{
413 struct _fpxreg *st;
414 u32 tos = (fxsave->swd >> 11) & 7;
415 u32 twd = (unsigned long) fxsave->twd;
416 u32 tag;
417 u32 ret = 0xffff0000u;
418 int i;
1da177e4 419
44210111 420 for (i = 0; i < 8; i++, twd >>= 1) {
3b095a04
CG
421 if (twd & 0x1) {
422 st = FPREG_ADDR(fxsave, (i - tos) & 7);
1da177e4 423
3b095a04 424 switch (st->exponent & 0x7fff) {
1da177e4 425 case 0x7fff:
44210111 426 tag = FP_EXP_TAG_SPECIAL;
1da177e4
LT
427 break;
428 case 0x0000:
3b095a04
CG
429 if (!st->significand[0] &&
430 !st->significand[1] &&
431 !st->significand[2] &&
44210111
RM
432 !st->significand[3])
433 tag = FP_EXP_TAG_ZERO;
434 else
435 tag = FP_EXP_TAG_SPECIAL;
1da177e4
LT
436 break;
437 default:
44210111
RM
438 if (st->significand[3] & 0x8000)
439 tag = FP_EXP_TAG_VALID;
440 else
441 tag = FP_EXP_TAG_SPECIAL;
1da177e4
LT
442 break;
443 }
444 } else {
44210111 445 tag = FP_EXP_TAG_EMPTY;
1da177e4 446 }
44210111 447 ret |= tag << (2 * i);
1da177e4
LT
448 }
449 return ret;
450}
451
452/*
44210111 453 * FXSR floating point environment conversions.
1da177e4
LT
454 */
455
72a671ce 456void
f668964e 457convert_from_fxsr(struct user_i387_ia32_struct *env, struct task_struct *tsk)
1da177e4 458{
86603283 459 struct i387_fxsave_struct *fxsave = &tsk->thread.fpu.state->fxsave;
44210111
RM
460 struct _fpreg *to = (struct _fpreg *) &env->st_space[0];
461 struct _fpxreg *from = (struct _fpxreg *) &fxsave->st_space[0];
462 int i;
1da177e4 463
44210111
RM
464 env->cwd = fxsave->cwd | 0xffff0000u;
465 env->swd = fxsave->swd | 0xffff0000u;
466 env->twd = twd_fxsr_to_i387(fxsave);
467
468#ifdef CONFIG_X86_64
469 env->fip = fxsave->rip;
470 env->foo = fxsave->rdp;
10c11f30
BG
471 /*
472 * should be actually ds/cs at fpu exception time, but
473 * that information is not available in 64bit mode.
474 */
475 env->fcs = task_pt_regs(tsk)->cs;
44210111 476 if (tsk == current) {
10c11f30 477 savesegment(ds, env->fos);
1da177e4 478 } else {
10c11f30 479 env->fos = tsk->thread.ds;
1da177e4 480 }
10c11f30 481 env->fos |= 0xffff0000;
44210111
RM
482#else
483 env->fip = fxsave->fip;
609b5297 484 env->fcs = (u16) fxsave->fcs | ((u32) fxsave->fop << 16);
44210111
RM
485 env->foo = fxsave->foo;
486 env->fos = fxsave->fos;
487#endif
1da177e4 488
44210111
RM
489 for (i = 0; i < 8; ++i)
490 memcpy(&to[i], &from[i], sizeof(to[0]));
1da177e4
LT
491}
492
72a671ce
SS
493void convert_to_fxsr(struct task_struct *tsk,
494 const struct user_i387_ia32_struct *env)
1da177e4 495
1da177e4 496{
86603283 497 struct i387_fxsave_struct *fxsave = &tsk->thread.fpu.state->fxsave;
44210111
RM
498 struct _fpreg *from = (struct _fpreg *) &env->st_space[0];
499 struct _fpxreg *to = (struct _fpxreg *) &fxsave->st_space[0];
500 int i;
1da177e4 501
44210111
RM
502 fxsave->cwd = env->cwd;
503 fxsave->swd = env->swd;
504 fxsave->twd = twd_i387_to_fxsr(env->twd);
505 fxsave->fop = (u16) ((u32) env->fcs >> 16);
506#ifdef CONFIG_X86_64
507 fxsave->rip = env->fip;
508 fxsave->rdp = env->foo;
509 /* cs and ds ignored */
510#else
511 fxsave->fip = env->fip;
512 fxsave->fcs = (env->fcs & 0xffff);
513 fxsave->foo = env->foo;
514 fxsave->fos = env->fos;
515#endif
1da177e4 516
44210111
RM
517 for (i = 0; i < 8; ++i)
518 memcpy(&to[i], &from[i], sizeof(from[0]));
1da177e4
LT
519}
520
44210111
RM
521int fpregs_get(struct task_struct *target, const struct user_regset *regset,
522 unsigned int pos, unsigned int count,
523 void *kbuf, void __user *ubuf)
1da177e4 524{
44210111 525 struct user_i387_ia32_struct env;
aa283f49 526 int ret;
1da177e4 527
aa283f49
SS
528 ret = init_fpu(target);
529 if (ret)
530 return ret;
1da177e4 531
60e019eb 532 if (!static_cpu_has(X86_FEATURE_FPU))
e8a496ac
SS
533 return fpregs_soft_get(target, regset, pos, count, kbuf, ubuf);
534
60e019eb 535 if (!cpu_has_fxsr)
44210111 536 return user_regset_copyout(&pos, &count, &kbuf, &ubuf,
86603283 537 &target->thread.fpu.state->fsave, 0,
61c4628b 538 -1);
1da177e4 539
29104e10
SS
540 sanitize_i387_state(target);
541
44210111
RM
542 if (kbuf && pos == 0 && count == sizeof(env)) {
543 convert_from_fxsr(kbuf, target);
544 return 0;
1da177e4 545 }
44210111
RM
546
547 convert_from_fxsr(&env, target);
f668964e 548
44210111 549 return user_regset_copyout(&pos, &count, &kbuf, &ubuf, &env, 0, -1);
1da177e4
LT
550}
551
44210111
RM
552int fpregs_set(struct task_struct *target, const struct user_regset *regset,
553 unsigned int pos, unsigned int count,
554 const void *kbuf, const void __user *ubuf)
1da177e4 555{
44210111
RM
556 struct user_i387_ia32_struct env;
557 int ret;
1da177e4 558
aa283f49
SS
559 ret = init_fpu(target);
560 if (ret)
561 return ret;
562
29104e10
SS
563 sanitize_i387_state(target);
564
60e019eb 565 if (!static_cpu_has(X86_FEATURE_FPU))
e8a496ac
SS
566 return fpregs_soft_set(target, regset, pos, count, kbuf, ubuf);
567
60e019eb 568 if (!cpu_has_fxsr)
44210111 569 return user_regset_copyin(&pos, &count, &kbuf, &ubuf,
60e019eb
PA
570 &target->thread.fpu.state->fsave, 0,
571 -1);
44210111
RM
572
573 if (pos > 0 || count < sizeof(env))
574 convert_from_fxsr(&env, target);
575
576 ret = user_regset_copyin(&pos, &count, &kbuf, &ubuf, &env, 0, -1);
577 if (!ret)
578 convert_to_fxsr(target, &env);
579
42deec6f
SS
580 /*
581 * update the header bit in the xsave header, indicating the
582 * presence of FP.
583 */
584 if (cpu_has_xsave)
86603283 585 target->thread.fpu.state->xsave.xsave_hdr.xstate_bv |= XSTATE_FP;
44210111 586 return ret;
1da177e4
LT
587}
588
1da177e4
LT
589/*
590 * FPU state for core dumps.
60b3b9af
RM
591 * This is only used for a.out dumps now.
592 * It is declared generically using elf_fpregset_t (which is
593 * struct user_i387_struct) but is in fact only used for 32-bit
594 * dumps, so on 64-bit it is really struct user_i387_ia32_struct.
1da177e4 595 */
3b095a04 596int dump_fpu(struct pt_regs *regs, struct user_i387_struct *fpu)
1da177e4 597{
1da177e4 598 struct task_struct *tsk = current;
f668964e 599 int fpvalid;
1da177e4
LT
600
601 fpvalid = !!used_math();
60b3b9af
RM
602 if (fpvalid)
603 fpvalid = !fpregs_get(tsk, NULL,
604 0, sizeof(struct user_i387_ia32_struct),
605 fpu, NULL);
1da177e4
LT
606
607 return fpvalid;
608}
129f6946 609EXPORT_SYMBOL(dump_fpu);
1da177e4 610
60b3b9af 611#endif /* CONFIG_X86_32 || CONFIG_IA32_EMULATION */
60e019eb
PA
612
613static int __init no_387(char *s)
614{
615 setup_clear_cpu_cap(X86_FEATURE_FPU);
616 return 1;
617}
618
619__setup("no387", no_387);
620
148f9bb8 621void fpu_detect(struct cpuinfo_x86 *c)
60e019eb
PA
622{
623 unsigned long cr0;
624 u16 fsw, fcw;
625
626 fsw = fcw = 0xffff;
627
628 cr0 = read_cr0();
629 cr0 &= ~(X86_CR0_TS | X86_CR0_EM);
630 write_cr0(cr0);
631
632 asm volatile("fninit ; fnstsw %0 ; fnstcw %1"
633 : "+m" (fsw), "+m" (fcw));
634
635 if (fsw == 0 && (fcw & 0x103f) == 0x003f)
636 set_cpu_cap(c, X86_FEATURE_FPU);
637 else
638 clear_cpu_cap(c, X86_FEATURE_FPU);
639
640 /* The final cr0 value is set in fpu_init() */
641}
This page took 1.265435 seconds and 5 git commands to generate.