]> git.proxmox.com Git - mirror_edk2.git/blame - ArmPkg/Include/Library/BdsLib.h
ArmPkg/BdsLib: Move some functions used to create/update BDS Boot Entry from ArmPlatf...
[mirror_edk2.git] / ArmPkg / Include / Library / BdsLib.h
CommitLineData
a355a365 1/** @file\r
2*\r
3* Copyright (c) 2011, ARM Limited. All rights reserved.\r
4* \r
5* This program and the accompanying materials \r
6* are licensed and made available under the terms and conditions of the BSD License \r
7* which accompanies this distribution. The full text of the license may be found at \r
8* http://opensource.org/licenses/bsd-license.php \r
9*\r
10* THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, \r
11* WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. \r
12*\r
13**/\r
14\r
15#ifndef __BDS_ENTRY_H__\r
16#define __BDS_ENTRY_H__\r
17\r
a6e97d28 18typedef UINT8* EFI_LOAD_OPTION;\r
19\r
20/**\r
21 This is defined by the UEFI specs, don't change it\r
22**/\r
23typedef struct {\r
24 UINT16 LoadOptionIndex;\r
25 EFI_LOAD_OPTION LoadOption;\r
26 UINTN LoadOptionSize;\r
27\r
28 UINT32 Attributes;\r
29 UINT16 FilePathListLength;\r
30 CHAR16 *Description;\r
31 EFI_DEVICE_PATH_PROTOCOL *FilePathList;\r
32\r
33 VOID* OptionalData;\r
34 UINTN OptionalDataSize;\r
35} BDS_LOAD_OPTION;\r
36\r
6bab33c7 37/**\r
38 Connect a Device Path and return the handle of the driver that support this DevicePath\r
39\r
40 @param DevicePath Device Path of the File to connect\r
41 @param Handle Handle of the driver that support this DevicePath\r
42 @param RemainingDevicePath Remaining DevicePath nodes that do not match the driver DevicePath\r
43\r
44 @retval EFI_SUCCESS A driver that matches the Device Path has been found\r
45 @retval EFI_NOT_FOUND No handles match the search.\r
46 @retval EFI_INVALID_PARAMETER DevicePath or Handle is NULL\r
47\r
48**/\r
49EFI_STATUS\r
50BdsConnectDevicePath (\r
51 IN EFI_DEVICE_PATH_PROTOCOL* DevicePath,\r
52 OUT EFI_HANDLE *Handle,\r
53 OUT EFI_DEVICE_PATH_PROTOCOL **RemainingDevicePath\r
54 );\r
55\r
a355a365 56/**\r
57 Connect all DXE drivers\r
58\r
59 @retval EFI_SUCCESS All drivers have been connected\r
60 @retval EFI_NOT_FOUND No handles match the search.\r
61 @retval EFI_OUT_OF_RESOURCES There is not resource pool memory to store the matching results.\r
62\r
63**/\r
64EFI_STATUS\r
65BdsConnectAllDrivers (\r
66 VOID\r
67 );\r
68\r
4aa24170 69EFI_STATUS\r
70GetEnvironmentVariable (\r
71 IN CONST CHAR16* VariableName,\r
72 IN VOID* DefaultValue,\r
73 IN OUT UINTN* Size,\r
74 OUT VOID** Value\r
75 );\r
76\r
77EFI_STATUS\r
78BootOptionFromLoadOptionIndex (\r
79 IN UINT16 LoadOptionIndex,\r
80 OUT BDS_LOAD_OPTION** BdsLoadOption\r
81 );\r
82\r
83EFI_STATUS\r
84BootOptionFromLoadOptionVariable (\r
85 IN CHAR16* BootVariableName,\r
86 OUT BDS_LOAD_OPTION** BdsLoadOption\r
87 );\r
88\r
89EFI_STATUS\r
90BootOptionToLoadOptionVariable (\r
91 IN BDS_LOAD_OPTION* BdsLoadOption\r
92 );\r
93\r
94UINT16\r
95BootOptionAllocateBootIndex (\r
96 VOID\r
97 );\r
98\r
a355a365 99/**\r
100 Start a Linux kernel from a Device Path\r
101\r
102 @param LinuxKernel Device Path to the Linux Kernel\r
6bab33c7 103 @param Parameters Linux kernel arguments\r
a355a365 104 @param Fdt Device Path to the Flat Device Tree\r
105\r
106 @retval EFI_SUCCESS All drivers have been connected\r
107 @retval EFI_NOT_FOUND The Linux kernel Device Path has not been found\r
108 @retval EFI_OUT_OF_RESOURCES There is not enough resource memory to store the matching results.\r
109\r
110**/\r
111EFI_STATUS\r
112BdsBootLinux (\r
113 IN EFI_DEVICE_PATH_PROTOCOL* LinuxKernelDevicePath,\r
656416bc 114 IN EFI_DEVICE_PATH_PROTOCOL* InitrdDevicePath,\r
115 IN CONST CHAR8* Arguments,\r
a355a365 116 IN EFI_DEVICE_PATH_PROTOCOL* FdtDevicePath\r
117 );\r
118\r
6bab33c7 119/**\r
120 Start an EFI Application from a Device Path\r
121\r
122 @param ParentImageHandle Handle of the calling image\r
123 @param DevicePath Location of the EFI Application\r
124\r
125 @retval EFI_SUCCESS All drivers have been connected\r
126 @retval EFI_NOT_FOUND The Linux kernel Device Path has not been found\r
127 @retval EFI_OUT_OF_RESOURCES There is not enough resource memory to store the matching results.\r
128\r
129**/\r
130EFI_STATUS\r
131BdsStartEfiApplication (\r
132 IN EFI_HANDLE ParentImageHandle,\r
2755d844 133 IN EFI_DEVICE_PATH_PROTOCOL *DevicePath,\r
134 IN UINTN LoadOptionsSize,\r
135 IN VOID* LoadOptions\r
6bab33c7 136 );\r
137\r
a355a365 138/**\r
139 Start an EFI Application from any Firmware Volume\r
140\r
141 @param EfiApp EFI Application Name\r
142\r
143 @retval EFI_SUCCESS All drivers have been connected\r
144 @retval EFI_NOT_FOUND The Linux kernel Device Path has not been found\r
145 @retval EFI_OUT_OF_RESOURCES There is not enough resource memory to store the matching results.\r
146\r
147**/\r
148EFI_STATUS\r
149BdsLoadApplication (\r
150 IN EFI_HANDLE ParentImageHandle,\r
2755d844 151 IN CHAR16* EfiApp,\r
152 IN UINTN LoadOptionsSize,\r
153 IN VOID* LoadOptions\r
a355a365 154 );\r
155\r
4aa24170 156EFI_STATUS\r
157BdsLoadImage (\r
158 IN EFI_DEVICE_PATH *DevicePath,\r
159 IN EFI_ALLOCATE_TYPE Type,\r
160 IN OUT EFI_PHYSICAL_ADDRESS* Image,\r
161 OUT UINTN *FileSize\r
162 );\r
163\r
a355a365 164#endif\r