mirror of
https://github.com/CloverHackyColor/CloverBootloader.git
synced 2024-12-01 12:53:27 +01:00
84f41b2b58
Signed-off-by: Slice <sergey.slice@gmail.com>
24 lines
300 B
C
24 lines
300 B
C
/** @file
|
|
|
|
Copyright 2018 NXP
|
|
|
|
SPDX-License-Identifier: BSD-2-Clause-Patent
|
|
|
|
**/
|
|
|
|
#include <Base.h>
|
|
|
|
/**
|
|
Return clock in for PL011 Uart IP
|
|
|
|
@return Pcd PL011UartClkInHz
|
|
**/
|
|
UINT32
|
|
EFIAPI
|
|
PL011UartClockGetFreq (
|
|
VOID
|
|
)
|
|
{
|
|
return FixedPcdGet32 (PL011UartClkInHz);
|
|
}
|