mirror of https://github.com/acidanthera/audk.git
141 lines
3.3 KiB
C
141 lines
3.3 KiB
C
/*++
|
|
|
|
Copyright (c) 2006, Intel Corporation
|
|
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.
|
|
|
|
Module Name:
|
|
|
|
BdsPlatform.h
|
|
|
|
Abstract:
|
|
|
|
Head file for BDS Platform specific code
|
|
|
|
--*/
|
|
|
|
#ifndef _BDS_PLATFORM_LIB_H
|
|
#define _BDS_PLATFORM_LIB_H
|
|
|
|
extern BDS_CONSOLE_CONNECT_ENTRY gPlatformConsole[];
|
|
extern EFI_DEVICE_PATH_PROTOCOL *gPlatformConnectSequence[];
|
|
extern EFI_DEVICE_PATH_PROTOCOL *gPlatformDriverOption[];
|
|
//
|
|
// Bds AP Context data
|
|
//
|
|
#define EFI_BDS_ARCH_PROTOCOL_INSTANCE_SIGNATURE EFI_SIGNATURE_32 ('B', 'd', 's', 'A')
|
|
typedef struct {
|
|
UINTN Signature;
|
|
|
|
EFI_HANDLE Handle;
|
|
|
|
EFI_BDS_ARCH_PROTOCOL Bds;
|
|
|
|
//
|
|
// Save the current boot mode
|
|
//
|
|
EFI_BOOT_MODE BootMode;
|
|
|
|
//
|
|
// Set true if boot with default settings
|
|
//
|
|
BOOLEAN DefaultBoot;
|
|
|
|
//
|
|
// The system default timeout for choose the boot option
|
|
//
|
|
UINT16 TimeoutDefault;
|
|
|
|
//
|
|
// Memory Test Level
|
|
//
|
|
EXTENDMEM_COVERAGE_LEVEL MemoryTestLevel;
|
|
|
|
} EFI_BDS_ARCH_PROTOCOL_INSTANCE;
|
|
|
|
#define EFI_BDS_ARCH_PROTOCOL_INSTANCE_FROM_THIS(_this) \
|
|
CR (_this, \
|
|
EFI_BDS_ARCH_PROTOCOL_INSTANCE, \
|
|
Bds, \
|
|
EFI_BDS_ARCH_PROTOCOL_INSTANCE_SIGNATURE \
|
|
)
|
|
|
|
|
|
#define gEndEntire \
|
|
{ \
|
|
END_DEVICE_PATH_TYPE,\
|
|
END_ENTIRE_DEVICE_PATH_SUBTYPE,\
|
|
{\
|
|
END_DEVICE_PATH_LENGTH,\
|
|
0\
|
|
}\
|
|
}
|
|
|
|
//
|
|
// Platform BDS Functions
|
|
//
|
|
VOID
|
|
PlatformBdsInit (
|
|
IN EFI_BDS_ARCH_PROTOCOL_INSTANCE *PrivateData
|
|
)
|
|
;
|
|
|
|
VOID
|
|
PlatformBdsPolicyBehavior (
|
|
IN EFI_BDS_ARCH_PROTOCOL_INSTANCE *PrivateData,
|
|
IN LIST_ENTRY *DriverOptionList,
|
|
IN LIST_ENTRY *BootOptionList
|
|
)
|
|
;
|
|
|
|
EFI_STATUS
|
|
BdsMemoryTest (
|
|
EXTENDMEM_COVERAGE_LEVEL Level
|
|
)
|
|
;
|
|
|
|
EFI_STATUS
|
|
PlatformBdsShowProgress (
|
|
EFI_GRAPHICS_OUTPUT_BLT_PIXEL TitleForeground,
|
|
EFI_GRAPHICS_OUTPUT_BLT_PIXEL TitleBackground,
|
|
CHAR16 *Title,
|
|
EFI_GRAPHICS_OUTPUT_BLT_PIXEL ProgressColor,
|
|
UINTN Progress,
|
|
UINTN PreviousValue
|
|
)
|
|
;
|
|
|
|
VOID
|
|
PlatformBdsBootFail (
|
|
IN BDS_COMMON_OPTION *Option,
|
|
IN EFI_STATUS Status,
|
|
IN CHAR16 *ExitData,
|
|
IN UINTN ExitDataSize
|
|
)
|
|
;
|
|
|
|
VOID
|
|
PlatformBdsBootSuccess (
|
|
IN BDS_COMMON_OPTION *Option
|
|
)
|
|
;
|
|
|
|
EFI_STATUS
|
|
ProcessCapsules (
|
|
EFI_BOOT_MODE BootMode
|
|
)
|
|
;
|
|
|
|
VOID
|
|
PlatformBdsEnterFrontPage (
|
|
IN UINT16 TimeoutDefault,
|
|
IN BOOLEAN ConnectAllHappened
|
|
);
|
|
|
|
#endif // _BDS_PLATFORM_LIB_H
|