]> CyberLeo.Net >> Repos - FreeBSD/releng/10.2.git/blob - sys/boot/amd64/efi/elf64_freebsd.c
- Copy stable/10@285827 to releng/10.2 in preparation for 10.2-RC1
[FreeBSD/releng/10.2.git] / sys / boot / amd64 / efi / elf64_freebsd.c
1 /*-
2  * Copyright (c) 1998 Michael Smith <msmith@freebsd.org>
3  * Copyright (c) 2014 The FreeBSD Foundation
4  * All rights reserved.
5  *
6  * Redistribution and use in source and binary forms, with or without
7  * modification, are permitted provided that the following conditions
8  * are met:
9  * 1. Redistributions of source code must retain the above copyright
10  *    notice, this list of conditions and the following disclaimer.
11  * 2. Redistributions in binary form must reproduce the above copyright
12  *    notice, this list of conditions and the following disclaimer in the
13  *    documentation and/or other materials provided with the distribution.
14  *
15  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
16  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
17  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
18  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
19  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
20  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
21  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
22  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
23  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
24  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
25  * SUCH DAMAGE.
26  */
27
28 #include <sys/cdefs.h>
29 __FBSDID("$FreeBSD$");
30
31 #define __ELF_WORD_SIZE 64
32 #include <sys/param.h>
33 #include <sys/exec.h>
34 #include <sys/linker.h>
35 #include <string.h>
36 #include <machine/elf.h>
37 #include <stand.h>
38
39 #include <efi.h>
40 #include <efilib.h>
41
42 #include "bootstrap.h"
43
44 #include "platform/acfreebsd.h"
45 #include "acconfig.h"
46 #define ACPI_SYSTEM_XFACE
47 #include "actypes.h"
48 #include "actbl.h"
49
50 #include "x86_efi.h"
51
52 static EFI_GUID acpi_guid = ACPI_TABLE_GUID;
53 static EFI_GUID acpi20_guid = ACPI_20_TABLE_GUID;
54
55 extern int bi_load(char *args, vm_offset_t *modulep, vm_offset_t *kernendp);
56
57 static int      elf64_exec(struct preloaded_file *amp);
58 static int      elf64_obj_exec(struct preloaded_file *amp);
59
60 struct file_format amd64_elf = { elf64_loadfile, elf64_exec };
61 struct file_format amd64_elf_obj = { elf64_obj_loadfile, elf64_obj_exec };
62
63 #define PG_V    0x001
64 #define PG_RW   0x002
65 #define PG_U    0x004
66 #define PG_PS   0x080
67
68 typedef u_int64_t p4_entry_t;
69 typedef u_int64_t p3_entry_t;
70 typedef u_int64_t p2_entry_t;
71 static p4_entry_t *PT4;
72 static p3_entry_t *PT3;
73 static p2_entry_t *PT2;
74
75 static void (*trampoline)(uint64_t stack, void *copy_finish, uint64_t kernend,
76                           uint64_t modulep, p4_entry_t *pagetable,
77                           uint64_t entry);
78
79 extern uintptr_t amd64_tramp;
80 extern uint32_t amd64_tramp_size;
81
82 /*
83  * There is an ELF kernel and one or more ELF modules loaded.
84  * We wish to start executing the kernel image, so make such
85  * preparations as are required, and do so.
86  */
87 static int
88 elf64_exec(struct preloaded_file *fp)
89 {
90         struct file_metadata    *md;
91         Elf_Ehdr                *ehdr;
92         vm_offset_t             modulep, kernend, trampcode, trampstack;
93         int                     err, i;
94         ACPI_TABLE_RSDP         *rsdp;
95         char                    buf[24];
96         int                     revision;
97         EFI_STATUS              status;
98
99         rsdp = efi_get_table(&acpi20_guid);
100         if (rsdp == NULL) {
101                 rsdp = efi_get_table(&acpi_guid);
102         }
103         if (rsdp != NULL) {
104                 sprintf(buf, "0x%016llx", (unsigned long long)rsdp);
105                 setenv("hint.acpi.0.rsdp", buf, 1);
106                 revision = rsdp->Revision;
107                 if (revision == 0)
108                         revision = 1;
109                 sprintf(buf, "%d", revision);
110                 setenv("hint.acpi.0.revision", buf, 1);
111                 strncpy(buf, rsdp->OemId, sizeof(rsdp->OemId));
112                 buf[sizeof(rsdp->OemId)] = '\0';
113                 setenv("hint.acpi.0.oem", buf, 1);
114                 sprintf(buf, "0x%016x", rsdp->RsdtPhysicalAddress);
115                 setenv("hint.acpi.0.rsdt", buf, 1);
116                 if (revision >= 2) {
117                         /* XXX extended checksum? */
118                         sprintf(buf, "0x%016llx",
119                             (unsigned long long)rsdp->XsdtPhysicalAddress);
120                         setenv("hint.acpi.0.xsdt", buf, 1);
121                         sprintf(buf, "%d", rsdp->Length);
122                         setenv("hint.acpi.0.xsdt_length", buf, 1);
123                 }
124         }
125
126         if ((md = file_findmetadata(fp, MODINFOMD_ELFHDR)) == NULL)
127                 return(EFTYPE);
128         ehdr = (Elf_Ehdr *)&(md->md_data);
129
130         trampcode = (vm_offset_t)0x0000000040000000;
131         err = BS->AllocatePages(AllocateMaxAddress, EfiLoaderData, 1,
132             (EFI_PHYSICAL_ADDRESS *)&trampcode);
133         bzero((void *)trampcode, EFI_PAGE_SIZE);
134         trampstack = trampcode + EFI_PAGE_SIZE - 8;
135         bcopy((void *)&amd64_tramp, (void *)trampcode, amd64_tramp_size);
136         trampoline = (void *)trampcode;
137
138         PT4 = (p4_entry_t *)0x0000000040000000;
139         err = BS->AllocatePages(AllocateMaxAddress, EfiLoaderData, 3,
140             (EFI_PHYSICAL_ADDRESS *)&PT4);
141         bzero(PT4, 3 * EFI_PAGE_SIZE);
142
143         PT3 = &PT4[512];
144         PT2 = &PT3[512];
145
146         /*
147          * This is kinda brutal, but every single 1GB VM memory segment points
148          * to the same first 1GB of physical memory.  But it is more than
149          * adequate.
150          */
151         for (i = 0; i < 512; i++) {
152                 /* Each slot of the L4 pages points to the same L3 page. */
153                 PT4[i] = (p4_entry_t)PT3;
154                 PT4[i] |= PG_V | PG_RW | PG_U;
155
156                 /* Each slot of the L3 pages points to the same L2 page. */
157                 PT3[i] = (p3_entry_t)PT2;
158                 PT3[i] |= PG_V | PG_RW | PG_U;
159
160                 /* The L2 page slots are mapped with 2MB pages for 1GB. */
161                 PT2[i] = i * (2 * 1024 * 1024);
162                 PT2[i] |= PG_V | PG_RW | PG_PS | PG_U;
163         }
164
165         printf("Start @ 0x%lx ...\n", ehdr->e_entry);
166
167         err = bi_load(fp->f_args, &modulep, &kernend);
168         if (err != 0)
169                 return(err);
170
171         status = BS->ExitBootServices(IH, x86_efi_mapkey);
172         if (EFI_ERROR(status)) {
173                 printf("%s: ExitBootServices() returned 0x%lx\n", __func__,
174                     (long)status);
175                 return (EINVAL);
176         }
177
178         dev_cleanup();
179
180         trampoline(trampstack, x86_efi_copy_finish, kernend, modulep, PT4,
181             ehdr->e_entry);
182
183         panic("exec returned");
184 }
185
186 static int
187 elf64_obj_exec(struct preloaded_file *fp)
188 {
189         return (EFTYPE);
190 }