fpu.h revision 1.8 1 1.8 matt /* $NetBSD: fpu.h,v 1.8 2002/11/03 22:36:22 matt Exp $ */
2 1.1 ws
3 1.1 ws /*-
4 1.1 ws * Copyright (C) 1996 Wolfgang Solfrank.
5 1.1 ws * Copyright (C) 1996 TooLs GmbH.
6 1.1 ws * All rights reserved.
7 1.1 ws *
8 1.1 ws * Redistribution and use in source and binary forms, with or without
9 1.1 ws * modification, are permitted provided that the following conditions
10 1.1 ws * are met:
11 1.1 ws * 1. Redistributions of source code must retain the above copyright
12 1.1 ws * notice, this list of conditions and the following disclaimer.
13 1.1 ws * 2. Redistributions in binary form must reproduce the above copyright
14 1.1 ws * notice, this list of conditions and the following disclaimer in the
15 1.1 ws * documentation and/or other materials provided with the distribution.
16 1.1 ws * 3. All advertising materials mentioning features or use of this software
17 1.1 ws * must display the following acknowledgement:
18 1.1 ws * This product includes software developed by TooLs GmbH.
19 1.1 ws * 4. The name of TooLs GmbH may not be used to endorse or promote products
20 1.1 ws * derived from this software without specific prior written permission.
21 1.1 ws *
22 1.1 ws * THIS SOFTWARE IS PROVIDED BY TOOLS GMBH ``AS IS'' AND ANY EXPRESS OR
23 1.1 ws * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
24 1.1 ws * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
25 1.1 ws * IN NO EVENT SHALL TOOLS GMBH BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
26 1.1 ws * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
27 1.1 ws * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
28 1.1 ws * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
29 1.1 ws * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
30 1.1 ws * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
31 1.1 ws * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32 1.1 ws */
33 1.8 matt #ifndef _POWERPC_FPU_H_
34 1.8 matt #define _POWERPC_FPU_H_
35 1.1 ws
36 1.4 simonb #define FPSCR_FX 0x80000000 /* Exception Summary */
37 1.4 simonb #define FPSCR_FEX 0x40000000 /* Enabled Exception Summary */
38 1.4 simonb #define FPSCR_VX 0x20000000 /* Invalid Operation Exception Summary */
39 1.4 simonb #define FPSCR_OX 0x10000000 /* Overflow Exception */
40 1.4 simonb #define FPSCR_UX 0x08000000 /* Undrflow Exception */
41 1.4 simonb #define FPSCR_ZX 0x04000000 /* Zero Divide Exception */
42 1.4 simonb #define FPSCR_XX 0x02000000 /* Inexact Exception */
43 1.4 simonb #define FPSCR_VXSNAN 0x01000000 /* Invalid Op (NAN) */
44 1.4 simonb #define FPSCR_VXISI 0x00800000 /* Invalid Op (INF-INF) */
45 1.4 simonb #define FPSCR_VXIDI 0x00400000 /* Invalid Op (INF/INF) */
46 1.4 simonb #define FPSCR_VXZDZ 0x00200000 /* Invalid Op (0/0) */
47 1.4 simonb #define FPSCR_VXIMZ 0x00100000 /* Invalid Op (INFx0) */
48 1.4 simonb #define FPSCR_VXVC 0x00080000 /* Invalid Compare Op */
49 1.4 simonb #define FPSCR_FR 0x00040000 /* Fraction Rounded */
50 1.4 simonb #define FPSCR_FI 0x00020000 /* Fraction Inexact */
51 1.4 simonb #define FPSCR_FPRF 0x0001f000
52 1.4 simonb #define FPSCR_C 0x00010000 /* FP Class Descriptor */
53 1.2 danw #define FPSCR_FPCC 0x0000f000
54 1.4 simonb #define FPSCR_FL 0x00008000 /* < */
55 1.4 simonb #define FPSCR_FG 0x00004000 /* > */
56 1.4 simonb #define FPSCR_FE 0x00002000 /* == */
57 1.4 simonb #define FPSCR_FU 0x00001000 /* unordered */
58 1.4 simonb #define FPSCR_VXSOFT 0x00000400 /* Software Invalid Exception */
59 1.4 simonb #define FPSCR_VXSQRT 0x00000200 /* Invalid Sqrt Exception */
60 1.4 simonb #define FPSCR_VXCVI 0x00000100 /* Invalid Op Integer Cvt Exception */
61 1.4 simonb #define FPSCR_VE 0x00000080 /* Invalid Op Exception Enable */
62 1.4 simonb #define FPSCR_OE 0x00000040 /* Overflow Exception Enable */
63 1.4 simonb #define FPSCR_UE 0x00000020 /* Underflow Exception Enable */
64 1.4 simonb #define FPSCR_ZE 0x00000010 /* Zero Divide Exception Enable */
65 1.4 simonb #define FPSCR_XE 0x00000008 /* Inexact Exception Enable */
66 1.4 simonb #define FPSCR_NI 0x00000004 /* Non-IEEE Mode Enable */
67 1.2 danw #define FPSCR_RN 0x00000003
68 1.3 briggs
69 1.3 briggs #ifdef _KERNEL
70 1.6 jdolecek
71 1.6 jdolecek #if defined(_KERNEL_OPT)
72 1.4 simonb #include "opt_ppcarch.h"
73 1.6 jdolecek #endif
74 1.4 simonb
75 1.4 simonb /* List of PowerPC architectures that support FPUs. */
76 1.4 simonb #if defined(PPC_MPC6XX)
77 1.4 simonb #define PPC_HAVE_FPU
78 1.4 simonb
79 1.7 chs void enable_fpu(void);
80 1.7 chs void save_fpu_cpu(void);
81 1.5 chs void save_fpu_proc(struct proc *);
82 1.7 chs #ifdef MULTIPROCESSOR
83 1.7 chs void mp_save_fpu_proc(struct proc *);
84 1.7 chs #endif
85 1.4 simonb #endif /* PPC_HAVE_FPU */
86 1.4 simonb #endif /* _KERNEL */
87 1.1 ws
88 1.8 matt #endif /* _POWERPC_FPU_H_ */
89