75 lines
1.1 KiB
Plaintext
75 lines
1.1 KiB
Plaintext
extern _GLOBAL_OFFSET_TABLE_
|
|
|
|
extern gdt
|
|
|
|
section .text
|
|
|
|
extern flush_irqs
|
|
|
|
global common_spinup
|
|
bits 32
|
|
common_spinup:
|
|
cli
|
|
|
|
push 0
|
|
push 0
|
|
lidt [esp]
|
|
add esp, 8
|
|
|
|
call .get_got
|
|
.get_got:
|
|
pop ebx
|
|
add ebx, _GLOBAL_OFFSET_TABLE_ + $$ - .get_got wrt ..gotpc
|
|
|
|
lgdt [ebx + gdt wrt ..gotoff]
|
|
|
|
push dword 0x18
|
|
call .p1
|
|
.p1:
|
|
pop eax
|
|
add eax, 6
|
|
push eax
|
|
retfd
|
|
|
|
.flush_cs:
|
|
mov eax, 0x20
|
|
mov ds, eax
|
|
mov es, eax
|
|
mov fs, eax
|
|
mov gs, eax
|
|
mov ss, eax
|
|
|
|
call flush_irqs
|
|
|
|
xor eax, eax
|
|
lldt ax
|
|
|
|
; We don't need the return address
|
|
add esp, 4
|
|
|
|
; Get function address
|
|
pop edi
|
|
|
|
; We don't need the argument count
|
|
add esp, 4
|
|
|
|
mov eax, 0x00000011
|
|
mov cr0, eax
|
|
|
|
xor eax, eax
|
|
mov cr4, eax
|
|
mov cr3, eax
|
|
|
|
; Clear TSS busy bit and load TR with base 0, limit 0
|
|
sub esp, 8
|
|
sgdt [esp]
|
|
mov eax, [esp + 2]
|
|
add esp, 8
|
|
mov byte [eax + 0x3d], 0x89
|
|
mov ax, 0x38
|
|
ltr ax
|
|
|
|
call edi
|
|
|
|
section .note.GNU-stack noalloc noexec nowrite progbits
|