TianoCore EDK2 master
|
#include <Base.h>
#include <Uefi/UefiBaseType.h>
#include <Library/DebugLib.h>
#include <Library/LcdPlatformLib.h>
Go to the source code of this file.
Functions | |
EFI_STATUS | LcdIdentify (VOID) |
EFI_STATUS | LcdInitialize (EFI_PHYSICAL_ADDRESS FrameBaseAddress) |
EFI_STATUS | LcdSetMode (IN UINT32 ModeNumber) |
VOID | LcdShutdown (VOID) |
Copyright (c) 2017, Linaro, Ltd. All rights reserved.
SPDX-License-Identifier: BSD-2-Clause-Patent
Definition in file LcdHwNullLib.c.
EFI_STATUS LcdIdentify | ( | VOID | ) |
Check for presence of display
EFI_SUCCESS | Platform implements display. |
EFI_NOT_FOUND | Display not found on the platform. |
Definition at line 22 of file LcdHwNullLib.c.
EFI_STATUS LcdInitialize | ( | EFI_PHYSICAL_ADDRESS | FrameBaseAddress | ) |
Initialize display.
FrameBaseAddress | Address of the frame buffer. |
EFI_SUCCESS | Display initialization success. |
!(EFI_SUCCESS) | Display initialization failure. |
Definition at line 38 of file LcdHwNullLib.c.
EFI_STATUS LcdSetMode | ( | IN UINT32 | ModeNumber | ) |
Set requested mode of the display.
ModeNumber | Display mode number. |
EFI_SUCCESS | Display set mode success. |
EFI_DEVICE_ERROR | If mode not found/supported. |
Definition at line 54 of file LcdHwNullLib.c.
VOID LcdShutdown | ( | VOID | ) |
De-initializes the display.
Definition at line 65 of file LcdHwNullLib.c.