tss.h revision 4
14Srgrimes/*-
24Srgrimes * Copyright (c) 1990 The Regents of the University of California.
34Srgrimes * All rights reserved.
44Srgrimes *
54Srgrimes * This code is derived from software contributed to Berkeley by
64Srgrimes * William Jolitz.
74Srgrimes *
84Srgrimes * Redistribution and use in source and binary forms, with or without
94Srgrimes * modification, are permitted provided that the following conditions
104Srgrimes * are met:
114Srgrimes * 1. Redistributions of source code must retain the above copyright
124Srgrimes *    notice, this list of conditions and the following disclaimer.
134Srgrimes * 2. Redistributions in binary form must reproduce the above copyright
144Srgrimes *    notice, this list of conditions and the following disclaimer in the
154Srgrimes *    documentation and/or other materials provided with the distribution.
164Srgrimes * 3. All advertising materials mentioning features or use of this software
174Srgrimes *    must display the following acknowledgement:
184Srgrimes *	This product includes software developed by the University of
194Srgrimes *	California, Berkeley and its contributors.
204Srgrimes * 4. Neither the name of the University nor the names of its contributors
214Srgrimes *    may be used to endorse or promote products derived from this software
224Srgrimes *    without specific prior written permission.
234Srgrimes *
244Srgrimes * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
254Srgrimes * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
264Srgrimes * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
274Srgrimes * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
284Srgrimes * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
294Srgrimes * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
304Srgrimes * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
314Srgrimes * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
324Srgrimes * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
334Srgrimes * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
344Srgrimes * SUCH DAMAGE.
354Srgrimes *
364Srgrimes *	@(#)tss.h	5.4 (Berkeley) 1/18/91
374Srgrimes */
384Srgrimes
394Srgrimes/*
404Srgrimes * Intel 386 Context Data Type
414Srgrimes */
424Srgrimes
434Srgrimesstruct i386tss {
444Srgrimes	int	tss_link;	/* actually 16 bits: top 16 bits must be zero */
454Srgrimes	int	tss_esp0; 	/* kernel stack pointer priviledge level 0 */
464Srgrimes#define	tss_ksp	tss_esp0
474Srgrimes	int	tss_ss0;	/* actually 16 bits: top 16 bits must be zero */
484Srgrimes	int	tss_esp1; 	/* kernel stack pointer priviledge level 1 */
494Srgrimes	int	tss_ss1;	/* actually 16 bits: top 16 bits must be zero */
504Srgrimes	int	tss_esp2; 	/* kernel stack pointer priviledge level 2 */
514Srgrimes	int	tss_ss2;	/* actually 16 bits: top 16 bits must be zero */
524Srgrimes	/* struct  ptd *tss_cr3; 	/* page table directory */
534Srgrimes	int	tss_cr3; 	/* page table directory */
544Srgrimes#define	tss_ptd	tss_cr3
554Srgrimes	int	tss_eip; 	/* program counter */
564Srgrimes#define	tss_pc	tss_eip
574Srgrimes	int	tss_eflags; 	/* program status longword */
584Srgrimes#define	tss_psl	tss_eflags
594Srgrimes	int	tss_eax;
604Srgrimes	int	tss_ecx;
614Srgrimes	int	tss_edx;
624Srgrimes	int	tss_ebx;
634Srgrimes	int	tss_esp; 	/* user stack pointer */
644Srgrimes#define	tss_usp	tss_esp
654Srgrimes	int	tss_ebp; 	/* user frame pointer */
664Srgrimes#define	tss_fp	tss_ebp
674Srgrimes	int	tss_esi;
684Srgrimes	int	tss_edi;
694Srgrimes	int	tss_es;		/* actually 16 bits: top 16 bits must be zero */
704Srgrimes	int	tss_cs;		/* actually 16 bits: top 16 bits must be zero */
714Srgrimes	int	tss_ss;		/* actually 16 bits: top 16 bits must be zero */
724Srgrimes	int	tss_ds;		/* actually 16 bits: top 16 bits must be zero */
734Srgrimes	int	tss_fs;		/* actually 16 bits: top 16 bits must be zero */
744Srgrimes	int	tss_gs;		/* actually 16 bits: top 16 bits must be zero */
754Srgrimes	int	tss_ldt;	/* actually 16 bits: top 16 bits must be zero */
764Srgrimes	int	tss_ioopt;	/* options & io offset bitmap: currently zero */
774Srgrimes				/* XXX unimplemented .. i/o permission bitmap */
784Srgrimes};
79