]> git.proxmox.com Git - mirror_edk2.git/blob - ArmPkg/Library/PlatformBootManagerLib/PlatformBm.h
UefiCpuPkg: Move AsmRelocateApLoopStart from Mpfuncs.nasm to AmdSev.nasm
[mirror_edk2.git] / ArmPkg / Library / PlatformBootManagerLib / PlatformBm.h
1 /** @file
2 Head file for BDS Platform specific code
3
4 Copyright (C) 2015-2016, Red Hat, Inc.
5 Copyright (c) 2004 - 2008, Intel Corporation. All rights reserved.<BR>
6 Copyright (c) 2016, Linaro Ltd. All rights reserved.<BR>
7
8 SPDX-License-Identifier: BSD-2-Clause-Patent
9
10 **/
11
12 #ifndef _PLATFORM_BM_H_
13 #define _PLATFORM_BM_H_
14
15 #include <Library/BaseLib.h>
16 #include <Library/BaseMemoryLib.h>
17 #include <Library/DebugLib.h>
18 #include <Library/DevicePathLib.h>
19 #include <Library/MemoryAllocationLib.h>
20 #include <Library/UefiBootServicesTableLib.h>
21 #include <Library/UefiLib.h>
22 #include <Library/UefiRuntimeServicesTableLib.h>
23
24 /**
25 Use SystemTable Conout to stop video based Simple Text Out consoles from
26 going to the video device. Put up LogoFile on every video device that is a
27 console.
28
29 @param[in] LogoFile File name of logo to display on the center of the
30 screen.
31
32 @retval EFI_SUCCESS ConsoleControl has been flipped to graphics and logo
33 displayed.
34 @retval EFI_UNSUPPORTED Logo not found
35 **/
36 EFI_STATUS
37 EnableQuietBoot (
38 IN EFI_GUID *LogoFile
39 );
40
41 /**
42 Use SystemTable Conout to turn on video based Simple Text Out consoles. The
43 Simple Text Out screens will now be synced up with all non video output
44 devices
45
46 @retval EFI_SUCCESS UGA devices are back in text mode and synced up.
47 **/
48 EFI_STATUS
49 DisableQuietBoot (
50 VOID
51 );
52
53 #endif // _PLATFORM_BM_H_