]> git.proxmox.com Git - mirror_edk2.git/blob - BeagleBoardPkg/Bds/BdsEntry.h
21e49498cf66204866bfafb0397359a10e909f82
[mirror_edk2.git] / BeagleBoardPkg / Bds / BdsEntry.h
1 /** @file
2
3 Copyright (c) 2008-2009 Apple Inc. All rights reserved.<BR>
4
5 All rights reserved. This program and the accompanying materials
6 are licensed and made available under the terms and conditions of the BSD License
7 which accompanies this distribution. The full text of the license may be found at
8 http://opensource.org/licenses/bsd-license.php
9
10 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
11 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
12
13 **/
14
15 #ifndef __BDS_ENTRY_H__
16 #define __BDS_ENTRY_H__
17
18 #include <PiDxe.h>
19 #include <Library/BaseLib.h>
20 #include <Library/DebugLib.h>
21 #include <Library/PrintLib.h>
22 #include <Library/BaseMemoryLib.h>
23 #include <Library/UefiBootServicesTableLib.h>
24 #include <Library/UefiLib.h>
25 #include <Library/MemoryAllocationLib.h>
26 #include <Library/DxeServicesTableLib.h>
27 #include <Library/UefiRuntimeServicesTableLib.h>
28 #include <Library/HobLib.h>
29 #include <Library/DevicePathLib.h>
30 #include <Library/PcdLib.h>
31 #include <Library/MemoryAllocationLib.h>
32 #include <Library/PrintLib.h>
33
34 #include <Protocol/Bds.h>
35 #include <Protocol/SerialIo.h>
36 #include <Protocol/FirmwareVolume2.h>
37 #include <Protocol/SimpleTextIn.h>
38 #include <Protocol/SimpleTextOut.h>
39 #include <Protocol/EmbeddedDevice.h>
40 #include <Protocol/DevicePath.h>
41 #include <Protocol/SimpleFileSystem.h>
42 #include <Protocol/UsbIo.h>
43
44
45 EFI_STATUS
46 LoadPeCoffSectionFromFv (
47 IN EFI_HANDLE FvHandle,
48 IN EFI_GUID *NameGuid
49 );
50
51 EFI_STATUS
52 FindApplicationMatchingUiSection (
53 IN CHAR16 *UiString,
54 OUT EFI_HANDLE *FvHandle,
55 OUT EFI_GUID *NameGuid
56 );
57
58 VOID
59 EFIAPI
60 BdsEntry (
61 IN EFI_BDS_ARCH_PROTOCOL *This
62 );
63
64 #endif
65