npx.c revision 74903
1361935Sgonzo/*-
2361935Sgonzo * Copyright (c) 1990 William Jolitz.
3361935Sgonzo * Copyright (c) 1991 The Regents of the University of California.
4361935Sgonzo * All rights reserved.
5361935Sgonzo *
6361935Sgonzo * Redistribution and use in source and binary forms, with or without
7361935Sgonzo * modification, are permitted provided that the following conditions
8361935Sgonzo * are met:
9361935Sgonzo * 1. Redistributions of source code must retain the above copyright
10361935Sgonzo *    notice, this list of conditions and the following disclaimer.
11361935Sgonzo * 2. Redistributions in binary form must reproduce the above copyright
12361935Sgonzo *    notice, this list of conditions and the following disclaimer in the
13361935Sgonzo *    documentation and/or other materials provided with the distribution.
14361935Sgonzo * 3. All advertising materials mentioning features or use of this software
15361935Sgonzo *    must display the following acknowledgement:
16361935Sgonzo *	This product includes software developed by the University of
17361935Sgonzo *	California, Berkeley and its contributors.
18361935Sgonzo * 4. Neither the name of the University nor the names of its contributors
19361935Sgonzo *    may be used to endorse or promote products derived from this software
20361935Sgonzo *    without specific prior written permission.
21361935Sgonzo *
22361935Sgonzo * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
23361935Sgonzo * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24361935Sgonzo * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25361935Sgonzo * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
26361935Sgonzo * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
27361935Sgonzo * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
28361935Sgonzo * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29361935Sgonzo * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30361935Sgonzo * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31361935Sgonzo * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32361935Sgonzo * SUCH DAMAGE.
33361935Sgonzo *
34361935Sgonzo *	from: @(#)npx.c	7.2 (Berkeley) 5/12/91
35361935Sgonzo * $FreeBSD: head/sys/i386/isa/npx.c 74903 2001-03-28 03:06:10Z jhb $
36361935Sgonzo */
37361935Sgonzo
38361935Sgonzo#include "opt_debug_npx.h"
39361935Sgonzo#include "opt_math_emulate.h"
40361935Sgonzo
41361935Sgonzo#include <sys/param.h>
42361935Sgonzo#include <sys/systm.h>
43361935Sgonzo#include <sys/bus.h>
44361935Sgonzo#include <sys/ipl.h>
45361935Sgonzo#include <sys/kernel.h>
46361935Sgonzo#include <sys/malloc.h>
47361935Sgonzo#include <sys/module.h>
48361935Sgonzo#include <sys/sysctl.h>
49361935Sgonzo#include <sys/proc.h>
50361935Sgonzo#include <sys/mutex.h>
51361935Sgonzo#include <machine/bus.h>
52361935Sgonzo#include <sys/rman.h>
53361935Sgonzo#ifdef NPX_DEBUG
54361935Sgonzo#include <sys/syslog.h>
55361935Sgonzo#endif
56361935Sgonzo#include <sys/signalvar.h>
57361935Sgonzo
58361935Sgonzo#ifndef SMP
59361935Sgonzo#include <machine/asmacros.h>
60361935Sgonzo#endif
61361935Sgonzo#include <machine/cputypes.h>
62361935Sgonzo#include <machine/frame.h>
63361935Sgonzo#include <machine/md_var.h>
64361935Sgonzo#include <machine/pcb.h>
65361935Sgonzo#include <machine/psl.h>
66361935Sgonzo#ifndef SMP
67361935Sgonzo#include <machine/clock.h>
68361935Sgonzo#endif
69361935Sgonzo#include <machine/resource.h>
70361935Sgonzo#include <machine/specialreg.h>
71361935Sgonzo#include <machine/segments.h>
72361935Sgonzo
73#ifndef SMP
74#include <i386/isa/icu.h>
75#include <i386/isa/intr_machdep.h>
76#include <i386/isa/isa.h>
77#endif
78#include <isa/isavar.h>
79
80/*
81 * 387 and 287 Numeric Coprocessor Extension (NPX) Driver.
82 */
83
84/* Configuration flags. */
85#define	NPX_DISABLE_I586_OPTIMIZED_BCOPY	(1 << 0)
86#define	NPX_DISABLE_I586_OPTIMIZED_BZERO	(1 << 1)
87#define	NPX_DISABLE_I586_OPTIMIZED_COPYIO	(1 << 2)
88#define	NPX_PREFER_EMULATOR			(1 << 3)
89
90#ifdef	__GNUC__
91
92#define	fldcw(addr)		__asm("fldcw %0" : : "m" (*(addr)))
93#define	fnclex()		__asm("fnclex")
94#define	fninit()		__asm("fninit")
95#define	fnop()			__asm("fnop")
96#define	fnsave(addr)		__asm __volatile("fnsave %0" : "=m" (*(addr)))
97#define	fnstcw(addr)		__asm __volatile("fnstcw %0" : "=m" (*(addr)))
98#define	fnstsw(addr)		__asm __volatile("fnstsw %0" : "=m" (*(addr)))
99#define	fp_divide_by_0()	__asm("fldz; fld1; fdiv %st,%st(1); fnop")
100#define	frstor(addr)		__asm("frstor %0" : : "m" (*(addr)))
101#define	start_emulating()	__asm("smsw %%ax; orb %0,%%al; lmsw %%ax" \
102				      : : "n" (CR0_TS) : "ax")
103#define	stop_emulating()	__asm("clts")
104
105#else	/* not __GNUC__ */
106
107void	fldcw		__P((caddr_t addr));
108void	fnclex		__P((void));
109void	fninit		__P((void));
110void	fnop		__P((void));
111void	fnsave		__P((caddr_t addr));
112void	fnstcw		__P((caddr_t addr));
113void	fnstsw		__P((caddr_t addr));
114void	fp_divide_by_0	__P((void));
115void	frstor		__P((caddr_t addr));
116void	start_emulating	__P((void));
117void	stop_emulating	__P((void));
118
119#endif	/* __GNUC__ */
120
121typedef u_char bool_t;
122
123static	int	npx_attach	__P((device_t dev));
124	void	npx_intr	__P((void *));
125static	void	npx_identify	__P((driver_t *driver, device_t parent));
126static	int	npx_probe	__P((device_t dev));
127static	int	npx_probe1	__P((device_t dev));
128#ifdef I586_CPU
129static	long	timezero	__P((const char *funcname,
130				     void (*func)(void *buf, size_t len)));
131#endif /* I586_CPU */
132
133int	hw_float;		/* XXX currently just alias for npx_exists */
134
135SYSCTL_INT(_hw,HW_FLOATINGPT, floatingpoint,
136	CTLFLAG_RD, &hw_float, 0,
137	"Floatingpoint instructions executed in hardware");
138
139#ifndef SMP
140static	u_int			npx0_imask = 0;
141static	struct gate_descriptor	npx_idt_probeintr;
142static	int			npx_intrno;
143static	volatile u_int		npx_intrs_while_probing;
144static	volatile u_int		npx_traps_while_probing;
145#endif
146
147static	bool_t			npx_ex16;
148static	bool_t			npx_exists;
149static	bool_t			npx_irq13;
150static	int			npx_irq;	/* irq number */
151
152#ifndef SMP
153/*
154 * Special interrupt handlers.  Someday intr0-intr15 will be used to count
155 * interrupts.  We'll still need a special exception 16 handler.  The busy
156 * latch stuff in probeintr() can be moved to npxprobe().
157 */
158inthand_t probeintr;
159__asm("								\n\
160	.text							\n\
161	.p2align 2,0x90						\n\
162	.type	" __XSTRING(CNAME(probeintr)) ",@function	\n\
163" __XSTRING(CNAME(probeintr)) ":				\n\
164	ss							\n\
165	incl	" __XSTRING(CNAME(npx_intrs_while_probing)) "	\n\
166	pushl	%eax						\n\
167	movb	$0x20,%al	# EOI (asm in strings loses cpp features) \n\
168	outb	%al,$0xa0	# IO_ICU2			\n\
169	outb	%al,$0x20	# IO_ICU1			\n\
170	movb	$0,%al						\n\
171	outb	%al,$0xf0	# clear BUSY# latch		\n\
172	popl	%eax						\n\
173	iret							\n\
174");
175
176inthand_t probetrap;
177__asm("								\n\
178	.text							\n\
179	.p2align 2,0x90						\n\
180	.type	" __XSTRING(CNAME(probetrap)) ",@function	\n\
181" __XSTRING(CNAME(probetrap)) ":				\n\
182	ss							\n\
183	incl	" __XSTRING(CNAME(npx_traps_while_probing)) "	\n\
184	fnclex							\n\
185	iret							\n\
186");
187#endif /* SMP */
188
189/*
190 * Identify routine.  Create a connection point on our parent for probing.
191 */
192static void
193npx_identify(driver, parent)
194	driver_t *driver;
195	device_t parent;
196{
197	device_t child;
198
199	child = BUS_ADD_CHILD(parent, 0, "npx", 0);
200	if (child == NULL)
201		panic("npx_identify");
202}
203
204/*
205 * Probe routine.  Initialize cr0 to give correct behaviour for [f]wait
206 * whether the device exists or not (XXX should be elsewhere).  Set flags
207 * to tell npxattach() what to do.  Modify device struct if npx doesn't
208 * need to use interrupts.  Return 1 if device exists.
209 */
210static int
211npx_probe(dev)
212	device_t dev;
213{
214#ifdef SMP
215
216	if (resource_int_value("npx", 0, "irq", &npx_irq) != 0)
217		npx_irq = 13;
218	return npx_probe1(dev);
219
220#else /* SMP */
221
222	int	result;
223	critical_t	savecrit;
224	u_char	save_icu1_mask;
225	u_char	save_icu2_mask;
226	struct	gate_descriptor save_idt_npxintr;
227	struct	gate_descriptor save_idt_npxtrap;
228	/*
229	 * This routine is now just a wrapper for npxprobe1(), to install
230	 * special npx interrupt and trap handlers, to enable npx interrupts
231	 * and to disable other interrupts.  Someday isa_configure() will
232	 * install suitable handlers and run with interrupts enabled so we
233	 * won't need to do so much here.
234	 */
235	if (resource_int_value("npx", 0, "irq", &npx_irq) != 0)
236		npx_irq = 13;
237	npx_intrno = NRSVIDT + npx_irq;
238	savecrit = critical_enter();
239	save_icu1_mask = inb(IO_ICU1 + 1);
240	save_icu2_mask = inb(IO_ICU2 + 1);
241	save_idt_npxintr = idt[npx_intrno];
242	save_idt_npxtrap = idt[16];
243	outb(IO_ICU1 + 1, ~IRQ_SLAVE);
244	outb(IO_ICU2 + 1, ~(1 << (npx_irq - 8)));
245	setidt(16, probetrap, SDT_SYS386TGT, SEL_KPL, GSEL(GCODE_SEL, SEL_KPL));
246	setidt(npx_intrno, probeintr, SDT_SYS386IGT, SEL_KPL, GSEL(GCODE_SEL, SEL_KPL));
247	npx_idt_probeintr = idt[npx_intrno];
248
249	/*
250	 * XXX This looks highly bogus, but it appears that npc_probe1
251	 * needs interrupts enabled.  Does this make any difference
252	 * here?
253	 */
254	critical_exit(savecrit);
255	result = npx_probe1(dev);
256	savecrit = critical_enter();
257	outb(IO_ICU1 + 1, save_icu1_mask);
258	outb(IO_ICU2 + 1, save_icu2_mask);
259	idt[npx_intrno] = save_idt_npxintr;
260	idt[16] = save_idt_npxtrap;
261	critical_exit(savecrit);
262	return (result);
263
264#endif /* SMP */
265}
266
267static int
268npx_probe1(dev)
269	device_t dev;
270{
271#ifndef SMP
272	u_short control;
273	u_short status;
274#endif
275
276	/*
277	 * Partially reset the coprocessor, if any.  Some BIOS's don't reset
278	 * it after a warm boot.
279	 */
280	outb(0xf1, 0);		/* full reset on some systems, NOP on others */
281	outb(0xf0, 0);		/* clear BUSY# latch */
282	/*
283	 * Prepare to trap all ESC (i.e., NPX) instructions and all WAIT
284	 * instructions.  We must set the CR0_MP bit and use the CR0_TS
285	 * bit to control the trap, because setting the CR0_EM bit does
286	 * not cause WAIT instructions to trap.  It's important to trap
287	 * WAIT instructions - otherwise the "wait" variants of no-wait
288	 * control instructions would degenerate to the "no-wait" variants
289	 * after FP context switches but work correctly otherwise.  It's
290	 * particularly important to trap WAITs when there is no NPX -
291	 * otherwise the "wait" variants would always degenerate.
292	 *
293	 * Try setting CR0_NE to get correct error reporting on 486DX's.
294	 * Setting it should fail or do nothing on lesser processors.
295	 */
296	load_cr0(rcr0() | CR0_MP | CR0_NE);
297	/*
298	 * But don't trap while we're probing.
299	 */
300	stop_emulating();
301	/*
302	 * Finish resetting the coprocessor, if any.  If there is an error
303	 * pending, then we may get a bogus IRQ13, but probeintr() will handle
304	 * it OK.  Bogus halts have never been observed, but we enabled
305	 * IRQ13 and cleared the BUSY# latch early to handle them anyway.
306	 */
307	fninit();
308
309#ifdef SMP
310	/*
311	 * Exception 16 MUST work for SMP.
312	 */
313	npx_irq13 = 0;
314	npx_ex16 = hw_float = npx_exists = 1;
315	device_set_desc(dev, "math processor");
316	return (0);
317
318#else /* !SMP */
319	device_set_desc(dev, "math processor");
320
321	/*
322	 * Don't use fwait here because it might hang.
323	 * Don't use fnop here because it usually hangs if there is no FPU.
324	 */
325	DELAY(1000);		/* wait for any IRQ13 */
326#ifdef DIAGNOSTIC
327	if (npx_intrs_while_probing != 0)
328		printf("fninit caused %u bogus npx interrupt(s)\n",
329		       npx_intrs_while_probing);
330	if (npx_traps_while_probing != 0)
331		printf("fninit caused %u bogus npx trap(s)\n",
332		       npx_traps_while_probing);
333#endif
334	/*
335	 * Check for a status of mostly zero.
336	 */
337	status = 0x5a5a;
338	fnstsw(&status);
339	if ((status & 0xb8ff) == 0) {
340		/*
341		 * Good, now check for a proper control word.
342		 */
343		control = 0x5a5a;
344		fnstcw(&control);
345		if ((control & 0x1f3f) == 0x033f) {
346			hw_float = npx_exists = 1;
347			/*
348			 * We have an npx, now divide by 0 to see if exception
349			 * 16 works.
350			 */
351			control &= ~(1 << 2);	/* enable divide by 0 trap */
352			fldcw(&control);
353			npx_traps_while_probing = npx_intrs_while_probing = 0;
354			fp_divide_by_0();
355			if (npx_traps_while_probing != 0) {
356				/*
357				 * Good, exception 16 works.
358				 */
359				npx_ex16 = 1;
360				return (0);
361			}
362			if (npx_intrs_while_probing != 0) {
363				int	rid;
364				struct	resource *r;
365				void	*intr;
366				/*
367				 * Bad, we are stuck with IRQ13.
368				 */
369				npx_irq13 = 1;
370				/*
371				 * npxattach would be too late to set npx0_imask
372				 */
373				npx0_imask |= (1 << npx_irq);
374
375				/*
376				 * We allocate these resources permanently,
377				 * so there is no need to keep track of them.
378				 */
379				rid = 0;
380				r = bus_alloc_resource(dev, SYS_RES_IOPORT,
381						       &rid, IO_NPX, IO_NPX,
382						       IO_NPXSIZE, RF_ACTIVE);
383				if (r == 0)
384					panic("npx: can't get ports");
385				rid = 0;
386				r = bus_alloc_resource(dev, SYS_RES_IRQ,
387						       &rid, npx_irq, npx_irq,
388						       1, RF_ACTIVE);
389				if (r == 0)
390					panic("npx: can't get IRQ");
391				BUS_SETUP_INTR(device_get_parent(dev),
392					       dev, r,
393					       INTR_TYPE_MISC | INTR_MPSAFE,
394					       npx_intr, 0, &intr);
395				if (intr == 0)
396					panic("npx: can't create intr");
397
398				return (0);
399			}
400			/*
401			 * Worse, even IRQ13 is broken.  Use emulator.
402			 */
403		}
404	}
405	/*
406	 * Probe failed, but we want to get to npxattach to initialize the
407	 * emulator and say that it has been installed.  XXX handle devices
408	 * that aren't really devices better.
409	 */
410	return (0);
411#endif /* SMP */
412}
413
414/*
415 * Attach routine - announce which it is, and wire into system
416 */
417int
418npx_attach(dev)
419	device_t dev;
420{
421	int flags;
422
423	if (resource_int_value("npx", 0, "flags", &flags) != 0)
424		flags = 0;
425
426	if (flags)
427		device_printf(dev, "flags 0x%x ", flags);
428	if (npx_irq13) {
429		device_printf(dev, "using IRQ 13 interface\n");
430	} else {
431#if defined(MATH_EMULATE) || defined(GPL_MATH_EMULATE)
432		if (npx_ex16) {
433			if (!(flags & NPX_PREFER_EMULATOR))
434				device_printf(dev, "INT 16 interface\n");
435			else {
436				device_printf(dev, "FPU exists, but flags request "
437				    "emulator\n");
438				hw_float = npx_exists = 0;
439			}
440		} else if (npx_exists) {
441			device_printf(dev, "error reporting broken; using 387 emulator\n");
442			hw_float = npx_exists = 0;
443		} else
444			device_printf(dev, "387 emulator\n");
445#else
446		if (npx_ex16) {
447			device_printf(dev, "INT 16 interface\n");
448			if (flags & NPX_PREFER_EMULATOR) {
449				device_printf(dev, "emulator requested, but none compiled "
450				    "into kernel, using FPU\n");
451			}
452		} else
453			device_printf(dev, "no 387 emulator in kernel and no FPU!\n");
454#endif
455	}
456	npxinit(__INITIAL_NPXCW__);
457
458#ifdef I586_CPU
459	if (cpu_class == CPUCLASS_586 && npx_ex16 && npx_exists &&
460	    timezero("i586_bzero()", i586_bzero) <
461	    timezero("bzero()", bzero) * 4 / 5) {
462		if (!(flags & NPX_DISABLE_I586_OPTIMIZED_BCOPY)) {
463			bcopy_vector = i586_bcopy;
464			ovbcopy_vector = i586_bcopy;
465		}
466		if (!(flags & NPX_DISABLE_I586_OPTIMIZED_BZERO))
467			bzero = i586_bzero;
468		if (!(flags & NPX_DISABLE_I586_OPTIMIZED_COPYIO)) {
469			copyin_vector = i586_copyin;
470			copyout_vector = i586_copyout;
471		}
472	}
473#endif
474
475	return (0);		/* XXX unused */
476}
477
478/*
479 * Initialize floating point unit.
480 */
481void
482npxinit(control)
483	u_short control;
484{
485	struct save87 dummy;
486
487	if (!npx_exists)
488		return;
489	/*
490	 * fninit has the same h/w bugs as fnsave.  Use the detoxified
491	 * fnsave to throw away any junk in the fpu.  npxsave() initializes
492	 * the fpu and sets npxproc = NULL as important side effects.
493	 */
494	npxsave(&dummy);
495	stop_emulating();
496	fldcw(&control);
497	if (PCPU_GET(curpcb) != NULL)
498		fnsave(&PCPU_GET(curpcb)->pcb_savefpu);
499	start_emulating();
500}
501
502/*
503 * Free coprocessor (if we have it).
504 */
505void
506npxexit(p)
507	struct proc *p;
508{
509
510	if (p == PCPU_GET(npxproc))
511		npxsave(&PCPU_GET(curpcb)->pcb_savefpu);
512#ifdef NPX_DEBUG
513	if (npx_exists) {
514		u_int	masked_exceptions;
515
516		masked_exceptions = PCPU_GET(curpcb)->pcb_savefpu.sv_env.en_cw
517		    & PCPU_GET(curpcb)->pcb_savefpu.sv_env.en_sw & 0x7f;
518		/*
519		 * Log exceptions that would have trapped with the old
520		 * control word (overflow, divide by 0, and invalid operand).
521		 */
522		if (masked_exceptions & 0x0d)
523			log(LOG_ERR,
524	"pid %d (%s) exited with masked floating point exceptions 0x%02x\n",
525			    p->p_pid, p->p_comm, masked_exceptions);
526	}
527#endif
528}
529
530/*
531 * The following mechanism is used to ensure that the FPE_... value
532 * that is passed as a trapcode to the signal handler of the user
533 * process does not have more than one bit set.
534 *
535 * Multiple bits may be set if the user process modifies the control
536 * word while a status word bit is already set.  While this is a sign
537 * of bad coding, we have no choise than to narrow them down to one
538 * bit, since we must not send a trapcode that is not exactly one of
539 * the FPE_ macros.
540 *
541 * The mechanism has a static table with 127 entries.  Each combination
542 * of the 7 FPU status word exception bits directly translates to a
543 * position in this table, where a single FPE_... value is stored.
544 * This FPE_... value stored there is considered the "most important"
545 * of the exception bits and will be sent as the signal code.  The
546 * precedence of the bits is based upon Intel Document "Numerical
547 * Applications", Chapter "Special Computational Situations".
548 *
549 * The macro to choose one of these values does these steps: 1) Throw
550 * away status word bits that cannot be masked.  2) Throw away the bits
551 * currently masked in the control word, assuming the user isn't
552 * interested in them anymore.  3) Reinsert status word bit 7 (stack
553 * fault) if it is set, which cannot be masked but must be presered.
554 * 4) Use the remaining bits to point into the trapcode table.
555 *
556 * The 6 maskable bits in order of their preference, as stated in the
557 * above referenced Intel manual:
558 * 1  Invalid operation (FP_X_INV)
559 * 1a   Stack underflow
560 * 1b   Stack overflow
561 * 1c   Operand of unsupported format
562 * 1d   SNaN operand.
563 * 2  QNaN operand (not an exception, irrelavant here)
564 * 3  Any other invalid-operation not mentioned above or zero divide
565 *      (FP_X_INV, FP_X_DZ)
566 * 4  Denormal operand (FP_X_DNML)
567 * 5  Numeric over/underflow (FP_X_OFL, FP_X_UFL)
568 * 6  Inexact result (FP_X_IMP)
569 */
570static char fpetable[128] = {
571	0,
572	FPE_FLTINV,	/*  1 - INV */
573	FPE_FLTUND,	/*  2 - DNML */
574	FPE_FLTINV,	/*  3 - INV | DNML */
575	FPE_FLTDIV,	/*  4 - DZ */
576	FPE_FLTINV,	/*  5 - INV | DZ */
577	FPE_FLTDIV,	/*  6 - DNML | DZ */
578	FPE_FLTINV,	/*  7 - INV | DNML | DZ */
579	FPE_FLTOVF,	/*  8 - OFL */
580	FPE_FLTINV,	/*  9 - INV | OFL */
581	FPE_FLTUND,	/*  A - DNML | OFL */
582	FPE_FLTINV,	/*  B - INV | DNML | OFL */
583	FPE_FLTDIV,	/*  C - DZ | OFL */
584	FPE_FLTINV,	/*  D - INV | DZ | OFL */
585	FPE_FLTDIV,	/*  E - DNML | DZ | OFL */
586	FPE_FLTINV,	/*  F - INV | DNML | DZ | OFL */
587	FPE_FLTUND,	/* 10 - UFL */
588	FPE_FLTINV,	/* 11 - INV | UFL */
589	FPE_FLTUND,	/* 12 - DNML | UFL */
590	FPE_FLTINV,	/* 13 - INV | DNML | UFL */
591	FPE_FLTDIV,	/* 14 - DZ | UFL */
592	FPE_FLTINV,	/* 15 - INV | DZ | UFL */
593	FPE_FLTDIV,	/* 16 - DNML | DZ | UFL */
594	FPE_FLTINV,	/* 17 - INV | DNML | DZ | UFL */
595	FPE_FLTOVF,	/* 18 - OFL | UFL */
596	FPE_FLTINV,	/* 19 - INV | OFL | UFL */
597	FPE_FLTUND,	/* 1A - DNML | OFL | UFL */
598	FPE_FLTINV,	/* 1B - INV | DNML | OFL | UFL */
599	FPE_FLTDIV,	/* 1C - DZ | OFL | UFL */
600	FPE_FLTINV,	/* 1D - INV | DZ | OFL | UFL */
601	FPE_FLTDIV,	/* 1E - DNML | DZ | OFL | UFL */
602	FPE_FLTINV,	/* 1F - INV | DNML | DZ | OFL | UFL */
603	FPE_FLTRES,	/* 20 - IMP */
604	FPE_FLTINV,	/* 21 - INV | IMP */
605	FPE_FLTUND,	/* 22 - DNML | IMP */
606	FPE_FLTINV,	/* 23 - INV | DNML | IMP */
607	FPE_FLTDIV,	/* 24 - DZ | IMP */
608	FPE_FLTINV,	/* 25 - INV | DZ | IMP */
609	FPE_FLTDIV,	/* 26 - DNML | DZ | IMP */
610	FPE_FLTINV,	/* 27 - INV | DNML | DZ | IMP */
611	FPE_FLTOVF,	/* 28 - OFL | IMP */
612	FPE_FLTINV,	/* 29 - INV | OFL | IMP */
613	FPE_FLTUND,	/* 2A - DNML | OFL | IMP */
614	FPE_FLTINV,	/* 2B - INV | DNML | OFL | IMP */
615	FPE_FLTDIV,	/* 2C - DZ | OFL | IMP */
616	FPE_FLTINV,	/* 2D - INV | DZ | OFL | IMP */
617	FPE_FLTDIV,	/* 2E - DNML | DZ | OFL | IMP */
618	FPE_FLTINV,	/* 2F - INV | DNML | DZ | OFL | IMP */
619	FPE_FLTUND,	/* 30 - UFL | IMP */
620	FPE_FLTINV,	/* 31 - INV | UFL | IMP */
621	FPE_FLTUND,	/* 32 - DNML | UFL | IMP */
622	FPE_FLTINV,	/* 33 - INV | DNML | UFL | IMP */
623	FPE_FLTDIV,	/* 34 - DZ | UFL | IMP */
624	FPE_FLTINV,	/* 35 - INV | DZ | UFL | IMP */
625	FPE_FLTDIV,	/* 36 - DNML | DZ | UFL | IMP */
626	FPE_FLTINV,	/* 37 - INV | DNML | DZ | UFL | IMP */
627	FPE_FLTOVF,	/* 38 - OFL | UFL | IMP */
628	FPE_FLTINV,	/* 39 - INV | OFL | UFL | IMP */
629	FPE_FLTUND,	/* 3A - DNML | OFL | UFL | IMP */
630	FPE_FLTINV,	/* 3B - INV | DNML | OFL | UFL | IMP */
631	FPE_FLTDIV,	/* 3C - DZ | OFL | UFL | IMP */
632	FPE_FLTINV,	/* 3D - INV | DZ | OFL | UFL | IMP */
633	FPE_FLTDIV,	/* 3E - DNML | DZ | OFL | UFL | IMP */
634	FPE_FLTINV,	/* 3F - INV | DNML | DZ | OFL | UFL | IMP */
635	FPE_FLTSUB,	/* 40 - STK */
636	FPE_FLTSUB,	/* 41 - INV | STK */
637	FPE_FLTUND,	/* 42 - DNML | STK */
638	FPE_FLTSUB,	/* 43 - INV | DNML | STK */
639	FPE_FLTDIV,	/* 44 - DZ | STK */
640	FPE_FLTSUB,	/* 45 - INV | DZ | STK */
641	FPE_FLTDIV,	/* 46 - DNML | DZ | STK */
642	FPE_FLTSUB,	/* 47 - INV | DNML | DZ | STK */
643	FPE_FLTOVF,	/* 48 - OFL | STK */
644	FPE_FLTSUB,	/* 49 - INV | OFL | STK */
645	FPE_FLTUND,	/* 4A - DNML | OFL | STK */
646	FPE_FLTSUB,	/* 4B - INV | DNML | OFL | STK */
647	FPE_FLTDIV,	/* 4C - DZ | OFL | STK */
648	FPE_FLTSUB,	/* 4D - INV | DZ | OFL | STK */
649	FPE_FLTDIV,	/* 4E - DNML | DZ | OFL | STK */
650	FPE_FLTSUB,	/* 4F - INV | DNML | DZ | OFL | STK */
651	FPE_FLTUND,	/* 50 - UFL | STK */
652	FPE_FLTSUB,	/* 51 - INV | UFL | STK */
653	FPE_FLTUND,	/* 52 - DNML | UFL | STK */
654	FPE_FLTSUB,	/* 53 - INV | DNML | UFL | STK */
655	FPE_FLTDIV,	/* 54 - DZ | UFL | STK */
656	FPE_FLTSUB,	/* 55 - INV | DZ | UFL | STK */
657	FPE_FLTDIV,	/* 56 - DNML | DZ | UFL | STK */
658	FPE_FLTSUB,	/* 57 - INV | DNML | DZ | UFL | STK */
659	FPE_FLTOVF,	/* 58 - OFL | UFL | STK */
660	FPE_FLTSUB,	/* 59 - INV | OFL | UFL | STK */
661	FPE_FLTUND,	/* 5A - DNML | OFL | UFL | STK */
662	FPE_FLTSUB,	/* 5B - INV | DNML | OFL | UFL | STK */
663	FPE_FLTDIV,	/* 5C - DZ | OFL | UFL | STK */
664	FPE_FLTSUB,	/* 5D - INV | DZ | OFL | UFL | STK */
665	FPE_FLTDIV,	/* 5E - DNML | DZ | OFL | UFL | STK */
666	FPE_FLTSUB,	/* 5F - INV | DNML | DZ | OFL | UFL | STK */
667	FPE_FLTRES,	/* 60 - IMP | STK */
668	FPE_FLTSUB,	/* 61 - INV | IMP | STK */
669	FPE_FLTUND,	/* 62 - DNML | IMP | STK */
670	FPE_FLTSUB,	/* 63 - INV | DNML | IMP | STK */
671	FPE_FLTDIV,	/* 64 - DZ | IMP | STK */
672	FPE_FLTSUB,	/* 65 - INV | DZ | IMP | STK */
673	FPE_FLTDIV,	/* 66 - DNML | DZ | IMP | STK */
674	FPE_FLTSUB,	/* 67 - INV | DNML | DZ | IMP | STK */
675	FPE_FLTOVF,	/* 68 - OFL | IMP | STK */
676	FPE_FLTSUB,	/* 69 - INV | OFL | IMP | STK */
677	FPE_FLTUND,	/* 6A - DNML | OFL | IMP | STK */
678	FPE_FLTSUB,	/* 6B - INV | DNML | OFL | IMP | STK */
679	FPE_FLTDIV,	/* 6C - DZ | OFL | IMP | STK */
680	FPE_FLTSUB,	/* 6D - INV | DZ | OFL | IMP | STK */
681	FPE_FLTDIV,	/* 6E - DNML | DZ | OFL | IMP | STK */
682	FPE_FLTSUB,	/* 6F - INV | DNML | DZ | OFL | IMP | STK */
683	FPE_FLTUND,	/* 70 - UFL | IMP | STK */
684	FPE_FLTSUB,	/* 71 - INV | UFL | IMP | STK */
685	FPE_FLTUND,	/* 72 - DNML | UFL | IMP | STK */
686	FPE_FLTSUB,	/* 73 - INV | DNML | UFL | IMP | STK */
687	FPE_FLTDIV,	/* 74 - DZ | UFL | IMP | STK */
688	FPE_FLTSUB,	/* 75 - INV | DZ | UFL | IMP | STK */
689	FPE_FLTDIV,	/* 76 - DNML | DZ | UFL | IMP | STK */
690	FPE_FLTSUB,	/* 77 - INV | DNML | DZ | UFL | IMP | STK */
691	FPE_FLTOVF,	/* 78 - OFL | UFL | IMP | STK */
692	FPE_FLTSUB,	/* 79 - INV | OFL | UFL | IMP | STK */
693	FPE_FLTUND,	/* 7A - DNML | OFL | UFL | IMP | STK */
694	FPE_FLTSUB,	/* 7B - INV | DNML | OFL | UFL | IMP | STK */
695	FPE_FLTDIV,	/* 7C - DZ | OFL | UFL | IMP | STK */
696	FPE_FLTSUB,	/* 7D - INV | DZ | OFL | UFL | IMP | STK */
697	FPE_FLTDIV,	/* 7E - DNML | DZ | OFL | UFL | IMP | STK */
698	FPE_FLTSUB,	/* 7F - INV | DNML | DZ | OFL | UFL | IMP | STK */
699};
700
701/*
702 * Preserve the FP status word, clear FP exceptions, then generate a SIGFPE.
703 *
704 * Clearing exceptions is necessary mainly to avoid IRQ13 bugs.  We now
705 * depend on longjmp() restoring a usable state.  Restoring the state
706 * or examining it might fail if we didn't clear exceptions.
707 *
708 * The error code chosen will be one of the FPE_... macros. It will be
709 * sent as the second argument to old BSD-style signal handlers and as
710 * "siginfo_t->si_code" (second argument) to SA_SIGINFO signal handlers.
711 *
712 * XXX the FP state is not preserved across signal handlers.  So signal
713 * handlers cannot afford to do FP unless they preserve the state or
714 * longjmp() out.  Both preserving the state and longjmp()ing may be
715 * destroyed by IRQ13 bugs.  Clearing FP exceptions is not an acceptable
716 * solution for signals other than SIGFPE.
717 */
718void
719npx_intr(dummy)
720	void *dummy;
721{
722	int code;
723	u_short control;
724	struct intrframe *frame;
725
726	mtx_lock(&Giant);
727	if (PCPU_GET(npxproc) == NULL || !npx_exists) {
728		printf("npxintr: npxproc = %p, curproc = %p, npx_exists = %d\n",
729		       PCPU_GET(npxproc), curproc, npx_exists);
730		panic("npxintr from nowhere");
731	}
732	if (PCPU_GET(npxproc) != curproc) {
733		printf("npxintr: npxproc = %p, curproc = %p, npx_exists = %d\n",
734		       PCPU_GET(npxproc), curproc, npx_exists);
735		panic("npxintr from non-current process");
736	}
737
738	outb(0xf0, 0);
739	fnstsw(&PCPU_GET(curpcb)->pcb_savefpu.sv_ex_sw);
740	fnstcw(&control);
741	fnclex();
742
743	/*
744	 * Pass exception to process.
745	 */
746	frame = (struct intrframe *)&dummy;	/* XXX */
747	if ((ISPL(frame->if_cs) == SEL_UPL) || (frame->if_eflags & PSL_VM)) {
748		/*
749		 * Interrupt is essentially a trap, so we can afford to call
750		 * the SIGFPE handler (if any) as soon as the interrupt
751		 * returns.
752		 *
753		 * XXX little or nothing is gained from this, and plenty is
754		 * lost - the interrupt frame has to contain the trap frame
755		 * (this is otherwise only necessary for the rescheduling trap
756		 * in doreti, and the frame for that could easily be set up
757		 * just before it is used).
758		 */
759		curproc->p_md.md_regs = INTR_TO_TRAPFRAME(frame);
760		/*
761		 * Encode the appropriate code for detailed information on
762		 * this exception.
763		 */
764		code =
765		    fpetable[(PCPU_GET(curpcb)->pcb_savefpu.sv_ex_sw & ~control & 0x3f) |
766			(PCPU_GET(curpcb)->pcb_savefpu.sv_ex_sw & 0x40)];
767		trapsignal(curproc, SIGFPE, code);
768	} else {
769		/*
770		 * Nested interrupt.  These losers occur when:
771		 *	o an IRQ13 is bogusly generated at a bogus time, e.g.:
772		 *		o immediately after an fnsave or frstor of an
773		 *		  error state.
774		 *		o a couple of 386 instructions after
775		 *		  "fstpl _memvar" causes a stack overflow.
776		 *	  These are especially nasty when combined with a
777		 *	  trace trap.
778		 *	o an IRQ13 occurs at the same time as another higher-
779		 *	  priority interrupt.
780		 *
781		 * Treat them like a true async interrupt.
782		 */
783		PROC_LOCK(curproc);
784		psignal(curproc, SIGFPE);
785		PROC_UNLOCK(curproc);
786	}
787	mtx_unlock(&Giant);
788}
789
790/*
791 * Implement device not available (DNA) exception
792 *
793 * It would be better to switch FP context here (if curproc != npxproc)
794 * and not necessarily for every context switch, but it is too hard to
795 * access foreign pcb's.
796 */
797int
798npxdna()
799{
800	critical_t s;
801
802	if (!npx_exists)
803		return (0);
804	if (PCPU_GET(npxproc) != NULL) {
805		printf("npxdna: npxproc = %p, curproc = %p\n",
806		       PCPU_GET(npxproc), curproc);
807		panic("npxdna");
808	}
809	s = critical_enter();
810	stop_emulating();
811	/*
812	 * Record new context early in case frstor causes an IRQ13.
813	 */
814	PCPU_SET(npxproc, CURPROC);
815	PCPU_GET(curpcb)->pcb_savefpu.sv_ex_sw = 0;
816	/*
817	 * The following frstor may cause an IRQ13 when the state being
818	 * restored has a pending error.  The error will appear to have been
819	 * triggered by the current (npx) user instruction even when that
820	 * instruction is a no-wait instruction that should not trigger an
821	 * error (e.g., fnclex).  On at least one 486 system all of the
822	 * no-wait instructions are broken the same as frstor, so our
823	 * treatment does not amplify the breakage.  On at least one
824	 * 386/Cyrix 387 system, fnclex works correctly while frstor and
825	 * fnsave are broken, so our treatment breaks fnclex if it is the
826	 * first FPU instruction after a context switch.
827	 */
828	frstor(&PCPU_GET(curpcb)->pcb_savefpu);
829	critical_exit(s);
830
831	return (1);
832}
833
834/*
835 * Wrapper for fnsave instruction to handle h/w bugs.  If there is an error
836 * pending, then fnsave generates a bogus IRQ13 on some systems.  Force
837 * any IRQ13 to be handled immediately, and then ignore it.  This routine is
838 * often called at splhigh so it must not use many system services.  In
839 * particular, it's much easier to install a special handler than to
840 * guarantee that it's safe to use npxintr() and its supporting code.
841 */
842void
843npxsave(addr)
844	struct save87 *addr;
845{
846#ifdef SMP
847
848	stop_emulating();
849	fnsave(addr);
850	/* fnop(); */
851	start_emulating();
852	PCPU_SET(npxproc, NULL);
853
854#else /* SMP */
855
856	critical_t savecrit;
857	u_char	icu1_mask;
858	u_char	icu2_mask;
859	u_char	old_icu1_mask;
860	u_char	old_icu2_mask;
861	struct gate_descriptor	save_idt_npxintr;
862
863	savecrit = critical_enter();
864	old_icu1_mask = inb(IO_ICU1 + 1);
865	old_icu2_mask = inb(IO_ICU2 + 1);
866	save_idt_npxintr = idt[npx_intrno];
867	outb(IO_ICU1 + 1, old_icu1_mask & ~(IRQ_SLAVE | npx0_imask));
868	outb(IO_ICU2 + 1, old_icu2_mask & ~(npx0_imask >> 8));
869	idt[npx_intrno] = npx_idt_probeintr;
870	critical_exit(savecrit);
871	stop_emulating();
872	fnsave(addr);
873	fnop();
874	start_emulating();
875	savecrit = critical_enter();
876	PCPU_SET(npxproc, NULL);
877	icu1_mask = inb(IO_ICU1 + 1);	/* masks may have changed */
878	icu2_mask = inb(IO_ICU2 + 1);
879	outb(IO_ICU1 + 1,
880	     (icu1_mask & ~npx0_imask) | (old_icu1_mask & npx0_imask));
881	outb(IO_ICU2 + 1,
882	     (icu2_mask & ~(npx0_imask >> 8))
883	     | (old_icu2_mask & (npx0_imask >> 8)));
884	idt[npx_intrno] = save_idt_npxintr;
885	critical_exit(savecrit);		/* back to previous state */
886
887#endif /* SMP */
888}
889
890#ifdef I586_CPU
891static long
892timezero(funcname, func)
893	const char *funcname;
894	void (*func) __P((void *buf, size_t len));
895
896{
897	void *buf;
898#define	BUFSIZE		1048576
899	long usec;
900	struct timeval finish, start;
901
902	buf = malloc(BUFSIZE, M_TEMP, M_NOWAIT);
903	if (buf == NULL)
904		return (BUFSIZE);
905	microtime(&start);
906	(*func)(buf, BUFSIZE);
907	microtime(&finish);
908	usec = 1000000 * (finish.tv_sec - start.tv_sec) +
909	    finish.tv_usec - start.tv_usec;
910	if (usec <= 0)
911		usec = 1;
912	if (bootverbose)
913		printf("%s bandwidth = %lu kBps\n", funcname,
914		    (u_int32_t)(((BUFSIZE >> 10) * 1000000) / usec));
915	free(buf, M_TEMP);
916	return (usec);
917}
918#endif /* I586_CPU */
919
920static device_method_t npx_methods[] = {
921	/* Device interface */
922	DEVMETHOD(device_identify,	npx_identify),
923	DEVMETHOD(device_probe,		npx_probe),
924	DEVMETHOD(device_attach,	npx_attach),
925	DEVMETHOD(device_detach,	bus_generic_detach),
926	DEVMETHOD(device_shutdown,	bus_generic_shutdown),
927	DEVMETHOD(device_suspend,	bus_generic_suspend),
928	DEVMETHOD(device_resume,	bus_generic_resume),
929
930	{ 0, 0 }
931};
932
933static driver_t npx_driver = {
934	"npx",
935	npx_methods,
936	1,			/* no softc */
937};
938
939static devclass_t npx_devclass;
940
941/*
942 * We prefer to attach to the root nexus so that the usual case (exception 16)
943 * doesn't describe the processor as being `on isa'.
944 */
945DRIVER_MODULE(npx, nexus, npx_driver, npx_devclass, 0, 0);
946
947/*
948 * This sucks up the legacy ISA support assignments from PNPBIOS.
949 */
950static struct isa_pnp_id npxisa_ids[] = {
951	{ 0x040cd041, "Legacy ISA coprocessor support" }, /* PNP0C04 */
952	{ 0 }
953};
954
955static int
956npxisa_probe(device_t dev)
957{
958	int result;
959	if ((result = ISA_PNP_PROBE(device_get_parent(dev), dev, npxisa_ids)) <= 0) {
960		device_quiet(dev);
961	}
962	return(result);
963}
964
965static int
966npxisa_attach(device_t dev)
967{
968	return (0);
969}
970
971static device_method_t npxisa_methods[] = {
972	/* Device interface */
973	DEVMETHOD(device_probe,		npxisa_probe),
974	DEVMETHOD(device_attach,	npxisa_attach),
975	DEVMETHOD(device_detach,	bus_generic_detach),
976	DEVMETHOD(device_shutdown,	bus_generic_shutdown),
977	DEVMETHOD(device_suspend,	bus_generic_suspend),
978	DEVMETHOD(device_resume,	bus_generic_resume),
979
980	{ 0, 0 }
981};
982
983static driver_t npxisa_driver = {
984	"npxisa",
985	npxisa_methods,
986	1,			/* no softc */
987};
988
989static devclass_t npxisa_devclass;
990
991DRIVER_MODULE(npxisa, isa, npxisa_driver, npxisa_devclass, 0, 0);
992
993