mirror of
https://github.com/acidanthera/audk.git
synced 2025-09-02 23:48:09 +02:00
REF: https://bugzilla.tianocore.org/show_bug.cgi?id=4427 1. Since UART speed is slower than CPU, BIOS need to check the write buffer is empty, to avoid overwrite the buffer content. 2. LPSS UART might disable MMIO space for Windows debug usage during ExitBootServices event. BIOS need to avoid access the MMIO space after ExitBootServices. Cc: Guo Dong <guo.dong@intel.com> Cc: Ray Ni <ray.ni@intel.com> Cc: Sean Rhodes <sean@starlabs.systems> Cc: James Lu <james.lu@intel.com> Reviewed-by: Gua Guo <gua.guo@intel.com> Signed-off-by: PaytonX Hsieh <paytonx.hsieh@intel.com>
57 lines
1.6 KiB
C
57 lines
1.6 KiB
C
/** @file
|
|
UART Serial Port library functions.
|
|
|
|
Copyright (c) 2023, Intel Corporation. All rights reserved.<BR>
|
|
SPDX-License-Identifier: BSD-2-Clause-Patent
|
|
|
|
**/
|
|
#include <Uefi.h>
|
|
|
|
extern BOOLEAN mBaseSerialPortLibHobAtRuntime;
|
|
|
|
/**
|
|
Set mSerialIoUartLibAtRuntime flag as TRUE after ExitBootServices.
|
|
|
|
@param[in] Event The Event that is being processed.
|
|
@param[in] Context The Event Context.
|
|
|
|
**/
|
|
STATIC
|
|
VOID
|
|
EFIAPI
|
|
BaseSerialPortLibHobExitBootServicesEvent (
|
|
IN EFI_EVENT Event,
|
|
IN VOID *Context
|
|
)
|
|
{
|
|
mBaseSerialPortLibHobAtRuntime = TRUE;
|
|
}
|
|
|
|
/**
|
|
The constructor function registers a callback for the ExitBootServices event.
|
|
|
|
@param[in] ImageHandle The firmware allocated handle for the EFI image.
|
|
@param[in] SystemTable A pointer to the EFI System Table.
|
|
|
|
@retval EFI_SUCCESS The operation completed successfully.
|
|
@retval other Either the serial port failed to initialize or the
|
|
ExitBootServices event callback registration failed.
|
|
**/
|
|
EFI_STATUS
|
|
EFIAPI
|
|
DxeBaseSerialPortLibHobConstructor (
|
|
IN EFI_HANDLE ImageHandle,
|
|
IN EFI_SYSTEM_TABLE *SystemTable
|
|
)
|
|
{
|
|
EFI_EVENT SerialPortLibHobExitBootServicesEvent;
|
|
|
|
return SystemTable->BootServices->CreateEvent (
|
|
EVT_SIGNAL_EXIT_BOOT_SERVICES,
|
|
TPL_NOTIFY,
|
|
BaseSerialPortLibHobExitBootServicesEvent,
|
|
NULL,
|
|
&SerialPortLibHobExitBootServicesEvent
|
|
);
|
|
}
|