iPXE
efidrvprefix.c
Go to the documentation of this file.
1/*
2 * Copyright (C) 2009 Michael Brown <mbrown@fensystems.co.uk>.
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License as
6 * published by the Free Software Foundation; either version 2 of the
7 * License, or any later version.
8 *
9 * This program is distributed in the hope that it will be useful, but
10 * WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
17 * 02110-1301, USA.
18 */
19
20FILE_LICENCE ( GPL2_OR_LATER );
21
22#include <stdlib.h>
23#include <ipxe/init.h>
24#include <ipxe/device.h>
25#include <ipxe/efi/efi.h>
26#include <ipxe/efi/efi_driver.h>
27
28/**
29 * EFI entry point
30 *
31 * @v image_handle Image handle
32 * @v systab System table
33 * @ret efirc EFI return status code
34 */
36 EFI_SYSTEM_TABLE *systab ) {
37 static struct efi_saved_tpl tpl; /* avoid triggering stack protector */
38 EFI_STATUS efirc;
39
40 /* Initialise stack cookie */
41 efi_init_stack_guard ( image_handle );
42
43 /* Initialise EFI environment */
44 if ( ( efirc = efi_init ( image_handle, systab ) ) != 0 )
45 return efirc;
46
47 /* Raise TPL */
48 efi_raise_tpl ( &tpl );
49
50 /* Initialise iPXE environment */
51 initialise();
52 startup();
53
54 /* Restore TPL */
55 efi_restore_tpl ( &tpl );
56
57 return 0;
58}
59
60/**
61 * Probe EFI root bus
62 *
63 * @v rootdev EFI root device
64 */
65static int efi_probe ( struct root_device *rootdev __unused ) {
66
67 /* Do nothing */
68 return 0;
69}
70
71/**
72 * Remove EFI root bus
73 *
74 * @v rootdev EFI root device
75 */
76static void efi_remove ( struct root_device *rootdev __unused ) {
77
79}
80
81/** EFI root device driver */
83 .probe = efi_probe,
84 .remove = efi_remove,
85};
86
87/** EFI root device */
88struct root_device efi_root_device __root_device = {
89 .dev = { .name = "EFI" },
90 .driver = &efi_root_driver,
91};
#define EFIAPI
RETURN_STATUS EFI_STATUS
Function return status for EFI API.
Device model.
#define __root_device
Declare a root device.
Definition device.h:136
void efi_driver_disconnect_all(void)
Disconnect EFI driver from all possible devices.
Definition efi_driver.c:648
EFI driver interface.
EFI_STATUS efi_init(EFI_HANDLE image_handle, EFI_SYSTEM_TABLE *systab)
Initialise EFI environment.
Definition efi_init.c:155
void efi_raise_tpl(struct efi_saved_tpl *tpl)
Raise task priority level to internal level.
Definition efi_init.c:383
void efi_restore_tpl(struct efi_saved_tpl *tpl)
Restore task priority level.
Definition efi_init.c:399
static struct root_driver efi_root_driver
EFI root device driver.
static void efi_remove(struct root_device *rootdev __unused)
Remove EFI root bus.
static int efi_probe(struct root_device *rootdev __unused)
Probe EFI root bus.
EFI_STATUS EFIAPI _efidrv_start(EFI_HANDLE image_handle, EFI_SYSTEM_TABLE *systab)
EFI entry point.
#define __unused
Declare a variable or data structure as unused.
Definition compiler.h:573
#define FILE_LICENCE(_licence)
Declare a particular licence as applying to a file.
Definition compiler.h:896
EFI API.
#define EFI_HANDLE
Definition efi.h:53
static void efi_init_stack_guard(EFI_HANDLE handle)
Initialise stack cookie.
Definition efi.h:387
void startup(void)
Start up iPXE.
Definition init.c:70
void initialise(void)
Initialise iPXE.
Definition init.c:53
EFI System Table.
Definition UefiSpec.h:2044
An EFI saved task priority level.
Definition efi.h:80
A root device.
Definition device.h:98
A root device driver.
Definition device.h:111