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 
20c2d0b470SArd Biesheuvel static efi_system_table_t *sys_table;
21c2d0b470SArd Biesheuvel extern const bool efi_is64;
22c2d0b470SArd Biesheuvel 
23c2d0b470SArd Biesheuvel __pure efi_system_table_t *efi_system_table(void)
24c2d0b470SArd Biesheuvel {
25c2d0b470SArd Biesheuvel 	return sys_table;
26c2d0b470SArd Biesheuvel }
27c2d0b470SArd Biesheuvel 
28c2d0b470SArd Biesheuvel __attribute_const__ bool efi_is_64bit(void)
29c2d0b470SArd Biesheuvel {
30c2d0b470SArd Biesheuvel 	if (IS_ENABLED(CONFIG_EFI_MIXED))
31c2d0b470SArd Biesheuvel 		return efi_is64;
32c2d0b470SArd Biesheuvel 	return IS_ENABLED(CONFIG_X86_64);
33c2d0b470SArd Biesheuvel }
34c2d0b470SArd Biesheuvel 
35c2d0b470SArd Biesheuvel static efi_status_t
36c2d0b470SArd Biesheuvel preserve_pci_rom_image(efi_pci_io_protocol_t *pci, struct pci_setup_rom **__rom)
37c2d0b470SArd Biesheuvel {
38c2d0b470SArd Biesheuvel 	struct pci_setup_rom *rom = NULL;
39c2d0b470SArd Biesheuvel 	efi_status_t status;
40c2d0b470SArd Biesheuvel 	unsigned long size;
41c2d0b470SArd Biesheuvel 	uint64_t romsize;
42c2d0b470SArd Biesheuvel 	void *romimage;
43c2d0b470SArd Biesheuvel 
44c2d0b470SArd Biesheuvel 	/*
45c2d0b470SArd Biesheuvel 	 * Some firmware images contain EFI function pointers at the place where
46c2d0b470SArd Biesheuvel 	 * the romimage and romsize fields are supposed to be. Typically the EFI
47c2d0b470SArd Biesheuvel 	 * code is mapped at high addresses, translating to an unrealistically
48c2d0b470SArd Biesheuvel 	 * large romsize. The UEFI spec limits the size of option ROMs to 16
49c2d0b470SArd Biesheuvel 	 * MiB so we reject any ROMs over 16 MiB in size to catch this.
50c2d0b470SArd Biesheuvel 	 */
51c2d0b470SArd Biesheuvel 	romimage = efi_table_attr(pci, romimage);
52c2d0b470SArd Biesheuvel 	romsize = efi_table_attr(pci, romsize);
53c2d0b470SArd Biesheuvel 	if (!romimage || !romsize || romsize > SZ_16M)
54c2d0b470SArd Biesheuvel 		return EFI_INVALID_PARAMETER;
55c2d0b470SArd Biesheuvel 
56c2d0b470SArd Biesheuvel 	size = romsize + sizeof(*rom);
57c2d0b470SArd Biesheuvel 
58c2d0b470SArd Biesheuvel 	status = efi_bs_call(allocate_pool, EFI_LOADER_DATA, size,
59c2d0b470SArd Biesheuvel 			     (void **)&rom);
60c2d0b470SArd Biesheuvel 	if (status != EFI_SUCCESS) {
61c2d0b470SArd Biesheuvel 		efi_printk("Failed to allocate memory for 'rom'\n");
62c2d0b470SArd Biesheuvel 		return status;
63c2d0b470SArd Biesheuvel 	}
64c2d0b470SArd Biesheuvel 
65c2d0b470SArd Biesheuvel 	memset(rom, 0, sizeof(*rom));
66c2d0b470SArd Biesheuvel 
67c2d0b470SArd Biesheuvel 	rom->data.type	= SETUP_PCI;
68c2d0b470SArd Biesheuvel 	rom->data.len	= size - sizeof(struct setup_data);
69c2d0b470SArd Biesheuvel 	rom->data.next	= 0;
70c2d0b470SArd Biesheuvel 	rom->pcilen	= pci->romsize;
71c2d0b470SArd Biesheuvel 	*__rom = rom;
72c2d0b470SArd Biesheuvel 
73c2d0b470SArd Biesheuvel 	status = efi_call_proto(pci, pci.read, EfiPciIoWidthUint16,
74c2d0b470SArd Biesheuvel 				PCI_VENDOR_ID, 1, &rom->vendor);
75c2d0b470SArd Biesheuvel 
76c2d0b470SArd Biesheuvel 	if (status != EFI_SUCCESS) {
77c2d0b470SArd Biesheuvel 		efi_printk("Failed to read rom->vendor\n");
78c2d0b470SArd Biesheuvel 		goto free_struct;
79c2d0b470SArd Biesheuvel 	}
80c2d0b470SArd Biesheuvel 
81c2d0b470SArd Biesheuvel 	status = efi_call_proto(pci, pci.read, EfiPciIoWidthUint16,
82c2d0b470SArd Biesheuvel 				PCI_DEVICE_ID, 1, &rom->devid);
83c2d0b470SArd Biesheuvel 
84c2d0b470SArd Biesheuvel 	if (status != EFI_SUCCESS) {
85c2d0b470SArd Biesheuvel 		efi_printk("Failed to read rom->devid\n");
86c2d0b470SArd Biesheuvel 		goto free_struct;
87c2d0b470SArd Biesheuvel 	}
88c2d0b470SArd Biesheuvel 
89c2d0b470SArd Biesheuvel 	status = efi_call_proto(pci, get_location, &rom->segment, &rom->bus,
90c2d0b470SArd Biesheuvel 				&rom->device, &rom->function);
91c2d0b470SArd Biesheuvel 
92c2d0b470SArd Biesheuvel 	if (status != EFI_SUCCESS)
93c2d0b470SArd Biesheuvel 		goto free_struct;
94c2d0b470SArd Biesheuvel 
95c2d0b470SArd Biesheuvel 	memcpy(rom->romdata, romimage, romsize);
96c2d0b470SArd Biesheuvel 	return status;
97c2d0b470SArd Biesheuvel 
98c2d0b470SArd Biesheuvel free_struct:
99c2d0b470SArd Biesheuvel 	efi_bs_call(free_pool, rom);
100c2d0b470SArd Biesheuvel 	return status;
101c2d0b470SArd Biesheuvel }
102c2d0b470SArd Biesheuvel 
103c2d0b470SArd Biesheuvel /*
104c2d0b470SArd Biesheuvel  * There's no way to return an informative status from this function,
105c2d0b470SArd Biesheuvel  * because any analysis (and printing of error messages) needs to be
106c2d0b470SArd Biesheuvel  * done directly at the EFI function call-site.
107c2d0b470SArd Biesheuvel  *
108c2d0b470SArd Biesheuvel  * For example, EFI_INVALID_PARAMETER could indicate a bug or maybe we
109c2d0b470SArd Biesheuvel  * just didn't find any PCI devices, but there's no way to tell outside
110c2d0b470SArd Biesheuvel  * the context of the call.
111c2d0b470SArd Biesheuvel  */
112c2d0b470SArd Biesheuvel static void setup_efi_pci(struct boot_params *params)
113c2d0b470SArd Biesheuvel {
114c2d0b470SArd Biesheuvel 	efi_status_t status;
115c2d0b470SArd Biesheuvel 	void **pci_handle = NULL;
116c2d0b470SArd Biesheuvel 	efi_guid_t pci_proto = EFI_PCI_IO_PROTOCOL_GUID;
117c2d0b470SArd Biesheuvel 	unsigned long size = 0;
118c2d0b470SArd Biesheuvel 	struct setup_data *data;
119c2d0b470SArd Biesheuvel 	efi_handle_t h;
120c2d0b470SArd Biesheuvel 	int i;
121c2d0b470SArd Biesheuvel 
122c2d0b470SArd Biesheuvel 	status = efi_bs_call(locate_handle, EFI_LOCATE_BY_PROTOCOL,
123c2d0b470SArd Biesheuvel 			     &pci_proto, NULL, &size, pci_handle);
124c2d0b470SArd Biesheuvel 
125c2d0b470SArd Biesheuvel 	if (status == EFI_BUFFER_TOO_SMALL) {
126c2d0b470SArd Biesheuvel 		status = efi_bs_call(allocate_pool, EFI_LOADER_DATA, size,
127c2d0b470SArd Biesheuvel 				     (void **)&pci_handle);
128c2d0b470SArd Biesheuvel 
129c2d0b470SArd Biesheuvel 		if (status != EFI_SUCCESS) {
130c2d0b470SArd Biesheuvel 			efi_printk("Failed to allocate memory for 'pci_handle'\n");
131c2d0b470SArd Biesheuvel 			return;
132c2d0b470SArd Biesheuvel 		}
133c2d0b470SArd Biesheuvel 
134c2d0b470SArd Biesheuvel 		status = efi_bs_call(locate_handle, EFI_LOCATE_BY_PROTOCOL,
135c2d0b470SArd Biesheuvel 				     &pci_proto, NULL, &size, pci_handle);
136c2d0b470SArd Biesheuvel 	}
137c2d0b470SArd Biesheuvel 
138c2d0b470SArd Biesheuvel 	if (status != EFI_SUCCESS)
139c2d0b470SArd Biesheuvel 		goto free_handle;
140c2d0b470SArd Biesheuvel 
141c2d0b470SArd Biesheuvel 	data = (struct setup_data *)(unsigned long)params->hdr.setup_data;
142c2d0b470SArd Biesheuvel 
143c2d0b470SArd Biesheuvel 	while (data && data->next)
144c2d0b470SArd Biesheuvel 		data = (struct setup_data *)(unsigned long)data->next;
145c2d0b470SArd Biesheuvel 
146c2d0b470SArd Biesheuvel 	for_each_efi_handle(h, pci_handle, size, i) {
147c2d0b470SArd Biesheuvel 		efi_pci_io_protocol_t *pci = NULL;
148c2d0b470SArd Biesheuvel 		struct pci_setup_rom *rom;
149c2d0b470SArd Biesheuvel 
150c2d0b470SArd Biesheuvel 		status = efi_bs_call(handle_protocol, h, &pci_proto,
151c2d0b470SArd Biesheuvel 				     (void **)&pci);
152c2d0b470SArd Biesheuvel 		if (status != EFI_SUCCESS || !pci)
153c2d0b470SArd Biesheuvel 			continue;
154c2d0b470SArd Biesheuvel 
155c2d0b470SArd Biesheuvel 		status = preserve_pci_rom_image(pci, &rom);
156c2d0b470SArd Biesheuvel 		if (status != EFI_SUCCESS)
157c2d0b470SArd Biesheuvel 			continue;
158c2d0b470SArd Biesheuvel 
159c2d0b470SArd Biesheuvel 		if (data)
160c2d0b470SArd Biesheuvel 			data->next = (unsigned long)rom;
161c2d0b470SArd Biesheuvel 		else
162c2d0b470SArd Biesheuvel 			params->hdr.setup_data = (unsigned long)rom;
163c2d0b470SArd Biesheuvel 
164c2d0b470SArd Biesheuvel 		data = (struct setup_data *)rom;
165c2d0b470SArd Biesheuvel 	}
166c2d0b470SArd Biesheuvel 
167c2d0b470SArd Biesheuvel free_handle:
168c2d0b470SArd Biesheuvel 	efi_bs_call(free_pool, pci_handle);
169c2d0b470SArd Biesheuvel }
170c2d0b470SArd Biesheuvel 
171c2d0b470SArd Biesheuvel static void retrieve_apple_device_properties(struct boot_params *boot_params)
172c2d0b470SArd Biesheuvel {
173c2d0b470SArd Biesheuvel 	efi_guid_t guid = APPLE_PROPERTIES_PROTOCOL_GUID;
174c2d0b470SArd Biesheuvel 	struct setup_data *data, *new;
175c2d0b470SArd Biesheuvel 	efi_status_t status;
176c2d0b470SArd Biesheuvel 	u32 size = 0;
177c2d0b470SArd Biesheuvel 	apple_properties_protocol_t *p;
178c2d0b470SArd Biesheuvel 
179c2d0b470SArd Biesheuvel 	status = efi_bs_call(locate_protocol, &guid, NULL, (void **)&p);
180c2d0b470SArd Biesheuvel 	if (status != EFI_SUCCESS)
181c2d0b470SArd Biesheuvel 		return;
182c2d0b470SArd Biesheuvel 
183c2d0b470SArd Biesheuvel 	if (efi_table_attr(p, version) != 0x10000) {
184c2d0b470SArd Biesheuvel 		efi_printk("Unsupported properties proto version\n");
185c2d0b470SArd Biesheuvel 		return;
186c2d0b470SArd Biesheuvel 	}
187c2d0b470SArd Biesheuvel 
188c2d0b470SArd Biesheuvel 	efi_call_proto(p, get_all, NULL, &size);
189c2d0b470SArd Biesheuvel 	if (!size)
190c2d0b470SArd Biesheuvel 		return;
191c2d0b470SArd Biesheuvel 
192c2d0b470SArd Biesheuvel 	do {
193c2d0b470SArd Biesheuvel 		status = efi_bs_call(allocate_pool, EFI_LOADER_DATA,
194c2d0b470SArd Biesheuvel 				     size + sizeof(struct setup_data),
195c2d0b470SArd Biesheuvel 				     (void **)&new);
196c2d0b470SArd Biesheuvel 		if (status != EFI_SUCCESS) {
197c2d0b470SArd Biesheuvel 			efi_printk("Failed to allocate memory for 'properties'\n");
198c2d0b470SArd Biesheuvel 			return;
199c2d0b470SArd Biesheuvel 		}
200c2d0b470SArd Biesheuvel 
201c2d0b470SArd Biesheuvel 		status = efi_call_proto(p, get_all, new->data, &size);
202c2d0b470SArd Biesheuvel 
203c2d0b470SArd Biesheuvel 		if (status == EFI_BUFFER_TOO_SMALL)
204c2d0b470SArd Biesheuvel 			efi_bs_call(free_pool, new);
205c2d0b470SArd Biesheuvel 	} while (status == EFI_BUFFER_TOO_SMALL);
206c2d0b470SArd Biesheuvel 
207c2d0b470SArd Biesheuvel 	new->type = SETUP_APPLE_PROPERTIES;
208c2d0b470SArd Biesheuvel 	new->len  = size;
209c2d0b470SArd Biesheuvel 	new->next = 0;
210c2d0b470SArd Biesheuvel 
211c2d0b470SArd Biesheuvel 	data = (struct setup_data *)(unsigned long)boot_params->hdr.setup_data;
212c2d0b470SArd Biesheuvel 	if (!data) {
213c2d0b470SArd Biesheuvel 		boot_params->hdr.setup_data = (unsigned long)new;
214c2d0b470SArd Biesheuvel 	} else {
215c2d0b470SArd Biesheuvel 		while (data->next)
216c2d0b470SArd Biesheuvel 			data = (struct setup_data *)(unsigned long)data->next;
217c2d0b470SArd Biesheuvel 		data->next = (unsigned long)new;
218c2d0b470SArd Biesheuvel 	}
219c2d0b470SArd Biesheuvel }
220c2d0b470SArd Biesheuvel 
221c2d0b470SArd Biesheuvel static const efi_char16_t apple[] = L"Apple";
222c2d0b470SArd Biesheuvel 
223c2d0b470SArd Biesheuvel static void setup_quirks(struct boot_params *boot_params)
224c2d0b470SArd Biesheuvel {
225c2d0b470SArd Biesheuvel 	efi_char16_t *fw_vendor = (efi_char16_t *)(unsigned long)
226c2d0b470SArd Biesheuvel 		efi_table_attr(efi_system_table(), fw_vendor);
227c2d0b470SArd Biesheuvel 
228c2d0b470SArd Biesheuvel 	if (!memcmp(fw_vendor, apple, sizeof(apple))) {
229c2d0b470SArd Biesheuvel 		if (IS_ENABLED(CONFIG_APPLE_PROPERTIES))
230c2d0b470SArd Biesheuvel 			retrieve_apple_device_properties(boot_params);
231c2d0b470SArd Biesheuvel 	}
232c2d0b470SArd Biesheuvel }
233c2d0b470SArd Biesheuvel 
234c2d0b470SArd Biesheuvel /*
235c2d0b470SArd Biesheuvel  * See if we have Universal Graphics Adapter (UGA) protocol
236c2d0b470SArd Biesheuvel  */
237c2d0b470SArd Biesheuvel static efi_status_t
238c2d0b470SArd Biesheuvel setup_uga(struct screen_info *si, efi_guid_t *uga_proto, unsigned long size)
239c2d0b470SArd Biesheuvel {
240c2d0b470SArd Biesheuvel 	efi_status_t status;
241c2d0b470SArd Biesheuvel 	u32 width, height;
242c2d0b470SArd Biesheuvel 	void **uga_handle = NULL;
243c2d0b470SArd Biesheuvel 	efi_uga_draw_protocol_t *uga = NULL, *first_uga;
244c2d0b470SArd Biesheuvel 	efi_handle_t handle;
245c2d0b470SArd Biesheuvel 	int i;
246c2d0b470SArd Biesheuvel 
247c2d0b470SArd Biesheuvel 	status = efi_bs_call(allocate_pool, EFI_LOADER_DATA, size,
248c2d0b470SArd Biesheuvel 			     (void **)&uga_handle);
249c2d0b470SArd Biesheuvel 	if (status != EFI_SUCCESS)
250c2d0b470SArd Biesheuvel 		return status;
251c2d0b470SArd Biesheuvel 
252c2d0b470SArd Biesheuvel 	status = efi_bs_call(locate_handle, EFI_LOCATE_BY_PROTOCOL,
253c2d0b470SArd Biesheuvel 			     uga_proto, NULL, &size, uga_handle);
254c2d0b470SArd Biesheuvel 	if (status != EFI_SUCCESS)
255c2d0b470SArd Biesheuvel 		goto free_handle;
256c2d0b470SArd Biesheuvel 
257c2d0b470SArd Biesheuvel 	height = 0;
258c2d0b470SArd Biesheuvel 	width = 0;
259c2d0b470SArd Biesheuvel 
260c2d0b470SArd Biesheuvel 	first_uga = NULL;
261c2d0b470SArd Biesheuvel 	for_each_efi_handle(handle, uga_handle, size, i) {
262c2d0b470SArd Biesheuvel 		efi_guid_t pciio_proto = EFI_PCI_IO_PROTOCOL_GUID;
263c2d0b470SArd Biesheuvel 		u32 w, h, depth, refresh;
264c2d0b470SArd Biesheuvel 		void *pciio;
265c2d0b470SArd Biesheuvel 
266c2d0b470SArd Biesheuvel 		status = efi_bs_call(handle_protocol, handle, uga_proto,
267c2d0b470SArd Biesheuvel 				     (void **)&uga);
268c2d0b470SArd Biesheuvel 		if (status != EFI_SUCCESS)
269c2d0b470SArd Biesheuvel 			continue;
270c2d0b470SArd Biesheuvel 
271c2d0b470SArd Biesheuvel 		pciio = NULL;
272c2d0b470SArd Biesheuvel 		efi_bs_call(handle_protocol, handle, &pciio_proto, &pciio);
273c2d0b470SArd Biesheuvel 
274c2d0b470SArd Biesheuvel 		status = efi_call_proto(uga, get_mode, &w, &h, &depth, &refresh);
275c2d0b470SArd Biesheuvel 		if (status == EFI_SUCCESS && (!first_uga || pciio)) {
276c2d0b470SArd Biesheuvel 			width = w;
277c2d0b470SArd Biesheuvel 			height = h;
278c2d0b470SArd Biesheuvel 
279c2d0b470SArd Biesheuvel 			/*
280c2d0b470SArd Biesheuvel 			 * Once we've found a UGA supporting PCIIO,
281c2d0b470SArd Biesheuvel 			 * don't bother looking any further.
282c2d0b470SArd Biesheuvel 			 */
283c2d0b470SArd Biesheuvel 			if (pciio)
284c2d0b470SArd Biesheuvel 				break;
285c2d0b470SArd Biesheuvel 
286c2d0b470SArd Biesheuvel 			first_uga = uga;
287c2d0b470SArd Biesheuvel 		}
288c2d0b470SArd Biesheuvel 	}
289c2d0b470SArd Biesheuvel 
290c2d0b470SArd Biesheuvel 	if (!width && !height)
291c2d0b470SArd Biesheuvel 		goto free_handle;
292c2d0b470SArd Biesheuvel 
293c2d0b470SArd Biesheuvel 	/* EFI framebuffer */
294c2d0b470SArd Biesheuvel 	si->orig_video_isVGA	= VIDEO_TYPE_EFI;
295c2d0b470SArd Biesheuvel 
296c2d0b470SArd Biesheuvel 	si->lfb_depth		= 32;
297c2d0b470SArd Biesheuvel 	si->lfb_width		= width;
298c2d0b470SArd Biesheuvel 	si->lfb_height		= height;
299c2d0b470SArd Biesheuvel 
300c2d0b470SArd Biesheuvel 	si->red_size		= 8;
301c2d0b470SArd Biesheuvel 	si->red_pos		= 16;
302c2d0b470SArd Biesheuvel 	si->green_size		= 8;
303c2d0b470SArd Biesheuvel 	si->green_pos		= 8;
304c2d0b470SArd Biesheuvel 	si->blue_size		= 8;
305c2d0b470SArd Biesheuvel 	si->blue_pos		= 0;
306c2d0b470SArd Biesheuvel 	si->rsvd_size		= 8;
307c2d0b470SArd Biesheuvel 	si->rsvd_pos		= 24;
308c2d0b470SArd Biesheuvel 
309c2d0b470SArd Biesheuvel free_handle:
310c2d0b470SArd Biesheuvel 	efi_bs_call(free_pool, uga_handle);
311c2d0b470SArd Biesheuvel 
312c2d0b470SArd Biesheuvel 	return status;
313c2d0b470SArd Biesheuvel }
314c2d0b470SArd Biesheuvel 
315c2d0b470SArd Biesheuvel static void setup_graphics(struct boot_params *boot_params)
316c2d0b470SArd Biesheuvel {
317c2d0b470SArd Biesheuvel 	efi_guid_t graphics_proto = EFI_GRAPHICS_OUTPUT_PROTOCOL_GUID;
318c2d0b470SArd Biesheuvel 	struct screen_info *si;
319c2d0b470SArd Biesheuvel 	efi_guid_t uga_proto = EFI_UGA_PROTOCOL_GUID;
320c2d0b470SArd Biesheuvel 	efi_status_t status;
321c2d0b470SArd Biesheuvel 	unsigned long size;
322c2d0b470SArd Biesheuvel 	void **gop_handle = NULL;
323c2d0b470SArd Biesheuvel 	void **uga_handle = NULL;
324c2d0b470SArd Biesheuvel 
325c2d0b470SArd Biesheuvel 	si = &boot_params->screen_info;
326c2d0b470SArd Biesheuvel 	memset(si, 0, sizeof(*si));
327c2d0b470SArd Biesheuvel 
328c2d0b470SArd Biesheuvel 	size = 0;
329c2d0b470SArd Biesheuvel 	status = efi_bs_call(locate_handle, EFI_LOCATE_BY_PROTOCOL,
330c2d0b470SArd Biesheuvel 			     &graphics_proto, NULL, &size, gop_handle);
331c2d0b470SArd Biesheuvel 	if (status == EFI_BUFFER_TOO_SMALL)
332c2d0b470SArd Biesheuvel 		status = efi_setup_gop(si, &graphics_proto, size);
333c2d0b470SArd Biesheuvel 
334c2d0b470SArd Biesheuvel 	if (status != EFI_SUCCESS) {
335c2d0b470SArd Biesheuvel 		size = 0;
336c2d0b470SArd Biesheuvel 		status = efi_bs_call(locate_handle, EFI_LOCATE_BY_PROTOCOL,
337c2d0b470SArd Biesheuvel 				     &uga_proto, NULL, &size, uga_handle);
338c2d0b470SArd Biesheuvel 		if (status == EFI_BUFFER_TOO_SMALL)
339c2d0b470SArd Biesheuvel 			setup_uga(si, &uga_proto, size);
340c2d0b470SArd Biesheuvel 	}
341c2d0b470SArd Biesheuvel }
342c2d0b470SArd Biesheuvel 
3433b8f44fcSArd Biesheuvel 
3443b8f44fcSArd Biesheuvel static void __noreturn efi_exit(efi_handle_t handle, efi_status_t status)
3453b8f44fcSArd Biesheuvel {
3463b8f44fcSArd Biesheuvel 	efi_bs_call(exit, handle, status, 0, NULL);
3473b8f44fcSArd Biesheuvel 	unreachable();
3483b8f44fcSArd Biesheuvel }
3493b8f44fcSArd Biesheuvel 
350c2d0b470SArd Biesheuvel void startup_32(struct boot_params *boot_params);
351c2d0b470SArd Biesheuvel 
352c2d0b470SArd Biesheuvel void __noreturn efi_stub_entry(efi_handle_t handle,
353c2d0b470SArd Biesheuvel 			       efi_system_table_t *sys_table_arg,
354c2d0b470SArd Biesheuvel 			       struct boot_params *boot_params);
355c2d0b470SArd Biesheuvel 
356c2d0b470SArd Biesheuvel /*
357c2d0b470SArd Biesheuvel  * Because the x86 boot code expects to be passed a boot_params we
358c2d0b470SArd Biesheuvel  * need to create one ourselves (usually the bootloader would create
359c2d0b470SArd Biesheuvel  * one for us).
360c2d0b470SArd Biesheuvel  */
361c2d0b470SArd Biesheuvel efi_status_t __efiapi efi_pe_entry(efi_handle_t handle,
362c2d0b470SArd Biesheuvel 				   efi_system_table_t *sys_table_arg)
363c2d0b470SArd Biesheuvel {
364c2d0b470SArd Biesheuvel 	struct boot_params *boot_params;
365c2d0b470SArd Biesheuvel 	struct setup_header *hdr;
366c2d0b470SArd Biesheuvel 	efi_loaded_image_t *image;
367c2d0b470SArd Biesheuvel 	efi_guid_t proto = LOADED_IMAGE_PROTOCOL_GUID;
368c2d0b470SArd Biesheuvel 	int options_size = 0;
369c2d0b470SArd Biesheuvel 	efi_status_t status;
370c2d0b470SArd Biesheuvel 	char *cmdline_ptr;
371c2d0b470SArd Biesheuvel 	unsigned long ramdisk_addr;
372c2d0b470SArd Biesheuvel 	unsigned long ramdisk_size;
3736a4db9bfSArd Biesheuvel 	bool above4g;
374c2d0b470SArd Biesheuvel 
375c2d0b470SArd Biesheuvel 	sys_table = sys_table_arg;
376c2d0b470SArd Biesheuvel 
377c2d0b470SArd Biesheuvel 	/* Check if we were booted by the EFI firmware */
378c2d0b470SArd Biesheuvel 	if (sys_table->hdr.signature != EFI_SYSTEM_TABLE_SIGNATURE)
3793b8f44fcSArd Biesheuvel 		efi_exit(handle, EFI_INVALID_PARAMETER);
380c2d0b470SArd Biesheuvel 
381c2d0b470SArd Biesheuvel 	status = efi_bs_call(handle_protocol, handle, &proto, (void *)&image);
382c2d0b470SArd Biesheuvel 	if (status != EFI_SUCCESS) {
383c2d0b470SArd Biesheuvel 		efi_printk("Failed to get handle for LOADED_IMAGE_PROTOCOL\n");
3843b8f44fcSArd Biesheuvel 		efi_exit(handle, status);
385c2d0b470SArd Biesheuvel 	}
386c2d0b470SArd Biesheuvel 
387f7b85b33SArd Biesheuvel 	hdr = &((struct boot_params *)efi_table_attr(image, image_base))->hdr;
3886a4db9bfSArd Biesheuvel 	above4g = hdr->xloadflags & XLF_CAN_BE_LOADED_ABOVE_4G;
3896a4db9bfSArd Biesheuvel 
3906a4db9bfSArd Biesheuvel 	status = efi_allocate_pages(0x4000, (unsigned long *)&boot_params,
3916a4db9bfSArd Biesheuvel 				    above4g ? ULONG_MAX : UINT_MAX);
392c2d0b470SArd Biesheuvel 	if (status != EFI_SUCCESS) {
393c2d0b470SArd Biesheuvel 		efi_printk("Failed to allocate lowmem for boot params\n");
3943b8f44fcSArd Biesheuvel 		efi_exit(handle, status);
395c2d0b470SArd Biesheuvel 	}
396c2d0b470SArd Biesheuvel 
397c2d0b470SArd Biesheuvel 	memset(boot_params, 0x0, 0x4000);
398c2d0b470SArd Biesheuvel 
399c2d0b470SArd Biesheuvel 	hdr = &boot_params->hdr;
400c2d0b470SArd Biesheuvel 
401c2d0b470SArd Biesheuvel 	/* Copy the second sector to boot_params */
402f7b85b33SArd Biesheuvel 	memcpy(&hdr->jump, efi_table_attr(image, image_base) + 512, 512);
403c2d0b470SArd Biesheuvel 
404c2d0b470SArd Biesheuvel 	/*
405c2d0b470SArd Biesheuvel 	 * Fill out some of the header fields ourselves because the
406c2d0b470SArd Biesheuvel 	 * EFI firmware loader doesn't load the first sector.
407c2d0b470SArd Biesheuvel 	 */
408c2d0b470SArd Biesheuvel 	hdr->root_flags	= 1;
409c2d0b470SArd Biesheuvel 	hdr->vid_mode	= 0xffff;
410c2d0b470SArd Biesheuvel 	hdr->boot_flag	= 0xAA55;
411c2d0b470SArd Biesheuvel 
412c2d0b470SArd Biesheuvel 	hdr->type_of_loader = 0x21;
413c2d0b470SArd Biesheuvel 
414c2d0b470SArd Biesheuvel 	/* Convert unicode cmdline to ascii */
4151e45bf73SArd Biesheuvel 	cmdline_ptr = efi_convert_cmdline(image, &options_size,
4161e45bf73SArd Biesheuvel 					  above4g ? ULONG_MAX : UINT_MAX);
417c2d0b470SArd Biesheuvel 	if (!cmdline_ptr)
418c2d0b470SArd Biesheuvel 		goto fail;
419c2d0b470SArd Biesheuvel 
420c2d0b470SArd Biesheuvel 	hdr->cmd_line_ptr = (unsigned long)cmdline_ptr;
421c2d0b470SArd Biesheuvel 	/* Fill in upper bits of command line address, NOP on 32 bit  */
422c2d0b470SArd Biesheuvel 	boot_params->ext_cmd_line_ptr = (u64)(unsigned long)cmdline_ptr >> 32;
423c2d0b470SArd Biesheuvel 
424c2d0b470SArd Biesheuvel 	hdr->ramdisk_image = 0;
425c2d0b470SArd Biesheuvel 	hdr->ramdisk_size = 0;
426c2d0b470SArd Biesheuvel 
427*17054f49SArd Biesheuvel 	if (efi_is_native()) {
428c2d0b470SArd Biesheuvel 		status = efi_parse_options(cmdline_ptr);
429c2d0b470SArd Biesheuvel 		if (status != EFI_SUCCESS)
430c2d0b470SArd Biesheuvel 			goto fail2;
431c2d0b470SArd Biesheuvel 
43279d3219dSArd Biesheuvel 		if (!noinitrd()) {
433*17054f49SArd Biesheuvel 			status = efi_load_initrd(image, &ramdisk_addr,
434*17054f49SArd Biesheuvel 						 &ramdisk_size,
43531f5e546SArd Biesheuvel 						 hdr->initrd_addr_max,
43679d3219dSArd Biesheuvel 						 above4g ? ULONG_MAX
43779d3219dSArd Biesheuvel 							 : hdr->initrd_addr_max);
438c2d0b470SArd Biesheuvel 			if (status != EFI_SUCCESS)
439c2d0b470SArd Biesheuvel 				goto fail2;
440c2d0b470SArd Biesheuvel 			hdr->ramdisk_image = ramdisk_addr & 0xffffffff;
441c2d0b470SArd Biesheuvel 			hdr->ramdisk_size  = ramdisk_size & 0xffffffff;
442c2d0b470SArd Biesheuvel 			boot_params->ext_ramdisk_image = (u64)ramdisk_addr >> 32;
443c2d0b470SArd Biesheuvel 			boot_params->ext_ramdisk_size  = (u64)ramdisk_size >> 32;
44479d3219dSArd Biesheuvel 		}
445*17054f49SArd Biesheuvel 	}
446c2d0b470SArd Biesheuvel 
447c2d0b470SArd Biesheuvel 	efi_stub_entry(handle, sys_table, boot_params);
448c2d0b470SArd Biesheuvel 	/* not reached */
449c2d0b470SArd Biesheuvel 
450c2d0b470SArd Biesheuvel fail2:
4511e45bf73SArd Biesheuvel 	efi_free(options_size, (unsigned long)cmdline_ptr);
452c2d0b470SArd Biesheuvel fail:
453c2d0b470SArd Biesheuvel 	efi_free(0x4000, (unsigned long)boot_params);
454c2d0b470SArd Biesheuvel 
4553b8f44fcSArd Biesheuvel 	efi_exit(handle, status);
456c2d0b470SArd Biesheuvel }
457c2d0b470SArd Biesheuvel 
458c2d0b470SArd Biesheuvel static void add_e820ext(struct boot_params *params,
459c2d0b470SArd Biesheuvel 			struct setup_data *e820ext, u32 nr_entries)
460c2d0b470SArd Biesheuvel {
461c2d0b470SArd Biesheuvel 	struct setup_data *data;
462c2d0b470SArd Biesheuvel 
463c2d0b470SArd Biesheuvel 	e820ext->type = SETUP_E820_EXT;
464c2d0b470SArd Biesheuvel 	e820ext->len  = nr_entries * sizeof(struct boot_e820_entry);
465c2d0b470SArd Biesheuvel 	e820ext->next = 0;
466c2d0b470SArd Biesheuvel 
467c2d0b470SArd Biesheuvel 	data = (struct setup_data *)(unsigned long)params->hdr.setup_data;
468c2d0b470SArd Biesheuvel 
469c2d0b470SArd Biesheuvel 	while (data && data->next)
470c2d0b470SArd Biesheuvel 		data = (struct setup_data *)(unsigned long)data->next;
471c2d0b470SArd Biesheuvel 
472c2d0b470SArd Biesheuvel 	if (data)
473c2d0b470SArd Biesheuvel 		data->next = (unsigned long)e820ext;
474c2d0b470SArd Biesheuvel 	else
475c2d0b470SArd Biesheuvel 		params->hdr.setup_data = (unsigned long)e820ext;
476c2d0b470SArd Biesheuvel }
477c2d0b470SArd Biesheuvel 
478c2d0b470SArd Biesheuvel static efi_status_t
479c2d0b470SArd Biesheuvel setup_e820(struct boot_params *params, struct setup_data *e820ext, u32 e820ext_size)
480c2d0b470SArd Biesheuvel {
481c2d0b470SArd Biesheuvel 	struct boot_e820_entry *entry = params->e820_table;
482c2d0b470SArd Biesheuvel 	struct efi_info *efi = &params->efi_info;
483c2d0b470SArd Biesheuvel 	struct boot_e820_entry *prev = NULL;
484c2d0b470SArd Biesheuvel 	u32 nr_entries;
485c2d0b470SArd Biesheuvel 	u32 nr_desc;
486c2d0b470SArd Biesheuvel 	int i;
487c2d0b470SArd Biesheuvel 
488c2d0b470SArd Biesheuvel 	nr_entries = 0;
489c2d0b470SArd Biesheuvel 	nr_desc = efi->efi_memmap_size / efi->efi_memdesc_size;
490c2d0b470SArd Biesheuvel 
491c2d0b470SArd Biesheuvel 	for (i = 0; i < nr_desc; i++) {
492c2d0b470SArd Biesheuvel 		efi_memory_desc_t *d;
493c2d0b470SArd Biesheuvel 		unsigned int e820_type = 0;
494c2d0b470SArd Biesheuvel 		unsigned long m = efi->efi_memmap;
495c2d0b470SArd Biesheuvel 
496c2d0b470SArd Biesheuvel #ifdef CONFIG_X86_64
497c2d0b470SArd Biesheuvel 		m |= (u64)efi->efi_memmap_hi << 32;
498c2d0b470SArd Biesheuvel #endif
499c2d0b470SArd Biesheuvel 
500c2d0b470SArd Biesheuvel 		d = efi_early_memdesc_ptr(m, efi->efi_memdesc_size, i);
501c2d0b470SArd Biesheuvel 		switch (d->type) {
502c2d0b470SArd Biesheuvel 		case EFI_RESERVED_TYPE:
503c2d0b470SArd Biesheuvel 		case EFI_RUNTIME_SERVICES_CODE:
504c2d0b470SArd Biesheuvel 		case EFI_RUNTIME_SERVICES_DATA:
505c2d0b470SArd Biesheuvel 		case EFI_MEMORY_MAPPED_IO:
506c2d0b470SArd Biesheuvel 		case EFI_MEMORY_MAPPED_IO_PORT_SPACE:
507c2d0b470SArd Biesheuvel 		case EFI_PAL_CODE:
508c2d0b470SArd Biesheuvel 			e820_type = E820_TYPE_RESERVED;
509c2d0b470SArd Biesheuvel 			break;
510c2d0b470SArd Biesheuvel 
511c2d0b470SArd Biesheuvel 		case EFI_UNUSABLE_MEMORY:
512c2d0b470SArd Biesheuvel 			e820_type = E820_TYPE_UNUSABLE;
513c2d0b470SArd Biesheuvel 			break;
514c2d0b470SArd Biesheuvel 
515c2d0b470SArd Biesheuvel 		case EFI_ACPI_RECLAIM_MEMORY:
516c2d0b470SArd Biesheuvel 			e820_type = E820_TYPE_ACPI;
517c2d0b470SArd Biesheuvel 			break;
518c2d0b470SArd Biesheuvel 
519c2d0b470SArd Biesheuvel 		case EFI_LOADER_CODE:
520c2d0b470SArd Biesheuvel 		case EFI_LOADER_DATA:
521c2d0b470SArd Biesheuvel 		case EFI_BOOT_SERVICES_CODE:
522c2d0b470SArd Biesheuvel 		case EFI_BOOT_SERVICES_DATA:
523c2d0b470SArd Biesheuvel 		case EFI_CONVENTIONAL_MEMORY:
524c2d0b470SArd Biesheuvel 			if (efi_soft_reserve_enabled() &&
525c2d0b470SArd Biesheuvel 			    (d->attribute & EFI_MEMORY_SP))
526c2d0b470SArd Biesheuvel 				e820_type = E820_TYPE_SOFT_RESERVED;
527c2d0b470SArd Biesheuvel 			else
528c2d0b470SArd Biesheuvel 				e820_type = E820_TYPE_RAM;
529c2d0b470SArd Biesheuvel 			break;
530c2d0b470SArd Biesheuvel 
531c2d0b470SArd Biesheuvel 		case EFI_ACPI_MEMORY_NVS:
532c2d0b470SArd Biesheuvel 			e820_type = E820_TYPE_NVS;
533c2d0b470SArd Biesheuvel 			break;
534c2d0b470SArd Biesheuvel 
535c2d0b470SArd Biesheuvel 		case EFI_PERSISTENT_MEMORY:
536c2d0b470SArd Biesheuvel 			e820_type = E820_TYPE_PMEM;
537c2d0b470SArd Biesheuvel 			break;
538c2d0b470SArd Biesheuvel 
539c2d0b470SArd Biesheuvel 		default:
540c2d0b470SArd Biesheuvel 			continue;
541c2d0b470SArd Biesheuvel 		}
542c2d0b470SArd Biesheuvel 
543c2d0b470SArd Biesheuvel 		/* Merge adjacent mappings */
544c2d0b470SArd Biesheuvel 		if (prev && prev->type == e820_type &&
545c2d0b470SArd Biesheuvel 		    (prev->addr + prev->size) == d->phys_addr) {
546c2d0b470SArd Biesheuvel 			prev->size += d->num_pages << 12;
547c2d0b470SArd Biesheuvel 			continue;
548c2d0b470SArd Biesheuvel 		}
549c2d0b470SArd Biesheuvel 
550c2d0b470SArd Biesheuvel 		if (nr_entries == ARRAY_SIZE(params->e820_table)) {
551c2d0b470SArd Biesheuvel 			u32 need = (nr_desc - i) * sizeof(struct e820_entry) +
552c2d0b470SArd Biesheuvel 				   sizeof(struct setup_data);
553c2d0b470SArd Biesheuvel 
554c2d0b470SArd Biesheuvel 			if (!e820ext || e820ext_size < need)
555c2d0b470SArd Biesheuvel 				return EFI_BUFFER_TOO_SMALL;
556c2d0b470SArd Biesheuvel 
557c2d0b470SArd Biesheuvel 			/* boot_params map full, switch to e820 extended */
558c2d0b470SArd Biesheuvel 			entry = (struct boot_e820_entry *)e820ext->data;
559c2d0b470SArd Biesheuvel 		}
560c2d0b470SArd Biesheuvel 
561c2d0b470SArd Biesheuvel 		entry->addr = d->phys_addr;
562c2d0b470SArd Biesheuvel 		entry->size = d->num_pages << PAGE_SHIFT;
563c2d0b470SArd Biesheuvel 		entry->type = e820_type;
564c2d0b470SArd Biesheuvel 		prev = entry++;
565c2d0b470SArd Biesheuvel 		nr_entries++;
566c2d0b470SArd Biesheuvel 	}
567c2d0b470SArd Biesheuvel 
568c2d0b470SArd Biesheuvel 	if (nr_entries > ARRAY_SIZE(params->e820_table)) {
569c2d0b470SArd Biesheuvel 		u32 nr_e820ext = nr_entries - ARRAY_SIZE(params->e820_table);
570c2d0b470SArd Biesheuvel 
571c2d0b470SArd Biesheuvel 		add_e820ext(params, e820ext, nr_e820ext);
572c2d0b470SArd Biesheuvel 		nr_entries -= nr_e820ext;
573c2d0b470SArd Biesheuvel 	}
574c2d0b470SArd Biesheuvel 
575c2d0b470SArd Biesheuvel 	params->e820_entries = (u8)nr_entries;
576c2d0b470SArd Biesheuvel 
577c2d0b470SArd Biesheuvel 	return EFI_SUCCESS;
578c2d0b470SArd Biesheuvel }
579c2d0b470SArd Biesheuvel 
580c2d0b470SArd Biesheuvel static efi_status_t alloc_e820ext(u32 nr_desc, struct setup_data **e820ext,
581c2d0b470SArd Biesheuvel 				  u32 *e820ext_size)
582c2d0b470SArd Biesheuvel {
583c2d0b470SArd Biesheuvel 	efi_status_t status;
584c2d0b470SArd Biesheuvel 	unsigned long size;
585c2d0b470SArd Biesheuvel 
586c2d0b470SArd Biesheuvel 	size = sizeof(struct setup_data) +
587c2d0b470SArd Biesheuvel 		sizeof(struct e820_entry) * nr_desc;
588c2d0b470SArd Biesheuvel 
589c2d0b470SArd Biesheuvel 	if (*e820ext) {
590c2d0b470SArd Biesheuvel 		efi_bs_call(free_pool, *e820ext);
591c2d0b470SArd Biesheuvel 		*e820ext = NULL;
592c2d0b470SArd Biesheuvel 		*e820ext_size = 0;
593c2d0b470SArd Biesheuvel 	}
594c2d0b470SArd Biesheuvel 
595c2d0b470SArd Biesheuvel 	status = efi_bs_call(allocate_pool, EFI_LOADER_DATA, size,
596c2d0b470SArd Biesheuvel 			     (void **)e820ext);
597c2d0b470SArd Biesheuvel 	if (status == EFI_SUCCESS)
598c2d0b470SArd Biesheuvel 		*e820ext_size = size;
599c2d0b470SArd Biesheuvel 
600c2d0b470SArd Biesheuvel 	return status;
601c2d0b470SArd Biesheuvel }
602c2d0b470SArd Biesheuvel 
603c2d0b470SArd Biesheuvel static efi_status_t allocate_e820(struct boot_params *params,
604c2d0b470SArd Biesheuvel 				  struct setup_data **e820ext,
605c2d0b470SArd Biesheuvel 				  u32 *e820ext_size)
606c2d0b470SArd Biesheuvel {
607c2d0b470SArd Biesheuvel 	unsigned long map_size, desc_size, buff_size;
608c2d0b470SArd Biesheuvel 	struct efi_boot_memmap boot_map;
609c2d0b470SArd Biesheuvel 	efi_memory_desc_t *map;
610c2d0b470SArd Biesheuvel 	efi_status_t status;
611c2d0b470SArd Biesheuvel 	__u32 nr_desc;
612c2d0b470SArd Biesheuvel 
613c2d0b470SArd Biesheuvel 	boot_map.map		= &map;
614c2d0b470SArd Biesheuvel 	boot_map.map_size	= &map_size;
615c2d0b470SArd Biesheuvel 	boot_map.desc_size	= &desc_size;
616c2d0b470SArd Biesheuvel 	boot_map.desc_ver	= NULL;
617c2d0b470SArd Biesheuvel 	boot_map.key_ptr	= NULL;
618c2d0b470SArd Biesheuvel 	boot_map.buff_size	= &buff_size;
619c2d0b470SArd Biesheuvel 
620c2d0b470SArd Biesheuvel 	status = efi_get_memory_map(&boot_map);
621c2d0b470SArd Biesheuvel 	if (status != EFI_SUCCESS)
622c2d0b470SArd Biesheuvel 		return status;
623c2d0b470SArd Biesheuvel 
624c2d0b470SArd Biesheuvel 	nr_desc = buff_size / desc_size;
625c2d0b470SArd Biesheuvel 
626c2d0b470SArd Biesheuvel 	if (nr_desc > ARRAY_SIZE(params->e820_table)) {
627c2d0b470SArd Biesheuvel 		u32 nr_e820ext = nr_desc - ARRAY_SIZE(params->e820_table);
628c2d0b470SArd Biesheuvel 
629c2d0b470SArd Biesheuvel 		status = alloc_e820ext(nr_e820ext, e820ext, e820ext_size);
630c2d0b470SArd Biesheuvel 		if (status != EFI_SUCCESS)
631c2d0b470SArd Biesheuvel 			return status;
632c2d0b470SArd Biesheuvel 	}
633c2d0b470SArd Biesheuvel 
634c2d0b470SArd Biesheuvel 	return EFI_SUCCESS;
635c2d0b470SArd Biesheuvel }
636c2d0b470SArd Biesheuvel 
637c2d0b470SArd Biesheuvel struct exit_boot_struct {
638c2d0b470SArd Biesheuvel 	struct boot_params	*boot_params;
639c2d0b470SArd Biesheuvel 	struct efi_info		*efi;
640c2d0b470SArd Biesheuvel };
641c2d0b470SArd Biesheuvel 
642c2d0b470SArd Biesheuvel static efi_status_t exit_boot_func(struct efi_boot_memmap *map,
643c2d0b470SArd Biesheuvel 				   void *priv)
644c2d0b470SArd Biesheuvel {
645c2d0b470SArd Biesheuvel 	const char *signature;
646c2d0b470SArd Biesheuvel 	struct exit_boot_struct *p = priv;
647c2d0b470SArd Biesheuvel 
648c2d0b470SArd Biesheuvel 	signature = efi_is_64bit() ? EFI64_LOADER_SIGNATURE
649c2d0b470SArd Biesheuvel 				   : EFI32_LOADER_SIGNATURE;
650c2d0b470SArd Biesheuvel 	memcpy(&p->efi->efi_loader_signature, signature, sizeof(__u32));
651c2d0b470SArd Biesheuvel 
652c2d0b470SArd Biesheuvel 	p->efi->efi_systab		= (unsigned long)efi_system_table();
653c2d0b470SArd Biesheuvel 	p->efi->efi_memdesc_size	= *map->desc_size;
654c2d0b470SArd Biesheuvel 	p->efi->efi_memdesc_version	= *map->desc_ver;
655c2d0b470SArd Biesheuvel 	p->efi->efi_memmap		= (unsigned long)*map->map;
656c2d0b470SArd Biesheuvel 	p->efi->efi_memmap_size		= *map->map_size;
657c2d0b470SArd Biesheuvel 
658c2d0b470SArd Biesheuvel #ifdef CONFIG_X86_64
659c2d0b470SArd Biesheuvel 	p->efi->efi_systab_hi		= (unsigned long)efi_system_table() >> 32;
660c2d0b470SArd Biesheuvel 	p->efi->efi_memmap_hi		= (unsigned long)*map->map >> 32;
661c2d0b470SArd Biesheuvel #endif
662c2d0b470SArd Biesheuvel 
663c2d0b470SArd Biesheuvel 	return EFI_SUCCESS;
664c2d0b470SArd Biesheuvel }
665c2d0b470SArd Biesheuvel 
666c2d0b470SArd Biesheuvel static efi_status_t exit_boot(struct boot_params *boot_params, void *handle)
667c2d0b470SArd Biesheuvel {
668c2d0b470SArd Biesheuvel 	unsigned long map_sz, key, desc_size, buff_size;
669c2d0b470SArd Biesheuvel 	efi_memory_desc_t *mem_map;
670c2d0b470SArd Biesheuvel 	struct setup_data *e820ext = NULL;
671c2d0b470SArd Biesheuvel 	__u32 e820ext_size = 0;
672c2d0b470SArd Biesheuvel 	efi_status_t status;
673c2d0b470SArd Biesheuvel 	__u32 desc_version;
674c2d0b470SArd Biesheuvel 	struct efi_boot_memmap map;
675c2d0b470SArd Biesheuvel 	struct exit_boot_struct priv;
676c2d0b470SArd Biesheuvel 
677c2d0b470SArd Biesheuvel 	map.map			= &mem_map;
678c2d0b470SArd Biesheuvel 	map.map_size		= &map_sz;
679c2d0b470SArd Biesheuvel 	map.desc_size		= &desc_size;
680c2d0b470SArd Biesheuvel 	map.desc_ver		= &desc_version;
681c2d0b470SArd Biesheuvel 	map.key_ptr		= &key;
682c2d0b470SArd Biesheuvel 	map.buff_size		= &buff_size;
683c2d0b470SArd Biesheuvel 	priv.boot_params	= boot_params;
684c2d0b470SArd Biesheuvel 	priv.efi		= &boot_params->efi_info;
685c2d0b470SArd Biesheuvel 
686c2d0b470SArd Biesheuvel 	status = allocate_e820(boot_params, &e820ext, &e820ext_size);
687c2d0b470SArd Biesheuvel 	if (status != EFI_SUCCESS)
688c2d0b470SArd Biesheuvel 		return status;
689c2d0b470SArd Biesheuvel 
690c2d0b470SArd Biesheuvel 	/* Might as well exit boot services now */
691c2d0b470SArd Biesheuvel 	status = efi_exit_boot_services(handle, &map, &priv, exit_boot_func);
692c2d0b470SArd Biesheuvel 	if (status != EFI_SUCCESS)
693c2d0b470SArd Biesheuvel 		return status;
694c2d0b470SArd Biesheuvel 
695c2d0b470SArd Biesheuvel 	/* Historic? */
696c2d0b470SArd Biesheuvel 	boot_params->alt_mem_k	= 32 * 1024;
697c2d0b470SArd Biesheuvel 
698c2d0b470SArd Biesheuvel 	status = setup_e820(boot_params, e820ext, e820ext_size);
699c2d0b470SArd Biesheuvel 	if (status != EFI_SUCCESS)
700c2d0b470SArd Biesheuvel 		return status;
701c2d0b470SArd Biesheuvel 
702c2d0b470SArd Biesheuvel 	return EFI_SUCCESS;
703c2d0b470SArd Biesheuvel }
704c2d0b470SArd Biesheuvel 
705c2d0b470SArd Biesheuvel /*
706c2d0b470SArd Biesheuvel  * On success we return a pointer to a boot_params structure, and NULL
707c2d0b470SArd Biesheuvel  * on failure.
708c2d0b470SArd Biesheuvel  */
709c2d0b470SArd Biesheuvel struct boot_params *efi_main(efi_handle_t handle,
710c2d0b470SArd Biesheuvel 			     efi_system_table_t *sys_table_arg,
711c2d0b470SArd Biesheuvel 			     struct boot_params *boot_params)
712c2d0b470SArd Biesheuvel {
713c2d0b470SArd Biesheuvel 	unsigned long bzimage_addr = (unsigned long)startup_32;
714c2d0b470SArd Biesheuvel 	struct setup_header *hdr = &boot_params->hdr;
715c2d0b470SArd Biesheuvel 	efi_status_t status;
716c2d0b470SArd Biesheuvel 	unsigned long cmdline_paddr;
717c2d0b470SArd Biesheuvel 
718c2d0b470SArd Biesheuvel 	sys_table = sys_table_arg;
719c2d0b470SArd Biesheuvel 
720c2d0b470SArd Biesheuvel 	/* Check if we were booted by the EFI firmware */
721c2d0b470SArd Biesheuvel 	if (sys_table->hdr.signature != EFI_SYSTEM_TABLE_SIGNATURE)
7223b8f44fcSArd Biesheuvel 		efi_exit(handle, EFI_INVALID_PARAMETER);
723c2d0b470SArd Biesheuvel 
724c2d0b470SArd Biesheuvel 	/*
725c2d0b470SArd Biesheuvel 	 * If the kernel isn't already loaded at the preferred load
726c2d0b470SArd Biesheuvel 	 * address, relocate it.
727c2d0b470SArd Biesheuvel 	 */
728c2d0b470SArd Biesheuvel 	if (bzimage_addr != hdr->pref_address) {
729c2d0b470SArd Biesheuvel 		status = efi_relocate_kernel(&bzimage_addr,
730c2d0b470SArd Biesheuvel 					     hdr->init_size, hdr->init_size,
731c2d0b470SArd Biesheuvel 					     hdr->pref_address,
732c2d0b470SArd Biesheuvel 					     hdr->kernel_alignment,
733c2d0b470SArd Biesheuvel 					     LOAD_PHYSICAL_ADDR);
734c2d0b470SArd Biesheuvel 		if (status != EFI_SUCCESS) {
735c2d0b470SArd Biesheuvel 			efi_printk("efi_relocate_kernel() failed!\n");
736c2d0b470SArd Biesheuvel 			goto fail;
737c2d0b470SArd Biesheuvel 		}
738c2d0b470SArd Biesheuvel 	}
739c2d0b470SArd Biesheuvel 	hdr->code32_start = (u32)bzimage_addr;
740c2d0b470SArd Biesheuvel 
741c2d0b470SArd Biesheuvel 	/*
74291d150c0SArd Biesheuvel 	 * efi_pe_entry() may have been called before efi_main(), in which
743c2d0b470SArd Biesheuvel 	 * case this is the second time we parse the cmdline. This is ok,
744c2d0b470SArd Biesheuvel 	 * parsing the cmdline multiple times does not have side-effects.
745c2d0b470SArd Biesheuvel 	 */
746c2d0b470SArd Biesheuvel 	cmdline_paddr = ((u64)hdr->cmd_line_ptr |
747c2d0b470SArd Biesheuvel 			 ((u64)boot_params->ext_cmd_line_ptr << 32));
748c2d0b470SArd Biesheuvel 	efi_parse_options((char *)cmdline_paddr);
749c2d0b470SArd Biesheuvel 
750c2d0b470SArd Biesheuvel 	/*
751ec93fc37SArd Biesheuvel 	 * At this point, an initrd may already have been loaded, either by
752ec93fc37SArd Biesheuvel 	 * the bootloader and passed via bootparams, or loaded from a initrd=
753ec93fc37SArd Biesheuvel 	 * command line option by efi_pe_entry() above. In either case, we
754ec93fc37SArd Biesheuvel 	 * permit an initrd loaded from the LINUX_EFI_INITRD_MEDIA_GUID device
755ec93fc37SArd Biesheuvel 	 * path to supersede it.
756ec93fc37SArd Biesheuvel 	 */
75779d3219dSArd Biesheuvel 	if (!noinitrd()) {
75879d3219dSArd Biesheuvel 		unsigned long addr, size;
75979d3219dSArd Biesheuvel 		unsigned long max_addr = hdr->initrd_addr_max;
76079d3219dSArd Biesheuvel 
76179d3219dSArd Biesheuvel 		if (hdr->xloadflags & XLF_CAN_BE_LOADED_ABOVE_4G)
76279d3219dSArd Biesheuvel 			max_addr = ULONG_MAX;
76379d3219dSArd Biesheuvel 
76479d3219dSArd Biesheuvel 		status = efi_load_initrd_dev_path(&addr, &size, max_addr);
765ec93fc37SArd Biesheuvel 		if (status == EFI_SUCCESS) {
76679d3219dSArd Biesheuvel 			hdr->ramdisk_image		= (u32)addr;
76779d3219dSArd Biesheuvel 			hdr->ramdisk_size 		= (u32)size;
76879d3219dSArd Biesheuvel 			boot_params->ext_ramdisk_image	= (u64)addr >> 32;
76979d3219dSArd Biesheuvel 			boot_params->ext_ramdisk_size 	= (u64)size >> 32;
770ec93fc37SArd Biesheuvel 		} else if (status != EFI_NOT_FOUND) {
771ec93fc37SArd Biesheuvel 			efi_printk("efi_load_initrd_dev_path() failed!\n");
772ec93fc37SArd Biesheuvel 			goto fail;
773ec93fc37SArd Biesheuvel 		}
77479d3219dSArd Biesheuvel 	}
775ec93fc37SArd Biesheuvel 
776ec93fc37SArd Biesheuvel 	/*
777c2d0b470SArd Biesheuvel 	 * If the boot loader gave us a value for secure_boot then we use that,
778c2d0b470SArd Biesheuvel 	 * otherwise we ask the BIOS.
779c2d0b470SArd Biesheuvel 	 */
780c2d0b470SArd Biesheuvel 	if (boot_params->secure_boot == efi_secureboot_mode_unset)
781c2d0b470SArd Biesheuvel 		boot_params->secure_boot = efi_get_secureboot();
782c2d0b470SArd Biesheuvel 
783c2d0b470SArd Biesheuvel 	/* Ask the firmware to clear memory on unclean shutdown */
784c2d0b470SArd Biesheuvel 	efi_enable_reset_attack_mitigation();
785c2d0b470SArd Biesheuvel 
786c2d0b470SArd Biesheuvel 	efi_random_get_seed();
787c2d0b470SArd Biesheuvel 
788c2d0b470SArd Biesheuvel 	efi_retrieve_tpm2_eventlog();
789c2d0b470SArd Biesheuvel 
790c2d0b470SArd Biesheuvel 	setup_graphics(boot_params);
791c2d0b470SArd Biesheuvel 
792c2d0b470SArd Biesheuvel 	setup_efi_pci(boot_params);
793c2d0b470SArd Biesheuvel 
794c2d0b470SArd Biesheuvel 	setup_quirks(boot_params);
795c2d0b470SArd Biesheuvel 
796c2d0b470SArd Biesheuvel 	status = exit_boot(boot_params, handle);
797c2d0b470SArd Biesheuvel 	if (status != EFI_SUCCESS) {
798c2d0b470SArd Biesheuvel 		efi_printk("exit_boot() failed!\n");
799c2d0b470SArd Biesheuvel 		goto fail;
800c2d0b470SArd Biesheuvel 	}
801c2d0b470SArd Biesheuvel 
802c2d0b470SArd Biesheuvel 	return boot_params;
803c2d0b470SArd Biesheuvel fail:
804c2d0b470SArd Biesheuvel 	efi_printk("efi_main() failed!\n");
805c2d0b470SArd Biesheuvel 
8063b8f44fcSArd Biesheuvel 	efi_exit(handle, status);
807c2d0b470SArd Biesheuvel }
808