The previous version was using the string representation of the Device Path. This new version takes as paramater the binary representation of the Device Path It also tries to detect which kind of device support it refers by using the remaining part of the Device Path after it has been loaded by gBS->ConnectController() Lots of bug have been fixed as well in this new version. git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@11799 6f19259b-4bc3-4df7-8a09-765794883524
90 lines
2.5 KiB
C
90 lines
2.5 KiB
C
/** @file
|
|
*
|
|
* Copyright (c) 2011, ARM Limited. All rights reserved.
|
|
*
|
|
* This program and the accompanying materials
|
|
* are licensed and made available under the terms and conditions of the BSD License
|
|
* which accompanies this distribution. The full text of the license may be found at
|
|
* http://opensource.org/licenses/bsd-license.php
|
|
*
|
|
* THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
|
*
|
|
**/
|
|
|
|
#ifndef __BDS_INTERNAL_H__
|
|
#define __BDS_INTERNAL_H__
|
|
|
|
#include <PiDxe.h>
|
|
#include <Library/BaseLib.h>
|
|
#include <Library/BaseMemoryLib.h>
|
|
#include <Library/UefiBootServicesTableLib.h>
|
|
#include <Library/UefiLib.h>
|
|
#include <Library/DevicePathLib.h>
|
|
#include <Library/MemoryAllocationLib.h>
|
|
#include <Library/DebugLib.h>
|
|
#include <Library/BdsUnixLib.h>
|
|
#include <Library/PerformanceLib.h>
|
|
|
|
#include <Guid/FileInfo.h>
|
|
|
|
#include <Protocol/DevicePath.h>
|
|
#include <Protocol/DevicePathFromText.h>
|
|
#include <Protocol/SimpleFileSystem.h>
|
|
#include <Protocol/FirmwareVolume2.h>
|
|
#include <Protocol/LoadFile.h>
|
|
#include <Protocol/PxeBaseCode.h>
|
|
|
|
|
|
typedef BOOLEAN (*BDS_FILE_LOADER_SUPPORT) (
|
|
IN EFI_DEVICE_PATH *DevicePath,
|
|
IN EFI_HANDLE Handle,
|
|
IN EFI_DEVICE_PATH *RemainingDevicePath
|
|
);
|
|
|
|
typedef EFI_STATUS (*BDS_FILE_LOADER_LOAD_IMAGE) (
|
|
IN EFI_DEVICE_PATH *DevicePath,
|
|
IN EFI_HANDLE Handle,
|
|
IN EFI_DEVICE_PATH *RemainingDevicePath,
|
|
IN EFI_ALLOCATE_TYPE Type,
|
|
IN OUT EFI_PHYSICAL_ADDRESS* Image,
|
|
OUT UINTN *ImageSize
|
|
);
|
|
|
|
typedef struct {
|
|
BDS_FILE_LOADER_SUPPORT Support;
|
|
BDS_FILE_LOADER_LOAD_IMAGE LoadImage;
|
|
} BDS_FILE_LOADER;
|
|
|
|
typedef struct _BDS_SYSTEM_MEMORY_RESOURCE {
|
|
LIST_ENTRY Link; // This attribute must be the first entry of this structure (to avoid pointer computation)
|
|
EFI_PHYSICAL_ADDRESS PhysicalStart;
|
|
UINT64 ResourceLength;
|
|
} BDS_SYSTEM_MEMORY_RESOURCE;
|
|
|
|
|
|
// BdsHelper.c
|
|
EFI_STATUS
|
|
ShutdownUefiBootServices (
|
|
VOID
|
|
);
|
|
|
|
EFI_STATUS
|
|
GetSystemMemoryResources (
|
|
LIST_ENTRY *ResourceList
|
|
);
|
|
|
|
VOID
|
|
PrintPerformance (
|
|
VOID
|
|
);
|
|
EFI_STATUS
|
|
BdsLoadImage (
|
|
IN EFI_DEVICE_PATH *DevicePath,
|
|
IN EFI_ALLOCATE_TYPE Type,
|
|
IN OUT EFI_PHYSICAL_ADDRESS* Image,
|
|
OUT UINTN *FileSize
|
|
);
|
|
|
|
#endif
|