* Add support for loading GDT on x86_64. * Add x86_64 assembly code to do the same as the x86_32 code. * Separate x86_32 and x86_64 code. Tested on qemu x86_32 and x86_64 using additional MTRRs. Tested on Lenovo T410 with additional x86_64 patches. Change-Id: I1c190627f5f0ed6f82738cb99423892382899d7b Signed-off-by: Patrick Rudolph <siro@das-labor.org> Reviewed-on: https://review.coreboot.org/c/coreboot/+/30500 Reviewed-by: Arthur Heymans <arthur@aheymans.xyz> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
54 lines
999 B
ArmAsm
54 lines
999 B
ArmAsm
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
|
|
.code32
|
|
.section ".text._gdt_", "ax", @progbits
|
|
|
|
.globl gdt_init
|
|
gdt_init:
|
|
lgdt %cs:gdtptr
|
|
ret
|
|
|
|
.previous
|
|
.align 4
|
|
.globl gdtptr
|
|
gdtptr:
|
|
.word gdt_end - gdt -1 /* compute the table limit */
|
|
.long gdt /* we know the offset */
|
|
|
|
#ifdef __x86_64__
|
|
.code64
|
|
.section ".text._gdt64_", "ax", @progbits
|
|
.globl gdt_init64
|
|
gdt_init64:
|
|
lgdt gdtptr64
|
|
ret
|
|
|
|
.previous
|
|
.align 4
|
|
.globl gdtptr64
|
|
gdtptr64:
|
|
.word gdt_end - gdt -1 /* compute the table limit */
|
|
.quad gdt /* we know the offset */
|
|
#endif
|
|
|
|
.align 4
|
|
gdt:
|
|
/* selgdt 0, unused */
|
|
.word 0x0000, 0x0000 /* dummy */
|
|
.byte 0x00, 0x00, 0x00, 0x00
|
|
|
|
/* selgdt 0x08, flat code segment */
|
|
.word 0xffff, 0x0000
|
|
.byte 0x00, 0x9b, 0xcf, 0x00 /* G=1 and 0x0f, So we get 4Gbytes
|
|
for limit */
|
|
|
|
/* selgdt 0x10,flat data segment */
|
|
.word 0xffff, 0x0000
|
|
.byte 0x00, 0x93, 0xcf, 0x00
|
|
|
|
/* selgdt 0x18, flat code segment (64-bit) */
|
|
.word 0xffff, 0x0000
|
|
.byte 0x00, 0x9b, 0xaf, 0x00
|
|
|
|
gdt_end:
|