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);
347*f3fa0efcSArd Biesheuvel 	for(;;)
348*f3fa0efcSArd Biesheuvel 		asm("hlt");
3493b8f44fcSArd Biesheuvel }
3503b8f44fcSArd Biesheuvel 
351c2d0b470SArd Biesheuvel void startup_32(struct boot_params *boot_params);
352c2d0b470SArd Biesheuvel 
353c2d0b470SArd Biesheuvel void __noreturn efi_stub_entry(efi_handle_t handle,
354c2d0b470SArd Biesheuvel 			       efi_system_table_t *sys_table_arg,
355c2d0b470SArd Biesheuvel 			       struct boot_params *boot_params);
356c2d0b470SArd Biesheuvel 
357c2d0b470SArd Biesheuvel /*
358c2d0b470SArd Biesheuvel  * Because the x86 boot code expects to be passed a boot_params we
359c2d0b470SArd Biesheuvel  * need to create one ourselves (usually the bootloader would create
360c2d0b470SArd Biesheuvel  * one for us).
361c2d0b470SArd Biesheuvel  */
362c2d0b470SArd Biesheuvel efi_status_t __efiapi efi_pe_entry(efi_handle_t handle,
363c2d0b470SArd Biesheuvel 				   efi_system_table_t *sys_table_arg)
364c2d0b470SArd Biesheuvel {
365c2d0b470SArd Biesheuvel 	struct boot_params *boot_params;
366c2d0b470SArd Biesheuvel 	struct setup_header *hdr;
367c2d0b470SArd Biesheuvel 	efi_loaded_image_t *image;
368c2d0b470SArd Biesheuvel 	efi_guid_t proto = LOADED_IMAGE_PROTOCOL_GUID;
369c2d0b470SArd Biesheuvel 	int options_size = 0;
370c2d0b470SArd Biesheuvel 	efi_status_t status;
371c2d0b470SArd Biesheuvel 	char *cmdline_ptr;
372c2d0b470SArd Biesheuvel 	unsigned long ramdisk_addr;
373c2d0b470SArd Biesheuvel 	unsigned long ramdisk_size;
3746a4db9bfSArd Biesheuvel 	bool above4g;
375c2d0b470SArd Biesheuvel 
376c2d0b470SArd Biesheuvel 	sys_table = sys_table_arg;
377c2d0b470SArd Biesheuvel 
378c2d0b470SArd Biesheuvel 	/* Check if we were booted by the EFI firmware */
379c2d0b470SArd Biesheuvel 	if (sys_table->hdr.signature != EFI_SYSTEM_TABLE_SIGNATURE)
3803b8f44fcSArd Biesheuvel 		efi_exit(handle, EFI_INVALID_PARAMETER);
381c2d0b470SArd Biesheuvel 
382c2d0b470SArd Biesheuvel 	status = efi_bs_call(handle_protocol, handle, &proto, (void *)&image);
383c2d0b470SArd Biesheuvel 	if (status != EFI_SUCCESS) {
384c2d0b470SArd Biesheuvel 		efi_printk("Failed to get handle for LOADED_IMAGE_PROTOCOL\n");
3853b8f44fcSArd Biesheuvel 		efi_exit(handle, status);
386c2d0b470SArd Biesheuvel 	}
387c2d0b470SArd Biesheuvel 
388f7b85b33SArd Biesheuvel 	hdr = &((struct boot_params *)efi_table_attr(image, image_base))->hdr;
3896a4db9bfSArd Biesheuvel 	above4g = hdr->xloadflags & XLF_CAN_BE_LOADED_ABOVE_4G;
3906a4db9bfSArd Biesheuvel 
3916a4db9bfSArd Biesheuvel 	status = efi_allocate_pages(0x4000, (unsigned long *)&boot_params,
3926a4db9bfSArd Biesheuvel 				    above4g ? ULONG_MAX : UINT_MAX);
393c2d0b470SArd Biesheuvel 	if (status != EFI_SUCCESS) {
394c2d0b470SArd Biesheuvel 		efi_printk("Failed to allocate lowmem for boot params\n");
3953b8f44fcSArd Biesheuvel 		efi_exit(handle, status);
396c2d0b470SArd Biesheuvel 	}
397c2d0b470SArd Biesheuvel 
398c2d0b470SArd Biesheuvel 	memset(boot_params, 0x0, 0x4000);
399c2d0b470SArd Biesheuvel 
400c2d0b470SArd Biesheuvel 	hdr = &boot_params->hdr;
401c2d0b470SArd Biesheuvel 
402c2d0b470SArd Biesheuvel 	/* Copy the second sector to boot_params */
403f7b85b33SArd Biesheuvel 	memcpy(&hdr->jump, efi_table_attr(image, image_base) + 512, 512);
404c2d0b470SArd Biesheuvel 
405c2d0b470SArd Biesheuvel 	/*
406c2d0b470SArd Biesheuvel 	 * Fill out some of the header fields ourselves because the
407c2d0b470SArd Biesheuvel 	 * EFI firmware loader doesn't load the first sector.
408c2d0b470SArd Biesheuvel 	 */
409c2d0b470SArd Biesheuvel 	hdr->root_flags	= 1;
410c2d0b470SArd Biesheuvel 	hdr->vid_mode	= 0xffff;
411c2d0b470SArd Biesheuvel 	hdr->boot_flag	= 0xAA55;
412c2d0b470SArd Biesheuvel 
413c2d0b470SArd Biesheuvel 	hdr->type_of_loader = 0x21;
414c2d0b470SArd Biesheuvel 
415c2d0b470SArd Biesheuvel 	/* Convert unicode cmdline to ascii */
4161e45bf73SArd Biesheuvel 	cmdline_ptr = efi_convert_cmdline(image, &options_size,
4171e45bf73SArd Biesheuvel 					  above4g ? ULONG_MAX : UINT_MAX);
418c2d0b470SArd Biesheuvel 	if (!cmdline_ptr)
419c2d0b470SArd Biesheuvel 		goto fail;
420c2d0b470SArd Biesheuvel 
421c2d0b470SArd Biesheuvel 	hdr->cmd_line_ptr = (unsigned long)cmdline_ptr;
422c2d0b470SArd Biesheuvel 	/* Fill in upper bits of command line address, NOP on 32 bit  */
423c2d0b470SArd Biesheuvel 	boot_params->ext_cmd_line_ptr = (u64)(unsigned long)cmdline_ptr >> 32;
424c2d0b470SArd Biesheuvel 
425c2d0b470SArd Biesheuvel 	hdr->ramdisk_image = 0;
426c2d0b470SArd Biesheuvel 	hdr->ramdisk_size = 0;
427c2d0b470SArd Biesheuvel 
42817054f49SArd Biesheuvel 	if (efi_is_native()) {
429c2d0b470SArd Biesheuvel 		status = efi_parse_options(cmdline_ptr);
430c2d0b470SArd Biesheuvel 		if (status != EFI_SUCCESS)
431c2d0b470SArd Biesheuvel 			goto fail2;
432c2d0b470SArd Biesheuvel 
43379d3219dSArd Biesheuvel 		if (!noinitrd()) {
43417054f49SArd Biesheuvel 			status = efi_load_initrd(image, &ramdisk_addr,
43517054f49SArd Biesheuvel 						 &ramdisk_size,
43631f5e546SArd Biesheuvel 						 hdr->initrd_addr_max,
43779d3219dSArd Biesheuvel 						 above4g ? ULONG_MAX
43879d3219dSArd Biesheuvel 							 : hdr->initrd_addr_max);
439c2d0b470SArd Biesheuvel 			if (status != EFI_SUCCESS)
440c2d0b470SArd Biesheuvel 				goto fail2;
441c2d0b470SArd Biesheuvel 			hdr->ramdisk_image = ramdisk_addr & 0xffffffff;
442c2d0b470SArd Biesheuvel 			hdr->ramdisk_size  = ramdisk_size & 0xffffffff;
443c2d0b470SArd Biesheuvel 			boot_params->ext_ramdisk_image = (u64)ramdisk_addr >> 32;
444c2d0b470SArd Biesheuvel 			boot_params->ext_ramdisk_size  = (u64)ramdisk_size >> 32;
44579d3219dSArd Biesheuvel 		}
44617054f49SArd Biesheuvel 	}
447c2d0b470SArd Biesheuvel 
448c2d0b470SArd Biesheuvel 	efi_stub_entry(handle, sys_table, boot_params);
449c2d0b470SArd Biesheuvel 	/* not reached */
450c2d0b470SArd Biesheuvel 
451c2d0b470SArd Biesheuvel fail2:
4521e45bf73SArd Biesheuvel 	efi_free(options_size, (unsigned long)cmdline_ptr);
453c2d0b470SArd Biesheuvel fail:
454c2d0b470SArd Biesheuvel 	efi_free(0x4000, (unsigned long)boot_params);
455c2d0b470SArd Biesheuvel 
4563b8f44fcSArd Biesheuvel 	efi_exit(handle, status);
457c2d0b470SArd Biesheuvel }
458c2d0b470SArd Biesheuvel 
459c2d0b470SArd Biesheuvel static void add_e820ext(struct boot_params *params,
460c2d0b470SArd Biesheuvel 			struct setup_data *e820ext, u32 nr_entries)
461c2d0b470SArd Biesheuvel {
462c2d0b470SArd Biesheuvel 	struct setup_data *data;
463c2d0b470SArd Biesheuvel 
464c2d0b470SArd Biesheuvel 	e820ext->type = SETUP_E820_EXT;
465c2d0b470SArd Biesheuvel 	e820ext->len  = nr_entries * sizeof(struct boot_e820_entry);
466c2d0b470SArd Biesheuvel 	e820ext->next = 0;
467c2d0b470SArd Biesheuvel 
468c2d0b470SArd Biesheuvel 	data = (struct setup_data *)(unsigned long)params->hdr.setup_data;
469c2d0b470SArd Biesheuvel 
470c2d0b470SArd Biesheuvel 	while (data && data->next)
471c2d0b470SArd Biesheuvel 		data = (struct setup_data *)(unsigned long)data->next;
472c2d0b470SArd Biesheuvel 
473c2d0b470SArd Biesheuvel 	if (data)
474c2d0b470SArd Biesheuvel 		data->next = (unsigned long)e820ext;
475c2d0b470SArd Biesheuvel 	else
476c2d0b470SArd Biesheuvel 		params->hdr.setup_data = (unsigned long)e820ext;
477c2d0b470SArd Biesheuvel }
478c2d0b470SArd Biesheuvel 
479c2d0b470SArd Biesheuvel static efi_status_t
480c2d0b470SArd Biesheuvel setup_e820(struct boot_params *params, struct setup_data *e820ext, u32 e820ext_size)
481c2d0b470SArd Biesheuvel {
482c2d0b470SArd Biesheuvel 	struct boot_e820_entry *entry = params->e820_table;
483c2d0b470SArd Biesheuvel 	struct efi_info *efi = &params->efi_info;
484c2d0b470SArd Biesheuvel 	struct boot_e820_entry *prev = NULL;
485c2d0b470SArd Biesheuvel 	u32 nr_entries;
486c2d0b470SArd Biesheuvel 	u32 nr_desc;
487c2d0b470SArd Biesheuvel 	int i;
488c2d0b470SArd Biesheuvel 
489c2d0b470SArd Biesheuvel 	nr_entries = 0;
490c2d0b470SArd Biesheuvel 	nr_desc = efi->efi_memmap_size / efi->efi_memdesc_size;
491c2d0b470SArd Biesheuvel 
492c2d0b470SArd Biesheuvel 	for (i = 0; i < nr_desc; i++) {
493c2d0b470SArd Biesheuvel 		efi_memory_desc_t *d;
494c2d0b470SArd Biesheuvel 		unsigned int e820_type = 0;
495c2d0b470SArd Biesheuvel 		unsigned long m = efi->efi_memmap;
496c2d0b470SArd Biesheuvel 
497c2d0b470SArd Biesheuvel #ifdef CONFIG_X86_64
498c2d0b470SArd Biesheuvel 		m |= (u64)efi->efi_memmap_hi << 32;
499c2d0b470SArd Biesheuvel #endif
500c2d0b470SArd Biesheuvel 
501c2d0b470SArd Biesheuvel 		d = efi_early_memdesc_ptr(m, efi->efi_memdesc_size, i);
502c2d0b470SArd Biesheuvel 		switch (d->type) {
503c2d0b470SArd Biesheuvel 		case EFI_RESERVED_TYPE:
504c2d0b470SArd Biesheuvel 		case EFI_RUNTIME_SERVICES_CODE:
505c2d0b470SArd Biesheuvel 		case EFI_RUNTIME_SERVICES_DATA:
506c2d0b470SArd Biesheuvel 		case EFI_MEMORY_MAPPED_IO:
507c2d0b470SArd Biesheuvel 		case EFI_MEMORY_MAPPED_IO_PORT_SPACE:
508c2d0b470SArd Biesheuvel 		case EFI_PAL_CODE:
509c2d0b470SArd Biesheuvel 			e820_type = E820_TYPE_RESERVED;
510c2d0b470SArd Biesheuvel 			break;
511c2d0b470SArd Biesheuvel 
512c2d0b470SArd Biesheuvel 		case EFI_UNUSABLE_MEMORY:
513c2d0b470SArd Biesheuvel 			e820_type = E820_TYPE_UNUSABLE;
514c2d0b470SArd Biesheuvel 			break;
515c2d0b470SArd Biesheuvel 
516c2d0b470SArd Biesheuvel 		case EFI_ACPI_RECLAIM_MEMORY:
517c2d0b470SArd Biesheuvel 			e820_type = E820_TYPE_ACPI;
518c2d0b470SArd Biesheuvel 			break;
519c2d0b470SArd Biesheuvel 
520c2d0b470SArd Biesheuvel 		case EFI_LOADER_CODE:
521c2d0b470SArd Biesheuvel 		case EFI_LOADER_DATA:
522c2d0b470SArd Biesheuvel 		case EFI_BOOT_SERVICES_CODE:
523c2d0b470SArd Biesheuvel 		case EFI_BOOT_SERVICES_DATA:
524c2d0b470SArd Biesheuvel 		case EFI_CONVENTIONAL_MEMORY:
525c2d0b470SArd Biesheuvel 			if (efi_soft_reserve_enabled() &&
526c2d0b470SArd Biesheuvel 			    (d->attribute & EFI_MEMORY_SP))
527c2d0b470SArd Biesheuvel 				e820_type = E820_TYPE_SOFT_RESERVED;
528c2d0b470SArd Biesheuvel 			else
529c2d0b470SArd Biesheuvel 				e820_type = E820_TYPE_RAM;
530c2d0b470SArd Biesheuvel 			break;
531c2d0b470SArd Biesheuvel 
532c2d0b470SArd Biesheuvel 		case EFI_ACPI_MEMORY_NVS:
533c2d0b470SArd Biesheuvel 			e820_type = E820_TYPE_NVS;
534c2d0b470SArd Biesheuvel 			break;
535c2d0b470SArd Biesheuvel 
536c2d0b470SArd Biesheuvel 		case EFI_PERSISTENT_MEMORY:
537c2d0b470SArd Biesheuvel 			e820_type = E820_TYPE_PMEM;
538c2d0b470SArd Biesheuvel 			break;
539c2d0b470SArd Biesheuvel 
540c2d0b470SArd Biesheuvel 		default:
541c2d0b470SArd Biesheuvel 			continue;
542c2d0b470SArd Biesheuvel 		}
543c2d0b470SArd Biesheuvel 
544c2d0b470SArd Biesheuvel 		/* Merge adjacent mappings */
545c2d0b470SArd Biesheuvel 		if (prev && prev->type == e820_type &&
546c2d0b470SArd Biesheuvel 		    (prev->addr + prev->size) == d->phys_addr) {
547c2d0b470SArd Biesheuvel 			prev->size += d->num_pages << 12;
548c2d0b470SArd Biesheuvel 			continue;
549c2d0b470SArd Biesheuvel 		}
550c2d0b470SArd Biesheuvel 
551c2d0b470SArd Biesheuvel 		if (nr_entries == ARRAY_SIZE(params->e820_table)) {
552c2d0b470SArd Biesheuvel 			u32 need = (nr_desc - i) * sizeof(struct e820_entry) +
553c2d0b470SArd Biesheuvel 				   sizeof(struct setup_data);
554c2d0b470SArd Biesheuvel 
555c2d0b470SArd Biesheuvel 			if (!e820ext || e820ext_size < need)
556c2d0b470SArd Biesheuvel 				return EFI_BUFFER_TOO_SMALL;
557c2d0b470SArd Biesheuvel 
558c2d0b470SArd Biesheuvel 			/* boot_params map full, switch to e820 extended */
559c2d0b470SArd Biesheuvel 			entry = (struct boot_e820_entry *)e820ext->data;
560c2d0b470SArd Biesheuvel 		}
561c2d0b470SArd Biesheuvel 
562c2d0b470SArd Biesheuvel 		entry->addr = d->phys_addr;
563c2d0b470SArd Biesheuvel 		entry->size = d->num_pages << PAGE_SHIFT;
564c2d0b470SArd Biesheuvel 		entry->type = e820_type;
565c2d0b470SArd Biesheuvel 		prev = entry++;
566c2d0b470SArd Biesheuvel 		nr_entries++;
567c2d0b470SArd Biesheuvel 	}
568c2d0b470SArd Biesheuvel 
569c2d0b470SArd Biesheuvel 	if (nr_entries > ARRAY_SIZE(params->e820_table)) {
570c2d0b470SArd Biesheuvel 		u32 nr_e820ext = nr_entries - ARRAY_SIZE(params->e820_table);
571c2d0b470SArd Biesheuvel 
572c2d0b470SArd Biesheuvel 		add_e820ext(params, e820ext, nr_e820ext);
573c2d0b470SArd Biesheuvel 		nr_entries -= nr_e820ext;
574c2d0b470SArd Biesheuvel 	}
575c2d0b470SArd Biesheuvel 
576c2d0b470SArd Biesheuvel 	params->e820_entries = (u8)nr_entries;
577c2d0b470SArd Biesheuvel 
578c2d0b470SArd Biesheuvel 	return EFI_SUCCESS;
579c2d0b470SArd Biesheuvel }
580c2d0b470SArd Biesheuvel 
581c2d0b470SArd Biesheuvel static efi_status_t alloc_e820ext(u32 nr_desc, struct setup_data **e820ext,
582c2d0b470SArd Biesheuvel 				  u32 *e820ext_size)
583c2d0b470SArd Biesheuvel {
584c2d0b470SArd Biesheuvel 	efi_status_t status;
585c2d0b470SArd Biesheuvel 	unsigned long size;
586c2d0b470SArd Biesheuvel 
587c2d0b470SArd Biesheuvel 	size = sizeof(struct setup_data) +
588c2d0b470SArd Biesheuvel 		sizeof(struct e820_entry) * nr_desc;
589c2d0b470SArd Biesheuvel 
590c2d0b470SArd Biesheuvel 	if (*e820ext) {
591c2d0b470SArd Biesheuvel 		efi_bs_call(free_pool, *e820ext);
592c2d0b470SArd Biesheuvel 		*e820ext = NULL;
593c2d0b470SArd Biesheuvel 		*e820ext_size = 0;
594c2d0b470SArd Biesheuvel 	}
595c2d0b470SArd Biesheuvel 
596c2d0b470SArd Biesheuvel 	status = efi_bs_call(allocate_pool, EFI_LOADER_DATA, size,
597c2d0b470SArd Biesheuvel 			     (void **)e820ext);
598c2d0b470SArd Biesheuvel 	if (status == EFI_SUCCESS)
599c2d0b470SArd Biesheuvel 		*e820ext_size = size;
600c2d0b470SArd Biesheuvel 
601c2d0b470SArd Biesheuvel 	return status;
602c2d0b470SArd Biesheuvel }
603c2d0b470SArd Biesheuvel 
604c2d0b470SArd Biesheuvel static efi_status_t allocate_e820(struct boot_params *params,
605c2d0b470SArd Biesheuvel 				  struct setup_data **e820ext,
606c2d0b470SArd Biesheuvel 				  u32 *e820ext_size)
607c2d0b470SArd Biesheuvel {
608c2d0b470SArd Biesheuvel 	unsigned long map_size, desc_size, buff_size;
609c2d0b470SArd Biesheuvel 	struct efi_boot_memmap boot_map;
610c2d0b470SArd Biesheuvel 	efi_memory_desc_t *map;
611c2d0b470SArd Biesheuvel 	efi_status_t status;
612c2d0b470SArd Biesheuvel 	__u32 nr_desc;
613c2d0b470SArd Biesheuvel 
614c2d0b470SArd Biesheuvel 	boot_map.map		= &map;
615c2d0b470SArd Biesheuvel 	boot_map.map_size	= &map_size;
616c2d0b470SArd Biesheuvel 	boot_map.desc_size	= &desc_size;
617c2d0b470SArd Biesheuvel 	boot_map.desc_ver	= NULL;
618c2d0b470SArd Biesheuvel 	boot_map.key_ptr	= NULL;
619c2d0b470SArd Biesheuvel 	boot_map.buff_size	= &buff_size;
620c2d0b470SArd Biesheuvel 
621c2d0b470SArd Biesheuvel 	status = efi_get_memory_map(&boot_map);
622c2d0b470SArd Biesheuvel 	if (status != EFI_SUCCESS)
623c2d0b470SArd Biesheuvel 		return status;
624c2d0b470SArd Biesheuvel 
625c2d0b470SArd Biesheuvel 	nr_desc = buff_size / desc_size;
626c2d0b470SArd Biesheuvel 
627c2d0b470SArd Biesheuvel 	if (nr_desc > ARRAY_SIZE(params->e820_table)) {
628c2d0b470SArd Biesheuvel 		u32 nr_e820ext = nr_desc - ARRAY_SIZE(params->e820_table);
629c2d0b470SArd Biesheuvel 
630c2d0b470SArd Biesheuvel 		status = alloc_e820ext(nr_e820ext, e820ext, e820ext_size);
631c2d0b470SArd Biesheuvel 		if (status != EFI_SUCCESS)
632c2d0b470SArd Biesheuvel 			return status;
633c2d0b470SArd Biesheuvel 	}
634c2d0b470SArd Biesheuvel 
635c2d0b470SArd Biesheuvel 	return EFI_SUCCESS;
636c2d0b470SArd Biesheuvel }
637c2d0b470SArd Biesheuvel 
638c2d0b470SArd Biesheuvel struct exit_boot_struct {
639c2d0b470SArd Biesheuvel 	struct boot_params	*boot_params;
640c2d0b470SArd Biesheuvel 	struct efi_info		*efi;
641c2d0b470SArd Biesheuvel };
642c2d0b470SArd Biesheuvel 
643c2d0b470SArd Biesheuvel static efi_status_t exit_boot_func(struct efi_boot_memmap *map,
644c2d0b470SArd Biesheuvel 				   void *priv)
645c2d0b470SArd Biesheuvel {
646c2d0b470SArd Biesheuvel 	const char *signature;
647c2d0b470SArd Biesheuvel 	struct exit_boot_struct *p = priv;
648c2d0b470SArd Biesheuvel 
649c2d0b470SArd Biesheuvel 	signature = efi_is_64bit() ? EFI64_LOADER_SIGNATURE
650c2d0b470SArd Biesheuvel 				   : EFI32_LOADER_SIGNATURE;
651c2d0b470SArd Biesheuvel 	memcpy(&p->efi->efi_loader_signature, signature, sizeof(__u32));
652c2d0b470SArd Biesheuvel 
653c2d0b470SArd Biesheuvel 	p->efi->efi_systab		= (unsigned long)efi_system_table();
654c2d0b470SArd Biesheuvel 	p->efi->efi_memdesc_size	= *map->desc_size;
655c2d0b470SArd Biesheuvel 	p->efi->efi_memdesc_version	= *map->desc_ver;
656c2d0b470SArd Biesheuvel 	p->efi->efi_memmap		= (unsigned long)*map->map;
657c2d0b470SArd Biesheuvel 	p->efi->efi_memmap_size		= *map->map_size;
658c2d0b470SArd Biesheuvel 
659c2d0b470SArd Biesheuvel #ifdef CONFIG_X86_64
660c2d0b470SArd Biesheuvel 	p->efi->efi_systab_hi		= (unsigned long)efi_system_table() >> 32;
661c2d0b470SArd Biesheuvel 	p->efi->efi_memmap_hi		= (unsigned long)*map->map >> 32;
662c2d0b470SArd Biesheuvel #endif
663c2d0b470SArd Biesheuvel 
664c2d0b470SArd Biesheuvel 	return EFI_SUCCESS;
665c2d0b470SArd Biesheuvel }
666c2d0b470SArd Biesheuvel 
667c2d0b470SArd Biesheuvel static efi_status_t exit_boot(struct boot_params *boot_params, void *handle)
668c2d0b470SArd Biesheuvel {
669c2d0b470SArd Biesheuvel 	unsigned long map_sz, key, desc_size, buff_size;
670c2d0b470SArd Biesheuvel 	efi_memory_desc_t *mem_map;
671c2d0b470SArd Biesheuvel 	struct setup_data *e820ext = NULL;
672c2d0b470SArd Biesheuvel 	__u32 e820ext_size = 0;
673c2d0b470SArd Biesheuvel 	efi_status_t status;
674c2d0b470SArd Biesheuvel 	__u32 desc_version;
675c2d0b470SArd Biesheuvel 	struct efi_boot_memmap map;
676c2d0b470SArd Biesheuvel 	struct exit_boot_struct priv;
677c2d0b470SArd Biesheuvel 
678c2d0b470SArd Biesheuvel 	map.map			= &mem_map;
679c2d0b470SArd Biesheuvel 	map.map_size		= &map_sz;
680c2d0b470SArd Biesheuvel 	map.desc_size		= &desc_size;
681c2d0b470SArd Biesheuvel 	map.desc_ver		= &desc_version;
682c2d0b470SArd Biesheuvel 	map.key_ptr		= &key;
683c2d0b470SArd Biesheuvel 	map.buff_size		= &buff_size;
684c2d0b470SArd Biesheuvel 	priv.boot_params	= boot_params;
685c2d0b470SArd Biesheuvel 	priv.efi		= &boot_params->efi_info;
686c2d0b470SArd Biesheuvel 
687c2d0b470SArd Biesheuvel 	status = allocate_e820(boot_params, &e820ext, &e820ext_size);
688c2d0b470SArd Biesheuvel 	if (status != EFI_SUCCESS)
689c2d0b470SArd Biesheuvel 		return status;
690c2d0b470SArd Biesheuvel 
691c2d0b470SArd Biesheuvel 	/* Might as well exit boot services now */
692c2d0b470SArd Biesheuvel 	status = efi_exit_boot_services(handle, &map, &priv, exit_boot_func);
693c2d0b470SArd Biesheuvel 	if (status != EFI_SUCCESS)
694c2d0b470SArd Biesheuvel 		return status;
695c2d0b470SArd Biesheuvel 
696c2d0b470SArd Biesheuvel 	/* Historic? */
697c2d0b470SArd Biesheuvel 	boot_params->alt_mem_k	= 32 * 1024;
698c2d0b470SArd Biesheuvel 
699c2d0b470SArd Biesheuvel 	status = setup_e820(boot_params, e820ext, e820ext_size);
700c2d0b470SArd Biesheuvel 	if (status != EFI_SUCCESS)
701c2d0b470SArd Biesheuvel 		return status;
702c2d0b470SArd Biesheuvel 
703c2d0b470SArd Biesheuvel 	return EFI_SUCCESS;
704c2d0b470SArd Biesheuvel }
705c2d0b470SArd Biesheuvel 
706c2d0b470SArd Biesheuvel /*
7078acf63efSArvind Sankar  * On success, we return the address of startup_32, which has potentially been
7088acf63efSArvind Sankar  * relocated by efi_relocate_kernel.
7098acf63efSArvind Sankar  * On failure, we exit to the firmware via efi_exit instead of returning.
710c2d0b470SArd Biesheuvel  */
7118acf63efSArvind Sankar unsigned long efi_main(efi_handle_t handle,
712c2d0b470SArd Biesheuvel 			     efi_system_table_t *sys_table_arg,
713c2d0b470SArd Biesheuvel 			     struct boot_params *boot_params)
714c2d0b470SArd Biesheuvel {
715c2d0b470SArd Biesheuvel 	unsigned long bzimage_addr = (unsigned long)startup_32;
716c2d0b470SArd Biesheuvel 	struct setup_header *hdr = &boot_params->hdr;
717c2d0b470SArd Biesheuvel 	efi_status_t status;
718c2d0b470SArd Biesheuvel 	unsigned long cmdline_paddr;
719c2d0b470SArd Biesheuvel 
720c2d0b470SArd Biesheuvel 	sys_table = sys_table_arg;
721c2d0b470SArd Biesheuvel 
722c2d0b470SArd Biesheuvel 	/* Check if we were booted by the EFI firmware */
723c2d0b470SArd Biesheuvel 	if (sys_table->hdr.signature != EFI_SYSTEM_TABLE_SIGNATURE)
7243b8f44fcSArd Biesheuvel 		efi_exit(handle, EFI_INVALID_PARAMETER);
725c2d0b470SArd Biesheuvel 
726c2d0b470SArd Biesheuvel 	/*
727c2d0b470SArd Biesheuvel 	 * If the kernel isn't already loaded at the preferred load
728c2d0b470SArd Biesheuvel 	 * address, relocate it.
729c2d0b470SArd Biesheuvel 	 */
730c2d0b470SArd Biesheuvel 	if (bzimage_addr != hdr->pref_address) {
731c2d0b470SArd Biesheuvel 		status = efi_relocate_kernel(&bzimage_addr,
732c2d0b470SArd Biesheuvel 					     hdr->init_size, hdr->init_size,
733c2d0b470SArd Biesheuvel 					     hdr->pref_address,
734c2d0b470SArd Biesheuvel 					     hdr->kernel_alignment,
735c2d0b470SArd Biesheuvel 					     LOAD_PHYSICAL_ADDR);
736c2d0b470SArd Biesheuvel 		if (status != EFI_SUCCESS) {
737c2d0b470SArd Biesheuvel 			efi_printk("efi_relocate_kernel() failed!\n");
738c2d0b470SArd Biesheuvel 			goto fail;
739c2d0b470SArd Biesheuvel 		}
740c2d0b470SArd Biesheuvel 	}
741c2d0b470SArd Biesheuvel 
742c2d0b470SArd Biesheuvel 	/*
74391d150c0SArd Biesheuvel 	 * efi_pe_entry() may have been called before efi_main(), in which
744c2d0b470SArd Biesheuvel 	 * case this is the second time we parse the cmdline. This is ok,
745c2d0b470SArd Biesheuvel 	 * parsing the cmdline multiple times does not have side-effects.
746c2d0b470SArd Biesheuvel 	 */
747c2d0b470SArd Biesheuvel 	cmdline_paddr = ((u64)hdr->cmd_line_ptr |
748c2d0b470SArd Biesheuvel 			 ((u64)boot_params->ext_cmd_line_ptr << 32));
749c2d0b470SArd Biesheuvel 	efi_parse_options((char *)cmdline_paddr);
750c2d0b470SArd Biesheuvel 
751c2d0b470SArd Biesheuvel 	/*
752ec93fc37SArd Biesheuvel 	 * At this point, an initrd may already have been loaded, either by
753ec93fc37SArd Biesheuvel 	 * the bootloader and passed via bootparams, or loaded from a initrd=
754ec93fc37SArd Biesheuvel 	 * command line option by efi_pe_entry() above. In either case, we
755ec93fc37SArd Biesheuvel 	 * permit an initrd loaded from the LINUX_EFI_INITRD_MEDIA_GUID device
756ec93fc37SArd Biesheuvel 	 * path to supersede it.
757ec93fc37SArd Biesheuvel 	 */
75879d3219dSArd Biesheuvel 	if (!noinitrd()) {
75979d3219dSArd Biesheuvel 		unsigned long addr, size;
76079d3219dSArd Biesheuvel 		unsigned long max_addr = hdr->initrd_addr_max;
76179d3219dSArd Biesheuvel 
76279d3219dSArd Biesheuvel 		if (hdr->xloadflags & XLF_CAN_BE_LOADED_ABOVE_4G)
76379d3219dSArd Biesheuvel 			max_addr = ULONG_MAX;
76479d3219dSArd Biesheuvel 
76579d3219dSArd Biesheuvel 		status = efi_load_initrd_dev_path(&addr, &size, max_addr);
766ec93fc37SArd Biesheuvel 		if (status == EFI_SUCCESS) {
76779d3219dSArd Biesheuvel 			hdr->ramdisk_image		= (u32)addr;
76879d3219dSArd Biesheuvel 			hdr->ramdisk_size 		= (u32)size;
76979d3219dSArd Biesheuvel 			boot_params->ext_ramdisk_image	= (u64)addr >> 32;
77079d3219dSArd Biesheuvel 			boot_params->ext_ramdisk_size 	= (u64)size >> 32;
771ec93fc37SArd Biesheuvel 		} else if (status != EFI_NOT_FOUND) {
772ec93fc37SArd Biesheuvel 			efi_printk("efi_load_initrd_dev_path() failed!\n");
773ec93fc37SArd Biesheuvel 			goto fail;
774ec93fc37SArd Biesheuvel 		}
77579d3219dSArd Biesheuvel 	}
776ec93fc37SArd Biesheuvel 
777ec93fc37SArd Biesheuvel 	/*
778c2d0b470SArd Biesheuvel 	 * If the boot loader gave us a value for secure_boot then we use that,
779c2d0b470SArd Biesheuvel 	 * otherwise we ask the BIOS.
780c2d0b470SArd Biesheuvel 	 */
781c2d0b470SArd Biesheuvel 	if (boot_params->secure_boot == efi_secureboot_mode_unset)
782c2d0b470SArd Biesheuvel 		boot_params->secure_boot = efi_get_secureboot();
783c2d0b470SArd Biesheuvel 
784c2d0b470SArd Biesheuvel 	/* Ask the firmware to clear memory on unclean shutdown */
785c2d0b470SArd Biesheuvel 	efi_enable_reset_attack_mitigation();
786c2d0b470SArd Biesheuvel 
787c2d0b470SArd Biesheuvel 	efi_random_get_seed();
788c2d0b470SArd Biesheuvel 
789c2d0b470SArd Biesheuvel 	efi_retrieve_tpm2_eventlog();
790c2d0b470SArd Biesheuvel 
791c2d0b470SArd Biesheuvel 	setup_graphics(boot_params);
792c2d0b470SArd Biesheuvel 
793c2d0b470SArd Biesheuvel 	setup_efi_pci(boot_params);
794c2d0b470SArd Biesheuvel 
795c2d0b470SArd Biesheuvel 	setup_quirks(boot_params);
796c2d0b470SArd Biesheuvel 
797c2d0b470SArd Biesheuvel 	status = exit_boot(boot_params, handle);
798c2d0b470SArd Biesheuvel 	if (status != EFI_SUCCESS) {
799c2d0b470SArd Biesheuvel 		efi_printk("exit_boot() failed!\n");
800c2d0b470SArd Biesheuvel 		goto fail;
801c2d0b470SArd Biesheuvel 	}
802c2d0b470SArd Biesheuvel 
8038acf63efSArvind Sankar 	return bzimage_addr;
804c2d0b470SArd Biesheuvel fail:
805c2d0b470SArd Biesheuvel 	efi_printk("efi_main() failed!\n");
806c2d0b470SArd Biesheuvel 
8073b8f44fcSArd Biesheuvel 	efi_exit(handle, status);
808c2d0b470SArd Biesheuvel }
809