]> git.proxmox.com Git - mirror_edk2.git/blame - ArmPkg/Include/Library/BdsLib.h
ArmPkg/BdsLib: Move the Generic BDS_LOAD_OPTION structure from Armplatform/Pkg to...
[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
69/**\r
70 Start a Linux kernel from a Device Path\r
71\r
72 @param LinuxKernel Device Path to the Linux Kernel\r
6bab33c7 73 @param Parameters Linux kernel arguments\r
a355a365 74 @param Fdt Device Path to the Flat Device Tree\r
75\r
76 @retval EFI_SUCCESS All drivers have been connected\r
77 @retval EFI_NOT_FOUND The Linux kernel Device Path has not been found\r
78 @retval EFI_OUT_OF_RESOURCES There is not enough resource memory to store the matching results.\r
79\r
80**/\r
81EFI_STATUS\r
82BdsBootLinux (\r
83 IN EFI_DEVICE_PATH_PROTOCOL* LinuxKernelDevicePath,\r
656416bc 84 IN EFI_DEVICE_PATH_PROTOCOL* InitrdDevicePath,\r
85 IN CONST CHAR8* Arguments,\r
a355a365 86 IN EFI_DEVICE_PATH_PROTOCOL* FdtDevicePath\r
87 );\r
88\r
6bab33c7 89/**\r
90 Start an EFI Application from a Device Path\r
91\r
92 @param ParentImageHandle Handle of the calling image\r
93 @param DevicePath Location of the EFI Application\r
94\r
95 @retval EFI_SUCCESS All drivers have been connected\r
96 @retval EFI_NOT_FOUND The Linux kernel Device Path has not been found\r
97 @retval EFI_OUT_OF_RESOURCES There is not enough resource memory to store the matching results.\r
98\r
99**/\r
100EFI_STATUS\r
101BdsStartEfiApplication (\r
102 IN EFI_HANDLE ParentImageHandle,\r
103 IN EFI_DEVICE_PATH_PROTOCOL *DevicePath\r
104 );\r
105\r
a355a365 106/**\r
107 Start an EFI Application from any Firmware Volume\r
108\r
109 @param EfiApp EFI Application Name\r
110\r
111 @retval EFI_SUCCESS All drivers have been connected\r
112 @retval EFI_NOT_FOUND The Linux kernel Device Path has not been found\r
113 @retval EFI_OUT_OF_RESOURCES There is not enough resource memory to store the matching results.\r
114\r
115**/\r
116EFI_STATUS\r
117BdsLoadApplication (\r
118 IN EFI_HANDLE ParentImageHandle,\r
119 IN CHAR16* EfiApp\r
120 );\r
121\r
122#endif\r