1c2d0b470SArd Biesheuvel // SPDX-License-Identifier: GPL-2.0-only
2c2d0b470SArd Biesheuvel 
3c2d0b470SArd Biesheuvel /* -----------------------------------------------------------------------
4c2d0b470SArd Biesheuvel  *
5c2d0b470SArd Biesheuvel  *   Copyright 2011 Intel Corporation; author Matt Fleming
6c2d0b470SArd Biesheuvel  *
7c2d0b470SArd Biesheuvel  * ----------------------------------------------------------------------- */
8c2d0b470SArd Biesheuvel 
9c2d0b470SArd Biesheuvel #include <linux/efi.h>
10c2d0b470SArd Biesheuvel #include <linux/pci.h>
11c2d0b470SArd Biesheuvel 
12c2d0b470SArd Biesheuvel #include <asm/efi.h>
13c2d0b470SArd Biesheuvel #include <asm/e820/types.h>
14c2d0b470SArd Biesheuvel #include <asm/setup.h>
15c2d0b470SArd Biesheuvel #include <asm/desc.h>
16c2d0b470SArd Biesheuvel #include <asm/boot.h>
17c2d0b470SArd Biesheuvel 
18c2d0b470SArd Biesheuvel #include "efistub.h"
19c2d0b470SArd Biesheuvel 
20d5cdf4cfSArvind Sankar /* Maximum physical address for 64-bit kernel with 4-level paging */
21d5cdf4cfSArvind Sankar #define MAXMEM_X86_64_4LEVEL (1ull << 46)
22d5cdf4cfSArvind Sankar 
23ccc27ae7SArd Biesheuvel const efi_system_table_t *efi_system_table;
241887c9b6SArvind Sankar extern u32 image_offset;
25c2d0b470SArd Biesheuvel 
26c2d0b470SArd Biesheuvel static efi_status_t
27c2d0b470SArd Biesheuvel preserve_pci_rom_image(efi_pci_io_protocol_t *pci, struct pci_setup_rom **__rom)
28c2d0b470SArd Biesheuvel {
29c2d0b470SArd Biesheuvel 	struct pci_setup_rom *rom = NULL;
30c2d0b470SArd Biesheuvel 	efi_status_t status;
31c2d0b470SArd Biesheuvel 	unsigned long size;
32c2d0b470SArd Biesheuvel 	uint64_t romsize;
33c2d0b470SArd Biesheuvel 	void *romimage;
34c2d0b470SArd Biesheuvel 
35c2d0b470SArd Biesheuvel 	/*
36c2d0b470SArd Biesheuvel 	 * Some firmware images contain EFI function pointers at the place where
37c2d0b470SArd Biesheuvel 	 * the romimage and romsize fields are supposed to be. Typically the EFI
38c2d0b470SArd Biesheuvel 	 * code is mapped at high addresses, translating to an unrealistically
39c2d0b470SArd Biesheuvel 	 * large romsize. The UEFI spec limits the size of option ROMs to 16
40c2d0b470SArd Biesheuvel 	 * MiB so we reject any ROMs over 16 MiB in size to catch this.
41c2d0b470SArd Biesheuvel 	 */
42c2d0b470SArd Biesheuvel 	romimage = efi_table_attr(pci, romimage);
43c2d0b470SArd Biesheuvel 	romsize = efi_table_attr(pci, romsize);
44c2d0b470SArd Biesheuvel 	if (!romimage || !romsize || romsize > SZ_16M)
45c2d0b470SArd Biesheuvel 		return EFI_INVALID_PARAMETER;
46c2d0b470SArd Biesheuvel 
47c2d0b470SArd Biesheuvel 	size = romsize + sizeof(*rom);
48c2d0b470SArd Biesheuvel 
49c2d0b470SArd Biesheuvel 	status = efi_bs_call(allocate_pool, EFI_LOADER_DATA, size,
50c2d0b470SArd Biesheuvel 			     (void **)&rom);
51c2d0b470SArd Biesheuvel 	if (status != EFI_SUCCESS) {
5236bdd0a7SArvind Sankar 		efi_err("Failed to allocate memory for 'rom'\n");
53c2d0b470SArd Biesheuvel 		return status;
54c2d0b470SArd Biesheuvel 	}
55c2d0b470SArd Biesheuvel 
56c2d0b470SArd Biesheuvel 	memset(rom, 0, sizeof(*rom));
57c2d0b470SArd Biesheuvel 
58c2d0b470SArd Biesheuvel 	rom->data.type	= SETUP_PCI;
59c2d0b470SArd Biesheuvel 	rom->data.len	= size - sizeof(struct setup_data);
60c2d0b470SArd Biesheuvel 	rom->data.next	= 0;
61c2d0b470SArd Biesheuvel 	rom->pcilen	= pci->romsize;
62c2d0b470SArd Biesheuvel 	*__rom = rom;
63c2d0b470SArd Biesheuvel 
64c2d0b470SArd Biesheuvel 	status = efi_call_proto(pci, pci.read, EfiPciIoWidthUint16,
65c2d0b470SArd Biesheuvel 				PCI_VENDOR_ID, 1, &rom->vendor);
66c2d0b470SArd Biesheuvel 
67c2d0b470SArd Biesheuvel 	if (status != EFI_SUCCESS) {
6836bdd0a7SArvind Sankar 		efi_err("Failed to read rom->vendor\n");
69c2d0b470SArd Biesheuvel 		goto free_struct;
70c2d0b470SArd Biesheuvel 	}
71c2d0b470SArd Biesheuvel 
72c2d0b470SArd Biesheuvel 	status = efi_call_proto(pci, pci.read, EfiPciIoWidthUint16,
73c2d0b470SArd Biesheuvel 				PCI_DEVICE_ID, 1, &rom->devid);
74c2d0b470SArd Biesheuvel 
75c2d0b470SArd Biesheuvel 	if (status != EFI_SUCCESS) {
7636bdd0a7SArvind Sankar 		efi_err("Failed to read rom->devid\n");
77c2d0b470SArd Biesheuvel 		goto free_struct;
78c2d0b470SArd Biesheuvel 	}
79c2d0b470SArd Biesheuvel 
80c2d0b470SArd Biesheuvel 	status = efi_call_proto(pci, get_location, &rom->segment, &rom->bus,
81c2d0b470SArd Biesheuvel 				&rom->device, &rom->function);
82c2d0b470SArd Biesheuvel 
83c2d0b470SArd Biesheuvel 	if (status != EFI_SUCCESS)
84c2d0b470SArd Biesheuvel 		goto free_struct;
85c2d0b470SArd Biesheuvel 
86c2d0b470SArd Biesheuvel 	memcpy(rom->romdata, romimage, romsize);
87c2d0b470SArd Biesheuvel 	return status;
88c2d0b470SArd Biesheuvel 
89c2d0b470SArd Biesheuvel free_struct:
90c2d0b470SArd Biesheuvel 	efi_bs_call(free_pool, rom);
91c2d0b470SArd Biesheuvel 	return status;
92c2d0b470SArd Biesheuvel }
93c2d0b470SArd Biesheuvel 
94c2d0b470SArd Biesheuvel /*
95c2d0b470SArd Biesheuvel  * There's no way to return an informative status from this function,
96c2d0b470SArd Biesheuvel  * because any analysis (and printing of error messages) needs to be
97c2d0b470SArd Biesheuvel  * done directly at the EFI function call-site.
98c2d0b470SArd Biesheuvel  *
99c2d0b470SArd Biesheuvel  * For example, EFI_INVALID_PARAMETER could indicate a bug or maybe we
100c2d0b470SArd Biesheuvel  * just didn't find any PCI devices, but there's no way to tell outside
101c2d0b470SArd Biesheuvel  * the context of the call.
102c2d0b470SArd Biesheuvel  */
103c2d0b470SArd Biesheuvel static void setup_efi_pci(struct boot_params *params)
104c2d0b470SArd Biesheuvel {
105c2d0b470SArd Biesheuvel 	efi_status_t status;
106c2d0b470SArd Biesheuvel 	void **pci_handle = NULL;
107c2d0b470SArd Biesheuvel 	efi_guid_t pci_proto = EFI_PCI_IO_PROTOCOL_GUID;
108c2d0b470SArd Biesheuvel 	unsigned long size = 0;
109c2d0b470SArd Biesheuvel 	struct setup_data *data;
110c2d0b470SArd Biesheuvel 	efi_handle_t h;
111c2d0b470SArd Biesheuvel 	int i;
112c2d0b470SArd Biesheuvel 
113c2d0b470SArd Biesheuvel 	status = efi_bs_call(locate_handle, EFI_LOCATE_BY_PROTOCOL,
114c2d0b470SArd Biesheuvel 			     &pci_proto, NULL, &size, pci_handle);
115c2d0b470SArd Biesheuvel 
116c2d0b470SArd Biesheuvel 	if (status == EFI_BUFFER_TOO_SMALL) {
117c2d0b470SArd Biesheuvel 		status = efi_bs_call(allocate_pool, EFI_LOADER_DATA, size,
118c2d0b470SArd Biesheuvel 				     (void **)&pci_handle);
119c2d0b470SArd Biesheuvel 
120c2d0b470SArd Biesheuvel 		if (status != EFI_SUCCESS) {
12136bdd0a7SArvind Sankar 			efi_err("Failed to allocate memory for 'pci_handle'\n");
122c2d0b470SArd Biesheuvel 			return;
123c2d0b470SArd Biesheuvel 		}
124c2d0b470SArd Biesheuvel 
125c2d0b470SArd Biesheuvel 		status = efi_bs_call(locate_handle, EFI_LOCATE_BY_PROTOCOL,
126c2d0b470SArd Biesheuvel 				     &pci_proto, NULL, &size, pci_handle);
127c2d0b470SArd Biesheuvel 	}
128c2d0b470SArd Biesheuvel 
129c2d0b470SArd Biesheuvel 	if (status != EFI_SUCCESS)
130c2d0b470SArd Biesheuvel 		goto free_handle;
131c2d0b470SArd Biesheuvel 
132c2d0b470SArd Biesheuvel 	data = (struct setup_data *)(unsigned long)params->hdr.setup_data;
133c2d0b470SArd Biesheuvel 
134c2d0b470SArd Biesheuvel 	while (data && data->next)
135c2d0b470SArd Biesheuvel 		data = (struct setup_data *)(unsigned long)data->next;
136c2d0b470SArd Biesheuvel 
137c2d0b470SArd Biesheuvel 	for_each_efi_handle(h, pci_handle, size, i) {
138c2d0b470SArd Biesheuvel 		efi_pci_io_protocol_t *pci = NULL;
139c2d0b470SArd Biesheuvel 		struct pci_setup_rom *rom;
140c2d0b470SArd Biesheuvel 
141c2d0b470SArd Biesheuvel 		status = efi_bs_call(handle_protocol, h, &pci_proto,
142c2d0b470SArd Biesheuvel 				     (void **)&pci);
143c2d0b470SArd Biesheuvel 		if (status != EFI_SUCCESS || !pci)
144c2d0b470SArd Biesheuvel 			continue;
145c2d0b470SArd Biesheuvel 
146c2d0b470SArd Biesheuvel 		status = preserve_pci_rom_image(pci, &rom);
147c2d0b470SArd Biesheuvel 		if (status != EFI_SUCCESS)
148c2d0b470SArd Biesheuvel 			continue;
149c2d0b470SArd Biesheuvel 
150c2d0b470SArd Biesheuvel 		if (data)
151c2d0b470SArd Biesheuvel 			data->next = (unsigned long)rom;
152c2d0b470SArd Biesheuvel 		else
153c2d0b470SArd Biesheuvel 			params->hdr.setup_data = (unsigned long)rom;
154c2d0b470SArd Biesheuvel 
155c2d0b470SArd Biesheuvel 		data = (struct setup_data *)rom;
156c2d0b470SArd Biesheuvel 	}
157c2d0b470SArd Biesheuvel 
158c2d0b470SArd Biesheuvel free_handle:
159c2d0b470SArd Biesheuvel 	efi_bs_call(free_pool, pci_handle);
160c2d0b470SArd Biesheuvel }
161c2d0b470SArd Biesheuvel 
162c2d0b470SArd Biesheuvel static void retrieve_apple_device_properties(struct boot_params *boot_params)
163c2d0b470SArd Biesheuvel {
164c2d0b470SArd Biesheuvel 	efi_guid_t guid = APPLE_PROPERTIES_PROTOCOL_GUID;
165c2d0b470SArd Biesheuvel 	struct setup_data *data, *new;
166c2d0b470SArd Biesheuvel 	efi_status_t status;
167c2d0b470SArd Biesheuvel 	u32 size = 0;
168c2d0b470SArd Biesheuvel 	apple_properties_protocol_t *p;
169c2d0b470SArd Biesheuvel 
170c2d0b470SArd Biesheuvel 	status = efi_bs_call(locate_protocol, &guid, NULL, (void **)&p);
171c2d0b470SArd Biesheuvel 	if (status != EFI_SUCCESS)
172c2d0b470SArd Biesheuvel 		return;
173c2d0b470SArd Biesheuvel 
174c2d0b470SArd Biesheuvel 	if (efi_table_attr(p, version) != 0x10000) {
17536bdd0a7SArvind Sankar 		efi_err("Unsupported properties proto version\n");
176c2d0b470SArd Biesheuvel 		return;
177c2d0b470SArd Biesheuvel 	}
178c2d0b470SArd Biesheuvel 
179c2d0b470SArd Biesheuvel 	efi_call_proto(p, get_all, NULL, &size);
180c2d0b470SArd Biesheuvel 	if (!size)
181c2d0b470SArd Biesheuvel 		return;
182c2d0b470SArd Biesheuvel 
183c2d0b470SArd Biesheuvel 	do {
184c2d0b470SArd Biesheuvel 		status = efi_bs_call(allocate_pool, EFI_LOADER_DATA,
185c2d0b470SArd Biesheuvel 				     size + sizeof(struct setup_data),
186c2d0b470SArd Biesheuvel 				     (void **)&new);
187c2d0b470SArd Biesheuvel 		if (status != EFI_SUCCESS) {
18836bdd0a7SArvind Sankar 			efi_err("Failed to allocate memory for 'properties'\n");
189c2d0b470SArd Biesheuvel 			return;
190c2d0b470SArd Biesheuvel 		}
191c2d0b470SArd Biesheuvel 
192c2d0b470SArd Biesheuvel 		status = efi_call_proto(p, get_all, new->data, &size);
193c2d0b470SArd Biesheuvel 
194c2d0b470SArd Biesheuvel 		if (status == EFI_BUFFER_TOO_SMALL)
195c2d0b470SArd Biesheuvel 			efi_bs_call(free_pool, new);
196c2d0b470SArd Biesheuvel 	} while (status == EFI_BUFFER_TOO_SMALL);
197c2d0b470SArd Biesheuvel 
198c2d0b470SArd Biesheuvel 	new->type = SETUP_APPLE_PROPERTIES;
199c2d0b470SArd Biesheuvel 	new->len  = size;
200c2d0b470SArd Biesheuvel 	new->next = 0;
201c2d0b470SArd Biesheuvel 
202c2d0b470SArd Biesheuvel 	data = (struct setup_data *)(unsigned long)boot_params->hdr.setup_data;
203c2d0b470SArd Biesheuvel 	if (!data) {
204c2d0b470SArd Biesheuvel 		boot_params->hdr.setup_data = (unsigned long)new;
205c2d0b470SArd Biesheuvel 	} else {
206c2d0b470SArd Biesheuvel 		while (data->next)
207c2d0b470SArd Biesheuvel 			data = (struct setup_data *)(unsigned long)data->next;
208c2d0b470SArd Biesheuvel 		data->next = (unsigned long)new;
209c2d0b470SArd Biesheuvel 	}
210c2d0b470SArd Biesheuvel }
211c2d0b470SArd Biesheuvel 
212c2d0b470SArd Biesheuvel static const efi_char16_t apple[] = L"Apple";
213c2d0b470SArd Biesheuvel 
214c2d0b470SArd Biesheuvel static void setup_quirks(struct boot_params *boot_params)
215c2d0b470SArd Biesheuvel {
216c2d0b470SArd Biesheuvel 	efi_char16_t *fw_vendor = (efi_char16_t *)(unsigned long)
217ccc27ae7SArd Biesheuvel 		efi_table_attr(efi_system_table, fw_vendor);
218c2d0b470SArd Biesheuvel 
219c2d0b470SArd Biesheuvel 	if (!memcmp(fw_vendor, apple, sizeof(apple))) {
220c2d0b470SArd Biesheuvel 		if (IS_ENABLED(CONFIG_APPLE_PROPERTIES))
221c2d0b470SArd Biesheuvel 			retrieve_apple_device_properties(boot_params);
222c2d0b470SArd Biesheuvel 	}
223c2d0b470SArd Biesheuvel }
224c2d0b470SArd Biesheuvel 
225c2d0b470SArd Biesheuvel /*
226c2d0b470SArd Biesheuvel  * See if we have Universal Graphics Adapter (UGA) protocol
227c2d0b470SArd Biesheuvel  */
228c2d0b470SArd Biesheuvel static efi_status_t
229c2d0b470SArd Biesheuvel setup_uga(struct screen_info *si, efi_guid_t *uga_proto, unsigned long size)
230c2d0b470SArd Biesheuvel {
231c2d0b470SArd Biesheuvel 	efi_status_t status;
232c2d0b470SArd Biesheuvel 	u32 width, height;
233c2d0b470SArd Biesheuvel 	void **uga_handle = NULL;
234c2d0b470SArd Biesheuvel 	efi_uga_draw_protocol_t *uga = NULL, *first_uga;
235c2d0b470SArd Biesheuvel 	efi_handle_t handle;
236c2d0b470SArd Biesheuvel 	int i;
237c2d0b470SArd Biesheuvel 
238c2d0b470SArd Biesheuvel 	status = efi_bs_call(allocate_pool, EFI_LOADER_DATA, size,
239c2d0b470SArd Biesheuvel 			     (void **)&uga_handle);
240c2d0b470SArd Biesheuvel 	if (status != EFI_SUCCESS)
241c2d0b470SArd Biesheuvel 		return status;
242c2d0b470SArd Biesheuvel 
243c2d0b470SArd Biesheuvel 	status = efi_bs_call(locate_handle, EFI_LOCATE_BY_PROTOCOL,
244c2d0b470SArd Biesheuvel 			     uga_proto, NULL, &size, uga_handle);
245c2d0b470SArd Biesheuvel 	if (status != EFI_SUCCESS)
246c2d0b470SArd Biesheuvel 		goto free_handle;
247c2d0b470SArd Biesheuvel 
248c2d0b470SArd Biesheuvel 	height = 0;
249c2d0b470SArd Biesheuvel 	width = 0;
250c2d0b470SArd Biesheuvel 
251c2d0b470SArd Biesheuvel 	first_uga = NULL;
252c2d0b470SArd Biesheuvel 	for_each_efi_handle(handle, uga_handle, size, i) {
253c2d0b470SArd Biesheuvel 		efi_guid_t pciio_proto = EFI_PCI_IO_PROTOCOL_GUID;
254c2d0b470SArd Biesheuvel 		u32 w, h, depth, refresh;
255c2d0b470SArd Biesheuvel 		void *pciio;
256c2d0b470SArd Biesheuvel 
257c2d0b470SArd Biesheuvel 		status = efi_bs_call(handle_protocol, handle, uga_proto,
258c2d0b470SArd Biesheuvel 				     (void **)&uga);
259c2d0b470SArd Biesheuvel 		if (status != EFI_SUCCESS)
260c2d0b470SArd Biesheuvel 			continue;
261c2d0b470SArd Biesheuvel 
262c2d0b470SArd Biesheuvel 		pciio = NULL;
263c2d0b470SArd Biesheuvel 		efi_bs_call(handle_protocol, handle, &pciio_proto, &pciio);
264c2d0b470SArd Biesheuvel 
265c2d0b470SArd Biesheuvel 		status = efi_call_proto(uga, get_mode, &w, &h, &depth, &refresh);
266c2d0b470SArd Biesheuvel 		if (status == EFI_SUCCESS && (!first_uga || pciio)) {
267c2d0b470SArd Biesheuvel 			width = w;
268c2d0b470SArd Biesheuvel 			height = h;
269c2d0b470SArd Biesheuvel 
270c2d0b470SArd Biesheuvel 			/*
271c2d0b470SArd Biesheuvel 			 * Once we've found a UGA supporting PCIIO,
272c2d0b470SArd Biesheuvel 			 * don't bother looking any further.
273c2d0b470SArd Biesheuvel 			 */
274c2d0b470SArd Biesheuvel 			if (pciio)
275c2d0b470SArd Biesheuvel 				break;
276c2d0b470SArd Biesheuvel 
277c2d0b470SArd Biesheuvel 			first_uga = uga;
278c2d0b470SArd Biesheuvel 		}
279c2d0b470SArd Biesheuvel 	}
280c2d0b470SArd Biesheuvel 
281c2d0b470SArd Biesheuvel 	if (!width && !height)
282c2d0b470SArd Biesheuvel 		goto free_handle;
283c2d0b470SArd Biesheuvel 
284c2d0b470SArd Biesheuvel 	/* EFI framebuffer */
285c2d0b470SArd Biesheuvel 	si->orig_video_isVGA	= VIDEO_TYPE_EFI;
286c2d0b470SArd Biesheuvel 
287c2d0b470SArd Biesheuvel 	si->lfb_depth		= 32;
288c2d0b470SArd Biesheuvel 	si->lfb_width		= width;
289c2d0b470SArd Biesheuvel 	si->lfb_height		= height;
290c2d0b470SArd Biesheuvel 
291c2d0b470SArd Biesheuvel 	si->red_size		= 8;
292c2d0b470SArd Biesheuvel 	si->red_pos		= 16;
293c2d0b470SArd Biesheuvel 	si->green_size		= 8;
294c2d0b470SArd Biesheuvel 	si->green_pos		= 8;
295c2d0b470SArd Biesheuvel 	si->blue_size		= 8;
296c2d0b470SArd Biesheuvel 	si->blue_pos		= 0;
297c2d0b470SArd Biesheuvel 	si->rsvd_size		= 8;
298c2d0b470SArd Biesheuvel 	si->rsvd_pos		= 24;
299c2d0b470SArd Biesheuvel 
300c2d0b470SArd Biesheuvel free_handle:
301c2d0b470SArd Biesheuvel 	efi_bs_call(free_pool, uga_handle);
302c2d0b470SArd Biesheuvel 
303c2d0b470SArd Biesheuvel 	return status;
304c2d0b470SArd Biesheuvel }
305c2d0b470SArd Biesheuvel 
306c2d0b470SArd Biesheuvel static void setup_graphics(struct boot_params *boot_params)
307c2d0b470SArd Biesheuvel {
308c2d0b470SArd Biesheuvel 	efi_guid_t graphics_proto = EFI_GRAPHICS_OUTPUT_PROTOCOL_GUID;
309c2d0b470SArd Biesheuvel 	struct screen_info *si;
310c2d0b470SArd Biesheuvel 	efi_guid_t uga_proto = EFI_UGA_PROTOCOL_GUID;
311c2d0b470SArd Biesheuvel 	efi_status_t status;
312c2d0b470SArd Biesheuvel 	unsigned long size;
313c2d0b470SArd Biesheuvel 	void **gop_handle = NULL;
314c2d0b470SArd Biesheuvel 	void **uga_handle = NULL;
315c2d0b470SArd Biesheuvel 
316c2d0b470SArd Biesheuvel 	si = &boot_params->screen_info;
317c2d0b470SArd Biesheuvel 	memset(si, 0, sizeof(*si));
318c2d0b470SArd Biesheuvel 
319c2d0b470SArd Biesheuvel 	size = 0;
320c2d0b470SArd Biesheuvel 	status = efi_bs_call(locate_handle, EFI_LOCATE_BY_PROTOCOL,
321c2d0b470SArd Biesheuvel 			     &graphics_proto, NULL, &size, gop_handle);
322c2d0b470SArd Biesheuvel 	if (status == EFI_BUFFER_TOO_SMALL)
323c2d0b470SArd Biesheuvel 		status = efi_setup_gop(si, &graphics_proto, size);
324c2d0b470SArd Biesheuvel 
325c2d0b470SArd Biesheuvel 	if (status != EFI_SUCCESS) {
326c2d0b470SArd Biesheuvel 		size = 0;
327c2d0b470SArd Biesheuvel 		status = efi_bs_call(locate_handle, EFI_LOCATE_BY_PROTOCOL,
328c2d0b470SArd Biesheuvel 				     &uga_proto, NULL, &size, uga_handle);
329c2d0b470SArd Biesheuvel 		if (status == EFI_BUFFER_TOO_SMALL)
330c2d0b470SArd Biesheuvel 			setup_uga(si, &uga_proto, size);
331c2d0b470SArd Biesheuvel 	}
332c2d0b470SArd Biesheuvel }
333c2d0b470SArd Biesheuvel 
3343b8f44fcSArd Biesheuvel 
3353b8f44fcSArd Biesheuvel static void __noreturn efi_exit(efi_handle_t handle, efi_status_t status)
3363b8f44fcSArd Biesheuvel {
3373b8f44fcSArd Biesheuvel 	efi_bs_call(exit, handle, status, 0, NULL);
338f3fa0efcSArd Biesheuvel 	for(;;)
339f3fa0efcSArd Biesheuvel 		asm("hlt");
3403b8f44fcSArd Biesheuvel }
3413b8f44fcSArd Biesheuvel 
342c2d0b470SArd Biesheuvel void startup_32(struct boot_params *boot_params);
343c2d0b470SArd Biesheuvel 
344c2d0b470SArd Biesheuvel void __noreturn efi_stub_entry(efi_handle_t handle,
345c2d0b470SArd Biesheuvel 			       efi_system_table_t *sys_table_arg,
346c2d0b470SArd Biesheuvel 			       struct boot_params *boot_params);
347c2d0b470SArd Biesheuvel 
348c2d0b470SArd Biesheuvel /*
349c2d0b470SArd Biesheuvel  * Because the x86 boot code expects to be passed a boot_params we
350c2d0b470SArd Biesheuvel  * need to create one ourselves (usually the bootloader would create
351c2d0b470SArd Biesheuvel  * one for us).
352c2d0b470SArd Biesheuvel  */
353c2d0b470SArd Biesheuvel efi_status_t __efiapi efi_pe_entry(efi_handle_t handle,
354c2d0b470SArd Biesheuvel 				   efi_system_table_t *sys_table_arg)
355c2d0b470SArd Biesheuvel {
356c2d0b470SArd Biesheuvel 	struct boot_params *boot_params;
357c2d0b470SArd Biesheuvel 	struct setup_header *hdr;
358c2d0b470SArd Biesheuvel 	efi_loaded_image_t *image;
3591887c9b6SArvind Sankar 	void *image_base;
360c2d0b470SArd Biesheuvel 	efi_guid_t proto = LOADED_IMAGE_PROTOCOL_GUID;
361c2d0b470SArd Biesheuvel 	int options_size = 0;
362c2d0b470SArd Biesheuvel 	efi_status_t status;
363c2d0b470SArd Biesheuvel 	char *cmdline_ptr;
364c2d0b470SArd Biesheuvel 	unsigned long ramdisk_addr;
365c2d0b470SArd Biesheuvel 	unsigned long ramdisk_size;
366c2d0b470SArd Biesheuvel 
367ccc27ae7SArd Biesheuvel 	efi_system_table = sys_table_arg;
368c2d0b470SArd Biesheuvel 
369c2d0b470SArd Biesheuvel 	/* Check if we were booted by the EFI firmware */
370ccc27ae7SArd Biesheuvel 	if (efi_system_table->hdr.signature != EFI_SYSTEM_TABLE_SIGNATURE)
3713b8f44fcSArd Biesheuvel 		efi_exit(handle, EFI_INVALID_PARAMETER);
372c2d0b470SArd Biesheuvel 
3730347d8c2SArvind Sankar 	status = efi_bs_call(handle_protocol, handle, &proto, (void **)&image);
374c2d0b470SArd Biesheuvel 	if (status != EFI_SUCCESS) {
37536bdd0a7SArvind Sankar 		efi_err("Failed to get handle for LOADED_IMAGE_PROTOCOL\n");
3763b8f44fcSArd Biesheuvel 		efi_exit(handle, status);
377c2d0b470SArd Biesheuvel 	}
378c2d0b470SArd Biesheuvel 
3791887c9b6SArvind Sankar 	image_base = efi_table_attr(image, image_base);
3801887c9b6SArvind Sankar 	image_offset = (void *)startup_32 - image_base;
3811887c9b6SArvind Sankar 
382019512f1SArvind Sankar 	status = efi_allocate_pages(sizeof(struct boot_params),
383019512f1SArvind Sankar 				    (unsigned long *)&boot_params, ULONG_MAX);
384c2d0b470SArd Biesheuvel 	if (status != EFI_SUCCESS) {
38536bdd0a7SArvind Sankar 		efi_err("Failed to allocate lowmem for boot params\n");
3863b8f44fcSArd Biesheuvel 		efi_exit(handle, status);
387c2d0b470SArd Biesheuvel 	}
388c2d0b470SArd Biesheuvel 
389019512f1SArvind Sankar 	memset(boot_params, 0x0, sizeof(struct boot_params));
390c2d0b470SArd Biesheuvel 
391c2d0b470SArd Biesheuvel 	hdr = &boot_params->hdr;
392c2d0b470SArd Biesheuvel 
393c2d0b470SArd Biesheuvel 	/* Copy the second sector to boot_params */
3941887c9b6SArvind Sankar 	memcpy(&hdr->jump, image_base + 512, 512);
395c2d0b470SArd Biesheuvel 
396c2d0b470SArd Biesheuvel 	/*
397c2d0b470SArd Biesheuvel 	 * Fill out some of the header fields ourselves because the
398c2d0b470SArd Biesheuvel 	 * EFI firmware loader doesn't load the first sector.
399c2d0b470SArd Biesheuvel 	 */
400c2d0b470SArd Biesheuvel 	hdr->root_flags	= 1;
401c2d0b470SArd Biesheuvel 	hdr->vid_mode	= 0xffff;
402c2d0b470SArd Biesheuvel 	hdr->boot_flag	= 0xAA55;
403c2d0b470SArd Biesheuvel 
404c2d0b470SArd Biesheuvel 	hdr->type_of_loader = 0x21;
405c2d0b470SArd Biesheuvel 
406c2d0b470SArd Biesheuvel 	/* Convert unicode cmdline to ascii */
407ac82d356SArd Biesheuvel 	cmdline_ptr = efi_convert_cmdline(image, &options_size, ULONG_MAX);
408c2d0b470SArd Biesheuvel 	if (!cmdline_ptr)
409c2d0b470SArd Biesheuvel 		goto fail;
410c2d0b470SArd Biesheuvel 
411eed4e019SArvind Sankar 	efi_set_u64_split((unsigned long)cmdline_ptr,
412eed4e019SArvind Sankar 			  &hdr->cmd_line_ptr, &boot_params->ext_cmd_line_ptr);
413c2d0b470SArd Biesheuvel 
414c2d0b470SArd Biesheuvel 	hdr->ramdisk_image = 0;
415c2d0b470SArd Biesheuvel 	hdr->ramdisk_size = 0;
416c2d0b470SArd Biesheuvel 
41717054f49SArd Biesheuvel 	if (efi_is_native()) {
418c2d0b470SArd Biesheuvel 		status = efi_parse_options(cmdline_ptr);
419c2d0b470SArd Biesheuvel 		if (status != EFI_SUCCESS)
420c2d0b470SArd Biesheuvel 			goto fail2;
421c2d0b470SArd Biesheuvel 
422980771f6SArd Biesheuvel 		if (!efi_noinitrd) {
42317054f49SArd Biesheuvel 			status = efi_load_initrd(image, &ramdisk_addr,
42417054f49SArd Biesheuvel 						 &ramdisk_size,
42531f5e546SArd Biesheuvel 						 hdr->initrd_addr_max,
426ac82d356SArd Biesheuvel 						 ULONG_MAX);
427c2d0b470SArd Biesheuvel 			if (status != EFI_SUCCESS)
428c2d0b470SArd Biesheuvel 				goto fail2;
429eed4e019SArvind Sankar 			efi_set_u64_split(ramdisk_addr, &hdr->ramdisk_image,
430eed4e019SArvind Sankar 					  &boot_params->ext_ramdisk_image);
431eed4e019SArvind Sankar 			efi_set_u64_split(ramdisk_size, &hdr->ramdisk_size,
432eed4e019SArvind Sankar 					  &boot_params->ext_ramdisk_size);
43379d3219dSArd Biesheuvel 		}
43417054f49SArd Biesheuvel 	}
435c2d0b470SArd Biesheuvel 
436ccc27ae7SArd Biesheuvel 	efi_stub_entry(handle, sys_table_arg, boot_params);
437c2d0b470SArd Biesheuvel 	/* not reached */
438c2d0b470SArd Biesheuvel 
439c2d0b470SArd Biesheuvel fail2:
4401e45bf73SArd Biesheuvel 	efi_free(options_size, (unsigned long)cmdline_ptr);
441c2d0b470SArd Biesheuvel fail:
442019512f1SArvind Sankar 	efi_free(sizeof(struct boot_params), (unsigned long)boot_params);
443c2d0b470SArd Biesheuvel 
4443b8f44fcSArd Biesheuvel 	efi_exit(handle, status);
445c2d0b470SArd Biesheuvel }
446c2d0b470SArd Biesheuvel 
447c2d0b470SArd Biesheuvel static void add_e820ext(struct boot_params *params,
448c2d0b470SArd Biesheuvel 			struct setup_data *e820ext, u32 nr_entries)
449c2d0b470SArd Biesheuvel {
450c2d0b470SArd Biesheuvel 	struct setup_data *data;
451c2d0b470SArd Biesheuvel 
452c2d0b470SArd Biesheuvel 	e820ext->type = SETUP_E820_EXT;
453c2d0b470SArd Biesheuvel 	e820ext->len  = nr_entries * sizeof(struct boot_e820_entry);
454c2d0b470SArd Biesheuvel 	e820ext->next = 0;
455c2d0b470SArd Biesheuvel 
456c2d0b470SArd Biesheuvel 	data = (struct setup_data *)(unsigned long)params->hdr.setup_data;
457c2d0b470SArd Biesheuvel 
458c2d0b470SArd Biesheuvel 	while (data && data->next)
459c2d0b470SArd Biesheuvel 		data = (struct setup_data *)(unsigned long)data->next;
460c2d0b470SArd Biesheuvel 
461c2d0b470SArd Biesheuvel 	if (data)
462c2d0b470SArd Biesheuvel 		data->next = (unsigned long)e820ext;
463c2d0b470SArd Biesheuvel 	else
464c2d0b470SArd Biesheuvel 		params->hdr.setup_data = (unsigned long)e820ext;
465c2d0b470SArd Biesheuvel }
466c2d0b470SArd Biesheuvel 
467c2d0b470SArd Biesheuvel static efi_status_t
468c2d0b470SArd Biesheuvel setup_e820(struct boot_params *params, struct setup_data *e820ext, u32 e820ext_size)
469c2d0b470SArd Biesheuvel {
470c2d0b470SArd Biesheuvel 	struct boot_e820_entry *entry = params->e820_table;
471c2d0b470SArd Biesheuvel 	struct efi_info *efi = &params->efi_info;
472c2d0b470SArd Biesheuvel 	struct boot_e820_entry *prev = NULL;
473c2d0b470SArd Biesheuvel 	u32 nr_entries;
474c2d0b470SArd Biesheuvel 	u32 nr_desc;
475c2d0b470SArd Biesheuvel 	int i;
476c2d0b470SArd Biesheuvel 
477c2d0b470SArd Biesheuvel 	nr_entries = 0;
478c2d0b470SArd Biesheuvel 	nr_desc = efi->efi_memmap_size / efi->efi_memdesc_size;
479c2d0b470SArd Biesheuvel 
480c2d0b470SArd Biesheuvel 	for (i = 0; i < nr_desc; i++) {
481c2d0b470SArd Biesheuvel 		efi_memory_desc_t *d;
482c2d0b470SArd Biesheuvel 		unsigned int e820_type = 0;
483c2d0b470SArd Biesheuvel 		unsigned long m = efi->efi_memmap;
484c2d0b470SArd Biesheuvel 
485c2d0b470SArd Biesheuvel #ifdef CONFIG_X86_64
486c2d0b470SArd Biesheuvel 		m |= (u64)efi->efi_memmap_hi << 32;
487c2d0b470SArd Biesheuvel #endif
488c2d0b470SArd Biesheuvel 
489c2d0b470SArd Biesheuvel 		d = efi_early_memdesc_ptr(m, efi->efi_memdesc_size, i);
490c2d0b470SArd Biesheuvel 		switch (d->type) {
491c2d0b470SArd Biesheuvel 		case EFI_RESERVED_TYPE:
492c2d0b470SArd Biesheuvel 		case EFI_RUNTIME_SERVICES_CODE:
493c2d0b470SArd Biesheuvel 		case EFI_RUNTIME_SERVICES_DATA:
494c2d0b470SArd Biesheuvel 		case EFI_MEMORY_MAPPED_IO:
495c2d0b470SArd Biesheuvel 		case EFI_MEMORY_MAPPED_IO_PORT_SPACE:
496c2d0b470SArd Biesheuvel 		case EFI_PAL_CODE:
497c2d0b470SArd Biesheuvel 			e820_type = E820_TYPE_RESERVED;
498c2d0b470SArd Biesheuvel 			break;
499c2d0b470SArd Biesheuvel 
500c2d0b470SArd Biesheuvel 		case EFI_UNUSABLE_MEMORY:
501c2d0b470SArd Biesheuvel 			e820_type = E820_TYPE_UNUSABLE;
502c2d0b470SArd Biesheuvel 			break;
503c2d0b470SArd Biesheuvel 
504c2d0b470SArd Biesheuvel 		case EFI_ACPI_RECLAIM_MEMORY:
505c2d0b470SArd Biesheuvel 			e820_type = E820_TYPE_ACPI;
506c2d0b470SArd Biesheuvel 			break;
507c2d0b470SArd Biesheuvel 
508c2d0b470SArd Biesheuvel 		case EFI_LOADER_CODE:
509c2d0b470SArd Biesheuvel 		case EFI_LOADER_DATA:
510c2d0b470SArd Biesheuvel 		case EFI_BOOT_SERVICES_CODE:
511c2d0b470SArd Biesheuvel 		case EFI_BOOT_SERVICES_DATA:
512c2d0b470SArd Biesheuvel 		case EFI_CONVENTIONAL_MEMORY:
513c2d0b470SArd Biesheuvel 			if (efi_soft_reserve_enabled() &&
514c2d0b470SArd Biesheuvel 			    (d->attribute & EFI_MEMORY_SP))
515c2d0b470SArd Biesheuvel 				e820_type = E820_TYPE_SOFT_RESERVED;
516c2d0b470SArd Biesheuvel 			else
517c2d0b470SArd Biesheuvel 				e820_type = E820_TYPE_RAM;
518c2d0b470SArd Biesheuvel 			break;
519c2d0b470SArd Biesheuvel 
520c2d0b470SArd Biesheuvel 		case EFI_ACPI_MEMORY_NVS:
521c2d0b470SArd Biesheuvel 			e820_type = E820_TYPE_NVS;
522c2d0b470SArd Biesheuvel 			break;
523c2d0b470SArd Biesheuvel 
524c2d0b470SArd Biesheuvel 		case EFI_PERSISTENT_MEMORY:
525c2d0b470SArd Biesheuvel 			e820_type = E820_TYPE_PMEM;
526c2d0b470SArd Biesheuvel 			break;
527c2d0b470SArd Biesheuvel 
528c2d0b470SArd Biesheuvel 		default:
529c2d0b470SArd Biesheuvel 			continue;
530c2d0b470SArd Biesheuvel 		}
531c2d0b470SArd Biesheuvel 
532c2d0b470SArd Biesheuvel 		/* Merge adjacent mappings */
533c2d0b470SArd Biesheuvel 		if (prev && prev->type == e820_type &&
534c2d0b470SArd Biesheuvel 		    (prev->addr + prev->size) == d->phys_addr) {
535c2d0b470SArd Biesheuvel 			prev->size += d->num_pages << 12;
536c2d0b470SArd Biesheuvel 			continue;
537c2d0b470SArd Biesheuvel 		}
538c2d0b470SArd Biesheuvel 
539c2d0b470SArd Biesheuvel 		if (nr_entries == ARRAY_SIZE(params->e820_table)) {
540c2d0b470SArd Biesheuvel 			u32 need = (nr_desc - i) * sizeof(struct e820_entry) +
541c2d0b470SArd Biesheuvel 				   sizeof(struct setup_data);
542c2d0b470SArd Biesheuvel 
543c2d0b470SArd Biesheuvel 			if (!e820ext || e820ext_size < need)
544c2d0b470SArd Biesheuvel 				return EFI_BUFFER_TOO_SMALL;
545c2d0b470SArd Biesheuvel 
546c2d0b470SArd Biesheuvel 			/* boot_params map full, switch to e820 extended */
547c2d0b470SArd Biesheuvel 			entry = (struct boot_e820_entry *)e820ext->data;
548c2d0b470SArd Biesheuvel 		}
549c2d0b470SArd Biesheuvel 
550c2d0b470SArd Biesheuvel 		entry->addr = d->phys_addr;
551c2d0b470SArd Biesheuvel 		entry->size = d->num_pages << PAGE_SHIFT;
552c2d0b470SArd Biesheuvel 		entry->type = e820_type;
553c2d0b470SArd Biesheuvel 		prev = entry++;
554c2d0b470SArd Biesheuvel 		nr_entries++;
555c2d0b470SArd Biesheuvel 	}
556c2d0b470SArd Biesheuvel 
557c2d0b470SArd Biesheuvel 	if (nr_entries > ARRAY_SIZE(params->e820_table)) {
558c2d0b470SArd Biesheuvel 		u32 nr_e820ext = nr_entries - ARRAY_SIZE(params->e820_table);
559c2d0b470SArd Biesheuvel 
560c2d0b470SArd Biesheuvel 		add_e820ext(params, e820ext, nr_e820ext);
561c2d0b470SArd Biesheuvel 		nr_entries -= nr_e820ext;
562c2d0b470SArd Biesheuvel 	}
563c2d0b470SArd Biesheuvel 
564c2d0b470SArd Biesheuvel 	params->e820_entries = (u8)nr_entries;
565c2d0b470SArd Biesheuvel 
566c2d0b470SArd Biesheuvel 	return EFI_SUCCESS;
567c2d0b470SArd Biesheuvel }
568c2d0b470SArd Biesheuvel 
569c2d0b470SArd Biesheuvel static efi_status_t alloc_e820ext(u32 nr_desc, struct setup_data **e820ext,
570c2d0b470SArd Biesheuvel 				  u32 *e820ext_size)
571c2d0b470SArd Biesheuvel {
572c2d0b470SArd Biesheuvel 	efi_status_t status;
573c2d0b470SArd Biesheuvel 	unsigned long size;
574c2d0b470SArd Biesheuvel 
575c2d0b470SArd Biesheuvel 	size = sizeof(struct setup_data) +
576c2d0b470SArd Biesheuvel 		sizeof(struct e820_entry) * nr_desc;
577c2d0b470SArd Biesheuvel 
578c2d0b470SArd Biesheuvel 	if (*e820ext) {
579c2d0b470SArd Biesheuvel 		efi_bs_call(free_pool, *e820ext);
580c2d0b470SArd Biesheuvel 		*e820ext = NULL;
581c2d0b470SArd Biesheuvel 		*e820ext_size = 0;
582c2d0b470SArd Biesheuvel 	}
583c2d0b470SArd Biesheuvel 
584c2d0b470SArd Biesheuvel 	status = efi_bs_call(allocate_pool, EFI_LOADER_DATA, size,
585c2d0b470SArd Biesheuvel 			     (void **)e820ext);
586c2d0b470SArd Biesheuvel 	if (status == EFI_SUCCESS)
587c2d0b470SArd Biesheuvel 		*e820ext_size = size;
588c2d0b470SArd Biesheuvel 
589c2d0b470SArd Biesheuvel 	return status;
590c2d0b470SArd Biesheuvel }
591c2d0b470SArd Biesheuvel 
592c2d0b470SArd Biesheuvel static efi_status_t allocate_e820(struct boot_params *params,
593c2d0b470SArd Biesheuvel 				  struct setup_data **e820ext,
594c2d0b470SArd Biesheuvel 				  u32 *e820ext_size)
595c2d0b470SArd Biesheuvel {
596c2d0b470SArd Biesheuvel 	unsigned long map_size, desc_size, buff_size;
597c2d0b470SArd Biesheuvel 	struct efi_boot_memmap boot_map;
598c2d0b470SArd Biesheuvel 	efi_memory_desc_t *map;
599c2d0b470SArd Biesheuvel 	efi_status_t status;
600c2d0b470SArd Biesheuvel 	__u32 nr_desc;
601c2d0b470SArd Biesheuvel 
602c2d0b470SArd Biesheuvel 	boot_map.map		= &map;
603c2d0b470SArd Biesheuvel 	boot_map.map_size	= &map_size;
604c2d0b470SArd Biesheuvel 	boot_map.desc_size	= &desc_size;
605c2d0b470SArd Biesheuvel 	boot_map.desc_ver	= NULL;
606c2d0b470SArd Biesheuvel 	boot_map.key_ptr	= NULL;
607c2d0b470SArd Biesheuvel 	boot_map.buff_size	= &buff_size;
608c2d0b470SArd Biesheuvel 
609c2d0b470SArd Biesheuvel 	status = efi_get_memory_map(&boot_map);
610c2d0b470SArd Biesheuvel 	if (status != EFI_SUCCESS)
611c2d0b470SArd Biesheuvel 		return status;
612c2d0b470SArd Biesheuvel 
613c2d0b470SArd Biesheuvel 	nr_desc = buff_size / desc_size;
614c2d0b470SArd Biesheuvel 
615c2d0b470SArd Biesheuvel 	if (nr_desc > ARRAY_SIZE(params->e820_table)) {
616c2d0b470SArd Biesheuvel 		u32 nr_e820ext = nr_desc - ARRAY_SIZE(params->e820_table);
617c2d0b470SArd Biesheuvel 
618c2d0b470SArd Biesheuvel 		status = alloc_e820ext(nr_e820ext, e820ext, e820ext_size);
619c2d0b470SArd Biesheuvel 		if (status != EFI_SUCCESS)
620c2d0b470SArd Biesheuvel 			return status;
621c2d0b470SArd Biesheuvel 	}
622c2d0b470SArd Biesheuvel 
623c2d0b470SArd Biesheuvel 	return EFI_SUCCESS;
624c2d0b470SArd Biesheuvel }
625c2d0b470SArd Biesheuvel 
626c2d0b470SArd Biesheuvel struct exit_boot_struct {
627c2d0b470SArd Biesheuvel 	struct boot_params	*boot_params;
628c2d0b470SArd Biesheuvel 	struct efi_info		*efi;
629c2d0b470SArd Biesheuvel };
630c2d0b470SArd Biesheuvel 
631c2d0b470SArd Biesheuvel static efi_status_t exit_boot_func(struct efi_boot_memmap *map,
632c2d0b470SArd Biesheuvel 				   void *priv)
633c2d0b470SArd Biesheuvel {
634c2d0b470SArd Biesheuvel 	const char *signature;
635c2d0b470SArd Biesheuvel 	struct exit_boot_struct *p = priv;
636c2d0b470SArd Biesheuvel 
637c2d0b470SArd Biesheuvel 	signature = efi_is_64bit() ? EFI64_LOADER_SIGNATURE
638c2d0b470SArd Biesheuvel 				   : EFI32_LOADER_SIGNATURE;
639c2d0b470SArd Biesheuvel 	memcpy(&p->efi->efi_loader_signature, signature, sizeof(__u32));
640c2d0b470SArd Biesheuvel 
641eed4e019SArvind Sankar 	efi_set_u64_split((unsigned long)efi_system_table,
642eed4e019SArvind Sankar 			  &p->efi->efi_systab, &p->efi->efi_systab_hi);
643c2d0b470SArd Biesheuvel 	p->efi->efi_memdesc_size	= *map->desc_size;
644c2d0b470SArd Biesheuvel 	p->efi->efi_memdesc_version	= *map->desc_ver;
645eed4e019SArvind Sankar 	efi_set_u64_split((unsigned long)*map->map,
646eed4e019SArvind Sankar 			  &p->efi->efi_memmap, &p->efi->efi_memmap_hi);
647c2d0b470SArd Biesheuvel 	p->efi->efi_memmap_size		= *map->map_size;
648c2d0b470SArd Biesheuvel 
649c2d0b470SArd Biesheuvel 	return EFI_SUCCESS;
650c2d0b470SArd Biesheuvel }
651c2d0b470SArd Biesheuvel 
652c2d0b470SArd Biesheuvel static efi_status_t exit_boot(struct boot_params *boot_params, void *handle)
653c2d0b470SArd Biesheuvel {
654c2d0b470SArd Biesheuvel 	unsigned long map_sz, key, desc_size, buff_size;
655c2d0b470SArd Biesheuvel 	efi_memory_desc_t *mem_map;
656c2d0b470SArd Biesheuvel 	struct setup_data *e820ext = NULL;
657c2d0b470SArd Biesheuvel 	__u32 e820ext_size = 0;
658c2d0b470SArd Biesheuvel 	efi_status_t status;
659c2d0b470SArd Biesheuvel 	__u32 desc_version;
660c2d0b470SArd Biesheuvel 	struct efi_boot_memmap map;
661c2d0b470SArd Biesheuvel 	struct exit_boot_struct priv;
662c2d0b470SArd Biesheuvel 
663c2d0b470SArd Biesheuvel 	map.map			= &mem_map;
664c2d0b470SArd Biesheuvel 	map.map_size		= &map_sz;
665c2d0b470SArd Biesheuvel 	map.desc_size		= &desc_size;
666c2d0b470SArd Biesheuvel 	map.desc_ver		= &desc_version;
667c2d0b470SArd Biesheuvel 	map.key_ptr		= &key;
668c2d0b470SArd Biesheuvel 	map.buff_size		= &buff_size;
669c2d0b470SArd Biesheuvel 	priv.boot_params	= boot_params;
670c2d0b470SArd Biesheuvel 	priv.efi		= &boot_params->efi_info;
671c2d0b470SArd Biesheuvel 
672c2d0b470SArd Biesheuvel 	status = allocate_e820(boot_params, &e820ext, &e820ext_size);
673c2d0b470SArd Biesheuvel 	if (status != EFI_SUCCESS)
674c2d0b470SArd Biesheuvel 		return status;
675c2d0b470SArd Biesheuvel 
676c2d0b470SArd Biesheuvel 	/* Might as well exit boot services now */
677c2d0b470SArd Biesheuvel 	status = efi_exit_boot_services(handle, &map, &priv, exit_boot_func);
678c2d0b470SArd Biesheuvel 	if (status != EFI_SUCCESS)
679c2d0b470SArd Biesheuvel 		return status;
680c2d0b470SArd Biesheuvel 
681c2d0b470SArd Biesheuvel 	/* Historic? */
682c2d0b470SArd Biesheuvel 	boot_params->alt_mem_k	= 32 * 1024;
683c2d0b470SArd Biesheuvel 
684c2d0b470SArd Biesheuvel 	status = setup_e820(boot_params, e820ext, e820ext_size);
685c2d0b470SArd Biesheuvel 	if (status != EFI_SUCCESS)
686c2d0b470SArd Biesheuvel 		return status;
687c2d0b470SArd Biesheuvel 
688c2d0b470SArd Biesheuvel 	return EFI_SUCCESS;
689c2d0b470SArd Biesheuvel }
690c2d0b470SArd Biesheuvel 
691c2d0b470SArd Biesheuvel /*
6928acf63efSArvind Sankar  * On success, we return the address of startup_32, which has potentially been
6938acf63efSArvind Sankar  * relocated by efi_relocate_kernel.
6948acf63efSArvind Sankar  * On failure, we exit to the firmware via efi_exit instead of returning.
695c2d0b470SArd Biesheuvel  */
6968acf63efSArvind Sankar unsigned long efi_main(efi_handle_t handle,
697c2d0b470SArd Biesheuvel 			     efi_system_table_t *sys_table_arg,
698c2d0b470SArd Biesheuvel 			     struct boot_params *boot_params)
699c2d0b470SArd Biesheuvel {
700c2d0b470SArd Biesheuvel 	unsigned long bzimage_addr = (unsigned long)startup_32;
701d5cdf4cfSArvind Sankar 	unsigned long buffer_start, buffer_end;
702c2d0b470SArd Biesheuvel 	struct setup_header *hdr = &boot_params->hdr;
703c2d0b470SArd Biesheuvel 	efi_status_t status;
704c2d0b470SArd Biesheuvel 	unsigned long cmdline_paddr;
705c2d0b470SArd Biesheuvel 
706ccc27ae7SArd Biesheuvel 	efi_system_table = sys_table_arg;
707c2d0b470SArd Biesheuvel 
708c2d0b470SArd Biesheuvel 	/* Check if we were booted by the EFI firmware */
709ccc27ae7SArd Biesheuvel 	if (efi_system_table->hdr.signature != EFI_SYSTEM_TABLE_SIGNATURE)
7103b8f44fcSArd Biesheuvel 		efi_exit(handle, EFI_INVALID_PARAMETER);
711c2d0b470SArd Biesheuvel 
712c2d0b470SArd Biesheuvel 	/*
713d5cdf4cfSArvind Sankar 	 * If the kernel isn't already loaded at a suitable address,
714d5cdf4cfSArvind Sankar 	 * relocate it.
715d5cdf4cfSArvind Sankar 	 *
716d5cdf4cfSArvind Sankar 	 * It must be loaded above LOAD_PHYSICAL_ADDR.
717d5cdf4cfSArvind Sankar 	 *
718d5cdf4cfSArvind Sankar 	 * The maximum address for 64-bit is 1 << 46 for 4-level paging. This
719d5cdf4cfSArvind Sankar 	 * is defined as the macro MAXMEM, but unfortunately that is not a
720d5cdf4cfSArvind Sankar 	 * compile-time constant if 5-level paging is configured, so we instead
721d5cdf4cfSArvind Sankar 	 * define our own macro for use here.
722d5cdf4cfSArvind Sankar 	 *
723d5cdf4cfSArvind Sankar 	 * For 32-bit, the maximum address is complicated to figure out, for
724d5cdf4cfSArvind Sankar 	 * now use KERNEL_IMAGE_SIZE, which will be 512MiB, the same as what
725d5cdf4cfSArvind Sankar 	 * KASLR uses.
726d5cdf4cfSArvind Sankar 	 *
72721cb9b41SArvind Sankar 	 * Also relocate it if image_offset is zero, i.e. the kernel wasn't
72821cb9b41SArvind Sankar 	 * loaded by LoadImage, but rather by a bootloader that called the
72921cb9b41SArvind Sankar 	 * handover entry. The reason we must always relocate in this case is
73021cb9b41SArvind Sankar 	 * to handle the case of systemd-boot booting a unified kernel image,
73121cb9b41SArvind Sankar 	 * which is a PE executable that contains the bzImage and an initrd as
73221cb9b41SArvind Sankar 	 * COFF sections. The initrd section is placed after the bzImage
73321cb9b41SArvind Sankar 	 * without ensuring that there are at least init_size bytes available
73421cb9b41SArvind Sankar 	 * for the bzImage, and thus the compressed kernel's startup code may
73521cb9b41SArvind Sankar 	 * overwrite the initrd unless it is moved out of the way.
736c2d0b470SArd Biesheuvel 	 */
737d5cdf4cfSArvind Sankar 
738d5cdf4cfSArvind Sankar 	buffer_start = ALIGN(bzimage_addr - image_offset,
739d5cdf4cfSArvind Sankar 			     hdr->kernel_alignment);
740d5cdf4cfSArvind Sankar 	buffer_end = buffer_start + hdr->init_size;
741d5cdf4cfSArvind Sankar 
742d5cdf4cfSArvind Sankar 	if ((buffer_start < LOAD_PHYSICAL_ADDR)				     ||
743d5cdf4cfSArvind Sankar 	    (IS_ENABLED(CONFIG_X86_32) && buffer_end > KERNEL_IMAGE_SIZE)    ||
744d5cdf4cfSArvind Sankar 	    (IS_ENABLED(CONFIG_X86_64) && buffer_end > MAXMEM_X86_64_4LEVEL) ||
74521cb9b41SArvind Sankar 	    (image_offset == 0)) {
746c2d0b470SArd Biesheuvel 		status = efi_relocate_kernel(&bzimage_addr,
747c2d0b470SArd Biesheuvel 					     hdr->init_size, hdr->init_size,
748c2d0b470SArd Biesheuvel 					     hdr->pref_address,
749c2d0b470SArd Biesheuvel 					     hdr->kernel_alignment,
750c2d0b470SArd Biesheuvel 					     LOAD_PHYSICAL_ADDR);
751c2d0b470SArd Biesheuvel 		if (status != EFI_SUCCESS) {
75236bdd0a7SArvind Sankar 			efi_err("efi_relocate_kernel() failed!\n");
753c2d0b470SArd Biesheuvel 			goto fail;
754c2d0b470SArd Biesheuvel 		}
7551887c9b6SArvind Sankar 		/*
7561887c9b6SArvind Sankar 		 * Now that we've copied the kernel elsewhere, we no longer
7571887c9b6SArvind Sankar 		 * have a set up block before startup_32(), so reset image_offset
7581887c9b6SArvind Sankar 		 * to zero in case it was set earlier.
7591887c9b6SArvind Sankar 		 */
7601887c9b6SArvind Sankar 		image_offset = 0;
761c2d0b470SArd Biesheuvel 	}
762c2d0b470SArd Biesheuvel 
763c2d0b470SArd Biesheuvel 	/*
76491d150c0SArd Biesheuvel 	 * efi_pe_entry() may have been called before efi_main(), in which
765c2d0b470SArd Biesheuvel 	 * case this is the second time we parse the cmdline. This is ok,
766c2d0b470SArd Biesheuvel 	 * parsing the cmdline multiple times does not have side-effects.
767c2d0b470SArd Biesheuvel 	 */
768c2d0b470SArd Biesheuvel 	cmdline_paddr = ((u64)hdr->cmd_line_ptr |
769c2d0b470SArd Biesheuvel 			 ((u64)boot_params->ext_cmd_line_ptr << 32));
770c2d0b470SArd Biesheuvel 	efi_parse_options((char *)cmdline_paddr);
771c2d0b470SArd Biesheuvel 
772c2d0b470SArd Biesheuvel 	/*
773ec93fc37SArd Biesheuvel 	 * At this point, an initrd may already have been loaded, either by
774ec93fc37SArd Biesheuvel 	 * the bootloader and passed via bootparams, or loaded from a initrd=
775ec93fc37SArd Biesheuvel 	 * command line option by efi_pe_entry() above. In either case, we
776ec93fc37SArd Biesheuvel 	 * permit an initrd loaded from the LINUX_EFI_INITRD_MEDIA_GUID device
777ec93fc37SArd Biesheuvel 	 * path to supersede it.
778ec93fc37SArd Biesheuvel 	 */
779980771f6SArd Biesheuvel 	if (!efi_noinitrd) {
78079d3219dSArd Biesheuvel 		unsigned long addr, size;
78179d3219dSArd Biesheuvel 
782ac82d356SArd Biesheuvel 		status = efi_load_initrd_dev_path(&addr, &size, ULONG_MAX);
783ec93fc37SArd Biesheuvel 		if (status == EFI_SUCCESS) {
784eed4e019SArvind Sankar 			efi_set_u64_split(addr, &hdr->ramdisk_image,
785eed4e019SArvind Sankar 					  &boot_params->ext_ramdisk_image);
786eed4e019SArvind Sankar 			efi_set_u64_split(size, &hdr->ramdisk_size,
787eed4e019SArvind Sankar 					  &boot_params->ext_ramdisk_size);
788ec93fc37SArd Biesheuvel 		} else if (status != EFI_NOT_FOUND) {
78936bdd0a7SArvind Sankar 			efi_err("efi_load_initrd_dev_path() failed!\n");
790ec93fc37SArd Biesheuvel 			goto fail;
791ec93fc37SArd Biesheuvel 		}
79279d3219dSArd Biesheuvel 	}
793ec93fc37SArd Biesheuvel 
794ec93fc37SArd Biesheuvel 	/*
795c2d0b470SArd Biesheuvel 	 * If the boot loader gave us a value for secure_boot then we use that,
796c2d0b470SArd Biesheuvel 	 * otherwise we ask the BIOS.
797c2d0b470SArd Biesheuvel 	 */
798c2d0b470SArd Biesheuvel 	if (boot_params->secure_boot == efi_secureboot_mode_unset)
799c2d0b470SArd Biesheuvel 		boot_params->secure_boot = efi_get_secureboot();
800c2d0b470SArd Biesheuvel 
801c2d0b470SArd Biesheuvel 	/* Ask the firmware to clear memory on unclean shutdown */
802c2d0b470SArd Biesheuvel 	efi_enable_reset_attack_mitigation();
803c2d0b470SArd Biesheuvel 
804c2d0b470SArd Biesheuvel 	efi_random_get_seed();
805c2d0b470SArd Biesheuvel 
806c2d0b470SArd Biesheuvel 	efi_retrieve_tpm2_eventlog();
807c2d0b470SArd Biesheuvel 
808c2d0b470SArd Biesheuvel 	setup_graphics(boot_params);
809c2d0b470SArd Biesheuvel 
810c2d0b470SArd Biesheuvel 	setup_efi_pci(boot_params);
811c2d0b470SArd Biesheuvel 
812c2d0b470SArd Biesheuvel 	setup_quirks(boot_params);
813c2d0b470SArd Biesheuvel 
814c2d0b470SArd Biesheuvel 	status = exit_boot(boot_params, handle);
815c2d0b470SArd Biesheuvel 	if (status != EFI_SUCCESS) {
81636bdd0a7SArvind Sankar 		efi_err("exit_boot() failed!\n");
817c2d0b470SArd Biesheuvel 		goto fail;
818c2d0b470SArd Biesheuvel 	}
819c2d0b470SArd Biesheuvel 
8208acf63efSArvind Sankar 	return bzimage_addr;
821c2d0b470SArd Biesheuvel fail:
82236bdd0a7SArvind Sankar 	efi_err("efi_main() failed!\n");
823c2d0b470SArd Biesheuvel 
8243b8f44fcSArd Biesheuvel 	efi_exit(handle, status);
825c2d0b470SArd Biesheuvel }
826