xref: /freebsd/sys/amd64/amd64/fpu.c (revision aa64588d28258aef88cc33b8043112e8856948d0)
1 /*-
2  * Copyright (c) 1990 William Jolitz.
3  * Copyright (c) 1991 The Regents of the University of California.
4  * All rights reserved.
5  *
6  * Redistribution and use in source and binary forms, with or without
7  * modification, are permitted provided that the following conditions
8  * are met:
9  * 1. Redistributions of source code must retain the above copyright
10  *    notice, this list of conditions and the following disclaimer.
11  * 2. Redistributions in binary form must reproduce the above copyright
12  *    notice, this list of conditions and the following disclaimer in the
13  *    documentation and/or other materials provided with the distribution.
14  * 4. Neither the name of the University nor the names of its contributors
15  *    may be used to endorse or promote products derived from this software
16  *    without specific prior written permission.
17  *
18  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
19  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
22  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
23  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
24  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
25  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
26  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
27  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
28  * SUCH DAMAGE.
29  *
30  *	from: @(#)npx.c	7.2 (Berkeley) 5/12/91
31  */
32 
33 #include <sys/cdefs.h>
34 __FBSDID("$FreeBSD$");
35 
36 #include <sys/param.h>
37 #include <sys/systm.h>
38 #include <sys/bus.h>
39 #include <sys/kernel.h>
40 #include <sys/lock.h>
41 #include <sys/malloc.h>
42 #include <sys/module.h>
43 #include <sys/mutex.h>
44 #include <sys/mutex.h>
45 #include <sys/proc.h>
46 #include <sys/sysctl.h>
47 #include <machine/bus.h>
48 #include <sys/rman.h>
49 #include <sys/signalvar.h>
50 
51 #include <machine/cputypes.h>
52 #include <machine/frame.h>
53 #include <machine/intr_machdep.h>
54 #include <machine/md_var.h>
55 #include <machine/pcb.h>
56 #include <machine/psl.h>
57 #include <machine/resource.h>
58 #include <machine/specialreg.h>
59 #include <machine/segments.h>
60 #include <machine/ucontext.h>
61 
62 /*
63  * Floating point support.
64  */
65 
66 #if defined(__GNUCLIKE_ASM) && !defined(lint)
67 
68 #define	fldcw(addr)		__asm("fldcw %0" : : "m" (*(addr)))
69 #define	fnclex()		__asm("fnclex")
70 #define	fninit()		__asm("fninit")
71 #define	fnstcw(addr)		__asm __volatile("fnstcw %0" : "=m" (*(addr)))
72 #define	fnstsw(addr)		__asm __volatile("fnstsw %0" : "=m" (*(addr)))
73 #define	fxrstor(addr)		__asm("fxrstor %0" : : "m" (*(addr)))
74 #define	fxsave(addr)		__asm __volatile("fxsave %0" : "=m" (*(addr)))
75 #define	ldmxcsr(r)		__asm __volatile("ldmxcsr %0" : : "m" (r))
76 #define	start_emulating()	__asm("smsw %%ax; orb %0,%%al; lmsw %%ax" \
77 				      : : "n" (CR0_TS) : "ax")
78 #define	stop_emulating()	__asm("clts")
79 
80 #else	/* !(__GNUCLIKE_ASM && !lint) */
81 
82 void	fldcw(caddr_t addr);
83 void	fnclex(void);
84 void	fninit(void);
85 void	fnstcw(caddr_t addr);
86 void	fnstsw(caddr_t addr);
87 void	fxsave(caddr_t addr);
88 void	fxrstor(caddr_t addr);
89 void	start_emulating(void);
90 void	stop_emulating(void);
91 
92 #endif	/* __GNUCLIKE_ASM && !lint */
93 
94 #define GET_FPU_CW(thread) ((thread)->td_pcb->pcb_save->sv_env.en_cw)
95 #define GET_FPU_SW(thread) ((thread)->td_pcb->pcb_save->sv_env.en_sw)
96 
97 typedef u_char bool_t;
98 
99 static	void	fpu_clean_state(void);
100 
101 SYSCTL_INT(_hw, HW_FLOATINGPT, floatingpoint, CTLFLAG_RD,
102     NULL, 1, "Floating point instructions executed in hardware");
103 
104 static	struct savefpu		fpu_initialstate;
105 
106 /*
107  * Initialize the floating point unit.  On the boot CPU we generate a
108  * clean state that is used to initialize the floating point unit when
109  * it is first used by a process.
110  */
111 void
112 fpuinit(void)
113 {
114 	register_t savecrit;
115 	u_int mxcsr;
116 	u_short control;
117 
118 	savecrit = intr_disable();
119 	stop_emulating();
120 	fninit();
121 	control = __INITIAL_FPUCW__;
122 	fldcw(&control);
123 	mxcsr = __INITIAL_MXCSR__;
124 	ldmxcsr(mxcsr);
125 	if (PCPU_GET(cpuid) == 0) {
126 		fxsave(&fpu_initialstate);
127 		if (fpu_initialstate.sv_env.en_mxcsr_mask)
128 			cpu_mxcsr_mask = fpu_initialstate.sv_env.en_mxcsr_mask;
129 		else
130 			cpu_mxcsr_mask = 0xFFBF;
131 		bzero(fpu_initialstate.sv_fp, sizeof(fpu_initialstate.sv_fp));
132 		bzero(fpu_initialstate.sv_xmm, sizeof(fpu_initialstate.sv_xmm));
133 	}
134 	start_emulating();
135 	intr_restore(savecrit);
136 }
137 
138 /*
139  * Free coprocessor (if we have it).
140  */
141 void
142 fpuexit(struct thread *td)
143 {
144 	register_t savecrit;
145 
146 	savecrit = intr_disable();
147 	if (curthread == PCPU_GET(fpcurthread)) {
148 		stop_emulating();
149 		fxsave(PCPU_GET(curpcb)->pcb_save);
150 		start_emulating();
151 		PCPU_SET(fpcurthread, 0);
152 	}
153 	intr_restore(savecrit);
154 }
155 
156 int
157 fpuformat()
158 {
159 
160 	return (_MC_FPFMT_XMM);
161 }
162 
163 /*
164  * The following mechanism is used to ensure that the FPE_... value
165  * that is passed as a trapcode to the signal handler of the user
166  * process does not have more than one bit set.
167  *
168  * Multiple bits may be set if the user process modifies the control
169  * word while a status word bit is already set.  While this is a sign
170  * of bad coding, we have no choise than to narrow them down to one
171  * bit, since we must not send a trapcode that is not exactly one of
172  * the FPE_ macros.
173  *
174  * The mechanism has a static table with 127 entries.  Each combination
175  * of the 7 FPU status word exception bits directly translates to a
176  * position in this table, where a single FPE_... value is stored.
177  * This FPE_... value stored there is considered the "most important"
178  * of the exception bits and will be sent as the signal code.  The
179  * precedence of the bits is based upon Intel Document "Numerical
180  * Applications", Chapter "Special Computational Situations".
181  *
182  * The macro to choose one of these values does these steps: 1) Throw
183  * away status word bits that cannot be masked.  2) Throw away the bits
184  * currently masked in the control word, assuming the user isn't
185  * interested in them anymore.  3) Reinsert status word bit 7 (stack
186  * fault) if it is set, which cannot be masked but must be presered.
187  * 4) Use the remaining bits to point into the trapcode table.
188  *
189  * The 6 maskable bits in order of their preference, as stated in the
190  * above referenced Intel manual:
191  * 1  Invalid operation (FP_X_INV)
192  * 1a   Stack underflow
193  * 1b   Stack overflow
194  * 1c   Operand of unsupported format
195  * 1d   SNaN operand.
196  * 2  QNaN operand (not an exception, irrelavant here)
197  * 3  Any other invalid-operation not mentioned above or zero divide
198  *      (FP_X_INV, FP_X_DZ)
199  * 4  Denormal operand (FP_X_DNML)
200  * 5  Numeric over/underflow (FP_X_OFL, FP_X_UFL)
201  * 6  Inexact result (FP_X_IMP)
202  */
203 static char fpetable[128] = {
204 	0,
205 	FPE_FLTINV,	/*  1 - INV */
206 	FPE_FLTUND,	/*  2 - DNML */
207 	FPE_FLTINV,	/*  3 - INV | DNML */
208 	FPE_FLTDIV,	/*  4 - DZ */
209 	FPE_FLTINV,	/*  5 - INV | DZ */
210 	FPE_FLTDIV,	/*  6 - DNML | DZ */
211 	FPE_FLTINV,	/*  7 - INV | DNML | DZ */
212 	FPE_FLTOVF,	/*  8 - OFL */
213 	FPE_FLTINV,	/*  9 - INV | OFL */
214 	FPE_FLTUND,	/*  A - DNML | OFL */
215 	FPE_FLTINV,	/*  B - INV | DNML | OFL */
216 	FPE_FLTDIV,	/*  C - DZ | OFL */
217 	FPE_FLTINV,	/*  D - INV | DZ | OFL */
218 	FPE_FLTDIV,	/*  E - DNML | DZ | OFL */
219 	FPE_FLTINV,	/*  F - INV | DNML | DZ | OFL */
220 	FPE_FLTUND,	/* 10 - UFL */
221 	FPE_FLTINV,	/* 11 - INV | UFL */
222 	FPE_FLTUND,	/* 12 - DNML | UFL */
223 	FPE_FLTINV,	/* 13 - INV | DNML | UFL */
224 	FPE_FLTDIV,	/* 14 - DZ | UFL */
225 	FPE_FLTINV,	/* 15 - INV | DZ | UFL */
226 	FPE_FLTDIV,	/* 16 - DNML | DZ | UFL */
227 	FPE_FLTINV,	/* 17 - INV | DNML | DZ | UFL */
228 	FPE_FLTOVF,	/* 18 - OFL | UFL */
229 	FPE_FLTINV,	/* 19 - INV | OFL | UFL */
230 	FPE_FLTUND,	/* 1A - DNML | OFL | UFL */
231 	FPE_FLTINV,	/* 1B - INV | DNML | OFL | UFL */
232 	FPE_FLTDIV,	/* 1C - DZ | OFL | UFL */
233 	FPE_FLTINV,	/* 1D - INV | DZ | OFL | UFL */
234 	FPE_FLTDIV,	/* 1E - DNML | DZ | OFL | UFL */
235 	FPE_FLTINV,	/* 1F - INV | DNML | DZ | OFL | UFL */
236 	FPE_FLTRES,	/* 20 - IMP */
237 	FPE_FLTINV,	/* 21 - INV | IMP */
238 	FPE_FLTUND,	/* 22 - DNML | IMP */
239 	FPE_FLTINV,	/* 23 - INV | DNML | IMP */
240 	FPE_FLTDIV,	/* 24 - DZ | IMP */
241 	FPE_FLTINV,	/* 25 - INV | DZ | IMP */
242 	FPE_FLTDIV,	/* 26 - DNML | DZ | IMP */
243 	FPE_FLTINV,	/* 27 - INV | DNML | DZ | IMP */
244 	FPE_FLTOVF,	/* 28 - OFL | IMP */
245 	FPE_FLTINV,	/* 29 - INV | OFL | IMP */
246 	FPE_FLTUND,	/* 2A - DNML | OFL | IMP */
247 	FPE_FLTINV,	/* 2B - INV | DNML | OFL | IMP */
248 	FPE_FLTDIV,	/* 2C - DZ | OFL | IMP */
249 	FPE_FLTINV,	/* 2D - INV | DZ | OFL | IMP */
250 	FPE_FLTDIV,	/* 2E - DNML | DZ | OFL | IMP */
251 	FPE_FLTINV,	/* 2F - INV | DNML | DZ | OFL | IMP */
252 	FPE_FLTUND,	/* 30 - UFL | IMP */
253 	FPE_FLTINV,	/* 31 - INV | UFL | IMP */
254 	FPE_FLTUND,	/* 32 - DNML | UFL | IMP */
255 	FPE_FLTINV,	/* 33 - INV | DNML | UFL | IMP */
256 	FPE_FLTDIV,	/* 34 - DZ | UFL | IMP */
257 	FPE_FLTINV,	/* 35 - INV | DZ | UFL | IMP */
258 	FPE_FLTDIV,	/* 36 - DNML | DZ | UFL | IMP */
259 	FPE_FLTINV,	/* 37 - INV | DNML | DZ | UFL | IMP */
260 	FPE_FLTOVF,	/* 38 - OFL | UFL | IMP */
261 	FPE_FLTINV,	/* 39 - INV | OFL | UFL | IMP */
262 	FPE_FLTUND,	/* 3A - DNML | OFL | UFL | IMP */
263 	FPE_FLTINV,	/* 3B - INV | DNML | OFL | UFL | IMP */
264 	FPE_FLTDIV,	/* 3C - DZ | OFL | UFL | IMP */
265 	FPE_FLTINV,	/* 3D - INV | DZ | OFL | UFL | IMP */
266 	FPE_FLTDIV,	/* 3E - DNML | DZ | OFL | UFL | IMP */
267 	FPE_FLTINV,	/* 3F - INV | DNML | DZ | OFL | UFL | IMP */
268 	FPE_FLTSUB,	/* 40 - STK */
269 	FPE_FLTSUB,	/* 41 - INV | STK */
270 	FPE_FLTUND,	/* 42 - DNML | STK */
271 	FPE_FLTSUB,	/* 43 - INV | DNML | STK */
272 	FPE_FLTDIV,	/* 44 - DZ | STK */
273 	FPE_FLTSUB,	/* 45 - INV | DZ | STK */
274 	FPE_FLTDIV,	/* 46 - DNML | DZ | STK */
275 	FPE_FLTSUB,	/* 47 - INV | DNML | DZ | STK */
276 	FPE_FLTOVF,	/* 48 - OFL | STK */
277 	FPE_FLTSUB,	/* 49 - INV | OFL | STK */
278 	FPE_FLTUND,	/* 4A - DNML | OFL | STK */
279 	FPE_FLTSUB,	/* 4B - INV | DNML | OFL | STK */
280 	FPE_FLTDIV,	/* 4C - DZ | OFL | STK */
281 	FPE_FLTSUB,	/* 4D - INV | DZ | OFL | STK */
282 	FPE_FLTDIV,	/* 4E - DNML | DZ | OFL | STK */
283 	FPE_FLTSUB,	/* 4F - INV | DNML | DZ | OFL | STK */
284 	FPE_FLTUND,	/* 50 - UFL | STK */
285 	FPE_FLTSUB,	/* 51 - INV | UFL | STK */
286 	FPE_FLTUND,	/* 52 - DNML | UFL | STK */
287 	FPE_FLTSUB,	/* 53 - INV | DNML | UFL | STK */
288 	FPE_FLTDIV,	/* 54 - DZ | UFL | STK */
289 	FPE_FLTSUB,	/* 55 - INV | DZ | UFL | STK */
290 	FPE_FLTDIV,	/* 56 - DNML | DZ | UFL | STK */
291 	FPE_FLTSUB,	/* 57 - INV | DNML | DZ | UFL | STK */
292 	FPE_FLTOVF,	/* 58 - OFL | UFL | STK */
293 	FPE_FLTSUB,	/* 59 - INV | OFL | UFL | STK */
294 	FPE_FLTUND,	/* 5A - DNML | OFL | UFL | STK */
295 	FPE_FLTSUB,	/* 5B - INV | DNML | OFL | UFL | STK */
296 	FPE_FLTDIV,	/* 5C - DZ | OFL | UFL | STK */
297 	FPE_FLTSUB,	/* 5D - INV | DZ | OFL | UFL | STK */
298 	FPE_FLTDIV,	/* 5E - DNML | DZ | OFL | UFL | STK */
299 	FPE_FLTSUB,	/* 5F - INV | DNML | DZ | OFL | UFL | STK */
300 	FPE_FLTRES,	/* 60 - IMP | STK */
301 	FPE_FLTSUB,	/* 61 - INV | IMP | STK */
302 	FPE_FLTUND,	/* 62 - DNML | IMP | STK */
303 	FPE_FLTSUB,	/* 63 - INV | DNML | IMP | STK */
304 	FPE_FLTDIV,	/* 64 - DZ | IMP | STK */
305 	FPE_FLTSUB,	/* 65 - INV | DZ | IMP | STK */
306 	FPE_FLTDIV,	/* 66 - DNML | DZ | IMP | STK */
307 	FPE_FLTSUB,	/* 67 - INV | DNML | DZ | IMP | STK */
308 	FPE_FLTOVF,	/* 68 - OFL | IMP | STK */
309 	FPE_FLTSUB,	/* 69 - INV | OFL | IMP | STK */
310 	FPE_FLTUND,	/* 6A - DNML | OFL | IMP | STK */
311 	FPE_FLTSUB,	/* 6B - INV | DNML | OFL | IMP | STK */
312 	FPE_FLTDIV,	/* 6C - DZ | OFL | IMP | STK */
313 	FPE_FLTSUB,	/* 6D - INV | DZ | OFL | IMP | STK */
314 	FPE_FLTDIV,	/* 6E - DNML | DZ | OFL | IMP | STK */
315 	FPE_FLTSUB,	/* 6F - INV | DNML | DZ | OFL | IMP | STK */
316 	FPE_FLTUND,	/* 70 - UFL | IMP | STK */
317 	FPE_FLTSUB,	/* 71 - INV | UFL | IMP | STK */
318 	FPE_FLTUND,	/* 72 - DNML | UFL | IMP | STK */
319 	FPE_FLTSUB,	/* 73 - INV | DNML | UFL | IMP | STK */
320 	FPE_FLTDIV,	/* 74 - DZ | UFL | IMP | STK */
321 	FPE_FLTSUB,	/* 75 - INV | DZ | UFL | IMP | STK */
322 	FPE_FLTDIV,	/* 76 - DNML | DZ | UFL | IMP | STK */
323 	FPE_FLTSUB,	/* 77 - INV | DNML | DZ | UFL | IMP | STK */
324 	FPE_FLTOVF,	/* 78 - OFL | UFL | IMP | STK */
325 	FPE_FLTSUB,	/* 79 - INV | OFL | UFL | IMP | STK */
326 	FPE_FLTUND,	/* 7A - DNML | OFL | UFL | IMP | STK */
327 	FPE_FLTSUB,	/* 7B - INV | DNML | OFL | UFL | IMP | STK */
328 	FPE_FLTDIV,	/* 7C - DZ | OFL | UFL | IMP | STK */
329 	FPE_FLTSUB,	/* 7D - INV | DZ | OFL | UFL | IMP | STK */
330 	FPE_FLTDIV,	/* 7E - DNML | DZ | OFL | UFL | IMP | STK */
331 	FPE_FLTSUB,	/* 7F - INV | DNML | DZ | OFL | UFL | IMP | STK */
332 };
333 
334 /*
335  * Preserve the FP status word, clear FP exceptions, then generate a SIGFPE.
336  *
337  * Clearing exceptions is necessary mainly to avoid IRQ13 bugs.  We now
338  * depend on longjmp() restoring a usable state.  Restoring the state
339  * or examining it might fail if we didn't clear exceptions.
340  *
341  * The error code chosen will be one of the FPE_... macros. It will be
342  * sent as the second argument to old BSD-style signal handlers and as
343  * "siginfo_t->si_code" (second argument) to SA_SIGINFO signal handlers.
344  *
345  * XXX the FP state is not preserved across signal handlers.  So signal
346  * handlers cannot afford to do FP unless they preserve the state or
347  * longjmp() out.  Both preserving the state and longjmp()ing may be
348  * destroyed by IRQ13 bugs.  Clearing FP exceptions is not an acceptable
349  * solution for signals other than SIGFPE.
350  */
351 int
352 fputrap()
353 {
354 	register_t savecrit;
355 	u_short control, status;
356 
357 	savecrit = intr_disable();
358 
359 	/*
360 	 * Interrupt handling (for another interrupt) may have pushed the
361 	 * state to memory.  Fetch the relevant parts of the state from
362 	 * wherever they are.
363 	 */
364 	if (PCPU_GET(fpcurthread) != curthread) {
365 		control = GET_FPU_CW(curthread);
366 		status = GET_FPU_SW(curthread);
367 	} else {
368 		fnstcw(&control);
369 		fnstsw(&status);
370 	}
371 
372 	if (PCPU_GET(fpcurthread) == curthread)
373 		fnclex();
374 	intr_restore(savecrit);
375 	return (fpetable[status & ((~control & 0x3f) | 0x40)]);
376 }
377 
378 /*
379  * Implement device not available (DNA) exception
380  *
381  * It would be better to switch FP context here (if curthread != fpcurthread)
382  * and not necessarily for every context switch, but it is too hard to
383  * access foreign pcb's.
384  */
385 
386 static int err_count = 0;
387 
388 void
389 fpudna(void)
390 {
391 	struct pcb *pcb;
392 	register_t s;
393 
394 	if (PCPU_GET(fpcurthread) == curthread) {
395 		printf("fpudna: fpcurthread == curthread %d times\n",
396 		    ++err_count);
397 		stop_emulating();
398 		return;
399 	}
400 	if (PCPU_GET(fpcurthread) != NULL) {
401 		printf("fpudna: fpcurthread = %p (%d), curthread = %p (%d)\n",
402 		       PCPU_GET(fpcurthread),
403 		       PCPU_GET(fpcurthread)->td_proc->p_pid,
404 		       curthread, curthread->td_proc->p_pid);
405 		panic("fpudna");
406 	}
407 	s = intr_disable();
408 	stop_emulating();
409 	/*
410 	 * Record new context early in case frstor causes a trap.
411 	 */
412 	PCPU_SET(fpcurthread, curthread);
413 	pcb = PCPU_GET(curpcb);
414 
415 	fpu_clean_state();
416 
417 	if ((pcb->pcb_flags & PCB_FPUINITDONE) == 0) {
418 		/*
419 		 * This is the first time this thread has used the FPU or
420 		 * the PCB doesn't contain a clean FPU state.  Explicitly
421 		 * load an initial state.
422 		 */
423 		fxrstor(&fpu_initialstate);
424 		if (pcb->pcb_initial_fpucw != __INITIAL_FPUCW__)
425 			fldcw(&pcb->pcb_initial_fpucw);
426 		pcb->pcb_flags |= PCB_FPUINITDONE;
427 		if (PCB_USER_FPU(pcb))
428 			pcb->pcb_flags |= PCB_USERFPUINITDONE;
429 	} else
430 		fxrstor(pcb->pcb_save);
431 	intr_restore(s);
432 }
433 
434 /*
435  * This should be called with interrupts disabled and only when the owning
436  * FPU thread is non-null.
437  */
438 void
439 fpudrop()
440 {
441 	struct thread *td;
442 
443 	td = PCPU_GET(fpcurthread);
444 	PCPU_SET(fpcurthread, NULL);
445 	td->td_pcb->pcb_flags &= ~PCB_FPUINITDONE;
446 	start_emulating();
447 }
448 
449 /*
450  * Get the state of the FPU without dropping ownership (if possible).
451  * It returns the FPU ownership status.
452  */
453 int
454 fpugetuserregs(struct thread *td, struct savefpu *addr)
455 {
456 	struct pcb *pcb;
457 	register_t s;
458 
459 	pcb = td->td_pcb;
460 	if ((pcb->pcb_flags & PCB_USERFPUINITDONE) == 0) {
461 		bcopy(&fpu_initialstate, addr, sizeof(fpu_initialstate));
462 		addr->sv_env.en_cw = pcb->pcb_initial_fpucw;
463 		return (_MC_FPOWNED_NONE);
464 	}
465 	s = intr_disable();
466 	if (td == PCPU_GET(fpcurthread) && PCB_USER_FPU(pcb)) {
467 		fxsave(addr);
468 		intr_restore(s);
469 		return (_MC_FPOWNED_FPU);
470 	} else {
471 		intr_restore(s);
472 		bcopy(&pcb->pcb_user_save, addr, sizeof(*addr));
473 		return (_MC_FPOWNED_PCB);
474 	}
475 }
476 
477 int
478 fpugetregs(struct thread *td, struct savefpu *addr)
479 {
480 	struct pcb *pcb;
481 	register_t s;
482 
483 	pcb = td->td_pcb;
484 	if ((pcb->pcb_flags & PCB_FPUINITDONE) == 0) {
485 		bcopy(&fpu_initialstate, addr, sizeof(fpu_initialstate));
486 		addr->sv_env.en_cw = pcb->pcb_initial_fpucw;
487 		return (_MC_FPOWNED_NONE);
488 	}
489 	s = intr_disable();
490 	if (td == PCPU_GET(fpcurthread)) {
491 		fxsave(addr);
492 		intr_restore(s);
493 		return (_MC_FPOWNED_FPU);
494 	} else {
495 		intr_restore(s);
496 		bcopy(pcb->pcb_save, addr, sizeof(*addr));
497 		return (_MC_FPOWNED_PCB);
498 	}
499 }
500 
501 /*
502  * Set the state of the FPU.
503  */
504 void
505 fpusetuserregs(struct thread *td, struct savefpu *addr)
506 {
507 	struct pcb *pcb;
508 	register_t s;
509 
510 	pcb = td->td_pcb;
511 	s = intr_disable();
512 	if (td == PCPU_GET(fpcurthread) && PCB_USER_FPU(pcb)) {
513 		fxrstor(addr);
514 		intr_restore(s);
515 		pcb->pcb_flags |= PCB_FPUINITDONE | PCB_USERFPUINITDONE;
516 	} else {
517 		intr_restore(s);
518 		bcopy(addr, &td->td_pcb->pcb_user_save, sizeof(*addr));
519 		if (PCB_USER_FPU(pcb))
520 			pcb->pcb_flags |= PCB_FPUINITDONE;
521 		pcb->pcb_flags |= PCB_USERFPUINITDONE;
522 	}
523 }
524 
525 void
526 fpusetregs(struct thread *td, struct savefpu *addr)
527 {
528 	struct pcb *pcb;
529 	register_t s;
530 
531 	pcb = td->td_pcb;
532 	s = intr_disable();
533 	if (td == PCPU_GET(fpcurthread)) {
534 		fxrstor(addr);
535 		intr_restore(s);
536 	} else {
537 		intr_restore(s);
538 		bcopy(addr, td->td_pcb->pcb_save, sizeof(*addr));
539 	}
540 	if (PCB_USER_FPU(pcb))
541 		pcb->pcb_flags |= PCB_USERFPUINITDONE;
542 	pcb->pcb_flags |= PCB_FPUINITDONE;
543 }
544 
545 /*
546  * On AuthenticAMD processors, the fxrstor instruction does not restore
547  * the x87's stored last instruction pointer, last data pointer, and last
548  * opcode values, except in the rare case in which the exception summary
549  * (ES) bit in the x87 status word is set to 1.
550  *
551  * In order to avoid leaking this information across processes, we clean
552  * these values by performing a dummy load before executing fxrstor().
553  */
554 static void
555 fpu_clean_state(void)
556 {
557 	static float dummy_variable = 0.0;
558 	u_short status;
559 
560 	/*
561 	 * Clear the ES bit in the x87 status word if it is currently
562 	 * set, in order to avoid causing a fault in the upcoming load.
563 	 */
564 	fnstsw(&status);
565 	if (status & 0x80)
566 		fnclex();
567 
568 	/*
569 	 * Load the dummy variable into the x87 stack.  This mangles
570 	 * the x87 stack, but we don't care since we're about to call
571 	 * fxrstor() anyway.
572 	 */
573 	__asm __volatile("ffree %%st(7); fld %0" : : "m" (dummy_variable));
574 }
575 
576 /*
577  * This really sucks.  We want the acpi version only, but it requires
578  * the isa_if.h file in order to get the definitions.
579  */
580 #include "opt_isa.h"
581 #ifdef DEV_ISA
582 #include <isa/isavar.h>
583 /*
584  * This sucks up the legacy ISA support assignments from PNPBIOS/ACPI.
585  */
586 static struct isa_pnp_id fpupnp_ids[] = {
587 	{ 0x040cd041, "Legacy ISA coprocessor support" }, /* PNP0C04 */
588 	{ 0 }
589 };
590 
591 static int
592 fpupnp_probe(device_t dev)
593 {
594 	int result;
595 
596 	result = ISA_PNP_PROBE(device_get_parent(dev), dev, fpupnp_ids);
597 	if (result <= 0)
598 		device_quiet(dev);
599 	return (result);
600 }
601 
602 static int
603 fpupnp_attach(device_t dev)
604 {
605 
606 	return (0);
607 }
608 
609 static device_method_t fpupnp_methods[] = {
610 	/* Device interface */
611 	DEVMETHOD(device_probe,		fpupnp_probe),
612 	DEVMETHOD(device_attach,	fpupnp_attach),
613 	DEVMETHOD(device_detach,	bus_generic_detach),
614 	DEVMETHOD(device_shutdown,	bus_generic_shutdown),
615 	DEVMETHOD(device_suspend,	bus_generic_suspend),
616 	DEVMETHOD(device_resume,	bus_generic_resume),
617 
618 	{ 0, 0 }
619 };
620 
621 static driver_t fpupnp_driver = {
622 	"fpupnp",
623 	fpupnp_methods,
624 	1,			/* no softc */
625 };
626 
627 static devclass_t fpupnp_devclass;
628 
629 DRIVER_MODULE(fpupnp, acpi, fpupnp_driver, fpupnp_devclass, 0, 0);
630 #endif	/* DEV_ISA */
631 
632 int
633 fpu_kern_enter(struct thread *td, struct fpu_kern_ctx *ctx, u_int flags)
634 {
635 	struct pcb *pcb;
636 
637 	pcb = td->td_pcb;
638 	KASSERT(!PCB_USER_FPU(pcb) || pcb->pcb_save == &pcb->pcb_user_save,
639 	    ("mangled pcb_save"));
640 	ctx->flags = 0;
641 	if ((pcb->pcb_flags & PCB_FPUINITDONE) != 0)
642 		ctx->flags |= FPU_KERN_CTX_FPUINITDONE;
643 	fpuexit(td);
644 	ctx->prev = pcb->pcb_save;
645 	pcb->pcb_save = &ctx->hwstate;
646 	pcb->pcb_flags |= PCB_KERNFPU;
647 	pcb->pcb_flags &= ~PCB_FPUINITDONE;
648 	return (0);
649 }
650 
651 int
652 fpu_kern_leave(struct thread *td, struct fpu_kern_ctx *ctx)
653 {
654 	struct pcb *pcb;
655 	register_t savecrit;
656 
657 	pcb = td->td_pcb;
658 	savecrit = intr_disable();
659 	if (curthread == PCPU_GET(fpcurthread))
660 		fpudrop();
661 	intr_restore(savecrit);
662 	pcb->pcb_save = ctx->prev;
663 	if (pcb->pcb_save == &pcb->pcb_user_save) {
664 		if ((pcb->pcb_flags & PCB_USERFPUINITDONE) != 0)
665 			pcb->pcb_flags |= PCB_FPUINITDONE;
666 		else
667 			pcb->pcb_flags &= ~PCB_FPUINITDONE;
668 		pcb->pcb_flags &= ~PCB_KERNFPU;
669 	} else {
670 		if ((ctx->flags & FPU_KERN_CTX_FPUINITDONE) != 0)
671 			pcb->pcb_flags |= PCB_FPUINITDONE;
672 		else
673 			pcb->pcb_flags &= ~PCB_FPUINITDONE;
674 		KASSERT(!PCB_USER_FPU(pcb), ("unpaired fpu_kern_leave"));
675 	}
676 	return (0);
677 }
678 
679 int
680 fpu_kern_thread(u_int flags)
681 {
682 	struct pcb *pcb;
683 
684 	pcb = PCPU_GET(curpcb);
685 	KASSERT((curthread->td_pflags & TDP_KTHREAD) != 0,
686 	    ("Only kthread may use fpu_kern_thread"));
687 	KASSERT(pcb->pcb_save == &pcb->pcb_user_save, ("mangled pcb_save"));
688 	KASSERT(PCB_USER_FPU(pcb), ("recursive call"));
689 
690 	pcb->pcb_flags |= PCB_KERNFPU;
691 	return (0);
692 }
693 
694 int
695 is_fpu_kern_thread(u_int flags)
696 {
697 
698 	if ((curthread->td_pflags & TDP_KTHREAD) == 0)
699 		return (0);
700 	return ((PCPU_GET(curpcb)->pcb_flags & PCB_KERNFPU) != 0);
701 }
702