1997-10-16 07:22:54 +04:00
|
|
|
/* $NetBSD: npx.c,v 1.60 1997/10/16 03:22:54 mycroft Exp $ */
|
1995-05-01 08:47:43 +04:00
|
|
|
|
|
|
|
#if 0
|
1996-10-13 07:19:38 +04:00
|
|
|
#define IPRINTF(x) printf x
|
1995-05-01 08:47:43 +04:00
|
|
|
#else
|
1996-10-11 04:24:36 +04:00
|
|
|
#define IPRINTF(x)
|
1995-05-01 08:47:43 +04:00
|
|
|
#endif
|
1994-10-27 07:14:23 +03:00
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
/*-
|
1995-05-01 08:47:43 +04:00
|
|
|
* Copyright (c) 1994, 1995 Charles M. Hannum. All rights reserved.
|
1993-03-21 12:45:37 +03:00
|
|
|
* Copyright (c) 1990 William Jolitz.
|
|
|
|
* Copyright (c) 1991 The Regents of the University of California.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
* 3. All advertising materials mentioning features or use of this software
|
|
|
|
* must display the following acknowledgement:
|
|
|
|
* This product includes software developed by the University of
|
|
|
|
* California, Berkeley and its contributors.
|
|
|
|
* 4. Neither the name of the University nor the names of its contributors
|
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*
|
1994-10-27 07:14:23 +03:00
|
|
|
* @(#)npx.c 7.2 (Berkeley) 5/12/91
|
1993-03-21 12:45:37 +03:00
|
|
|
*/
|
|
|
|
|
1993-12-20 08:30:55 +03:00
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/systm.h>
|
|
|
|
#include <sys/conf.h>
|
|
|
|
#include <sys/file.h>
|
|
|
|
#include <sys/proc.h>
|
1994-11-07 02:43:17 +03:00
|
|
|
#include <sys/user.h>
|
1993-12-20 08:30:55 +03:00
|
|
|
#include <sys/ioctl.h>
|
1994-03-29 08:35:37 +04:00
|
|
|
#include <sys/device.h>
|
1997-10-16 07:22:54 +04:00
|
|
|
#include <sys/vmmeter.h>
|
1993-12-20 08:30:55 +03:00
|
|
|
|
|
|
|
#include <machine/cpu.h>
|
1996-05-13 03:11:54 +04:00
|
|
|
#include <machine/intr.h>
|
1993-12-20 12:05:17 +03:00
|
|
|
#include <machine/pio.h>
|
1993-12-20 12:11:38 +03:00
|
|
|
#include <machine/cpufunc.h>
|
1993-12-20 08:30:55 +03:00
|
|
|
#include <machine/pcb.h>
|
|
|
|
#include <machine/trap.h>
|
|
|
|
#include <machine/specialreg.h>
|
|
|
|
|
1995-04-17 16:06:30 +04:00
|
|
|
#include <dev/isa/isareg.h>
|
1996-01-07 05:00:31 +03:00
|
|
|
#include <dev/isa/isavar.h>
|
|
|
|
#include <i386/isa/icu.h>
|
1993-05-10 03:02:34 +04:00
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
/*
|
|
|
|
* 387 and 287 Numeric Coprocessor Extension (NPX) Driver.
|
1995-05-01 08:47:43 +04:00
|
|
|
*
|
1995-08-06 23:31:49 +04:00
|
|
|
* We do lazy initialization and switching using the TS bit in cr0 and the
|
|
|
|
* MDP_USEDFPU bit in mdproc.
|
1995-05-01 08:47:43 +04:00
|
|
|
*
|
1995-08-06 23:31:49 +04:00
|
|
|
* DNA exceptions are handled like this:
|
1995-05-01 08:47:43 +04:00
|
|
|
*
|
1995-08-06 23:31:49 +04:00
|
|
|
* 1) If there is no NPX, return and go to the emulator.
|
|
|
|
* 2) If someone else has used the NPX, save its state into that process's PCB.
|
|
|
|
* 3a) If MDP_USEDFPU is not set, set it and initialize the NPX.
|
|
|
|
* 3b) Otherwise, reload the process's previous NPX state.
|
1995-05-01 08:47:43 +04:00
|
|
|
*
|
1995-08-06 23:31:49 +04:00
|
|
|
* When a process is created or exec()s, its saved cr0 image has the TS bit
|
|
|
|
* set and the MDP_USEDFPU bit clear. The MDP_USEDFPU bit is set when the
|
|
|
|
* process first gets a DNA and the NPX is initialized. The TS bit is turned
|
|
|
|
* off when the NPX is used, and turned on again later when the process's NPX
|
|
|
|
* state is saved.
|
1993-03-21 12:45:37 +03:00
|
|
|
*/
|
|
|
|
|
1993-05-10 03:02:34 +04:00
|
|
|
#define fldcw(addr) __asm("fldcw %0" : : "m" (*addr))
|
|
|
|
#define fnclex() __asm("fnclex")
|
|
|
|
#define fninit() __asm("fninit")
|
1995-10-06 02:06:15 +03:00
|
|
|
#define fnsave(addr) __asm("fnsave %0" : "=m" (*addr))
|
|
|
|
#define fnstcw(addr) __asm("fnstcw %0" : "=m" (*addr))
|
|
|
|
#define fnstsw(addr) __asm("fnstsw %0" : "=m" (*addr))
|
1993-05-10 03:02:34 +04:00
|
|
|
#define fp_divide_by_0() __asm("fldz; fld1; fdiv %st,%st(1); fwait")
|
|
|
|
#define frstor(addr) __asm("frstor %0" : : "m" (*addr))
|
|
|
|
#define fwait() __asm("fwait")
|
1994-11-07 02:43:17 +03:00
|
|
|
#define read_eflags() ({register u_long ef; \
|
|
|
|
__asm("pushfl; popl %0" : "=r" (ef)); \
|
|
|
|
ef;})
|
|
|
|
#define write_eflags(x) ({register u_long ef = (x); \
|
|
|
|
__asm("pushl %0; popfl" : : "r" (ef));})
|
1995-05-01 08:47:43 +04:00
|
|
|
#define clts() __asm("clts")
|
|
|
|
#define stts() lcr0(rcr0() | CR0_TS)
|
1993-05-10 03:02:34 +04:00
|
|
|
|
1995-08-06 21:59:10 +04:00
|
|
|
int npxdna __P((struct proc *));
|
1995-05-01 08:47:43 +04:00
|
|
|
void npxexit __P((void));
|
|
|
|
int npxintr __P((void *));
|
|
|
|
static int npxprobe1 __P((struct isa_attach_args *));
|
|
|
|
static void npxsave1 __P((void));
|
1993-05-10 03:02:34 +04:00
|
|
|
|
1995-01-26 09:14:14 +03:00
|
|
|
struct npx_softc {
|
|
|
|
struct device sc_dev;
|
1995-04-17 16:06:30 +04:00
|
|
|
void *sc_ih;
|
1995-01-26 09:14:14 +03:00
|
|
|
};
|
|
|
|
|
1994-11-04 02:21:24 +03:00
|
|
|
int npxprobe __P((struct device *, void *, void *));
|
|
|
|
void npxattach __P((struct device *, struct device *, void *));
|
1994-03-29 08:35:37 +04:00
|
|
|
|
1996-03-17 04:26:49 +03:00
|
|
|
struct cfattach npx_ca = {
|
|
|
|
sizeof(struct npx_softc), npxprobe, npxattach
|
|
|
|
};
|
|
|
|
|
|
|
|
struct cfdriver npx_cd = {
|
|
|
|
NULL, "npx", DV_DULL
|
1993-03-21 12:45:37 +03:00
|
|
|
};
|
|
|
|
|
1994-11-30 07:42:07 +03:00
|
|
|
enum npx_type {
|
|
|
|
NPX_NONE = 0,
|
|
|
|
NPX_INTERRUPT,
|
|
|
|
NPX_EXCEPTION,
|
|
|
|
NPX_BROKEN,
|
|
|
|
};
|
|
|
|
|
1995-05-01 08:47:43 +04:00
|
|
|
struct proc *npxproc;
|
|
|
|
|
1994-11-30 07:42:07 +03:00
|
|
|
static enum npx_type npx_type;
|
1994-11-07 06:39:37 +03:00
|
|
|
static int npx_nointr;
|
1993-05-10 03:02:34 +04:00
|
|
|
static volatile u_int npx_intrs_while_probing;
|
|
|
|
static volatile u_int npx_traps_while_probing;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Special interrupt handlers. Someday intr0-intr15 will be used to count
|
|
|
|
* interrupts. We'll still need a special exception 16 handler. The busy
|
|
|
|
* latch stuff in probintr() can be moved to npxprobe().
|
|
|
|
*/
|
1995-05-01 08:47:43 +04:00
|
|
|
void probeintr __P((void));
|
1994-11-07 06:39:37 +03:00
|
|
|
asm ("
|
|
|
|
.text
|
|
|
|
_probeintr:
|
|
|
|
ss
|
|
|
|
incl _npx_intrs_while_probing
|
|
|
|
pushl %eax
|
|
|
|
movb $0x20,%al # EOI (asm in strings loses cpp features)
|
|
|
|
outb %al,$0xa0 # IO_ICU2
|
|
|
|
outb %al,$0x20 # IO_ICU1
|
|
|
|
movb $0,%al
|
|
|
|
outb %al,$0xf0 # clear BUSY# latch
|
|
|
|
popl %eax
|
|
|
|
iret
|
|
|
|
");
|
1993-05-10 03:02:34 +04:00
|
|
|
|
1995-05-01 08:47:43 +04:00
|
|
|
void probetrap __P((void));
|
1994-11-07 06:39:37 +03:00
|
|
|
asm ("
|
1993-05-10 03:02:34 +04:00
|
|
|
.text
|
|
|
|
_probetrap:
|
|
|
|
ss
|
|
|
|
incl _npx_traps_while_probing
|
|
|
|
fnclex
|
|
|
|
iret
|
|
|
|
");
|
1993-03-21 12:45:37 +03:00
|
|
|
|
1995-05-01 08:47:43 +04:00
|
|
|
static inline int
|
1994-11-30 07:42:07 +03:00
|
|
|
npxprobe1(ia)
|
|
|
|
struct isa_attach_args *ia;
|
|
|
|
{
|
|
|
|
int control;
|
|
|
|
int status;
|
|
|
|
|
|
|
|
ia->ia_iosize = 16;
|
|
|
|
ia->ia_msize = 0;
|
|
|
|
|
1993-05-10 03:02:34 +04:00
|
|
|
/*
|
|
|
|
* Finish resetting the coprocessor, if any. If there is an error
|
|
|
|
* pending, then we may get a bogus IRQ13, but probeintr() will handle
|
|
|
|
* it OK. Bogus halts have never been observed, but we enabled
|
|
|
|
* IRQ13 and cleared the BUSY# latch early to handle them anyway.
|
|
|
|
*/
|
|
|
|
fninit();
|
1994-03-06 20:18:43 +03:00
|
|
|
delay(1000); /* wait for any IRQ13 (fwait might hang) */
|
1994-11-30 07:42:07 +03:00
|
|
|
|
1993-05-10 03:02:34 +04:00
|
|
|
/*
|
|
|
|
* Check for a status of mostly zero.
|
|
|
|
*/
|
|
|
|
status = 0x5a5a;
|
|
|
|
fnstsw(&status);
|
|
|
|
if ((status & 0xb8ff) == 0) {
|
|
|
|
/*
|
|
|
|
* Good, now check for a proper control word.
|
|
|
|
*/
|
|
|
|
control = 0x5a5a;
|
|
|
|
fnstcw(&control);
|
|
|
|
if ((control & 0x1f3f) == 0x033f) {
|
|
|
|
/*
|
|
|
|
* We have an npx, now divide by 0 to see if exception
|
|
|
|
* 16 works.
|
|
|
|
*/
|
|
|
|
control &= ~(1 << 2); /* enable divide by 0 trap */
|
|
|
|
fldcw(&control);
|
|
|
|
npx_traps_while_probing = npx_intrs_while_probing = 0;
|
|
|
|
fp_divide_by_0();
|
|
|
|
if (npx_traps_while_probing != 0) {
|
|
|
|
/*
|
|
|
|
* Good, exception 16 works.
|
|
|
|
*/
|
1994-11-30 07:42:07 +03:00
|
|
|
npx_type = NPX_EXCEPTION;
|
1994-11-04 21:34:50 +03:00
|
|
|
ia->ia_irq = IRQUNK; /* zap the interrupt */
|
1994-11-30 07:42:07 +03:00
|
|
|
} else if (npx_intrs_while_probing != 0) {
|
1993-05-10 03:02:34 +04:00
|
|
|
/*
|
|
|
|
* Bad, we are stuck with IRQ13.
|
|
|
|
*/
|
1994-11-30 07:42:07 +03:00
|
|
|
npx_type = NPX_INTERRUPT;
|
|
|
|
} else {
|
|
|
|
/*
|
|
|
|
* Worse, even IRQ13 is broken. Use emulator.
|
|
|
|
*/
|
|
|
|
npx_type = NPX_BROKEN;
|
|
|
|
ia->ia_irq = IRQUNK;
|
1993-05-10 03:02:34 +04:00
|
|
|
}
|
1994-11-30 07:42:07 +03:00
|
|
|
return 1;
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
}
|
1993-05-10 03:02:34 +04:00
|
|
|
/*
|
1994-11-30 07:42:07 +03:00
|
|
|
* Probe failed. There is no usable FPU.
|
1993-05-10 03:02:34 +04:00
|
|
|
*/
|
1994-11-30 07:42:07 +03:00
|
|
|
npx_type = NPX_NONE;
|
|
|
|
return 0;
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
|
1995-05-01 08:47:43 +04:00
|
|
|
/*
|
|
|
|
* Probe routine. Initialize cr0 to give correct behaviour for [f]wait
|
|
|
|
* whether the device exists or not (XXX should be elsewhere). Set flags
|
|
|
|
* to tell npxattach() what to do. Modify device struct if npx doesn't
|
|
|
|
* need to use interrupts. Return 1 if device exists.
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
npxprobe(parent, match, aux)
|
|
|
|
struct device *parent;
|
|
|
|
void *match, *aux;
|
|
|
|
{
|
|
|
|
struct isa_attach_args *ia = aux;
|
|
|
|
int irq;
|
|
|
|
int result;
|
|
|
|
u_long save_eflags;
|
|
|
|
unsigned save_imen;
|
|
|
|
struct gate_descriptor save_idt_npxintr;
|
|
|
|
struct gate_descriptor save_idt_npxtrap;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This routine is now just a wrapper for npxprobe1(), to install
|
|
|
|
* special npx interrupt and trap handlers, to enable npx interrupts
|
|
|
|
* and to disable other interrupts. Someday isa_configure() will
|
|
|
|
* install suitable handlers and run with interrupts enabled so we
|
|
|
|
* won't need to do so much here.
|
|
|
|
*/
|
|
|
|
irq = NRSVIDT + ia->ia_irq;
|
|
|
|
save_eflags = read_eflags();
|
|
|
|
disable_intr();
|
|
|
|
save_idt_npxintr = idt[irq];
|
|
|
|
save_idt_npxtrap = idt[16];
|
|
|
|
setgate(&idt[irq], probeintr, 0, SDT_SYS386IGT, SEL_KPL);
|
|
|
|
setgate(&idt[16], probetrap, 0, SDT_SYS386TGT, SEL_KPL);
|
|
|
|
save_imen = imen;
|
|
|
|
imen = ~((1 << IRQ_SLAVE) | (1 << ia->ia_irq));
|
|
|
|
SET_ICUS();
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Partially reset the coprocessor, if any. Some BIOS's don't reset
|
|
|
|
* it after a warm boot.
|
|
|
|
*/
|
|
|
|
outb(0xf1, 0); /* full reset on some systems, NOP on others */
|
|
|
|
delay(1000);
|
|
|
|
outb(0xf0, 0); /* clear BUSY# latch */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* We set CR0 in locore to trap all ESC and WAIT instructions.
|
|
|
|
* We have to turn off the CR0_EM bit temporarily while probing.
|
|
|
|
*/
|
|
|
|
lcr0(rcr0() & ~(CR0_EM|CR0_TS));
|
|
|
|
enable_intr();
|
|
|
|
result = npxprobe1(ia);
|
|
|
|
disable_intr();
|
|
|
|
lcr0(rcr0() | (CR0_EM|CR0_TS));
|
|
|
|
|
|
|
|
imen = save_imen;
|
|
|
|
SET_ICUS();
|
|
|
|
idt[irq] = save_idt_npxintr;
|
|
|
|
idt[16] = save_idt_npxtrap;
|
|
|
|
write_eflags(save_eflags);
|
|
|
|
return (result);
|
|
|
|
}
|
|
|
|
|
1994-11-30 07:42:07 +03:00
|
|
|
int npx586bug1 __P((int, int));
|
|
|
|
asm ("
|
|
|
|
.text
|
|
|
|
_npx586bug1:
|
|
|
|
fildl 4(%esp) # x
|
|
|
|
fildl 8(%esp) # y
|
|
|
|
fld %st(1)
|
|
|
|
fdiv %st(1),%st # x/y
|
|
|
|
fmulp %st,%st(1) # (x/y)*y
|
|
|
|
fsubrp %st,%st(1) # x-(x/y)*y
|
|
|
|
pushl $0
|
|
|
|
fistpl (%esp)
|
|
|
|
popl %eax
|
|
|
|
ret
|
|
|
|
");
|
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
/*
|
|
|
|
* Attach routine - announce which it is, and wire into system
|
|
|
|
*/
|
1994-03-29 08:35:37 +04:00
|
|
|
void
|
|
|
|
npxattach(parent, self, aux)
|
|
|
|
struct device *parent, *self;
|
|
|
|
void *aux;
|
1993-03-21 12:45:37 +03:00
|
|
|
{
|
1995-01-26 09:14:14 +03:00
|
|
|
struct npx_softc *sc = (void *)self;
|
1994-04-07 10:48:19 +04:00
|
|
|
struct isa_attach_args *ia = aux;
|
1994-03-29 08:35:37 +04:00
|
|
|
|
1994-11-30 07:42:07 +03:00
|
|
|
switch (npx_type) {
|
|
|
|
case NPX_INTERRUPT:
|
1996-10-13 07:19:38 +04:00
|
|
|
printf("\n");
|
1995-05-04 04:30:56 +04:00
|
|
|
lcr0(rcr0() & ~CR0_NE);
|
1996-04-12 02:15:08 +04:00
|
|
|
sc->sc_ih = isa_intr_establish(ia->ia_ic, ia->ia_irq,
|
|
|
|
IST_EDGE, IPL_NONE, npxintr, 0);
|
1994-11-30 07:42:07 +03:00
|
|
|
break;
|
|
|
|
case NPX_EXCEPTION:
|
1996-10-13 07:19:38 +04:00
|
|
|
printf(": using exception 16\n");
|
1994-11-30 07:42:07 +03:00
|
|
|
break;
|
|
|
|
case NPX_BROKEN:
|
1996-10-13 07:19:38 +04:00
|
|
|
printf(": error reporting broken; not using\n");
|
1994-11-30 07:42:07 +03:00
|
|
|
npx_type = NPX_NONE;
|
|
|
|
return;
|
1996-05-03 23:14:50 +04:00
|
|
|
case NPX_NONE:
|
|
|
|
return;
|
1993-05-20 18:35:11 +04:00
|
|
|
}
|
1994-11-30 07:42:07 +03:00
|
|
|
|
1995-05-01 08:47:43 +04:00
|
|
|
lcr0(rcr0() & ~(CR0_EM|CR0_TS));
|
1994-11-30 07:42:07 +03:00
|
|
|
fninit();
|
|
|
|
if (npx586bug1(4195835, 3145727) != 0)
|
1996-10-13 07:19:38 +04:00
|
|
|
printf("WARNING: Pentium FDIV bug detected!\n");
|
1995-08-06 10:05:28 +04:00
|
|
|
lcr0(rcr0() | (CR0_TS));
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
1993-05-10 03:02:34 +04:00
|
|
|
* Record the FPU state and reinitialize it all except for the control word.
|
|
|
|
* Then generate a SIGFPE.
|
|
|
|
*
|
|
|
|
* Reinitializing the state allows naive SIGFPE handlers to longjmp without
|
|
|
|
* doing any fixups.
|
|
|
|
*
|
|
|
|
* XXX there is currently no way to pass the full error state to signal
|
|
|
|
* handlers, and if this is a nested interrupt there is no way to pass even
|
|
|
|
* a status code! So there is no way to have a non-naive SIGFPE handler. At
|
|
|
|
* best a handler could do an fninit followed by an fldcw of a static value.
|
|
|
|
* fnclex would be of little use because it would leave junk on the FPU stack.
|
|
|
|
* Returning from the handler would be even less safe than usual because
|
|
|
|
* IRQ13 exception handling makes exceptions even less precise than usual.
|
1993-03-21 12:45:37 +03:00
|
|
|
*/
|
1994-04-07 10:48:19 +04:00
|
|
|
int
|
1995-04-17 16:06:30 +04:00
|
|
|
npxintr(arg)
|
|
|
|
void *arg;
|
1993-05-10 03:02:34 +04:00
|
|
|
{
|
1994-11-07 02:43:17 +03:00
|
|
|
register struct proc *p = npxproc;
|
|
|
|
register struct save87 *addr;
|
1995-04-17 16:06:30 +04:00
|
|
|
struct intrframe *frame = arg;
|
1993-03-21 12:45:37 +03:00
|
|
|
int code;
|
|
|
|
|
1993-12-20 08:30:55 +03:00
|
|
|
cnt.v_trap++;
|
1996-10-11 04:24:36 +04:00
|
|
|
IPRINTF(("Intr"));
|
1993-12-20 08:30:55 +03:00
|
|
|
|
1994-11-30 07:42:07 +03:00
|
|
|
if (p == 0 || npx_type == NPX_NONE) {
|
1996-10-13 07:19:38 +04:00
|
|
|
printf("npxintr: p = %p, curproc = %p, npx_type = %d\n",
|
1996-10-11 04:24:36 +04:00
|
|
|
p, curproc, npx_type);
|
1993-05-10 03:02:34 +04:00
|
|
|
panic("npxintr from nowhere");
|
|
|
|
}
|
1994-11-07 02:43:17 +03:00
|
|
|
/*
|
1994-11-07 06:39:37 +03:00
|
|
|
* Clear the interrupt latch.
|
|
|
|
*/
|
|
|
|
outb(0xf0, 0);
|
|
|
|
/*
|
|
|
|
* If we're saving, ignore the interrupt. The FPU will happily
|
|
|
|
* generate another one when we restore the state later.
|
|
|
|
*/
|
|
|
|
if (npx_nointr != 0)
|
|
|
|
return (1);
|
|
|
|
/*
|
|
|
|
* Find the address of npxproc's savefpu. This is not necessarily
|
|
|
|
* the one in curpcb.
|
1994-11-07 02:43:17 +03:00
|
|
|
*/
|
|
|
|
addr = &p->p_addr->u_pcb.pcb_savefpu;
|
1993-05-10 03:02:34 +04:00
|
|
|
/*
|
|
|
|
* Save state. This does an implied fninit. It had better not halt
|
|
|
|
* the cpu or we'll hang.
|
|
|
|
*/
|
1994-11-07 02:43:17 +03:00
|
|
|
fnsave(addr);
|
1993-05-10 03:02:34 +04:00
|
|
|
fwait();
|
|
|
|
/*
|
|
|
|
* Restore control word (was clobbered by fnsave).
|
|
|
|
*/
|
1994-11-07 02:43:17 +03:00
|
|
|
fldcw(&addr->sv_env.en_cw);
|
1993-05-10 03:02:34 +04:00
|
|
|
fwait();
|
|
|
|
/*
|
|
|
|
* Remember the exception status word and tag word. The current
|
|
|
|
* (almost fninit'ed) fpu state is in the fpu and the exception
|
|
|
|
* state just saved will soon be junk. However, the implied fninit
|
|
|
|
* doesn't change the error pointers or register contents, and we
|
|
|
|
* preserved the control word and will copy the status and tag
|
|
|
|
* words, so the complete exception state can be recovered.
|
|
|
|
*/
|
1994-11-07 02:43:17 +03:00
|
|
|
addr->sv_ex_sw = addr->sv_env.en_sw;
|
|
|
|
addr->sv_ex_tw = addr->sv_env.en_tw;
|
1993-03-21 12:45:37 +03:00
|
|
|
|
1993-05-10 03:02:34 +04:00
|
|
|
/*
|
1994-11-07 02:43:17 +03:00
|
|
|
* Pass exception to process. If it's the current process, try to do
|
|
|
|
* it immediately.
|
1993-05-10 03:02:34 +04:00
|
|
|
*/
|
1995-10-10 07:45:03 +03:00
|
|
|
if (p == curproc && USERMODE(frame->if_cs, frame->if_eflags)) {
|
1993-05-10 03:02:34 +04:00
|
|
|
/*
|
|
|
|
* Interrupt is essentially a trap, so we can afford to call
|
|
|
|
* the SIGFPE handler (if any) as soon as the interrupt
|
|
|
|
* returns.
|
|
|
|
*
|
|
|
|
* XXX little or nothing is gained from this, and plenty is
|
|
|
|
* lost - the interrupt frame has to contain the trap frame
|
|
|
|
* (this is otherwise only necessary for the rescheduling trap
|
|
|
|
* in doreti, and the frame for that could easily be set up
|
|
|
|
* just before it is used).
|
|
|
|
*/
|
1995-05-01 12:25:30 +04:00
|
|
|
p->p_md.md_regs = (struct trapframe *)&frame->if_es;
|
1993-03-21 12:45:37 +03:00
|
|
|
#ifdef notyet
|
1993-05-10 03:02:34 +04:00
|
|
|
/*
|
|
|
|
* Encode the appropriate code for detailed information on
|
|
|
|
* this exception.
|
|
|
|
*/
|
1994-11-07 02:43:17 +03:00
|
|
|
code = XXX_ENCODE(addr->sv_ex_sw);
|
1993-03-21 12:45:37 +03:00
|
|
|
#else
|
1993-05-10 03:02:34 +04:00
|
|
|
code = 0; /* XXX */
|
1993-03-21 12:45:37 +03:00
|
|
|
#endif
|
1994-11-07 02:43:17 +03:00
|
|
|
trapsignal(p, SIGFPE, code);
|
1993-03-21 12:45:37 +03:00
|
|
|
} else {
|
1993-05-10 03:02:34 +04:00
|
|
|
/*
|
|
|
|
* Nested interrupt. These losers occur when:
|
|
|
|
* o an IRQ13 is bogusly generated at a bogus time, e.g.:
|
|
|
|
* o immediately after an fnsave or frstor of an
|
|
|
|
* error state.
|
|
|
|
* o a couple of 386 instructions after
|
|
|
|
* "fstpl _memvar" causes a stack overflow.
|
|
|
|
* These are especially nasty when combined with a
|
|
|
|
* trace trap.
|
|
|
|
* o an IRQ13 occurs at the same time as another higher-
|
|
|
|
* priority interrupt.
|
|
|
|
*
|
|
|
|
* Treat them like a true async interrupt.
|
|
|
|
*/
|
1994-11-07 02:43:17 +03:00
|
|
|
psignal(p, SIGFPE);
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
1994-04-07 10:48:19 +04:00
|
|
|
|
1994-11-07 06:39:37 +03:00
|
|
|
return (1);
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
|
1995-05-01 08:47:43 +04:00
|
|
|
/*
|
|
|
|
* Wrapper for fnsave instruction to handle h/w bugs. If there is an error
|
|
|
|
* pending, then fnsave generates a bogus IRQ13 on some systems. Force any
|
|
|
|
* IRQ13 to be handled immediately, and then ignore it.
|
|
|
|
*
|
|
|
|
* This routine is always called at spl0. If it might called with the NPX
|
|
|
|
* interrupt masked, it would be necessary to forcibly unmask the NPX interrupt
|
|
|
|
* so that it could succeed.
|
|
|
|
*/
|
|
|
|
static inline void
|
|
|
|
npxsave1()
|
|
|
|
{
|
|
|
|
register struct pcb *pcb;
|
|
|
|
|
|
|
|
npx_nointr = 1;
|
|
|
|
pcb = &npxproc->p_addr->u_pcb;
|
|
|
|
fnsave(&pcb->pcb_savefpu);
|
|
|
|
pcb->pcb_cr0 |= CR0_TS;
|
|
|
|
fwait();
|
|
|
|
npx_nointr = 0;
|
|
|
|
}
|
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
/*
|
|
|
|
* Implement device not available (DNA) exception
|
1993-05-10 03:02:34 +04:00
|
|
|
*
|
1994-11-07 06:39:37 +03:00
|
|
|
* If the we were the last process to use the FPU, we can simply return.
|
|
|
|
* Otherwise, we save the previous state, if necessary, and restore our last
|
|
|
|
* saved state.
|
1993-03-21 12:45:37 +03:00
|
|
|
*/
|
1993-05-10 03:02:34 +04:00
|
|
|
int
|
1995-08-06 21:59:10 +04:00
|
|
|
npxdna(p)
|
|
|
|
struct proc *p;
|
1993-05-10 03:02:34 +04:00
|
|
|
{
|
1995-08-06 23:48:58 +04:00
|
|
|
static u_short control = __INITIAL_NPXCW__;
|
1994-11-07 02:43:17 +03:00
|
|
|
|
1995-08-06 10:05:28 +04:00
|
|
|
if (npx_type == NPX_NONE) {
|
1996-10-11 04:24:36 +04:00
|
|
|
IPRINTF(("Emul"));
|
1993-05-10 03:02:34 +04:00
|
|
|
return (0);
|
1995-05-01 08:47:43 +04:00
|
|
|
}
|
1994-11-30 07:42:07 +03:00
|
|
|
|
1994-11-07 06:39:37 +03:00
|
|
|
#ifdef DIAGNOSTIC
|
|
|
|
if (cpl != 0 || npx_nointr != 0)
|
1995-05-01 08:47:43 +04:00
|
|
|
panic("npxdna: masked");
|
1994-11-07 06:39:37 +03:00
|
|
|
#endif
|
1995-08-06 23:48:58 +04:00
|
|
|
|
1995-08-06 21:59:10 +04:00
|
|
|
p->p_addr->u_pcb.pcb_cr0 &= ~CR0_TS;
|
1995-05-04 03:09:37 +04:00
|
|
|
clts();
|
1995-08-06 23:48:58 +04:00
|
|
|
|
|
|
|
if ((p->p_md.md_flags & MDP_USEDFPU) == 0) {
|
|
|
|
p->p_md.md_flags |= MDP_USEDFPU;
|
1996-10-11 04:24:36 +04:00
|
|
|
IPRINTF(("Init"));
|
1995-08-06 23:48:58 +04:00
|
|
|
if (npxproc != 0 && npxproc != p)
|
|
|
|
npxsave1();
|
|
|
|
else {
|
|
|
|
npx_nointr = 1;
|
|
|
|
fninit();
|
|
|
|
fwait();
|
|
|
|
npx_nointr = 0;
|
|
|
|
}
|
|
|
|
npxproc = p;
|
|
|
|
fldcw(&control);
|
|
|
|
} else {
|
|
|
|
if (npxproc != 0) {
|
1995-05-01 08:47:43 +04:00
|
|
|
#ifdef DIAGNOSTIC
|
1995-08-06 23:48:58 +04:00
|
|
|
if (npxproc == p)
|
|
|
|
panic("npxdna: same process");
|
1995-05-01 08:47:43 +04:00
|
|
|
#endif
|
1996-10-11 04:24:36 +04:00
|
|
|
IPRINTF(("Save"));
|
1995-08-06 23:48:58 +04:00
|
|
|
npxsave1();
|
|
|
|
}
|
|
|
|
npxproc = p;
|
|
|
|
/*
|
|
|
|
* The following frstor may cause an IRQ13 when the state being
|
|
|
|
* restored has a pending error. The error will appear to have
|
|
|
|
* been triggered by the current (npx) user instruction even
|
|
|
|
* when that instruction is a no-wait instruction that should
|
|
|
|
* not trigger an error (e.g., fnclex). On at least one 486
|
|
|
|
* system all of the no-wait instructions are broken the same
|
|
|
|
* as frstor, so our treatment does not amplify the breakage.
|
|
|
|
* On at least one 386/Cyrix 387 system, fnclex works correctly
|
|
|
|
* while frstor and fnsave are broken, so our treatment breaks
|
|
|
|
* fnclex if it is the first FPU instruction after a context
|
|
|
|
* switch.
|
|
|
|
*/
|
|
|
|
frstor(&p->p_addr->u_pcb.pcb_savefpu);
|
1995-05-04 03:09:37 +04:00
|
|
|
}
|
1995-08-06 23:48:58 +04:00
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
return (1);
|
|
|
|
}
|
1993-05-10 03:02:34 +04:00
|
|
|
|
1995-08-06 09:32:59 +04:00
|
|
|
/*
|
|
|
|
* Drop the current FPU state on the floor.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
npxdrop()
|
|
|
|
{
|
|
|
|
|
1995-08-06 21:59:10 +04:00
|
|
|
stts();
|
1995-08-06 10:05:28 +04:00
|
|
|
npxproc->p_addr->u_pcb.pcb_cr0 |= CR0_TS;
|
1995-08-06 09:32:59 +04:00
|
|
|
npxproc = 0;
|
|
|
|
}
|
|
|
|
|
1995-05-04 04:00:25 +04:00
|
|
|
/*
|
|
|
|
* Save npxproc's FPU state.
|
|
|
|
*
|
|
|
|
* The FNSAVE instruction clears the FPU state. Rather than reloading the FPU
|
|
|
|
* immediately, we clear npxproc and turn on CR0_TS to force a DNA and a reload
|
|
|
|
* of the FPU state the next time we try to use it. This routine is only
|
|
|
|
* called when forking or core dump, so this algorithm at worst forces us to
|
|
|
|
* trap once per fork(), and at best saves us a reload once per fork().
|
|
|
|
*/
|
1993-05-10 03:02:34 +04:00
|
|
|
void
|
1995-05-01 08:47:43 +04:00
|
|
|
npxsave()
|
1993-05-10 03:02:34 +04:00
|
|
|
{
|
|
|
|
|
1994-11-07 06:39:37 +03:00
|
|
|
#ifdef DIAGNOSTIC
|
|
|
|
if (cpl != 0 || npx_nointr != 0)
|
1995-05-01 08:47:43 +04:00
|
|
|
panic("npxsave: masked");
|
1994-11-07 06:39:37 +03:00
|
|
|
#endif
|
1996-10-11 04:24:36 +04:00
|
|
|
IPRINTF(("Fork"));
|
1995-05-04 03:09:37 +04:00
|
|
|
clts();
|
1995-05-01 08:47:43 +04:00
|
|
|
npxsave1();
|
1995-08-06 23:48:58 +04:00
|
|
|
stts();
|
1994-11-07 02:43:17 +03:00
|
|
|
npxproc = 0;
|
|
|
|
}
|