xref: /minix3/sys/arch/i386/include/pcb.h (revision 6c8f7fc3bac7ab5f78ee27de8bed706631d8c836)
1*6c8f7fc3SBen Gras /*	$NetBSD: pcb.h,v 1.48 2010/04/23 16:07:33 joerg Exp $	*/
2*6c8f7fc3SBen Gras 
3*6c8f7fc3SBen Gras /*-
4*6c8f7fc3SBen Gras  * Copyright (c) 1998, 2009 The NetBSD Foundation, Inc.
5*6c8f7fc3SBen Gras  * All rights reserved.
6*6c8f7fc3SBen Gras  *
7*6c8f7fc3SBen Gras  * This code is derived from software contributed to The NetBSD Foundation
8*6c8f7fc3SBen Gras  * by Charles M. Hannum, and by Andrew Doran.
9*6c8f7fc3SBen Gras  *
10*6c8f7fc3SBen Gras  * Redistribution and use in source and binary forms, with or without
11*6c8f7fc3SBen Gras  * modification, are permitted provided that the following conditions
12*6c8f7fc3SBen Gras  * are met:
13*6c8f7fc3SBen Gras  * 1. Redistributions of source code must retain the above copyright
14*6c8f7fc3SBen Gras  *    notice, this list of conditions and the following disclaimer.
15*6c8f7fc3SBen Gras  * 2. Redistributions in binary form must reproduce the above copyright
16*6c8f7fc3SBen Gras  *    notice, this list of conditions and the following disclaimer in the
17*6c8f7fc3SBen Gras  *    documentation and/or other materials provided with the distribution.
18*6c8f7fc3SBen Gras  *
19*6c8f7fc3SBen Gras  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
20*6c8f7fc3SBen Gras  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
21*6c8f7fc3SBen Gras  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
22*6c8f7fc3SBen Gras  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
23*6c8f7fc3SBen Gras  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
24*6c8f7fc3SBen Gras  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25*6c8f7fc3SBen Gras  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26*6c8f7fc3SBen Gras  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27*6c8f7fc3SBen Gras  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28*6c8f7fc3SBen Gras  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29*6c8f7fc3SBen Gras  * POSSIBILITY OF SUCH DAMAGE.
30*6c8f7fc3SBen Gras  */
31*6c8f7fc3SBen Gras 
32*6c8f7fc3SBen Gras /*-
33*6c8f7fc3SBen Gras  * Copyright (c) 1990 The Regents of the University of California.
34*6c8f7fc3SBen Gras  * All rights reserved.
35*6c8f7fc3SBen Gras  *
36*6c8f7fc3SBen Gras  * This code is derived from software contributed to Berkeley by
37*6c8f7fc3SBen Gras  * William Jolitz.
38*6c8f7fc3SBen Gras  *
39*6c8f7fc3SBen Gras  * Redistribution and use in source and binary forms, with or without
40*6c8f7fc3SBen Gras  * modification, are permitted provided that the following conditions
41*6c8f7fc3SBen Gras  * are met:
42*6c8f7fc3SBen Gras  * 1. Redistributions of source code must retain the above copyright
43*6c8f7fc3SBen Gras  *    notice, this list of conditions and the following disclaimer.
44*6c8f7fc3SBen Gras  * 2. Redistributions in binary form must reproduce the above copyright
45*6c8f7fc3SBen Gras  *    notice, this list of conditions and the following disclaimer in the
46*6c8f7fc3SBen Gras  *    documentation and/or other materials provided with the distribution.
47*6c8f7fc3SBen Gras  * 3. Neither the name of the University nor the names of its contributors
48*6c8f7fc3SBen Gras  *    may be used to endorse or promote products derived from this software
49*6c8f7fc3SBen Gras  *    without specific prior written permission.
50*6c8f7fc3SBen Gras  *
51*6c8f7fc3SBen Gras  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
52*6c8f7fc3SBen Gras  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
53*6c8f7fc3SBen Gras  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
54*6c8f7fc3SBen Gras  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
55*6c8f7fc3SBen Gras  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
56*6c8f7fc3SBen Gras  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
57*6c8f7fc3SBen Gras  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
58*6c8f7fc3SBen Gras  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
59*6c8f7fc3SBen Gras  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
60*6c8f7fc3SBen Gras  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
61*6c8f7fc3SBen Gras  * SUCH DAMAGE.
62*6c8f7fc3SBen Gras  *
63*6c8f7fc3SBen Gras  *	@(#)pcb.h	5.10 (Berkeley) 5/12/91
64*6c8f7fc3SBen Gras  */
65*6c8f7fc3SBen Gras 
66*6c8f7fc3SBen Gras /*
67*6c8f7fc3SBen Gras  * Intel 386 process control block
68*6c8f7fc3SBen Gras  */
69*6c8f7fc3SBen Gras 
70*6c8f7fc3SBen Gras #ifndef _I386_PCB_H_
71*6c8f7fc3SBen Gras #define _I386_PCB_H_
72*6c8f7fc3SBen Gras 
73*6c8f7fc3SBen Gras #if defined(_KERNEL_OPT)
74*6c8f7fc3SBen Gras #include "opt_multiprocessor.h"
75*6c8f7fc3SBen Gras #endif
76*6c8f7fc3SBen Gras 
77*6c8f7fc3SBen Gras #include <sys/signal.h>
78*6c8f7fc3SBen Gras 
79*6c8f7fc3SBen Gras #include <machine/segments.h>
80*6c8f7fc3SBen Gras #include <machine/tss.h>
81*6c8f7fc3SBen Gras #include <i386/npx.h>
82*6c8f7fc3SBen Gras #include <i386/sysarch.h>
83*6c8f7fc3SBen Gras 
84*6c8f7fc3SBen Gras struct pcb {
85*6c8f7fc3SBen Gras 	int	pcb_esp0;		/* ring0 esp */
86*6c8f7fc3SBen Gras 	int	pcb_esp;		/* kernel esp */
87*6c8f7fc3SBen Gras 	int	pcb_ebp;		/* kernel ebp */
88*6c8f7fc3SBen Gras 	int	pcb_unused;		/* unused */
89*6c8f7fc3SBen Gras 	int	pcb_cr0;		/* saved image of CR0 */
90*6c8f7fc3SBen Gras 	int	pcb_cr2;		/* page fault address (CR2) */
91*6c8f7fc3SBen Gras 	int	pcb_cr3;		/* page directory pointer */
92*6c8f7fc3SBen Gras 	int	pcb_iopl;		/* i/o privilege level */
93*6c8f7fc3SBen Gras 
94*6c8f7fc3SBen Gras 	/* floating point state for FPU */
95*6c8f7fc3SBen Gras 	union	savefpu pcb_savefpu __aligned(16);
96*6c8f7fc3SBen Gras 
97*6c8f7fc3SBen Gras 	struct segment_descriptor pcb_fsd;	/* %fs descriptor */
98*6c8f7fc3SBen Gras 	struct segment_descriptor pcb_gsd; 	/* %gs descriptor */
99*6c8f7fc3SBen Gras 	void *	pcb_onfault;		/* copyin/out fault recovery */
100*6c8f7fc3SBen Gras 	int	vm86_eflags;		/* virtual eflags for vm86 mode */
101*6c8f7fc3SBen Gras 	int	vm86_flagmask;		/* flag mask for vm86 mode */
102*6c8f7fc3SBen Gras 	void	*vm86_userp;		/* XXX performance hack */
103*6c8f7fc3SBen Gras 	struct cpu_info *pcb_fpcpu;	/* cpu holding our fp state. */
104*6c8f7fc3SBen Gras 	char	*pcb_iomap;		/* I/O permission bitmap */
105*6c8f7fc3SBen Gras };
106*6c8f7fc3SBen Gras 
107*6c8f7fc3SBen Gras /*
108*6c8f7fc3SBen Gras  * The pcb is augmented with machine-dependent additional data for
109*6c8f7fc3SBen Gras  * core dumps. For the i386, there is nothing to add.
110*6c8f7fc3SBen Gras  */
111*6c8f7fc3SBen Gras struct md_coredump {
112*6c8f7fc3SBen Gras 	long	md_pad[8];
113*6c8f7fc3SBen Gras };
114*6c8f7fc3SBen Gras 
115*6c8f7fc3SBen Gras #endif /* _I386_PCB_H_ */
116