blob: bf2c35d5ec1ff99b8df61de120e7bea728ad2d1b [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
Matt Fleming0f905a42012-11-20 13:07:46 +000016#undef memcpy /* Use memcpy from misc.c */
17
Matt Fleming291f3632011-12-12 21:27:52 +000018#include "eboot.h"
19
20static efi_system_table_t *sys_table;
21
Lee, Chun-Yideb94102012-12-20 19:33:22 +080022
Roy Franz7721da42013-09-22 15:45:27 -070023#include "../../../../drivers/firmware/efi/efi-stub-helper.c"
Lee, Chun-Yideb94102012-12-20 19:33:22 +080024
Matt Fleming9fa7ded2012-02-20 13:20:59 +000025
Matt Fleming291f3632011-12-12 21:27:52 +000026
27static void find_bits(unsigned long mask, u8 *pos, u8 *size)
28{
29 u8 first, len;
30
31 first = 0;
32 len = 0;
33
34 if (mask) {
35 while (!(mask & 0x1)) {
36 mask = mask >> 1;
37 first++;
38 }
39
40 while (mask & 0x1) {
41 mask = mask >> 1;
42 len++;
43 }
44 }
45
46 *pos = first;
47 *size = len;
48}
49
Matthew Garrettdd5fc852012-12-05 14:33:26 -070050static efi_status_t setup_efi_pci(struct boot_params *params)
51{
52 efi_pci_io_protocol *pci;
53 efi_status_t status;
54 void **pci_handle;
55 efi_guid_t pci_proto = EFI_PCI_IO_PROTOCOL_GUID;
56 unsigned long nr_pci, size = 0;
57 int i;
58 struct setup_data *data;
59
Jan Beulichbc754792013-01-18 12:35:14 +000060 data = (struct setup_data *)(unsigned long)params->hdr.setup_data;
Matthew Garrettdd5fc852012-12-05 14:33:26 -070061
62 while (data && data->next)
Jan Beulichbc754792013-01-18 12:35:14 +000063 data = (struct setup_data *)(unsigned long)data->next;
Matthew Garrettdd5fc852012-12-05 14:33:26 -070064
65 status = efi_call_phys5(sys_table->boottime->locate_handle,
66 EFI_LOCATE_BY_PROTOCOL, &pci_proto,
67 NULL, &size, pci_handle);
68
69 if (status == EFI_BUFFER_TOO_SMALL) {
70 status = efi_call_phys3(sys_table->boottime->allocate_pool,
71 EFI_LOADER_DATA, size, &pci_handle);
72
73 if (status != EFI_SUCCESS)
74 return status;
75
76 status = efi_call_phys5(sys_table->boottime->locate_handle,
77 EFI_LOCATE_BY_PROTOCOL, &pci_proto,
78 NULL, &size, pci_handle);
79 }
80
81 if (status != EFI_SUCCESS)
82 goto free_handle;
83
84 nr_pci = size / sizeof(void *);
85 for (i = 0; i < nr_pci; i++) {
86 void *h = pci_handle[i];
87 uint64_t attributes;
88 struct pci_setup_rom *rom;
89
90 status = efi_call_phys3(sys_table->boottime->handle_protocol,
91 h, &pci_proto, &pci);
92
93 if (status != EFI_SUCCESS)
94 continue;
95
96 if (!pci)
97 continue;
98
David Woodhouseb607e212013-01-07 22:09:49 +000099#ifdef CONFIG_X86_64
Matthew Garrettdd5fc852012-12-05 14:33:26 -0700100 status = efi_call_phys4(pci->attributes, pci,
101 EfiPciIoAttributeOperationGet, 0,
102 &attributes);
David Woodhouseb607e212013-01-07 22:09:49 +0000103#else
104 status = efi_call_phys5(pci->attributes, pci,
105 EfiPciIoAttributeOperationGet, 0, 0,
106 &attributes);
107#endif
Matthew Garrettdd5fc852012-12-05 14:33:26 -0700108 if (status != EFI_SUCCESS)
109 continue;
110
Matthew Garrettdd5fc852012-12-05 14:33:26 -0700111 if (!pci->romimage || !pci->romsize)
112 continue;
113
114 size = pci->romsize + sizeof(*rom);
115
116 status = efi_call_phys3(sys_table->boottime->allocate_pool,
117 EFI_LOADER_DATA, size, &rom);
118
119 if (status != EFI_SUCCESS)
120 continue;
121
122 rom->data.type = SETUP_PCI;
123 rom->data.len = size - sizeof(struct setup_data);
124 rom->data.next = 0;
125 rom->pcilen = pci->romsize;
126
127 status = efi_call_phys5(pci->pci.read, pci,
128 EfiPciIoWidthUint16, PCI_VENDOR_ID,
129 1, &(rom->vendor));
130
131 if (status != EFI_SUCCESS)
132 goto free_struct;
133
134 status = efi_call_phys5(pci->pci.read, pci,
135 EfiPciIoWidthUint16, PCI_DEVICE_ID,
136 1, &(rom->devid));
137
138 if (status != EFI_SUCCESS)
139 goto free_struct;
140
141 status = efi_call_phys5(pci->get_location, pci,
142 &(rom->segment), &(rom->bus),
143 &(rom->device), &(rom->function));
144
145 if (status != EFI_SUCCESS)
146 goto free_struct;
147
148 memcpy(rom->romdata, pci->romimage, pci->romsize);
149
150 if (data)
Jan Beulichbc754792013-01-18 12:35:14 +0000151 data->next = (unsigned long)rom;
Matthew Garrettdd5fc852012-12-05 14:33:26 -0700152 else
Jan Beulichbc754792013-01-18 12:35:14 +0000153 params->hdr.setup_data = (unsigned long)rom;
Matthew Garrettdd5fc852012-12-05 14:33:26 -0700154
155 data = (struct setup_data *)rom;
156
157 continue;
158 free_struct:
159 efi_call_phys1(sys_table->boottime->free_pool, rom);
160 }
161
162free_handle:
163 efi_call_phys1(sys_table->boottime->free_pool, pci_handle);
164 return status;
165}
166
Matt Fleming291f3632011-12-12 21:27:52 +0000167/*
168 * See if we have Graphics Output Protocol
169 */
170static efi_status_t setup_gop(struct screen_info *si, efi_guid_t *proto,
171 unsigned long size)
172{
173 struct efi_graphics_output_protocol *gop, *first_gop;
174 struct efi_pixel_bitmask pixel_info;
175 unsigned long nr_gops;
176 efi_status_t status;
177 void **gop_handle;
178 u16 width, height;
179 u32 fb_base, fb_size;
180 u32 pixels_per_scan_line;
181 int pixel_format;
182 int i;
183
184 status = efi_call_phys3(sys_table->boottime->allocate_pool,
185 EFI_LOADER_DATA, size, &gop_handle);
186 if (status != EFI_SUCCESS)
187 return status;
188
189 status = efi_call_phys5(sys_table->boottime->locate_handle,
190 EFI_LOCATE_BY_PROTOCOL, proto,
191 NULL, &size, gop_handle);
192 if (status != EFI_SUCCESS)
193 goto free_handle;
194
195 first_gop = NULL;
196
197 nr_gops = size / sizeof(void *);
198 for (i = 0; i < nr_gops; i++) {
199 struct efi_graphics_output_mode_info *info;
Matthew Garrett38cb5ef2012-07-26 18:00:27 -0400200 efi_guid_t conout_proto = EFI_CONSOLE_OUT_DEVICE_GUID;
201 bool conout_found = false;
202 void *dummy;
Matt Fleming291f3632011-12-12 21:27:52 +0000203 void *h = gop_handle[i];
204
205 status = efi_call_phys3(sys_table->boottime->handle_protocol,
206 h, proto, &gop);
207 if (status != EFI_SUCCESS)
208 continue;
209
Matthew Garrett38cb5ef2012-07-26 18:00:27 -0400210 status = efi_call_phys3(sys_table->boottime->handle_protocol,
211 h, &conout_proto, &dummy);
212
213 if (status == EFI_SUCCESS)
214 conout_found = true;
Matt Fleming291f3632011-12-12 21:27:52 +0000215
216 status = efi_call_phys4(gop->query_mode, gop,
217 gop->mode->mode, &size, &info);
Matthew Garrett38cb5ef2012-07-26 18:00:27 -0400218 if (status == EFI_SUCCESS && (!first_gop || conout_found)) {
Matt Fleming291f3632011-12-12 21:27:52 +0000219 /*
Matthew Garrett38cb5ef2012-07-26 18:00:27 -0400220 * Systems that use the UEFI Console Splitter may
221 * provide multiple GOP devices, not all of which are
222 * backed by real hardware. The workaround is to search
223 * for a GOP implementing the ConOut protocol, and if
224 * one isn't found, to just fall back to the first GOP.
Matt Fleming291f3632011-12-12 21:27:52 +0000225 */
226 width = info->horizontal_resolution;
227 height = info->vertical_resolution;
228 fb_base = gop->mode->frame_buffer_base;
229 fb_size = gop->mode->frame_buffer_size;
230 pixel_format = info->pixel_format;
231 pixel_info = info->pixel_information;
232 pixels_per_scan_line = info->pixels_per_scan_line;
233
234 /*
Matthew Garrett38cb5ef2012-07-26 18:00:27 -0400235 * Once we've found a GOP supporting ConOut,
Matt Fleming291f3632011-12-12 21:27:52 +0000236 * don't bother looking any further.
237 */
David Woodhouse70a479c2013-01-07 21:52:16 +0000238 first_gop = gop;
Matthew Garrett38cb5ef2012-07-26 18:00:27 -0400239 if (conout_found)
Matt Fleming291f3632011-12-12 21:27:52 +0000240 break;
Matt Fleming291f3632011-12-12 21:27:52 +0000241 }
242 }
243
244 /* Did we find any GOPs? */
245 if (!first_gop)
246 goto free_handle;
247
248 /* EFI framebuffer */
249 si->orig_video_isVGA = VIDEO_TYPE_EFI;
250
251 si->lfb_width = width;
252 si->lfb_height = height;
253 si->lfb_base = fb_base;
Matt Fleming291f3632011-12-12 21:27:52 +0000254 si->pages = 1;
255
256 if (pixel_format == PIXEL_RGB_RESERVED_8BIT_PER_COLOR) {
257 si->lfb_depth = 32;
258 si->lfb_linelength = pixels_per_scan_line * 4;
259 si->red_size = 8;
260 si->red_pos = 0;
261 si->green_size = 8;
262 si->green_pos = 8;
263 si->blue_size = 8;
264 si->blue_pos = 16;
265 si->rsvd_size = 8;
266 si->rsvd_pos = 24;
267 } else if (pixel_format == PIXEL_BGR_RESERVED_8BIT_PER_COLOR) {
268 si->lfb_depth = 32;
269 si->lfb_linelength = pixels_per_scan_line * 4;
270 si->red_size = 8;
271 si->red_pos = 16;
272 si->green_size = 8;
273 si->green_pos = 8;
274 si->blue_size = 8;
275 si->blue_pos = 0;
276 si->rsvd_size = 8;
277 si->rsvd_pos = 24;
278 } else if (pixel_format == PIXEL_BIT_MASK) {
279 find_bits(pixel_info.red_mask, &si->red_pos, &si->red_size);
280 find_bits(pixel_info.green_mask, &si->green_pos,
281 &si->green_size);
282 find_bits(pixel_info.blue_mask, &si->blue_pos, &si->blue_size);
283 find_bits(pixel_info.reserved_mask, &si->rsvd_pos,
284 &si->rsvd_size);
285 si->lfb_depth = si->red_size + si->green_size +
286 si->blue_size + si->rsvd_size;
287 si->lfb_linelength = (pixels_per_scan_line * si->lfb_depth) / 8;
288 } else {
289 si->lfb_depth = 4;
290 si->lfb_linelength = si->lfb_width / 2;
291 si->red_size = 0;
292 si->red_pos = 0;
293 si->green_size = 0;
294 si->green_pos = 0;
295 si->blue_size = 0;
296 si->blue_pos = 0;
297 si->rsvd_size = 0;
298 si->rsvd_pos = 0;
299 }
300
Matthew Garrette9b10952012-07-27 17:20:49 -0400301 si->lfb_size = si->lfb_linelength * si->lfb_height;
302
Matthew Garrettf462ed92012-07-27 12:58:53 -0400303 si->capabilities |= VIDEO_CAPABILITY_SKIP_QUIRKS;
304
Matt Fleming291f3632011-12-12 21:27:52 +0000305free_handle:
306 efi_call_phys1(sys_table->boottime->free_pool, gop_handle);
307 return status;
308}
309
310/*
311 * See if we have Universal Graphics Adapter (UGA) protocol
312 */
313static efi_status_t setup_uga(struct screen_info *si, efi_guid_t *uga_proto,
314 unsigned long size)
315{
316 struct efi_uga_draw_protocol *uga, *first_uga;
317 unsigned long nr_ugas;
318 efi_status_t status;
319 u32 width, height;
320 void **uga_handle = NULL;
321 int i;
322
323 status = efi_call_phys3(sys_table->boottime->allocate_pool,
324 EFI_LOADER_DATA, size, &uga_handle);
325 if (status != EFI_SUCCESS)
326 return status;
327
328 status = efi_call_phys5(sys_table->boottime->locate_handle,
329 EFI_LOCATE_BY_PROTOCOL, uga_proto,
330 NULL, &size, uga_handle);
331 if (status != EFI_SUCCESS)
332 goto free_handle;
333
334 first_uga = NULL;
335
336 nr_ugas = size / sizeof(void *);
337 for (i = 0; i < nr_ugas; i++) {
338 efi_guid_t pciio_proto = EFI_PCI_IO_PROTOCOL_GUID;
339 void *handle = uga_handle[i];
340 u32 w, h, depth, refresh;
341 void *pciio;
342
343 status = efi_call_phys3(sys_table->boottime->handle_protocol,
344 handle, uga_proto, &uga);
345 if (status != EFI_SUCCESS)
346 continue;
347
348 efi_call_phys3(sys_table->boottime->handle_protocol,
349 handle, &pciio_proto, &pciio);
350
351 status = efi_call_phys5(uga->get_mode, uga, &w, &h,
352 &depth, &refresh);
353 if (status == EFI_SUCCESS && (!first_uga || pciio)) {
354 width = w;
355 height = h;
356
357 /*
358 * Once we've found a UGA supporting PCIIO,
359 * don't bother looking any further.
360 */
361 if (pciio)
362 break;
363
364 first_uga = uga;
365 }
366 }
367
368 if (!first_uga)
369 goto free_handle;
370
371 /* EFI framebuffer */
372 si->orig_video_isVGA = VIDEO_TYPE_EFI;
373
374 si->lfb_depth = 32;
375 si->lfb_width = width;
376 si->lfb_height = height;
377
378 si->red_size = 8;
379 si->red_pos = 16;
380 si->green_size = 8;
381 si->green_pos = 8;
382 si->blue_size = 8;
383 si->blue_pos = 0;
384 si->rsvd_size = 8;
385 si->rsvd_pos = 24;
386
387
388free_handle:
389 efi_call_phys1(sys_table->boottime->free_pool, uga_handle);
390 return status;
391}
392
393void setup_graphics(struct boot_params *boot_params)
394{
395 efi_guid_t graphics_proto = EFI_GRAPHICS_OUTPUT_PROTOCOL_GUID;
396 struct screen_info *si;
397 efi_guid_t uga_proto = EFI_UGA_PROTOCOL_GUID;
398 efi_status_t status;
399 unsigned long size;
400 void **gop_handle = NULL;
401 void **uga_handle = NULL;
402
403 si = &boot_params->screen_info;
404 memset(si, 0, sizeof(*si));
405
406 size = 0;
407 status = efi_call_phys5(sys_table->boottime->locate_handle,
408 EFI_LOCATE_BY_PROTOCOL, &graphics_proto,
409 NULL, &size, gop_handle);
410 if (status == EFI_BUFFER_TOO_SMALL)
411 status = setup_gop(si, &graphics_proto, size);
412
413 if (status != EFI_SUCCESS) {
414 size = 0;
415 status = efi_call_phys5(sys_table->boottime->locate_handle,
416 EFI_LOCATE_BY_PROTOCOL, &uga_proto,
417 NULL, &size, uga_handle);
418 if (status == EFI_BUFFER_TOO_SMALL)
419 setup_uga(si, &uga_proto, size);
420 }
421}
422
Matt Fleming291f3632011-12-12 21:27:52 +0000423
424/*
425 * Because the x86 boot code expects to be passed a boot_params we
426 * need to create one ourselves (usually the bootloader would create
427 * one for us).
428 */
Matt Fleming9ca8f722012-07-19 10:23:48 +0100429struct boot_params *make_boot_params(void *handle, efi_system_table_t *_table)
Matt Fleming291f3632011-12-12 21:27:52 +0000430{
Matt Fleming9ca8f722012-07-19 10:23:48 +0100431 struct boot_params *boot_params;
432 struct sys_desc_table *sdt;
433 struct apm_bios_info *bi;
434 struct setup_header *hdr;
435 struct efi_info *efi;
436 efi_loaded_image_t *image;
437 void *options;
Matt Fleming9ca8f722012-07-19 10:23:48 +0100438 efi_guid_t proto = LOADED_IMAGE_PROTOCOL_GUID;
Matt Fleming291f3632011-12-12 21:27:52 +0000439 int options_size = 0;
440 efi_status_t status;
Roy Franz5fef3872013-09-22 15:45:33 -0700441 char *cmdline_ptr;
Matt Fleming291f3632011-12-12 21:27:52 +0000442 u16 *s2;
443 u8 *s1;
444 int i;
445
Matt Fleming9ca8f722012-07-19 10:23:48 +0100446 sys_table = _table;
447
448 /* Check if we were booted by the EFI firmware */
449 if (sys_table->hdr.signature != EFI_SYSTEM_TABLE_SIGNATURE)
450 return NULL;
451
452 status = efi_call_phys3(sys_table->boottime->handle_protocol,
453 handle, &proto, (void *)&image);
454 if (status != EFI_SUCCESS) {
Roy Franz876dc362013-09-22 15:45:28 -0700455 efi_printk(sys_table, "Failed to get handle for LOADED_IMAGE_PROTOCOL\n");
Matt Fleming9ca8f722012-07-19 10:23:48 +0100456 return NULL;
457 }
458
Roy Franz40e45302013-09-22 15:45:29 -0700459 status = efi_low_alloc(sys_table, 0x4000, 1,
460 (unsigned long *)&boot_params);
Matt Fleming9ca8f722012-07-19 10:23:48 +0100461 if (status != EFI_SUCCESS) {
Roy Franz876dc362013-09-22 15:45:28 -0700462 efi_printk(sys_table, "Failed to alloc lowmem for boot params\n");
Matt Fleming9ca8f722012-07-19 10:23:48 +0100463 return NULL;
464 }
465
466 memset(boot_params, 0x0, 0x4000);
467
468 hdr = &boot_params->hdr;
469 efi = &boot_params->efi_info;
470 bi = &boot_params->apm_bios_info;
471 sdt = &boot_params->sys_desc_table;
472
473 /* Copy the second sector to boot_params */
474 memcpy(&hdr->jump, image->image_base + 512, 512);
475
476 /*
477 * Fill out some of the header fields ourselves because the
478 * EFI firmware loader doesn't load the first sector.
479 */
480 hdr->root_flags = 1;
481 hdr->vid_mode = 0xffff;
482 hdr->boot_flag = 0xAA55;
483
484 hdr->code32_start = (__u64)(unsigned long)image->image_base;
485
Matt Fleming291f3632011-12-12 21:27:52 +0000486 hdr->type_of_loader = 0x21;
487
488 /* Convert unicode cmdline to ascii */
Roy Franz5fef3872013-09-22 15:45:33 -0700489 cmdline_ptr = efi_convert_cmdline_to_ascii(sys_table, image,
490 &options_size);
491 if (!cmdline_ptr)
492 goto fail;
493 hdr->cmd_line_ptr = (unsigned long)cmdline_ptr;
Matt Fleming291f3632011-12-12 21:27:52 +0000494
495 hdr->ramdisk_image = 0;
496 hdr->ramdisk_size = 0;
497
Matt Fleming291f3632011-12-12 21:27:52 +0000498 /* Clear APM BIOS info */
499 memset(bi, 0, sizeof(*bi));
500
501 memset(sdt, 0, sizeof(*sdt));
502
Roy Franz876dc362013-09-22 15:45:28 -0700503 status = handle_ramdisks(sys_table, image, hdr);
Matt Fleming9ca8f722012-07-19 10:23:48 +0100504 if (status != EFI_SUCCESS)
505 goto fail2;
506
507 return boot_params;
508fail2:
509 if (options_size)
Roy Franz40e45302013-09-22 15:45:29 -0700510 efi_free(sys_table, options_size, hdr->cmd_line_ptr);
Matt Fleming9ca8f722012-07-19 10:23:48 +0100511fail:
Roy Franz40e45302013-09-22 15:45:29 -0700512 efi_free(sys_table, 0x4000, (unsigned long)boot_params);
Matt Fleming9ca8f722012-07-19 10:23:48 +0100513 return NULL;
514}
515
516static efi_status_t exit_boot(struct boot_params *boot_params,
517 void *handle)
518{
519 struct efi_info *efi = &boot_params->efi_info;
520 struct e820entry *e820_map = &boot_params->e820_map[0];
521 struct e820entry *prev = NULL;
522 unsigned long size, key, desc_size, _size;
523 efi_memory_desc_t *mem_map;
524 efi_status_t status;
525 __u32 desc_version;
Zach Bobroffd3768d82013-06-07 13:02:50 +0100526 bool called_exit = false;
Matt Fleming9ca8f722012-07-19 10:23:48 +0100527 u8 nr_entries;
528 int i;
Matt Fleming291f3632011-12-12 21:27:52 +0000529
Roy Franzae8e9062013-09-22 15:45:37 -0700530get_map:
531 status = efi_get_memory_map(sys_table, &mem_map, &size, &desc_size,
532 &desc_version, &key);
Matt Fleming291f3632011-12-12 21:27:52 +0000533
Matt Fleming291f3632011-12-12 21:27:52 +0000534 if (status != EFI_SUCCESS)
Matt Fleming9ca8f722012-07-19 10:23:48 +0100535 return status;
Matt Fleming291f3632011-12-12 21:27:52 +0000536
Matt Fleming9ca8f722012-07-19 10:23:48 +0100537 memcpy(&efi->efi_loader_signature, EFI_LOADER_SIGNATURE, sizeof(__u32));
Matt Fleming291f3632011-12-12 21:27:52 +0000538 efi->efi_systab = (unsigned long)sys_table;
539 efi->efi_memdesc_size = desc_size;
540 efi->efi_memdesc_version = desc_version;
541 efi->efi_memmap = (unsigned long)mem_map;
542 efi->efi_memmap_size = size;
543
544#ifdef CONFIG_X86_64
545 efi->efi_systab_hi = (unsigned long)sys_table >> 32;
546 efi->efi_memmap_hi = (unsigned long)mem_map >> 32;
547#endif
548
549 /* Might as well exit boot services now */
550 status = efi_call_phys2(sys_table->boottime->exit_boot_services,
551 handle, key);
Zach Bobroffd3768d82013-06-07 13:02:50 +0100552 if (status != EFI_SUCCESS) {
553 /*
554 * ExitBootServices() will fail if any of the event
555 * handlers change the memory map. In which case, we
556 * must be prepared to retry, but only once so that
557 * we're guaranteed to exit on repeated failures instead
558 * of spinning forever.
559 */
560 if (called_exit)
561 goto free_mem_map;
562
563 called_exit = true;
Roy Franzae8e9062013-09-22 15:45:37 -0700564 efi_call_phys1(sys_table->boottime->free_pool, mem_map);
Zach Bobroffd3768d82013-06-07 13:02:50 +0100565 goto get_map;
566 }
Matt Fleming291f3632011-12-12 21:27:52 +0000567
568 /* Historic? */
569 boot_params->alt_mem_k = 32 * 1024;
570
571 /*
572 * Convert the EFI memory map to E820.
573 */
574 nr_entries = 0;
575 for (i = 0; i < size / desc_size; i++) {
576 efi_memory_desc_t *d;
577 unsigned int e820_type = 0;
578 unsigned long m = (unsigned long)mem_map;
579
580 d = (efi_memory_desc_t *)(m + (i * desc_size));
581 switch (d->type) {
582 case EFI_RESERVED_TYPE:
583 case EFI_RUNTIME_SERVICES_CODE:
584 case EFI_RUNTIME_SERVICES_DATA:
585 case EFI_MEMORY_MAPPED_IO:
586 case EFI_MEMORY_MAPPED_IO_PORT_SPACE:
587 case EFI_PAL_CODE:
588 e820_type = E820_RESERVED;
589 break;
590
591 case EFI_UNUSABLE_MEMORY:
592 e820_type = E820_UNUSABLE;
593 break;
594
595 case EFI_ACPI_RECLAIM_MEMORY:
596 e820_type = E820_ACPI;
597 break;
598
599 case EFI_LOADER_CODE:
600 case EFI_LOADER_DATA:
601 case EFI_BOOT_SERVICES_CODE:
602 case EFI_BOOT_SERVICES_DATA:
603 case EFI_CONVENTIONAL_MEMORY:
604 e820_type = E820_RAM;
605 break;
606
607 case EFI_ACPI_MEMORY_NVS:
608 e820_type = E820_NVS;
609 break;
610
611 default:
612 continue;
613 }
614
615 /* Merge adjacent mappings */
616 if (prev && prev->type == e820_type &&
617 (prev->addr + prev->size) == d->phys_addr)
618 prev->size += d->num_pages << 12;
619 else {
620 e820_map->addr = d->phys_addr;
621 e820_map->size = d->num_pages << 12;
622 e820_map->type = e820_type;
623 prev = e820_map++;
624 nr_entries++;
625 }
626 }
627
628 boot_params->e820_entries = nr_entries;
629
630 return EFI_SUCCESS;
631
632free_mem_map:
Roy Franzae8e9062013-09-22 15:45:37 -0700633 efi_call_phys1(sys_table->boottime->free_pool, mem_map);
Matt Fleming291f3632011-12-12 21:27:52 +0000634 return status;
635}
636
Matt Fleming9ca8f722012-07-19 10:23:48 +0100637
638/*
639 * On success we return a pointer to a boot_params structure, and NULL
640 * on failure.
641 */
642struct boot_params *efi_main(void *handle, efi_system_table_t *_table,
643 struct boot_params *boot_params)
644{
645 struct desc_ptr *gdt, *idt;
646 efi_loaded_image_t *image;
647 struct setup_header *hdr = &boot_params->hdr;
648 efi_status_t status;
649 struct desc_struct *desc;
650
651 sys_table = _table;
652
653 /* Check if we were booted by the EFI firmware */
654 if (sys_table->hdr.signature != EFI_SYSTEM_TABLE_SIGNATURE)
655 goto fail;
656
657 setup_graphics(boot_params);
Matt Fleming291f3632011-12-12 21:27:52 +0000658
Matthew Garrettdd5fc852012-12-05 14:33:26 -0700659 setup_efi_pci(boot_params);
660
Matt Fleming291f3632011-12-12 21:27:52 +0000661 status = efi_call_phys3(sys_table->boottime->allocate_pool,
662 EFI_LOADER_DATA, sizeof(*gdt),
663 (void **)&gdt);
Matt Fleming9fa7ded2012-02-20 13:20:59 +0000664 if (status != EFI_SUCCESS) {
Roy Franz876dc362013-09-22 15:45:28 -0700665 efi_printk(sys_table, "Failed to alloc mem for gdt structure\n");
Matt Fleming291f3632011-12-12 21:27:52 +0000666 goto fail;
Matt Fleming9fa7ded2012-02-20 13:20:59 +0000667 }
Matt Fleming291f3632011-12-12 21:27:52 +0000668
669 gdt->size = 0x800;
Roy Franz40e45302013-09-22 15:45:29 -0700670 status = efi_low_alloc(sys_table, gdt->size, 8,
Roy Franz876dc362013-09-22 15:45:28 -0700671 (unsigned long *)&gdt->address);
Matt Fleming9fa7ded2012-02-20 13:20:59 +0000672 if (status != EFI_SUCCESS) {
Roy Franz876dc362013-09-22 15:45:28 -0700673 efi_printk(sys_table, "Failed to alloc mem for gdt\n");
Matt Fleming291f3632011-12-12 21:27:52 +0000674 goto fail;
Matt Fleming9fa7ded2012-02-20 13:20:59 +0000675 }
Matt Fleming291f3632011-12-12 21:27:52 +0000676
677 status = efi_call_phys3(sys_table->boottime->allocate_pool,
678 EFI_LOADER_DATA, sizeof(*idt),
679 (void **)&idt);
Matt Fleming9fa7ded2012-02-20 13:20:59 +0000680 if (status != EFI_SUCCESS) {
Roy Franz876dc362013-09-22 15:45:28 -0700681 efi_printk(sys_table, "Failed to alloc mem for idt structure\n");
Matt Fleming291f3632011-12-12 21:27:52 +0000682 goto fail;
Matt Fleming9fa7ded2012-02-20 13:20:59 +0000683 }
Matt Fleming291f3632011-12-12 21:27:52 +0000684
685 idt->size = 0;
686 idt->address = 0;
687
Matt Fleming9ca8f722012-07-19 10:23:48 +0100688 /*
689 * If the kernel isn't already loaded at the preferred load
690 * address, relocate it.
691 */
692 if (hdr->pref_address != hdr->code32_start) {
Roy Franz4a9f3a72013-09-22 15:45:32 -0700693 unsigned long bzimage_addr = hdr->code32_start;
694 status = efi_relocate_kernel(sys_table, &bzimage_addr,
695 hdr->init_size, hdr->init_size,
696 hdr->pref_address,
697 hdr->kernel_alignment);
Matt Fleming9ca8f722012-07-19 10:23:48 +0100698 if (status != EFI_SUCCESS)
699 goto fail;
Roy Franz4a9f3a72013-09-22 15:45:32 -0700700
701 hdr->pref_address = hdr->code32_start;
702 hdr->code32_start = bzimage_addr;
Matt Fleming9ca8f722012-07-19 10:23:48 +0100703 }
704
705 status = exit_boot(boot_params, handle);
Matt Fleming291f3632011-12-12 21:27:52 +0000706 if (status != EFI_SUCCESS)
707 goto fail;
708
709 memset((char *)gdt->address, 0x0, gdt->size);
710 desc = (struct desc_struct *)gdt->address;
711
712 /* The first GDT is a dummy and the second is unused. */
713 desc += 2;
714
715 desc->limit0 = 0xffff;
716 desc->base0 = 0x0000;
717 desc->base1 = 0x0000;
718 desc->type = SEG_TYPE_CODE | SEG_TYPE_EXEC_READ;
719 desc->s = DESC_TYPE_CODE_DATA;
720 desc->dpl = 0;
721 desc->p = 1;
722 desc->limit = 0xf;
723 desc->avl = 0;
724 desc->l = 0;
725 desc->d = SEG_OP_SIZE_32BIT;
726 desc->g = SEG_GRANULARITY_4KB;
727 desc->base2 = 0x00;
728
729 desc++;
730 desc->limit0 = 0xffff;
731 desc->base0 = 0x0000;
732 desc->base1 = 0x0000;
733 desc->type = SEG_TYPE_DATA | SEG_TYPE_READ_WRITE;
734 desc->s = DESC_TYPE_CODE_DATA;
735 desc->dpl = 0;
736 desc->p = 1;
737 desc->limit = 0xf;
738 desc->avl = 0;
739 desc->l = 0;
740 desc->d = SEG_OP_SIZE_32BIT;
741 desc->g = SEG_GRANULARITY_4KB;
742 desc->base2 = 0x00;
743
744#ifdef CONFIG_X86_64
745 /* Task segment value */
746 desc++;
747 desc->limit0 = 0x0000;
748 desc->base0 = 0x0000;
749 desc->base1 = 0x0000;
750 desc->type = SEG_TYPE_TSS;
751 desc->s = 0;
752 desc->dpl = 0;
753 desc->p = 1;
754 desc->limit = 0x0;
755 desc->avl = 0;
756 desc->l = 0;
757 desc->d = 0;
758 desc->g = SEG_GRANULARITY_4KB;
759 desc->base2 = 0x00;
760#endif /* CONFIG_X86_64 */
761
762 asm volatile ("lidt %0" : : "m" (*idt));
763 asm volatile ("lgdt %0" : : "m" (*gdt));
764
765 asm volatile("cli");
766
767 return boot_params;
768fail:
769 return NULL;
770}