blob: f7fc85bf8221b9751dbf397a76e958850b2999ff [file] [log] [blame]
Matt Fleming291f3632011-12-12 21:27:52 +00001/* -----------------------------------------------------------------------
2 *
3 * Copyright 2011 Intel Corporation; author Matt Fleming
4 *
5 * This file is part of the Linux kernel, and is made available under
6 * the terms of the GNU General Public License version 2.
7 *
8 * ----------------------------------------------------------------------- */
9
10#include <linux/efi.h>
Matthew Garrettdd5fc852012-12-05 14:33:26 -070011#include <linux/pci.h>
Matt Fleming291f3632011-12-12 21:27:52 +000012#include <asm/efi.h>
13#include <asm/setup.h>
14#include <asm/desc.h>
15
Andrey Ryabinin393f2032015-02-13 14:39:56 -080016#include "../string.h"
Matt Fleming291f3632011-12-12 21:27:52 +000017#include "eboot.h"
18
19static efi_system_table_t *sys_table;
20
Matt Fleming84be8802014-09-23 10:37:43 +010021static struct efi_config *efi_early;
22
Ard Biesheuvel243b6752014-11-05 17:00:56 +010023__pure const struct efi_config *__efi_early(void)
24{
25 return efi_early;
26}
Matt Fleming204b0a12014-03-22 10:09:01 +000027
Matt Fleming54b52d82014-01-10 15:27:14 +000028#define BOOT_SERVICES(bits) \
29static void setup_boot_services##bits(struct efi_config *c) \
30{ \
31 efi_system_table_##bits##_t *table; \
32 efi_boot_services_##bits##_t *bt; \
33 \
34 table = (typeof(table))sys_table; \
35 \
36 c->text_output = table->con_out; \
37 \
38 bt = (typeof(bt))(unsigned long)(table->boottime); \
39 \
40 c->allocate_pool = bt->allocate_pool; \
41 c->allocate_pages = bt->allocate_pages; \
42 c->get_memory_map = bt->get_memory_map; \
43 c->free_pool = bt->free_pool; \
44 c->free_pages = bt->free_pages; \
45 c->locate_handle = bt->locate_handle; \
46 c->handle_protocol = bt->handle_protocol; \
47 c->exit_boot_services = bt->exit_boot_services; \
48}
49BOOT_SERVICES(32);
50BOOT_SERVICES(64);
51
Ard Biesheuvelbd669472014-07-02 14:54:42 +020052void efi_char16_printk(efi_system_table_t *, efi_char16_t *);
Matt Fleming54b52d82014-01-10 15:27:14 +000053
54static efi_status_t
Matt Flemingc116e8d2014-01-16 11:35:43 +000055__file_size32(void *__fh, efi_char16_t *filename_16,
56 void **handle, u64 *file_sz)
Matt Fleming54b52d82014-01-10 15:27:14 +000057{
Matt Flemingc116e8d2014-01-16 11:35:43 +000058 efi_file_handle_32_t *h, *fh = __fh;
Matt Fleming54b52d82014-01-10 15:27:14 +000059 efi_file_info_t *info;
60 efi_status_t status;
61 efi_guid_t info_guid = EFI_FILE_INFO_ID;
62 u32 info_sz;
63
64 status = efi_early->call((unsigned long)fh->open, fh, &h, filename_16,
65 EFI_FILE_MODE_READ, (u64)0);
66 if (status != EFI_SUCCESS) {
67 efi_printk(sys_table, "Failed to open file: ");
68 efi_char16_printk(sys_table, filename_16);
69 efi_printk(sys_table, "\n");
70 return status;
71 }
72
73 *handle = h;
74
75 info_sz = 0;
76 status = efi_early->call((unsigned long)h->get_info, h, &info_guid,
77 &info_sz, NULL);
78 if (status != EFI_BUFFER_TOO_SMALL) {
79 efi_printk(sys_table, "Failed to get file info size\n");
80 return status;
81 }
82
83grow:
Matt Fleming204b0a12014-03-22 10:09:01 +000084 status = efi_call_early(allocate_pool, EFI_LOADER_DATA,
85 info_sz, (void **)&info);
Matt Fleming54b52d82014-01-10 15:27:14 +000086 if (status != EFI_SUCCESS) {
87 efi_printk(sys_table, "Failed to alloc mem for file info\n");
88 return status;
89 }
90
91 status = efi_early->call((unsigned long)h->get_info, h, &info_guid,
92 &info_sz, info);
93 if (status == EFI_BUFFER_TOO_SMALL) {
Matt Fleming204b0a12014-03-22 10:09:01 +000094 efi_call_early(free_pool, info);
Matt Fleming54b52d82014-01-10 15:27:14 +000095 goto grow;
96 }
97
98 *file_sz = info->file_size;
Matt Fleming204b0a12014-03-22 10:09:01 +000099 efi_call_early(free_pool, info);
Matt Fleming54b52d82014-01-10 15:27:14 +0000100
101 if (status != EFI_SUCCESS)
102 efi_printk(sys_table, "Failed to get initrd info\n");
103
104 return status;
105}
106
Matt Flemingc116e8d2014-01-16 11:35:43 +0000107static efi_status_t
108__file_size64(void *__fh, efi_char16_t *filename_16,
109 void **handle, u64 *file_sz)
110{
111 efi_file_handle_64_t *h, *fh = __fh;
112 efi_file_info_t *info;
113 efi_status_t status;
114 efi_guid_t info_guid = EFI_FILE_INFO_ID;
Matt Fleming396f1a02014-04-10 13:30:13 +0100115 u64 info_sz;
Matt Flemingc116e8d2014-01-16 11:35:43 +0000116
117 status = efi_early->call((unsigned long)fh->open, fh, &h, filename_16,
118 EFI_FILE_MODE_READ, (u64)0);
119 if (status != EFI_SUCCESS) {
120 efi_printk(sys_table, "Failed to open file: ");
121 efi_char16_printk(sys_table, filename_16);
122 efi_printk(sys_table, "\n");
123 return status;
124 }
125
126 *handle = h;
127
128 info_sz = 0;
129 status = efi_early->call((unsigned long)h->get_info, h, &info_guid,
130 &info_sz, NULL);
131 if (status != EFI_BUFFER_TOO_SMALL) {
132 efi_printk(sys_table, "Failed to get file info size\n");
133 return status;
134 }
135
136grow:
Matt Fleming204b0a12014-03-22 10:09:01 +0000137 status = efi_call_early(allocate_pool, EFI_LOADER_DATA,
138 info_sz, (void **)&info);
Matt Flemingc116e8d2014-01-16 11:35:43 +0000139 if (status != EFI_SUCCESS) {
140 efi_printk(sys_table, "Failed to alloc mem for file info\n");
141 return status;
142 }
143
144 status = efi_early->call((unsigned long)h->get_info, h, &info_guid,
145 &info_sz, info);
146 if (status == EFI_BUFFER_TOO_SMALL) {
Matt Fleming204b0a12014-03-22 10:09:01 +0000147 efi_call_early(free_pool, info);
Matt Flemingc116e8d2014-01-16 11:35:43 +0000148 goto grow;
149 }
150
151 *file_sz = info->file_size;
Matt Fleming204b0a12014-03-22 10:09:01 +0000152 efi_call_early(free_pool, info);
Matt Flemingc116e8d2014-01-16 11:35:43 +0000153
154 if (status != EFI_SUCCESS)
155 efi_printk(sys_table, "Failed to get initrd info\n");
156
157 return status;
158}
Ard Biesheuvelbd669472014-07-02 14:54:42 +0200159efi_status_t
Matt Flemingc116e8d2014-01-16 11:35:43 +0000160efi_file_size(efi_system_table_t *sys_table, void *__fh,
161 efi_char16_t *filename_16, void **handle, u64 *file_sz)
162{
163 if (efi_early->is64)
164 return __file_size64(__fh, filename_16, handle, file_sz);
165
166 return __file_size32(__fh, filename_16, handle, file_sz);
167}
168
Ard Biesheuvelbd669472014-07-02 14:54:42 +0200169efi_status_t
Matt Fleming47514c92014-04-10 14:11:45 +0100170efi_file_read(void *handle, unsigned long *size, void *addr)
Matt Fleming54b52d82014-01-10 15:27:14 +0000171{
Matt Flemingc116e8d2014-01-16 11:35:43 +0000172 unsigned long func;
173
174 if (efi_early->is64) {
Matt Fleming47514c92014-04-10 14:11:45 +0100175 efi_file_handle_64_t *fh = handle;
Matt Flemingc116e8d2014-01-16 11:35:43 +0000176
177 func = (unsigned long)fh->read;
178 return efi_early->call(func, handle, size, addr);
179 } else {
Matt Fleming47514c92014-04-10 14:11:45 +0100180 efi_file_handle_32_t *fh = handle;
Matt Flemingc116e8d2014-01-16 11:35:43 +0000181
182 func = (unsigned long)fh->read;
183 return efi_early->call(func, handle, size, addr);
184 }
Matt Fleming54b52d82014-01-10 15:27:14 +0000185}
186
Ard Biesheuvelbd669472014-07-02 14:54:42 +0200187efi_status_t efi_file_close(void *handle)
Matt Fleming54b52d82014-01-10 15:27:14 +0000188{
Matt Flemingc116e8d2014-01-16 11:35:43 +0000189 if (efi_early->is64) {
Matt Fleming47514c92014-04-10 14:11:45 +0100190 efi_file_handle_64_t *fh = handle;
Matt Fleming54b52d82014-01-10 15:27:14 +0000191
Matt Flemingc116e8d2014-01-16 11:35:43 +0000192 return efi_early->call((unsigned long)fh->close, handle);
193 } else {
Matt Fleming47514c92014-04-10 14:11:45 +0100194 efi_file_handle_32_t *fh = handle;
Matt Flemingc116e8d2014-01-16 11:35:43 +0000195
196 return efi_early->call((unsigned long)fh->close, handle);
197 }
Matt Fleming54b52d82014-01-10 15:27:14 +0000198}
199
Matt Flemingc116e8d2014-01-16 11:35:43 +0000200static inline efi_status_t __open_volume32(void *__image, void **__fh)
Matt Fleming54b52d82014-01-10 15:27:14 +0000201{
202 efi_file_io_interface_t *io;
Matt Flemingc116e8d2014-01-16 11:35:43 +0000203 efi_loaded_image_32_t *image = __image;
204 efi_file_handle_32_t *fh;
Matt Fleming54b52d82014-01-10 15:27:14 +0000205 efi_guid_t fs_proto = EFI_FILE_SYSTEM_GUID;
206 efi_status_t status;
207 void *handle = (void *)(unsigned long)image->device_handle;
Matt Flemingc116e8d2014-01-16 11:35:43 +0000208 unsigned long func;
Matt Fleming54b52d82014-01-10 15:27:14 +0000209
Matt Fleming204b0a12014-03-22 10:09:01 +0000210 status = efi_call_early(handle_protocol, handle,
211 &fs_proto, (void **)&io);
Matt Fleming54b52d82014-01-10 15:27:14 +0000212 if (status != EFI_SUCCESS) {
213 efi_printk(sys_table, "Failed to handle fs_proto\n");
214 return status;
215 }
216
217 func = (unsigned long)io->open_volume;
218 status = efi_early->call(func, io, &fh);
219 if (status != EFI_SUCCESS)
220 efi_printk(sys_table, "Failed to open volume\n");
221
222 *__fh = fh;
223 return status;
224}
225
Matt Flemingc116e8d2014-01-16 11:35:43 +0000226static inline efi_status_t __open_volume64(void *__image, void **__fh)
Matt Fleming54b52d82014-01-10 15:27:14 +0000227{
Matt Flemingc116e8d2014-01-16 11:35:43 +0000228 efi_file_io_interface_t *io;
229 efi_loaded_image_64_t *image = __image;
230 efi_file_handle_64_t *fh;
231 efi_guid_t fs_proto = EFI_FILE_SYSTEM_GUID;
232 efi_status_t status;
233 void *handle = (void *)(unsigned long)image->device_handle;
234 unsigned long func;
235
Matt Fleming204b0a12014-03-22 10:09:01 +0000236 status = efi_call_early(handle_protocol, handle,
237 &fs_proto, (void **)&io);
Matt Flemingc116e8d2014-01-16 11:35:43 +0000238 if (status != EFI_SUCCESS) {
239 efi_printk(sys_table, "Failed to handle fs_proto\n");
240 return status;
241 }
242
243 func = (unsigned long)io->open_volume;
244 status = efi_early->call(func, io, &fh);
245 if (status != EFI_SUCCESS)
246 efi_printk(sys_table, "Failed to open volume\n");
247
248 *__fh = fh;
249 return status;
250}
251
Ard Biesheuvelbd669472014-07-02 14:54:42 +0200252efi_status_t
Matt Flemingc116e8d2014-01-16 11:35:43 +0000253efi_open_volume(efi_system_table_t *sys_table, void *__image, void **__fh)
254{
255 if (efi_early->is64)
256 return __open_volume64(__image, __fh);
257
258 return __open_volume32(__image, __fh);
259}
260
Ard Biesheuvelbd669472014-07-02 14:54:42 +0200261void efi_char16_printk(efi_system_table_t *table, efi_char16_t *str)
Matt Flemingc116e8d2014-01-16 11:35:43 +0000262{
Matt Fleming54b52d82014-01-10 15:27:14 +0000263 unsigned long output_string;
264 size_t offset;
Matt Fleming54b52d82014-01-10 15:27:14 +0000265
Matt Flemingc116e8d2014-01-16 11:35:43 +0000266 if (efi_early->is64) {
267 struct efi_simple_text_output_protocol_64 *out;
268 u64 *func;
Matt Fleming54b52d82014-01-10 15:27:14 +0000269
Matt Flemingc116e8d2014-01-16 11:35:43 +0000270 offset = offsetof(typeof(*out), output_string);
271 output_string = efi_early->text_output + offset;
Matt Fleming115c6622014-09-24 11:56:10 +0100272 out = (typeof(out))(unsigned long)efi_early->text_output;
Matt Flemingc116e8d2014-01-16 11:35:43 +0000273 func = (u64 *)output_string;
274
Matt Fleming115c6622014-09-24 11:56:10 +0100275 efi_early->call(*func, out, str);
Matt Flemingc116e8d2014-01-16 11:35:43 +0000276 } else {
277 struct efi_simple_text_output_protocol_32 *out;
278 u32 *func;
279
280 offset = offsetof(typeof(*out), output_string);
281 output_string = efi_early->text_output + offset;
Matt Fleming115c6622014-09-24 11:56:10 +0100282 out = (typeof(out))(unsigned long)efi_early->text_output;
Matt Flemingc116e8d2014-01-16 11:35:43 +0000283 func = (u32 *)output_string;
284
Matt Fleming115c6622014-09-24 11:56:10 +0100285 efi_early->call(*func, out, str);
Matt Flemingc116e8d2014-01-16 11:35:43 +0000286 }
Matt Fleming54b52d82014-01-10 15:27:14 +0000287}
Lee, Chun-Yideb94102012-12-20 19:33:22 +0800288
Matt Flemingc116e8d2014-01-16 11:35:43 +0000289static efi_status_t
290__setup_efi_pci32(efi_pci_io_protocol_32 *pci, struct pci_setup_rom **__rom)
Matthew Garrettdd5fc852012-12-05 14:33:26 -0700291{
Matt Flemingc116e8d2014-01-16 11:35:43 +0000292 struct pci_setup_rom *rom = NULL;
Matthew Garrettdd5fc852012-12-05 14:33:26 -0700293 efi_status_t status;
Matt Flemingc116e8d2014-01-16 11:35:43 +0000294 unsigned long size;
295 uint64_t attributes;
296
297 status = efi_early->call(pci->attributes, pci,
298 EfiPciIoAttributeOperationGet, 0, 0,
299 &attributes);
300 if (status != EFI_SUCCESS)
301 return status;
302
303 if (!pci->romimage || !pci->romsize)
304 return EFI_INVALID_PARAMETER;
305
306 size = pci->romsize + sizeof(*rom);
307
Matt Fleming204b0a12014-03-22 10:09:01 +0000308 status = efi_call_early(allocate_pool, EFI_LOADER_DATA, size, &rom);
Andre Müller77e21e82014-09-10 01:00:22 +0200309 if (status != EFI_SUCCESS) {
310 efi_printk(sys_table, "Failed to alloc mem for rom\n");
Matt Flemingc116e8d2014-01-16 11:35:43 +0000311 return status;
Andre Müller77e21e82014-09-10 01:00:22 +0200312 }
Matt Flemingc116e8d2014-01-16 11:35:43 +0000313
314 memset(rom, 0, sizeof(*rom));
315
316 rom->data.type = SETUP_PCI;
317 rom->data.len = size - sizeof(struct setup_data);
318 rom->data.next = 0;
319 rom->pcilen = pci->romsize;
320 *__rom = rom;
321
322 status = efi_early->call(pci->pci.read, pci, EfiPciIoWidthUint16,
323 PCI_VENDOR_ID, 1, &(rom->vendor));
324
Andre Müller77e21e82014-09-10 01:00:22 +0200325 if (status != EFI_SUCCESS) {
326 efi_printk(sys_table, "Failed to read rom->vendor\n");
Matt Flemingc116e8d2014-01-16 11:35:43 +0000327 goto free_struct;
Andre Müller77e21e82014-09-10 01:00:22 +0200328 }
Matt Flemingc116e8d2014-01-16 11:35:43 +0000329
330 status = efi_early->call(pci->pci.read, pci, EfiPciIoWidthUint16,
331 PCI_DEVICE_ID, 1, &(rom->devid));
332
Andre Müller77e21e82014-09-10 01:00:22 +0200333 if (status != EFI_SUCCESS) {
334 efi_printk(sys_table, "Failed to read rom->devid\n");
Matt Flemingc116e8d2014-01-16 11:35:43 +0000335 goto free_struct;
Andre Müller77e21e82014-09-10 01:00:22 +0200336 }
Matt Flemingc116e8d2014-01-16 11:35:43 +0000337
338 status = efi_early->call(pci->get_location, pci, &(rom->segment),
339 &(rom->bus), &(rom->device), &(rom->function));
340
341 if (status != EFI_SUCCESS)
342 goto free_struct;
343
344 memcpy(rom->romdata, pci->romimage, pci->romsize);
345 return status;
346
347free_struct:
Matt Fleming204b0a12014-03-22 10:09:01 +0000348 efi_call_early(free_pool, rom);
Matt Flemingc116e8d2014-01-16 11:35:43 +0000349 return status;
350}
351
Matt Fleming56394ab2014-09-11 09:04:25 +0100352static void
Matt Flemingc116e8d2014-01-16 11:35:43 +0000353setup_efi_pci32(struct boot_params *params, void **pci_handle,
354 unsigned long size)
355{
356 efi_pci_io_protocol_32 *pci = NULL;
Matthew Garrettdd5fc852012-12-05 14:33:26 -0700357 efi_guid_t pci_proto = EFI_PCI_IO_PROTOCOL_GUID;
Matt Flemingc116e8d2014-01-16 11:35:43 +0000358 u32 *handles = (u32 *)(unsigned long)pci_handle;
359 efi_status_t status;
360 unsigned long nr_pci;
Matthew Garrettdd5fc852012-12-05 14:33:26 -0700361 struct setup_data *data;
Matt Flemingc116e8d2014-01-16 11:35:43 +0000362 int i;
Matthew Garrettdd5fc852012-12-05 14:33:26 -0700363
Jan Beulichbc754792013-01-18 12:35:14 +0000364 data = (struct setup_data *)(unsigned long)params->hdr.setup_data;
Matthew Garrettdd5fc852012-12-05 14:33:26 -0700365
366 while (data && data->next)
Jan Beulichbc754792013-01-18 12:35:14 +0000367 data = (struct setup_data *)(unsigned long)data->next;
Matthew Garrettdd5fc852012-12-05 14:33:26 -0700368
Matt Flemingc116e8d2014-01-16 11:35:43 +0000369 nr_pci = size / sizeof(u32);
370 for (i = 0; i < nr_pci; i++) {
371 struct pci_setup_rom *rom = NULL;
372 u32 h = handles[i];
373
Matt Fleming204b0a12014-03-22 10:09:01 +0000374 status = efi_call_early(handle_protocol, h,
375 &pci_proto, (void **)&pci);
Matt Flemingc116e8d2014-01-16 11:35:43 +0000376
377 if (status != EFI_SUCCESS)
378 continue;
379
380 if (!pci)
381 continue;
382
383 status = __setup_efi_pci32(pci, &rom);
384 if (status != EFI_SUCCESS)
385 continue;
386
387 if (data)
388 data->next = (unsigned long)rom;
389 else
390 params->hdr.setup_data = (unsigned long)rom;
391
392 data = (struct setup_data *)rom;
393
394 }
Matt Flemingc116e8d2014-01-16 11:35:43 +0000395}
396
397static efi_status_t
398__setup_efi_pci64(efi_pci_io_protocol_64 *pci, struct pci_setup_rom **__rom)
399{
400 struct pci_setup_rom *rom;
401 efi_status_t status;
402 unsigned long size;
403 uint64_t attributes;
404
405 status = efi_early->call(pci->attributes, pci,
406 EfiPciIoAttributeOperationGet, 0,
407 &attributes);
408 if (status != EFI_SUCCESS)
409 return status;
410
411 if (!pci->romimage || !pci->romsize)
412 return EFI_INVALID_PARAMETER;
413
414 size = pci->romsize + sizeof(*rom);
415
Matt Fleming204b0a12014-03-22 10:09:01 +0000416 status = efi_call_early(allocate_pool, EFI_LOADER_DATA, size, &rom);
Andre Müller77e21e82014-09-10 01:00:22 +0200417 if (status != EFI_SUCCESS) {
418 efi_printk(sys_table, "Failed to alloc mem for rom\n");
Matt Flemingc116e8d2014-01-16 11:35:43 +0000419 return status;
Andre Müller77e21e82014-09-10 01:00:22 +0200420 }
Matt Flemingc116e8d2014-01-16 11:35:43 +0000421
422 rom->data.type = SETUP_PCI;
423 rom->data.len = size - sizeof(struct setup_data);
424 rom->data.next = 0;
425 rom->pcilen = pci->romsize;
426 *__rom = rom;
427
428 status = efi_early->call(pci->pci.read, pci, EfiPciIoWidthUint16,
429 PCI_VENDOR_ID, 1, &(rom->vendor));
430
Andre Müller77e21e82014-09-10 01:00:22 +0200431 if (status != EFI_SUCCESS) {
432 efi_printk(sys_table, "Failed to read rom->vendor\n");
Matt Flemingc116e8d2014-01-16 11:35:43 +0000433 goto free_struct;
Andre Müller77e21e82014-09-10 01:00:22 +0200434 }
Matt Flemingc116e8d2014-01-16 11:35:43 +0000435
436 status = efi_early->call(pci->pci.read, pci, EfiPciIoWidthUint16,
437 PCI_DEVICE_ID, 1, &(rom->devid));
438
Andre Müller77e21e82014-09-10 01:00:22 +0200439 if (status != EFI_SUCCESS) {
440 efi_printk(sys_table, "Failed to read rom->devid\n");
Matt Flemingc116e8d2014-01-16 11:35:43 +0000441 goto free_struct;
Andre Müller77e21e82014-09-10 01:00:22 +0200442 }
Matt Flemingc116e8d2014-01-16 11:35:43 +0000443
444 status = efi_early->call(pci->get_location, pci, &(rom->segment),
445 &(rom->bus), &(rom->device), &(rom->function));
446
447 if (status != EFI_SUCCESS)
448 goto free_struct;
449
450 memcpy(rom->romdata, pci->romimage, pci->romsize);
451 return status;
452
453free_struct:
Matt Fleming204b0a12014-03-22 10:09:01 +0000454 efi_call_early(free_pool, rom);
Matt Flemingc116e8d2014-01-16 11:35:43 +0000455 return status;
456
457}
458
Matt Fleming56394ab2014-09-11 09:04:25 +0100459static void
Matt Flemingc116e8d2014-01-16 11:35:43 +0000460setup_efi_pci64(struct boot_params *params, void **pci_handle,
461 unsigned long size)
462{
463 efi_pci_io_protocol_64 *pci = NULL;
464 efi_guid_t pci_proto = EFI_PCI_IO_PROTOCOL_GUID;
465 u64 *handles = (u64 *)(unsigned long)pci_handle;
466 efi_status_t status;
467 unsigned long nr_pci;
468 struct setup_data *data;
469 int i;
470
471 data = (struct setup_data *)(unsigned long)params->hdr.setup_data;
472
473 while (data && data->next)
474 data = (struct setup_data *)(unsigned long)data->next;
475
476 nr_pci = size / sizeof(u64);
477 for (i = 0; i < nr_pci; i++) {
478 struct pci_setup_rom *rom = NULL;
479 u64 h = handles[i];
480
Matt Fleming204b0a12014-03-22 10:09:01 +0000481 status = efi_call_early(handle_protocol, h,
482 &pci_proto, (void **)&pci);
Matt Flemingc116e8d2014-01-16 11:35:43 +0000483
484 if (status != EFI_SUCCESS)
485 continue;
486
487 if (!pci)
488 continue;
489
490 status = __setup_efi_pci64(pci, &rom);
491 if (status != EFI_SUCCESS)
492 continue;
493
494 if (data)
495 data->next = (unsigned long)rom;
496 else
497 params->hdr.setup_data = (unsigned long)rom;
498
499 data = (struct setup_data *)rom;
500
501 }
Matt Flemingc116e8d2014-01-16 11:35:43 +0000502}
503
Matt Fleming56394ab2014-09-11 09:04:25 +0100504/*
505 * There's no way to return an informative status from this function,
506 * because any analysis (and printing of error messages) needs to be
507 * done directly at the EFI function call-site.
508 *
509 * For example, EFI_INVALID_PARAMETER could indicate a bug or maybe we
510 * just didn't find any PCI devices, but there's no way to tell outside
511 * the context of the call.
512 */
513static void setup_efi_pci(struct boot_params *params)
Matt Flemingc116e8d2014-01-16 11:35:43 +0000514{
515 efi_status_t status;
516 void **pci_handle = NULL;
517 efi_guid_t pci_proto = EFI_PCI_IO_PROTOCOL_GUID;
518 unsigned long size = 0;
519
Matt Fleming204b0a12014-03-22 10:09:01 +0000520 status = efi_call_early(locate_handle,
521 EFI_LOCATE_BY_PROTOCOL,
522 &pci_proto, NULL, &size, pci_handle);
Matthew Garrettdd5fc852012-12-05 14:33:26 -0700523
524 if (status == EFI_BUFFER_TOO_SMALL) {
Matt Fleming204b0a12014-03-22 10:09:01 +0000525 status = efi_call_early(allocate_pool,
526 EFI_LOADER_DATA,
527 size, (void **)&pci_handle);
Matthew Garrettdd5fc852012-12-05 14:33:26 -0700528
Andre Müller77e21e82014-09-10 01:00:22 +0200529 if (status != EFI_SUCCESS) {
530 efi_printk(sys_table, "Failed to alloc mem for pci_handle\n");
Matt Fleming56394ab2014-09-11 09:04:25 +0100531 return;
Andre Müller77e21e82014-09-10 01:00:22 +0200532 }
Matthew Garrettdd5fc852012-12-05 14:33:26 -0700533
Matt Fleming204b0a12014-03-22 10:09:01 +0000534 status = efi_call_early(locate_handle,
535 EFI_LOCATE_BY_PROTOCOL, &pci_proto,
536 NULL, &size, pci_handle);
Matthew Garrettdd5fc852012-12-05 14:33:26 -0700537 }
538
539 if (status != EFI_SUCCESS)
540 goto free_handle;
541
Matt Flemingc116e8d2014-01-16 11:35:43 +0000542 if (efi_early->is64)
Matt Fleming56394ab2014-09-11 09:04:25 +0100543 setup_efi_pci64(params, pci_handle, size);
Matt Flemingc116e8d2014-01-16 11:35:43 +0000544 else
Matt Fleming56394ab2014-09-11 09:04:25 +0100545 setup_efi_pci32(params, pci_handle, size);
Matthew Garrettdd5fc852012-12-05 14:33:26 -0700546
547free_handle:
Matt Fleming204b0a12014-03-22 10:09:01 +0000548 efi_call_early(free_pool, pci_handle);
Matthew Garrettdd5fc852012-12-05 14:33:26 -0700549}
550
Matt Flemingc116e8d2014-01-16 11:35:43 +0000551static efi_status_t
552setup_uga32(void **uga_handle, unsigned long size, u32 *width, u32 *height)
Matt Fleming291f3632011-12-12 21:27:52 +0000553{
Matt Flemingc116e8d2014-01-16 11:35:43 +0000554 struct efi_uga_draw_protocol *uga = NULL, *first_uga;
555 efi_guid_t uga_proto = EFI_UGA_PROTOCOL_GUID;
Matt Fleming291f3632011-12-12 21:27:52 +0000556 unsigned long nr_ugas;
Matt Flemingc116e8d2014-01-16 11:35:43 +0000557 u32 *handles = (u32 *)uga_handle;;
Colin Ian Kingac0e94b2016-07-20 11:11:06 +0100558 efi_status_t status = EFI_INVALID_PARAMETER;
Matt Fleming291f3632011-12-12 21:27:52 +0000559 int i;
560
Matt Fleming291f3632011-12-12 21:27:52 +0000561 first_uga = NULL;
Matt Flemingc116e8d2014-01-16 11:35:43 +0000562 nr_ugas = size / sizeof(u32);
Matt Fleming291f3632011-12-12 21:27:52 +0000563 for (i = 0; i < nr_ugas; i++) {
564 efi_guid_t pciio_proto = EFI_PCI_IO_PROTOCOL_GUID;
Matt Fleming291f3632011-12-12 21:27:52 +0000565 u32 w, h, depth, refresh;
566 void *pciio;
Matt Flemingc116e8d2014-01-16 11:35:43 +0000567 u32 handle = handles[i];
Matt Fleming291f3632011-12-12 21:27:52 +0000568
Matt Fleming204b0a12014-03-22 10:09:01 +0000569 status = efi_call_early(handle_protocol, handle,
570 &uga_proto, (void **)&uga);
Matt Fleming291f3632011-12-12 21:27:52 +0000571 if (status != EFI_SUCCESS)
572 continue;
573
Matt Fleming204b0a12014-03-22 10:09:01 +0000574 efi_call_early(handle_protocol, handle, &pciio_proto, &pciio);
Matt Fleming291f3632011-12-12 21:27:52 +0000575
Matt Fleming54b52d82014-01-10 15:27:14 +0000576 status = efi_early->call((unsigned long)uga->get_mode, uga,
577 &w, &h, &depth, &refresh);
Matt Fleming291f3632011-12-12 21:27:52 +0000578 if (status == EFI_SUCCESS && (!first_uga || pciio)) {
Matt Flemingc116e8d2014-01-16 11:35:43 +0000579 *width = w;
580 *height = h;
Matt Fleming291f3632011-12-12 21:27:52 +0000581
582 /*
583 * Once we've found a UGA supporting PCIIO,
584 * don't bother looking any further.
585 */
586 if (pciio)
587 break;
588
589 first_uga = uga;
590 }
591 }
592
Matt Flemingc116e8d2014-01-16 11:35:43 +0000593 return status;
594}
595
596static efi_status_t
597setup_uga64(void **uga_handle, unsigned long size, u32 *width, u32 *height)
598{
599 struct efi_uga_draw_protocol *uga = NULL, *first_uga;
600 efi_guid_t uga_proto = EFI_UGA_PROTOCOL_GUID;
601 unsigned long nr_ugas;
602 u64 *handles = (u64 *)uga_handle;;
Colin Ian Kingac0e94b2016-07-20 11:11:06 +0100603 efi_status_t status = EFI_INVALID_PARAMETER;
Matt Flemingc116e8d2014-01-16 11:35:43 +0000604 int i;
605
606 first_uga = NULL;
607 nr_ugas = size / sizeof(u64);
608 for (i = 0; i < nr_ugas; i++) {
609 efi_guid_t pciio_proto = EFI_PCI_IO_PROTOCOL_GUID;
610 u32 w, h, depth, refresh;
611 void *pciio;
612 u64 handle = handles[i];
613
Matt Fleming204b0a12014-03-22 10:09:01 +0000614 status = efi_call_early(handle_protocol, handle,
615 &uga_proto, (void **)&uga);
Matt Flemingc116e8d2014-01-16 11:35:43 +0000616 if (status != EFI_SUCCESS)
617 continue;
618
Matt Fleming204b0a12014-03-22 10:09:01 +0000619 efi_call_early(handle_protocol, handle, &pciio_proto, &pciio);
Matt Flemingc116e8d2014-01-16 11:35:43 +0000620
621 status = efi_early->call((unsigned long)uga->get_mode, uga,
622 &w, &h, &depth, &refresh);
623 if (status == EFI_SUCCESS && (!first_uga || pciio)) {
624 *width = w;
625 *height = h;
626
627 /*
628 * Once we've found a UGA supporting PCIIO,
629 * don't bother looking any further.
630 */
631 if (pciio)
632 break;
633
634 first_uga = uga;
635 }
636 }
637
638 return status;
639}
640
641/*
642 * See if we have Universal Graphics Adapter (UGA) protocol
643 */
644static efi_status_t setup_uga(struct screen_info *si, efi_guid_t *uga_proto,
645 unsigned long size)
646{
647 efi_status_t status;
648 u32 width, height;
649 void **uga_handle = NULL;
650
Matt Fleming204b0a12014-03-22 10:09:01 +0000651 status = efi_call_early(allocate_pool, EFI_LOADER_DATA,
652 size, (void **)&uga_handle);
Matt Flemingc116e8d2014-01-16 11:35:43 +0000653 if (status != EFI_SUCCESS)
654 return status;
655
Matt Fleming204b0a12014-03-22 10:09:01 +0000656 status = efi_call_early(locate_handle,
657 EFI_LOCATE_BY_PROTOCOL,
658 uga_proto, NULL, &size, uga_handle);
Matt Flemingc116e8d2014-01-16 11:35:43 +0000659 if (status != EFI_SUCCESS)
660 goto free_handle;
661
662 height = 0;
663 width = 0;
664
665 if (efi_early->is64)
666 status = setup_uga64(uga_handle, size, &width, &height);
667 else
668 status = setup_uga32(uga_handle, size, &width, &height);
669
670 if (!width && !height)
Matt Fleming291f3632011-12-12 21:27:52 +0000671 goto free_handle;
672
673 /* EFI framebuffer */
674 si->orig_video_isVGA = VIDEO_TYPE_EFI;
675
676 si->lfb_depth = 32;
677 si->lfb_width = width;
678 si->lfb_height = height;
679
680 si->red_size = 8;
681 si->red_pos = 16;
682 si->green_size = 8;
683 si->green_pos = 8;
684 si->blue_size = 8;
685 si->blue_pos = 0;
686 si->rsvd_size = 8;
687 si->rsvd_pos = 24;
688
Matt Fleming291f3632011-12-12 21:27:52 +0000689free_handle:
Matt Fleming204b0a12014-03-22 10:09:01 +0000690 efi_call_early(free_pool, uga_handle);
Matt Fleming291f3632011-12-12 21:27:52 +0000691 return status;
692}
693
694void setup_graphics(struct boot_params *boot_params)
695{
696 efi_guid_t graphics_proto = EFI_GRAPHICS_OUTPUT_PROTOCOL_GUID;
697 struct screen_info *si;
698 efi_guid_t uga_proto = EFI_UGA_PROTOCOL_GUID;
699 efi_status_t status;
700 unsigned long size;
701 void **gop_handle = NULL;
702 void **uga_handle = NULL;
703
704 si = &boot_params->screen_info;
705 memset(si, 0, sizeof(*si));
706
707 size = 0;
Matt Fleming204b0a12014-03-22 10:09:01 +0000708 status = efi_call_early(locate_handle,
709 EFI_LOCATE_BY_PROTOCOL,
710 &graphics_proto, NULL, &size, gop_handle);
Matt Fleming291f3632011-12-12 21:27:52 +0000711 if (status == EFI_BUFFER_TOO_SMALL)
Ard Biesheuvel2c23b732016-04-25 21:06:48 +0100712 status = efi_setup_gop(NULL, si, &graphics_proto, size);
Matt Fleming291f3632011-12-12 21:27:52 +0000713
714 if (status != EFI_SUCCESS) {
715 size = 0;
Matt Fleming204b0a12014-03-22 10:09:01 +0000716 status = efi_call_early(locate_handle,
717 EFI_LOCATE_BY_PROTOCOL,
718 &uga_proto, NULL, &size, uga_handle);
Matt Fleming291f3632011-12-12 21:27:52 +0000719 if (status == EFI_BUFFER_TOO_SMALL)
720 setup_uga(si, &uga_proto, size);
721 }
722}
723
Matt Fleming291f3632011-12-12 21:27:52 +0000724/*
725 * Because the x86 boot code expects to be passed a boot_params we
726 * need to create one ourselves (usually the bootloader would create
727 * one for us).
Matt Fleming7e8213c2014-04-08 13:14:00 +0100728 *
729 * The caller is responsible for filling out ->code32_start in the
730 * returned boot_params.
Matt Fleming291f3632011-12-12 21:27:52 +0000731 */
Matt Fleming54b52d82014-01-10 15:27:14 +0000732struct boot_params *make_boot_params(struct efi_config *c)
Matt Fleming291f3632011-12-12 21:27:52 +0000733{
Matt Fleming9ca8f722012-07-19 10:23:48 +0100734 struct boot_params *boot_params;
Matt Fleming9ca8f722012-07-19 10:23:48 +0100735 struct apm_bios_info *bi;
736 struct setup_header *hdr;
Matt Fleming9ca8f722012-07-19 10:23:48 +0100737 efi_loaded_image_t *image;
Matt Fleming54b52d82014-01-10 15:27:14 +0000738 void *options, *handle;
Matt Fleming9ca8f722012-07-19 10:23:48 +0100739 efi_guid_t proto = LOADED_IMAGE_PROTOCOL_GUID;
Matt Fleming291f3632011-12-12 21:27:52 +0000740 int options_size = 0;
741 efi_status_t status;
Roy Franz5fef3872013-09-22 15:45:33 -0700742 char *cmdline_ptr;
Matt Fleming291f3632011-12-12 21:27:52 +0000743 u16 *s2;
744 u8 *s1;
745 int i;
Roy Franz46f45822013-09-22 15:45:39 -0700746 unsigned long ramdisk_addr;
747 unsigned long ramdisk_size;
Matt Fleming291f3632011-12-12 21:27:52 +0000748
Matt Fleming54b52d82014-01-10 15:27:14 +0000749 efi_early = c;
750 sys_table = (efi_system_table_t *)(unsigned long)efi_early->table;
751 handle = (void *)(unsigned long)efi_early->image_handle;
Matt Fleming9ca8f722012-07-19 10:23:48 +0100752
753 /* Check if we were booted by the EFI firmware */
754 if (sys_table->hdr.signature != EFI_SYSTEM_TABLE_SIGNATURE)
755 return NULL;
756
Matt Fleming54b52d82014-01-10 15:27:14 +0000757 if (efi_early->is64)
758 setup_boot_services64(efi_early);
759 else
760 setup_boot_services32(efi_early);
761
Matt Fleming204b0a12014-03-22 10:09:01 +0000762 status = efi_call_early(handle_protocol, handle,
763 &proto, (void *)&image);
Matt Fleming9ca8f722012-07-19 10:23:48 +0100764 if (status != EFI_SUCCESS) {
Roy Franz876dc362013-09-22 15:45:28 -0700765 efi_printk(sys_table, "Failed to get handle for LOADED_IMAGE_PROTOCOL\n");
Matt Fleming9ca8f722012-07-19 10:23:48 +0100766 return NULL;
767 }
768
Roy Franz40e45302013-09-22 15:45:29 -0700769 status = efi_low_alloc(sys_table, 0x4000, 1,
770 (unsigned long *)&boot_params);
Matt Fleming9ca8f722012-07-19 10:23:48 +0100771 if (status != EFI_SUCCESS) {
Roy Franz876dc362013-09-22 15:45:28 -0700772 efi_printk(sys_table, "Failed to alloc lowmem for boot params\n");
Matt Fleming9ca8f722012-07-19 10:23:48 +0100773 return NULL;
774 }
775
776 memset(boot_params, 0x0, 0x4000);
777
778 hdr = &boot_params->hdr;
Matt Fleming9ca8f722012-07-19 10:23:48 +0100779 bi = &boot_params->apm_bios_info;
Matt Fleming9ca8f722012-07-19 10:23:48 +0100780
781 /* Copy the second sector to boot_params */
782 memcpy(&hdr->jump, image->image_base + 512, 512);
783
784 /*
785 * Fill out some of the header fields ourselves because the
786 * EFI firmware loader doesn't load the first sector.
787 */
788 hdr->root_flags = 1;
789 hdr->vid_mode = 0xffff;
790 hdr->boot_flag = 0xAA55;
791
Matt Fleming291f3632011-12-12 21:27:52 +0000792 hdr->type_of_loader = 0x21;
793
794 /* Convert unicode cmdline to ascii */
H. Peter Anvinc625d1c2013-09-20 09:55:39 -0500795 cmdline_ptr = efi_convert_cmdline(sys_table, image, &options_size);
Roy Franz5fef3872013-09-22 15:45:33 -0700796 if (!cmdline_ptr)
797 goto fail;
798 hdr->cmd_line_ptr = (unsigned long)cmdline_ptr;
Roy Franz98b228f2015-04-15 16:32:24 -0700799 /* Fill in upper bits of command line address, NOP on 32 bit */
800 boot_params->ext_cmd_line_ptr = (u64)(unsigned long)cmdline_ptr >> 32;
Matt Fleming291f3632011-12-12 21:27:52 +0000801
802 hdr->ramdisk_image = 0;
803 hdr->ramdisk_size = 0;
804
Matt Fleming291f3632011-12-12 21:27:52 +0000805 /* Clear APM BIOS info */
806 memset(bi, 0, sizeof(*bi));
807
Matt Fleming5a17dae2014-08-05 11:52:11 +0100808 status = efi_parse_options(cmdline_ptr);
809 if (status != EFI_SUCCESS)
810 goto fail2;
811
Roy Franz46f45822013-09-22 15:45:39 -0700812 status = handle_cmdline_files(sys_table, image,
813 (char *)(unsigned long)hdr->cmd_line_ptr,
Yinghai Lu47226ad2014-09-03 21:50:07 -0700814 "initrd=", hdr->initrd_addr_max,
Roy Franz46f45822013-09-22 15:45:39 -0700815 &ramdisk_addr, &ramdisk_size);
Yinghai Lu47226ad2014-09-03 21:50:07 -0700816
817 if (status != EFI_SUCCESS &&
818 hdr->xloadflags & XLF_CAN_BE_LOADED_ABOVE_4G) {
819 efi_printk(sys_table, "Trying to load files to higher address\n");
820 status = handle_cmdline_files(sys_table, image,
821 (char *)(unsigned long)hdr->cmd_line_ptr,
822 "initrd=", -1UL,
823 &ramdisk_addr, &ramdisk_size);
824 }
825
Matt Fleming9ca8f722012-07-19 10:23:48 +0100826 if (status != EFI_SUCCESS)
827 goto fail2;
Yinghai Lu4bf71112014-06-14 12:23:41 -0700828 hdr->ramdisk_image = ramdisk_addr & 0xffffffff;
829 hdr->ramdisk_size = ramdisk_size & 0xffffffff;
830 boot_params->ext_ramdisk_image = (u64)ramdisk_addr >> 32;
831 boot_params->ext_ramdisk_size = (u64)ramdisk_size >> 32;
Matt Fleming9ca8f722012-07-19 10:23:48 +0100832
833 return boot_params;
834fail2:
Roy Franz0e1cadb2013-09-22 15:45:38 -0700835 efi_free(sys_table, options_size, hdr->cmd_line_ptr);
Matt Fleming9ca8f722012-07-19 10:23:48 +0100836fail:
Roy Franz40e45302013-09-22 15:45:29 -0700837 efi_free(sys_table, 0x4000, (unsigned long)boot_params);
Matt Fleming9ca8f722012-07-19 10:23:48 +0100838 return NULL;
839}
840
Linn Crosettod2078d52013-09-22 19:59:08 -0600841static void add_e820ext(struct boot_params *params,
842 struct setup_data *e820ext, u32 nr_entries)
Matt Fleming9ca8f722012-07-19 10:23:48 +0100843{
Linn Crosettod2078d52013-09-22 19:59:08 -0600844 struct setup_data *data;
Matt Fleming9ca8f722012-07-19 10:23:48 +0100845 efi_status_t status;
Linn Crosettod2078d52013-09-22 19:59:08 -0600846 unsigned long size;
847
848 e820ext->type = SETUP_E820_EXT;
849 e820ext->len = nr_entries * sizeof(struct e820entry);
850 e820ext->next = 0;
851
852 data = (struct setup_data *)(unsigned long)params->hdr.setup_data;
853
854 while (data && data->next)
855 data = (struct setup_data *)(unsigned long)data->next;
856
857 if (data)
858 data->next = (unsigned long)e820ext;
859 else
860 params->hdr.setup_data = (unsigned long)e820ext;
861}
862
863static efi_status_t setup_e820(struct boot_params *params,
864 struct setup_data *e820ext, u32 e820ext_size)
865{
866 struct e820entry *e820_map = &params->e820_map[0];
867 struct efi_info *efi = &params->efi_info;
868 struct e820entry *prev = NULL;
869 u32 nr_entries;
870 u32 nr_desc;
Matt Fleming9ca8f722012-07-19 10:23:48 +0100871 int i;
Matt Fleming291f3632011-12-12 21:27:52 +0000872
Matt Fleming291f3632011-12-12 21:27:52 +0000873 nr_entries = 0;
Linn Crosettod2078d52013-09-22 19:59:08 -0600874 nr_desc = efi->efi_memmap_size / efi->efi_memdesc_size;
875
876 for (i = 0; i < nr_desc; i++) {
Matt Fleming291f3632011-12-12 21:27:52 +0000877 efi_memory_desc_t *d;
878 unsigned int e820_type = 0;
Linn Crosettod2078d52013-09-22 19:59:08 -0600879 unsigned long m = efi->efi_memmap;
Matt Fleming291f3632011-12-12 21:27:52 +0000880
Dmitry Skorodumov7cc03e42015-07-28 18:38:32 +0400881#ifdef CONFIG_X86_64
882 m |= (u64)efi->efi_memmap_hi << 32;
883#endif
884
Linn Crosettod2078d52013-09-22 19:59:08 -0600885 d = (efi_memory_desc_t *)(m + (i * efi->efi_memdesc_size));
Matt Fleming291f3632011-12-12 21:27:52 +0000886 switch (d->type) {
887 case EFI_RESERVED_TYPE:
888 case EFI_RUNTIME_SERVICES_CODE:
889 case EFI_RUNTIME_SERVICES_DATA:
890 case EFI_MEMORY_MAPPED_IO:
891 case EFI_MEMORY_MAPPED_IO_PORT_SPACE:
892 case EFI_PAL_CODE:
893 e820_type = E820_RESERVED;
894 break;
895
896 case EFI_UNUSABLE_MEMORY:
897 e820_type = E820_UNUSABLE;
898 break;
899
900 case EFI_ACPI_RECLAIM_MEMORY:
901 e820_type = E820_ACPI;
902 break;
903
904 case EFI_LOADER_CODE:
905 case EFI_LOADER_DATA:
906 case EFI_BOOT_SERVICES_CODE:
907 case EFI_BOOT_SERVICES_DATA:
908 case EFI_CONVENTIONAL_MEMORY:
909 e820_type = E820_RAM;
910 break;
911
912 case EFI_ACPI_MEMORY_NVS:
913 e820_type = E820_NVS;
914 break;
915
Dan Williamsad5fb872015-04-03 12:05:28 -0400916 case EFI_PERSISTENT_MEMORY:
917 e820_type = E820_PMEM;
918 break;
919
Matt Fleming291f3632011-12-12 21:27:52 +0000920 default:
921 continue;
922 }
923
924 /* Merge adjacent mappings */
925 if (prev && prev->type == e820_type &&
Linn Crosettod2078d52013-09-22 19:59:08 -0600926 (prev->addr + prev->size) == d->phys_addr) {
Matt Fleming291f3632011-12-12 21:27:52 +0000927 prev->size += d->num_pages << 12;
Linn Crosettod2078d52013-09-22 19:59:08 -0600928 continue;
Matt Fleming291f3632011-12-12 21:27:52 +0000929 }
Linn Crosettod2078d52013-09-22 19:59:08 -0600930
931 if (nr_entries == ARRAY_SIZE(params->e820_map)) {
932 u32 need = (nr_desc - i) * sizeof(struct e820entry) +
933 sizeof(struct setup_data);
934
935 if (!e820ext || e820ext_size < need)
936 return EFI_BUFFER_TOO_SMALL;
937
938 /* boot_params map full, switch to e820 extended */
939 e820_map = (struct e820entry *)e820ext->data;
940 }
941
942 e820_map->addr = d->phys_addr;
943 e820_map->size = d->num_pages << PAGE_SHIFT;
944 e820_map->type = e820_type;
945 prev = e820_map++;
946 nr_entries++;
Matt Fleming291f3632011-12-12 21:27:52 +0000947 }
948
Linn Crosettod2078d52013-09-22 19:59:08 -0600949 if (nr_entries > ARRAY_SIZE(params->e820_map)) {
950 u32 nr_e820ext = nr_entries - ARRAY_SIZE(params->e820_map);
951
952 add_e820ext(params, e820ext, nr_e820ext);
953 nr_entries -= nr_e820ext;
954 }
955
956 params->e820_entries = (u8)nr_entries;
957
958 return EFI_SUCCESS;
959}
960
961static efi_status_t alloc_e820ext(u32 nr_desc, struct setup_data **e820ext,
962 u32 *e820ext_size)
963{
964 efi_status_t status;
965 unsigned long size;
966
967 size = sizeof(struct setup_data) +
968 sizeof(struct e820entry) * nr_desc;
969
970 if (*e820ext) {
Matt Fleming204b0a12014-03-22 10:09:01 +0000971 efi_call_early(free_pool, *e820ext);
Linn Crosettod2078d52013-09-22 19:59:08 -0600972 *e820ext = NULL;
973 *e820ext_size = 0;
974 }
975
Matt Fleming204b0a12014-03-22 10:09:01 +0000976 status = efi_call_early(allocate_pool, EFI_LOADER_DATA,
977 size, (void **)e820ext);
Linn Crosettod2078d52013-09-22 19:59:08 -0600978 if (status == EFI_SUCCESS)
979 *e820ext_size = size;
980
981 return status;
982}
983
984static efi_status_t exit_boot(struct boot_params *boot_params,
Matt Flemingb8ff87a2014-01-10 15:54:31 +0000985 void *handle, bool is64)
Linn Crosettod2078d52013-09-22 19:59:08 -0600986{
987 struct efi_info *efi = &boot_params->efi_info;
988 unsigned long map_sz, key, desc_size;
989 efi_memory_desc_t *mem_map;
990 struct setup_data *e820ext;
Matt Flemingb8ff87a2014-01-10 15:54:31 +0000991 const char *signature;
Linn Crosettod2078d52013-09-22 19:59:08 -0600992 __u32 e820ext_size;
993 __u32 nr_desc, prev_nr_desc;
994 efi_status_t status;
995 __u32 desc_version;
996 bool called_exit = false;
997 u8 nr_entries;
998 int i;
999
1000 nr_desc = 0;
1001 e820ext = NULL;
1002 e820ext_size = 0;
1003
1004get_map:
1005 status = efi_get_memory_map(sys_table, &mem_map, &map_sz, &desc_size,
1006 &desc_version, &key);
1007
1008 if (status != EFI_SUCCESS)
1009 return status;
1010
1011 prev_nr_desc = nr_desc;
1012 nr_desc = map_sz / desc_size;
1013 if (nr_desc > prev_nr_desc &&
1014 nr_desc > ARRAY_SIZE(boot_params->e820_map)) {
1015 u32 nr_e820ext = nr_desc - ARRAY_SIZE(boot_params->e820_map);
1016
1017 status = alloc_e820ext(nr_e820ext, &e820ext, &e820ext_size);
1018 if (status != EFI_SUCCESS)
1019 goto free_mem_map;
1020
Matt Fleming204b0a12014-03-22 10:09:01 +00001021 efi_call_early(free_pool, mem_map);
Linn Crosettod2078d52013-09-22 19:59:08 -06001022 goto get_map; /* Allocated memory, get map again */
1023 }
1024
Matt Flemingb8ff87a2014-01-10 15:54:31 +00001025 signature = is64 ? EFI64_LOADER_SIGNATURE : EFI32_LOADER_SIGNATURE;
1026 memcpy(&efi->efi_loader_signature, signature, sizeof(__u32));
1027
Linn Crosettod2078d52013-09-22 19:59:08 -06001028 efi->efi_systab = (unsigned long)sys_table;
1029 efi->efi_memdesc_size = desc_size;
1030 efi->efi_memdesc_version = desc_version;
1031 efi->efi_memmap = (unsigned long)mem_map;
1032 efi->efi_memmap_size = map_sz;
1033
1034#ifdef CONFIG_X86_64
1035 efi->efi_systab_hi = (unsigned long)sys_table >> 32;
1036 efi->efi_memmap_hi = (unsigned long)mem_map >> 32;
1037#endif
1038
1039 /* Might as well exit boot services now */
Matt Fleming204b0a12014-03-22 10:09:01 +00001040 status = efi_call_early(exit_boot_services, handle, key);
Linn Crosettod2078d52013-09-22 19:59:08 -06001041 if (status != EFI_SUCCESS) {
1042 /*
1043 * ExitBootServices() will fail if any of the event
1044 * handlers change the memory map. In which case, we
1045 * must be prepared to retry, but only once so that
1046 * we're guaranteed to exit on repeated failures instead
1047 * of spinning forever.
1048 */
1049 if (called_exit)
1050 goto free_mem_map;
1051
1052 called_exit = true;
Matt Fleming204b0a12014-03-22 10:09:01 +00001053 efi_call_early(free_pool, mem_map);
Linn Crosettod2078d52013-09-22 19:59:08 -06001054 goto get_map;
1055 }
1056
1057 /* Historic? */
1058 boot_params->alt_mem_k = 32 * 1024;
1059
1060 status = setup_e820(boot_params, e820ext, e820ext_size);
1061 if (status != EFI_SUCCESS)
1062 return status;
Matt Fleming291f3632011-12-12 21:27:52 +00001063
1064 return EFI_SUCCESS;
1065
1066free_mem_map:
Matt Fleming204b0a12014-03-22 10:09:01 +00001067 efi_call_early(free_pool, mem_map);
Matt Fleming291f3632011-12-12 21:27:52 +00001068 return status;
1069}
1070
Matt Fleming9ca8f722012-07-19 10:23:48 +01001071/*
1072 * On success we return a pointer to a boot_params structure, and NULL
1073 * on failure.
1074 */
Matt Fleming54b52d82014-01-10 15:27:14 +00001075struct boot_params *efi_main(struct efi_config *c,
Matt Fleming9ca8f722012-07-19 10:23:48 +01001076 struct boot_params *boot_params)
1077{
Matt Fleming54b52d82014-01-10 15:27:14 +00001078 struct desc_ptr *gdt = NULL;
Matt Fleming9ca8f722012-07-19 10:23:48 +01001079 efi_loaded_image_t *image;
1080 struct setup_header *hdr = &boot_params->hdr;
1081 efi_status_t status;
1082 struct desc_struct *desc;
Matt Fleming54b52d82014-01-10 15:27:14 +00001083 void *handle;
1084 efi_system_table_t *_table;
1085 bool is64;
1086
1087 efi_early = c;
1088
1089 _table = (efi_system_table_t *)(unsigned long)efi_early->table;
1090 handle = (void *)(unsigned long)efi_early->image_handle;
1091 is64 = efi_early->is64;
Matt Fleming9ca8f722012-07-19 10:23:48 +01001092
1093 sys_table = _table;
1094
1095 /* Check if we were booted by the EFI firmware */
1096 if (sys_table->hdr.signature != EFI_SYSTEM_TABLE_SIGNATURE)
1097 goto fail;
1098
Matt Fleming54b52d82014-01-10 15:27:14 +00001099 if (is64)
1100 setup_boot_services64(efi_early);
1101 else
1102 setup_boot_services32(efi_early);
1103
Matt Fleming9ca8f722012-07-19 10:23:48 +01001104 setup_graphics(boot_params);
Matt Fleming291f3632011-12-12 21:27:52 +00001105
Matt Fleming56394ab2014-09-11 09:04:25 +01001106 setup_efi_pci(boot_params);
Matthew Garrettdd5fc852012-12-05 14:33:26 -07001107
Matt Fleming204b0a12014-03-22 10:09:01 +00001108 status = efi_call_early(allocate_pool, EFI_LOADER_DATA,
1109 sizeof(*gdt), (void **)&gdt);
Matt Fleming9fa7ded2012-02-20 13:20:59 +00001110 if (status != EFI_SUCCESS) {
Roy Franz876dc362013-09-22 15:45:28 -07001111 efi_printk(sys_table, "Failed to alloc mem for gdt structure\n");
Matt Fleming291f3632011-12-12 21:27:52 +00001112 goto fail;
Matt Fleming9fa7ded2012-02-20 13:20:59 +00001113 }
Matt Fleming291f3632011-12-12 21:27:52 +00001114
1115 gdt->size = 0x800;
Roy Franz40e45302013-09-22 15:45:29 -07001116 status = efi_low_alloc(sys_table, gdt->size, 8,
Roy Franz876dc362013-09-22 15:45:28 -07001117 (unsigned long *)&gdt->address);
Matt Fleming9fa7ded2012-02-20 13:20:59 +00001118 if (status != EFI_SUCCESS) {
Roy Franz876dc362013-09-22 15:45:28 -07001119 efi_printk(sys_table, "Failed to alloc mem for gdt\n");
Matt Fleming291f3632011-12-12 21:27:52 +00001120 goto fail;
Matt Fleming9fa7ded2012-02-20 13:20:59 +00001121 }
Matt Fleming291f3632011-12-12 21:27:52 +00001122
Matt Fleming9ca8f722012-07-19 10:23:48 +01001123 /*
1124 * If the kernel isn't already loaded at the preferred load
1125 * address, relocate it.
1126 */
1127 if (hdr->pref_address != hdr->code32_start) {
Roy Franz4a9f3a72013-09-22 15:45:32 -07001128 unsigned long bzimage_addr = hdr->code32_start;
1129 status = efi_relocate_kernel(sys_table, &bzimage_addr,
1130 hdr->init_size, hdr->init_size,
1131 hdr->pref_address,
1132 hdr->kernel_alignment);
Ulf Winkelvosfb86b242014-07-10 02:12:41 +02001133 if (status != EFI_SUCCESS) {
1134 efi_printk(sys_table, "efi_relocate_kernel() failed!\n");
Matt Fleming9ca8f722012-07-19 10:23:48 +01001135 goto fail;
Ulf Winkelvosfb86b242014-07-10 02:12:41 +02001136 }
Roy Franz4a9f3a72013-09-22 15:45:32 -07001137
1138 hdr->pref_address = hdr->code32_start;
1139 hdr->code32_start = bzimage_addr;
Matt Fleming9ca8f722012-07-19 10:23:48 +01001140 }
1141
Matt Flemingb8ff87a2014-01-10 15:54:31 +00001142 status = exit_boot(boot_params, handle, is64);
Ulf Winkelvosfb86b242014-07-10 02:12:41 +02001143 if (status != EFI_SUCCESS) {
1144 efi_printk(sys_table, "exit_boot() failed!\n");
Matt Fleming291f3632011-12-12 21:27:52 +00001145 goto fail;
Ulf Winkelvosfb86b242014-07-10 02:12:41 +02001146 }
Matt Fleming291f3632011-12-12 21:27:52 +00001147
1148 memset((char *)gdt->address, 0x0, gdt->size);
1149 desc = (struct desc_struct *)gdt->address;
1150
1151 /* The first GDT is a dummy and the second is unused. */
1152 desc += 2;
1153
1154 desc->limit0 = 0xffff;
1155 desc->base0 = 0x0000;
1156 desc->base1 = 0x0000;
1157 desc->type = SEG_TYPE_CODE | SEG_TYPE_EXEC_READ;
1158 desc->s = DESC_TYPE_CODE_DATA;
1159 desc->dpl = 0;
1160 desc->p = 1;
1161 desc->limit = 0xf;
1162 desc->avl = 0;
1163 desc->l = 0;
1164 desc->d = SEG_OP_SIZE_32BIT;
1165 desc->g = SEG_GRANULARITY_4KB;
1166 desc->base2 = 0x00;
1167
1168 desc++;
1169 desc->limit0 = 0xffff;
1170 desc->base0 = 0x0000;
1171 desc->base1 = 0x0000;
1172 desc->type = SEG_TYPE_DATA | SEG_TYPE_READ_WRITE;
1173 desc->s = DESC_TYPE_CODE_DATA;
1174 desc->dpl = 0;
1175 desc->p = 1;
1176 desc->limit = 0xf;
1177 desc->avl = 0;
1178 desc->l = 0;
1179 desc->d = SEG_OP_SIZE_32BIT;
1180 desc->g = SEG_GRANULARITY_4KB;
1181 desc->base2 = 0x00;
1182
1183#ifdef CONFIG_X86_64
1184 /* Task segment value */
1185 desc++;
1186 desc->limit0 = 0x0000;
1187 desc->base0 = 0x0000;
1188 desc->base1 = 0x0000;
1189 desc->type = SEG_TYPE_TSS;
1190 desc->s = 0;
1191 desc->dpl = 0;
1192 desc->p = 1;
1193 desc->limit = 0x0;
1194 desc->avl = 0;
1195 desc->l = 0;
1196 desc->d = 0;
1197 desc->g = SEG_GRANULARITY_4KB;
1198 desc->base2 = 0x00;
1199#endif /* CONFIG_X86_64 */
1200
Matt Fleming291f3632011-12-12 21:27:52 +00001201 asm volatile("cli");
Bart Kuivenhoven0ce6cda2013-09-23 11:45:28 +02001202 asm volatile ("lgdt %0" : : "m" (*gdt));
Matt Fleming291f3632011-12-12 21:27:52 +00001203
1204 return boot_params;
1205fail:
Ulf Winkelvosfb86b242014-07-10 02:12:41 +02001206 efi_printk(sys_table, "efi_main() failed!\n");
Matt Fleming291f3632011-12-12 21:27:52 +00001207 return NULL;
1208}