pcb.h revision 1.37.32.1 1 1.37.32.1 kardel /* $NetBSD: pcb.h,v 1.37.32.1 2006/06/01 22:34:52 kardel Exp $ */
2 1.24 mycroft
3 1.24 mycroft /*-
4 1.24 mycroft * Copyright (c) 1998 The NetBSD Foundation, Inc.
5 1.24 mycroft * All rights reserved.
6 1.24 mycroft *
7 1.24 mycroft * This code is derived from software contributed to The NetBSD Foundation
8 1.24 mycroft * by Charles M. Hannum.
9 1.24 mycroft *
10 1.24 mycroft * Redistribution and use in source and binary forms, with or without
11 1.24 mycroft * modification, are permitted provided that the following conditions
12 1.24 mycroft * are met:
13 1.24 mycroft * 1. Redistributions of source code must retain the above copyright
14 1.24 mycroft * notice, this list of conditions and the following disclaimer.
15 1.24 mycroft * 2. Redistributions in binary form must reproduce the above copyright
16 1.24 mycroft * notice, this list of conditions and the following disclaimer in the
17 1.24 mycroft * documentation and/or other materials provided with the distribution.
18 1.24 mycroft * 3. All advertising materials mentioning features or use of this software
19 1.24 mycroft * must display the following acknowledgement:
20 1.24 mycroft * This product includes software developed by the NetBSD
21 1.24 mycroft * Foundation, Inc. and its contributors.
22 1.24 mycroft * 4. Neither the name of The NetBSD Foundation nor the names of its
23 1.24 mycroft * contributors may be used to endorse or promote products derived
24 1.24 mycroft * from this software without specific prior written permission.
25 1.24 mycroft *
26 1.24 mycroft * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
27 1.24 mycroft * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
28 1.24 mycroft * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
29 1.24 mycroft * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
30 1.24 mycroft * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
31 1.24 mycroft * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
32 1.24 mycroft * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
33 1.24 mycroft * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
34 1.24 mycroft * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
35 1.24 mycroft * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
36 1.24 mycroft * POSSIBILITY OF SUCH DAMAGE.
37 1.24 mycroft */
38 1.12 cgd
39 1.1 cgd /*-
40 1.1 cgd * Copyright (c) 1990 The Regents of the University of California.
41 1.1 cgd * All rights reserved.
42 1.1 cgd *
43 1.1 cgd * This code is derived from software contributed to Berkeley by
44 1.1 cgd * William Jolitz.
45 1.1 cgd *
46 1.1 cgd * Redistribution and use in source and binary forms, with or without
47 1.1 cgd * modification, are permitted provided that the following conditions
48 1.1 cgd * are met:
49 1.1 cgd * 1. Redistributions of source code must retain the above copyright
50 1.1 cgd * notice, this list of conditions and the following disclaimer.
51 1.1 cgd * 2. Redistributions in binary form must reproduce the above copyright
52 1.1 cgd * notice, this list of conditions and the following disclaimer in the
53 1.1 cgd * documentation and/or other materials provided with the distribution.
54 1.34 agc * 3. Neither the name of the University nor the names of its contributors
55 1.1 cgd * may be used to endorse or promote products derived from this software
56 1.1 cgd * without specific prior written permission.
57 1.1 cgd *
58 1.1 cgd * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
59 1.1 cgd * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
60 1.1 cgd * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
61 1.1 cgd * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
62 1.1 cgd * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
63 1.1 cgd * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
64 1.1 cgd * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
65 1.1 cgd * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
66 1.1 cgd * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
67 1.1 cgd * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
68 1.1 cgd * SUCH DAMAGE.
69 1.1 cgd *
70 1.12 cgd * @(#)pcb.h 5.10 (Berkeley) 5/12/91
71 1.1 cgd */
72 1.1 cgd
73 1.14 mycroft /*
74 1.14 mycroft * Intel 386 process control block
75 1.14 mycroft */
76 1.14 mycroft
77 1.6 andrew #ifndef _I386_PCB_H_
78 1.6 andrew #define _I386_PCB_H_
79 1.6 andrew
80 1.36 tsutsui #if defined(_KERNEL_OPT)
81 1.32 fvdl #include "opt_multiprocessor.h"
82 1.32 fvdl #endif
83 1.32 fvdl
84 1.20 mycroft #include <sys/signal.h>
85 1.20 mycroft
86 1.14 mycroft #include <machine/segments.h>
87 1.14 mycroft #include <machine/tss.h>
88 1.14 mycroft #include <machine/npx.h>
89 1.20 mycroft #include <machine/sysarch.h>
90 1.1 cgd
91 1.21 mycroft #define NIOPORTS 1024 /* # of ports we allow to be mapped */
92 1.21 mycroft
93 1.1 cgd struct pcb {
94 1.1 cgd struct i386tss pcb_tss;
95 1.17 mycroft #define pcb_cr3 pcb_tss.tss_cr3
96 1.17 mycroft #define pcb_esp pcb_tss.tss_esp
97 1.17 mycroft #define pcb_ebp pcb_tss.tss_ebp
98 1.35 chs #define pcb_cs pcb_tss.__tss_cs
99 1.20 mycroft #define pcb_ldt_sel pcb_tss.tss_ldt
100 1.16 mycroft int pcb_cr0; /* saved image of CR0 */
101 1.30 christos int pcb_cr2; /* page fault address (CR2) */
102 1.29 thorpej union savefpu pcb_savefpu; /* floating point state for FPU */
103 1.37.32.1 kardel
104 1.1 cgd /*
105 1.1 cgd * Software pcb (extension)
106 1.1 cgd */
107 1.20 mycroft caddr_t pcb_onfault; /* copyin/out fault recovery */
108 1.21 mycroft int vm86_eflags; /* virtual eflags for vm86 mode */
109 1.21 mycroft int vm86_flagmask; /* flag mask for vm86 mode */
110 1.21 mycroft void *vm86_userp; /* XXX performance hack */
111 1.32 fvdl struct cpu_info *pcb_fpcpu; /* cpu holding our fp state. */
112 1.21 mycroft u_long pcb_iomap[NIOPORTS/32]; /* I/O bitmap */
113 1.1 cgd };
114 1.1 cgd
115 1.11 cgd /*
116 1.11 cgd * The pcb is augmented with machine-dependent additional data for
117 1.11 cgd * core dumps. For the i386, there is nothing to add.
118 1.11 cgd */
119 1.11 cgd struct md_coredump {
120 1.11 cgd long md_pad[8];
121 1.11 cgd };
122 1.6 andrew
123 1.6 andrew #endif /* _I386_PCB_H_ */
124