]> git.proxmox.com Git - mirror_edk2.git/blame - ArmPkg/Include/Library/BdsLib.h
ArmPkg/BdsLib: Use two distinct functions to boot Linux either by Atag or Fdt
[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
76d17c31 99/**\r
100 Start a Linux kernel from a Device Path\r
101\r
102 @param LinuxKernel Device Path to the Linux Kernel\r
103 @param Parameters Linux kernel arguments\r
104\r
105 @retval EFI_SUCCESS All drivers have been connected\r
106 @retval EFI_NOT_FOUND The Linux kernel Device Path has not been found\r
107 @retval EFI_OUT_OF_RESOURCES There is not enough resource memory to store the matching results.\r
108\r
109**/\r
110EFI_STATUS\r
111BdsBootLinuxAtag (\r
112 IN EFI_DEVICE_PATH_PROTOCOL* LinuxKernelDevicePath,\r
113 IN EFI_DEVICE_PATH_PROTOCOL* InitrdDevicePath,\r
114 IN CONST CHAR8* Arguments\r
115 );\r
116\r
a355a365 117/**\r
118 Start a Linux kernel from a Device Path\r
119\r
120 @param LinuxKernel Device Path to the Linux Kernel\r
6bab33c7 121 @param Parameters Linux kernel arguments\r
a355a365 122 @param Fdt Device Path to the Flat Device Tree\r
123\r
124 @retval EFI_SUCCESS All drivers have been connected\r
125 @retval EFI_NOT_FOUND The Linux kernel Device Path has not been found\r
126 @retval EFI_OUT_OF_RESOURCES There is not enough resource memory to store the matching results.\r
127\r
128**/\r
129EFI_STATUS\r
76d17c31 130BdsBootLinuxFdt (\r
a355a365 131 IN EFI_DEVICE_PATH_PROTOCOL* LinuxKernelDevicePath,\r
656416bc 132 IN EFI_DEVICE_PATH_PROTOCOL* InitrdDevicePath,\r
133 IN CONST CHAR8* Arguments,\r
a355a365 134 IN EFI_DEVICE_PATH_PROTOCOL* FdtDevicePath\r
135 );\r
136\r
6bab33c7 137/**\r
138 Start an EFI Application from a Device Path\r
139\r
140 @param ParentImageHandle Handle of the calling image\r
141 @param DevicePath Location of the EFI Application\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
149BdsStartEfiApplication (\r
150 IN EFI_HANDLE ParentImageHandle,\r
2755d844 151 IN EFI_DEVICE_PATH_PROTOCOL *DevicePath,\r
152 IN UINTN LoadOptionsSize,\r
153 IN VOID* LoadOptions\r
6bab33c7 154 );\r
155\r
a355a365 156/**\r
157 Start an EFI Application from any Firmware Volume\r
158\r
159 @param EfiApp EFI Application Name\r
160\r
161 @retval EFI_SUCCESS All drivers have been connected\r
162 @retval EFI_NOT_FOUND The Linux kernel Device Path has not been found\r
163 @retval EFI_OUT_OF_RESOURCES There is not enough resource memory to store the matching results.\r
164\r
165**/\r
166EFI_STATUS\r
167BdsLoadApplication (\r
168 IN EFI_HANDLE ParentImageHandle,\r
2755d844 169 IN CHAR16* EfiApp,\r
170 IN UINTN LoadOptionsSize,\r
171 IN VOID* LoadOptions\r
a355a365 172 );\r
173\r
4aa24170 174EFI_STATUS\r
175BdsLoadImage (\r
176 IN EFI_DEVICE_PATH *DevicePath,\r
177 IN EFI_ALLOCATE_TYPE Type,\r
178 IN OUT EFI_PHYSICAL_ADDRESS* Image,\r
179 OUT UINTN *FileSize\r
180 );\r
181\r
a355a365 182#endif\r