summaryrefslogtreecommitdiffstats
path: root/src/arch/x86/c_exit.S
blob: e5b9bf8d74a6f473146b7a4686298f1c43f77bd1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
/* SPDX-License-Identifier: GPL-2.0-only */

#include <arch/ram_segs.h>
#include <cpu/x86/msr.h>
#include <cpu/x86/cr.h>


#ifdef __x86_64__

	/*
	 * Functions to handle mode switches from long mode to protected
	 * mode.
	 */
.text
.code64
	.section ".text.protected_mode_jump", "ax", @progbits
	.globl protected_mode_jump
protected_mode_jump:

	push %rbp
	mov %rsp, %rbp

	/* Arguments to stack */
	push	%rdi
	push	%rsi

	#include <cpu/x86/64bit/exit32.inc>

	movl	-8(%ebp), %eax	/* Function to call */
	movl	-16(%ebp), %ebx	/* Argument 0 */

	/* Align the stack */
	andl	$0xFFFFFFF0, %esp
	subl	$12, %esp
	pushl	%ebx	/* Argument 0 */

	jmp	*%eax
#endif