xref: /freebsd/stand/efi/loader/arch/arm64/exec.c (revision 19261079)
1 /*-
2  * Copyright (c) 2006 Marcel Moolenaar
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  *
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 ``AS IS'' AND ANY EXPRESS OR
16  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
17  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
18  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
19  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
20  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
21  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
22  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
24  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25  */
26 
27 #include <sys/cdefs.h>
28 __FBSDID("$FreeBSD$");
29 
30 #include <stand.h>
31 #include <string.h>
32 
33 #include <sys/param.h>
34 #include <sys/linker.h>
35 #include <machine/elf.h>
36 
37 #include <bootstrap.h>
38 
39 #include <efi.h>
40 #include <efilib.h>
41 
42 #include "loader_efi.h"
43 #include "cache.h"
44 
45 #include "platform/acfreebsd.h"
46 #include "acconfig.h"
47 #define ACPI_SYSTEM_XFACE
48 #define ACPI_USE_SYSTEM_INTTYPES
49 #include "actypes.h"
50 #include "actbl.h"
51 
52 static EFI_GUID acpi_guid = ACPI_TABLE_GUID;
53 static EFI_GUID acpi20_guid = ACPI_20_TABLE_GUID;
54 
55 static int elf64_exec(struct preloaded_file *amp);
56 static int elf64_obj_exec(struct preloaded_file *amp);
57 
58 int bi_load(char *args, vm_offset_t *modulep, vm_offset_t *kernendp,
59     bool exit_bs);
60 
61 static struct file_format arm64_elf = {
62 	elf64_loadfile,
63 	elf64_exec
64 };
65 
66 struct file_format *file_formats[] = {
67 	&arm64_elf,
68 	NULL
69 };
70 
71 static int
72 elf64_exec(struct preloaded_file *fp)
73 {
74 	vm_offset_t modulep, kernendp;
75 	vm_offset_t clean_addr;
76 	size_t clean_size;
77 	struct file_metadata *md;
78 	ACPI_TABLE_RSDP *rsdp;
79 	Elf_Ehdr *ehdr;
80 	char buf[24];
81 	int err, revision;
82 	void (*entry)(vm_offset_t);
83 
84 	rsdp = efi_get_table(&acpi20_guid);
85 	if (rsdp == NULL) {
86 		rsdp = efi_get_table(&acpi_guid);
87 	}
88 	if (rsdp != NULL) {
89 		sprintf(buf, "0x%016llx", (unsigned long long)rsdp);
90 		setenv("hint.acpi.0.rsdp", buf, 1);
91 		revision = rsdp->Revision;
92 		if (revision == 0)
93 			revision = 1;
94 		sprintf(buf, "%d", revision);
95 		setenv("hint.acpi.0.revision", buf, 1);
96 		strncpy(buf, rsdp->OemId, sizeof(rsdp->OemId));
97 		buf[sizeof(rsdp->OemId)] = '\0';
98 		setenv("hint.acpi.0.oem", buf, 1);
99 		sprintf(buf, "0x%016x", rsdp->RsdtPhysicalAddress);
100 		setenv("hint.acpi.0.rsdt", buf, 1);
101 		if (revision >= 2) {
102 			/* XXX extended checksum? */
103 			sprintf(buf, "0x%016llx",
104 			    (unsigned long long)rsdp->XsdtPhysicalAddress);
105 			setenv("hint.acpi.0.xsdt", buf, 1);
106 			sprintf(buf, "%d", rsdp->Length);
107 			setenv("hint.acpi.0.xsdt_length", buf, 1);
108 		}
109 	}
110 
111 	if ((md = file_findmetadata(fp, MODINFOMD_ELFHDR)) == NULL)
112         	return(EFTYPE);
113 
114 	ehdr = (Elf_Ehdr *)&(md->md_data);
115 	entry = efi_translate(ehdr->e_entry);
116 
117 	efi_time_fini();
118 	err = bi_load(fp->f_args, &modulep, &kernendp, true);
119 	if (err != 0) {
120 		efi_time_init();
121 		return (err);
122 	}
123 
124 	dev_cleanup();
125 
126 	/* Clean D-cache under kernel area and invalidate whole I-cache */
127 	clean_addr = (vm_offset_t)efi_translate(fp->f_addr);
128 	clean_size = (vm_offset_t)efi_translate(kernendp) - clean_addr;
129 
130 	cpu_flush_dcache((void *)clean_addr, clean_size);
131 	cpu_inval_icache(NULL, 0);
132 
133 	(*entry)(modulep);
134 	panic("exec returned");
135 }
136 
137 static int
138 elf64_obj_exec(struct preloaded_file *fp)
139 {
140 
141 	printf("%s called for preloaded file %p (=%s):\n", __func__, fp,
142 	    fp->f_name);
143 	return (ENOSYS);
144 }
145 
146