The Pedigree Project  0.1
x86/tss.h
1 /*
2  * Copyright (c) 2008-2014, Pedigree Developers
3  *
4  * Please see the CONTRIB file in the root of the source tree for a full
5  * list of contributors.
6  *
7  * Permission to use, copy, modify, and distribute this software for any
8  * purpose with or without fee is hereby granted, provided that the above
9  * copyright notice and this permission notice appear in all copies.
10  *
11  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
12  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
13  * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
14  * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
15  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
16  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
17  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
18  */
19 
20 #ifndef KERNEL_PROCESSOR_X86_TSS_H
21 #define KERNEL_PROCESSOR_X86_TSS_H
22 
23 #include "pedigree/kernel/compiler.h"
24 #include "pedigree/kernel/processor/types.h"
25 
31 {
32  uint16_t link;
33  uint16_t res0;
34  uint32_t esp0;
35  uint16_t ss0;
36  uint16_t res1;
37  uint32_t esp1;
38  uint16_t ss1;
39  uint16_t res2;
40  uint32_t esp2;
41  uint16_t ss2;
42  uint16_t res3;
43  uint32_t cr3;
44  uint32_t eip;
45  uint32_t eflags;
46  uint32_t eax;
47  uint32_t ecx;
48  uint32_t edx;
49  uint32_t ebx;
50  uint32_t esp;
51  uint32_t ebp;
52  uint32_t esi;
53  uint32_t edi;
54  uint16_t es;
55  uint16_t res4;
56  uint16_t cs;
57  uint16_t res5;
58  uint16_t ss;
59  uint16_t res6;
60  uint16_t ds;
61  uint16_t res7;
62  uint16_t fs;
63  uint16_t res8;
64  uint16_t gs;
65  uint16_t res9;
66  uint16_t ldt;
67  uint16_t res10;
68  uint16_t res11;
69  uint16_t ioPermBitmap;
70 } PACKED;
71 
74 #endif