Lines Matching refs:TSS
40 TaskStateSegment64 TSS[MAX_CPUS];
66 // TSS
67 offset = (uint64_t)&TSS[c];
90 * Configures the Task State Segment (TSS) that specifies the kernel stack
98 kprintf("Initializing TSS... ");
100 TSS[c]._unused0 = 0;
101 TSS[c]._unused1 = 0;
102 TSS[c]._unused2 = 0;
103 TSS[c]._unused3 = 0;
104 TSS[c]._unused4 = 0;
105 TSS[c].ist1 = ((uint64_t)&df_stack) + 4096;
106 TSS[c].ist2 = 0x0;
107 TSS[c].ist3 = 0x0;
108 TSS[c].ist4 = 0x0;
109 TSS[c].ist5 = 0x0;
110 TSS[c].ist6 = 0x0;
111 TSS[c].ist7 = 0x0;
112 TSS[c].rsp0 = ((uint64_t)&df_stack) + 4096;
113 TSS[c].rsp1 = 0;
114 TSS[c].rsp2 = 0;