xref: /freebsd/stand/efi/loader/arch/amd64/amd64_tramp.S (revision adda2797eb2a29487fe26640a9c990fea7e6585d)
1ca987d46SWarner Losh/*-
2ca987d46SWarner Losh * Copyright (c) 2013 The FreeBSD Foundation
3ca987d46SWarner Losh * All rights reserved.
4ca987d46SWarner Losh *
5ca987d46SWarner Losh * This software was developed by Benno Rice under sponsorship from
6ca987d46SWarner Losh * the FreeBSD Foundation.
7ca987d46SWarner Losh * Redistribution and use in source and binary forms, with or without
8ca987d46SWarner Losh * modification, are permitted provided that the following conditions
9ca987d46SWarner Losh * are met:
10ca987d46SWarner Losh * 1. Redistributions of source code must retain the above copyright
11ca987d46SWarner Losh *    notice, this list of conditions and the following disclaimer.
12ca987d46SWarner Losh * 2. Redistributions in binary form must reproduce the above copyright
13ca987d46SWarner Losh *    notice, this list of conditions and the following disclaimer in the
14ca987d46SWarner Losh *    documentation and/or other materials provided with the distribution.
15ca987d46SWarner Losh *
16ca987d46SWarner Losh * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
17ca987d46SWarner Losh * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18ca987d46SWarner Losh * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19ca987d46SWarner Losh * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
20ca987d46SWarner Losh * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21ca987d46SWarner Losh * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22ca987d46SWarner Losh * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23ca987d46SWarner Losh * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24ca987d46SWarner Losh * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25ca987d46SWarner Losh * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26ca987d46SWarner Losh * SUCH DAMAGE.
27ca987d46SWarner Losh *
28ca987d46SWarner Losh * $FreeBSD$
29ca987d46SWarner Losh */
30ca987d46SWarner Losh
31ca987d46SWarner Losh#include <machine/asmacros.h>
32ca987d46SWarner Losh
33*adda2797SRoger Pau Monné#define ASM_FILE
34*adda2797SRoger Pau Monné#include "multiboot2.h"
35*adda2797SRoger Pau Monné
36ca987d46SWarner Losh	.text
37ca987d46SWarner Losh	.globl	amd64_tramp
38ca987d46SWarner Losh
39ca987d46SWarner Losh/*
40ca987d46SWarner Losh * void amd64_tramp(uint64_t stack, void *copy_finish, uint64_t kernend,
41ca987d46SWarner Losh *		    uint64_t modulep, uint64_t pagetable, uint64_t entry)
42ca987d46SWarner Losh */
43ca987d46SWarner Loshamd64_tramp:
44ca987d46SWarner Losh	cli			/* Make sure we don't get interrupted. */
45ca987d46SWarner Losh	movq	%rdi,%rsp	/* Switch to our temporary stack. */
46ca987d46SWarner Losh
47ca987d46SWarner Losh	movq	%rdx,%r12	/* Stash the kernel values for later. */
48ca987d46SWarner Losh	movq	%rcx,%r13
49ca987d46SWarner Losh	movq	%r8,%r14
50ca987d46SWarner Losh	movq	%r9,%r15
51ca987d46SWarner Losh
52ca987d46SWarner Losh	callq	*%rsi		/* Call copy_finish so we're all ready to go. */
53ca987d46SWarner Losh
54ca987d46SWarner Losh	pushq	%r12		/* Push kernend. */
55ca987d46SWarner Losh	salq	$32,%r13	/* Shift modulep and push it. */
56ca987d46SWarner Losh	pushq	%r13
57ca987d46SWarner Losh	pushq	%r15		/* Push the entry address. */
58ca987d46SWarner Losh	movq	%r14,%cr3	/* Switch page tables. */
59ca987d46SWarner Losh	ret			/* "Return" to kernel entry. */
60ca987d46SWarner Losh
61ca987d46SWarner Losh	ALIGN_TEXT
62ca987d46SWarner Loshamd64_tramp_end:
63ca987d46SWarner Losh
64*adda2797SRoger Pau Monné/* void multiboot2_exec(uint64_t entry, uint64_t multiboot_info, uint64_t stack) */
65*adda2797SRoger Pau Monné	.globl	multiboot2_exec
66*adda2797SRoger Pau Monnémultiboot2_exec:
67*adda2797SRoger Pau Monné	movq	%rdx,%rsp
68*adda2797SRoger Pau Monné	pushq	%rdi
69*adda2797SRoger Pau Monné	movq	%rsi,%rbx
70*adda2797SRoger Pau Monné	movq	$MULTIBOOT2_BOOTLOADER_MAGIC,%rax
71*adda2797SRoger Pau Monné	ret
72*adda2797SRoger Pau Monné
73ca987d46SWarner Losh	.data
74ca987d46SWarner Losh	.globl	amd64_tramp_size
75ca987d46SWarner Loshamd64_tramp_size:
76ca987d46SWarner Losh	.long	amd64_tramp_end-amd64_tramp
77