In 64-bit mode, the TSS descriptor is expanded to 16 bytes. Currently, high 32-bit of TSS base address is set to be zero. Updte descriptor structure definition, add high 32-bit high adress and reserved bit. Signed-off-by: Zhong,Fangjian <fangjian.zhong@intel.com>
83 lines
3.0 KiB
C
83 lines
3.0 KiB
C
/*
|
|
* Copyright (c) 2009 Corey Tabaka
|
|
*
|
|
* Permission is hereby granted, free of charge, to any person obtaining
|
|
* a copy of this software and associated documentation files
|
|
* (the "Software"), to deal in the Software without restriction,
|
|
* including without limitation the rights to use, copy, modify, merge,
|
|
* publish, distribute, sublicense, and/or sell copies of the Software,
|
|
* and to permit persons to whom the Software is furnished to do so,
|
|
* subject to the following conditions:
|
|
*
|
|
* The above copyright notice and this permission notice shall be
|
|
* included in all copies or substantial portions of the Software.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
*/
|
|
|
|
#include <compiler.h>
|
|
#include <arch/x86/descriptor.h>
|
|
|
|
/* not the best way to do this, but easy for now */
|
|
typedef union {
|
|
struct {
|
|
uint16_t limit_15_0;
|
|
uint16_t base_15_0;
|
|
uint8_t base_23_16;
|
|
|
|
uint8_t type : 4;
|
|
uint8_t s : 1;
|
|
uint8_t dpl : 2;
|
|
uint8_t p : 1;
|
|
|
|
uint8_t limit_19_16 : 4;
|
|
uint8_t avl : 1;
|
|
uint8_t reserved_0 : 1;
|
|
uint8_t d_b : 1;
|
|
uint8_t g : 1;
|
|
|
|
uint8_t base_31_24;
|
|
} __PACKED seg_desc_legacy;
|
|
|
|
struct {
|
|
uint32_t base_63_32;
|
|
uint32_t reserved_1;
|
|
} __PACKED seg_desc_64;
|
|
} __PACKED seg_desc_t;
|
|
|
|
extern seg_desc_t _gdt[];
|
|
|
|
void set_global_desc(seg_sel_t sel, void *base, uint32_t limit,
|
|
uint8_t present, uint8_t ring, uint8_t sys, uint8_t type, uint8_t gran, uint8_t bits)
|
|
{
|
|
// convert selector into index
|
|
uint16_t index = sel >> 3;
|
|
|
|
_gdt[index].seg_desc_legacy.limit_15_0 = limit & 0x0000ffff;
|
|
_gdt[index].seg_desc_legacy.limit_19_16 = (limit & 0x000f0000) >> 16;
|
|
|
|
_gdt[index].seg_desc_legacy.base_15_0 = ((uintptr_t) base) & 0x0000ffff;
|
|
_gdt[index].seg_desc_legacy.base_23_16 = (((uintptr_t) base) & 0x00ff0000) >> 16;
|
|
_gdt[index].seg_desc_legacy.base_31_24 = ((uintptr_t) base) >> 24;
|
|
|
|
_gdt[index].seg_desc_legacy.type = type & 0x0f; // segment type
|
|
_gdt[index].seg_desc_legacy.p = present != 0; // present
|
|
_gdt[index].seg_desc_legacy.dpl = ring & 0x03; // descriptor privilege level
|
|
_gdt[index].seg_desc_legacy.g = gran != 0; // granularity
|
|
_gdt[index].seg_desc_legacy.s = sys != 0; // system / non-system
|
|
_gdt[index].seg_desc_legacy.d_b = bits != 0; // 16 / 32 bit
|
|
|
|
#ifdef ARCH_X86_64
|
|
if (TSS_SELECTOR == sel) {
|
|
_gdt[index + 1].seg_desc_64.base_63_32 = (uint32_t)((uintptr_t) base >> 32);
|
|
_gdt[index + 1].seg_desc_64.reserved_1 = 0;
|
|
}
|
|
#endif
|
|
}
|