1
2#ifndef __ARCH_DESC_DEFS_H
3#define __ARCH_DESC_DEFS_H
4
5
6
7
8
9
10#ifndef __ASSEMBLY__
11
12#include <linux/types.h>
13
14
15
16
17
18
19
20
21
22struct desc_struct {
23 union {
24 struct { unsigned int a, b; };
25 struct {
26 u16 limit0;
27 u16 base0;
28 unsigned base1: 8, type: 4, s: 1, dpl: 2, p: 1;
29 unsigned limit: 4, avl: 1, l: 1, d: 1, g: 1, base2: 8;
30 };
31
32 };
33} __attribute__((packed));
34
35enum {
36 GATE_INTERRUPT = 0xE,
37 GATE_TRAP = 0xF,
38 GATE_CALL = 0xC,
39 GATE_TASK = 0x5,
40};
41
42
43struct gate_struct64 {
44 u16 offset_low;
45 u16 segment;
46 unsigned ist : 3, zero0 : 5, type : 5, dpl : 2, p : 1;
47 u16 offset_middle;
48 u32 offset_high;
49 u32 zero1;
50} __attribute__((packed));
51
52#define PTR_LOW(x) ((unsigned long long)(x) & 0xFFFF)
53#define PTR_MIDDLE(x) (((unsigned long long)(x) >> 16) & 0xFFFF)
54#define PTR_HIGH(x) ((unsigned long long)(x) >> 32)
55
56enum {
57 DESC_TSS = 0x9,
58 DESC_LDT = 0x2,
59 DESCTYPE_S = 0x10,
60};
61
62
63struct ldttss_desc64 {
64 u16 limit0;
65 u16 base0;
66 unsigned base1 : 8, type : 5, dpl : 2, p : 1;
67 unsigned limit1 : 4, zero0 : 3, g : 1, base2 : 8;
68 u32 base3;
69 u32 zero1;
70} __attribute__((packed));
71
72#ifdef CONFIG_X86_64
73typedef struct gate_struct64 gate_desc;
74typedef struct ldttss_desc64 ldt_desc;
75typedef struct ldttss_desc64 tss_desc;
76#else
77typedef struct desc_struct gate_desc;
78typedef struct desc_struct ldt_desc;
79typedef struct desc_struct tss_desc;
80#endif
81
82struct desc_ptr {
83 unsigned short size;
84 unsigned long address;
85} __attribute__((packed)) ;
86
87
88#endif
89
90#endif
91