Skip to content

Commit

Permalink
ArmPlatformPkg/PL011UartLib: Check PID2 if FiFoDepth is zero
Browse files Browse the repository at this point in the history
PL011UartLib determines its FIFO depth based on the PID2 value but
the register PID2 is not mandatory as per the SBSA spec.
This change won't check PID2 if PcdUartDefaultReceiveFifoDepth is set
to a value > 0.

Signed-off-by: Irene Park <[email protected]>
Reviewed-by: Ard Biesheuvel <[email protected]>
  • Loading branch information
ipark7512 authored and mergify[bot] committed Jul 2, 2020
1 parent 00217f1 commit c8edb70
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
10 changes: 7 additions & 3 deletions ArmPlatformPkg/Library/PL011UartLib/PL011UartLib.c
Original file line number Diff line number Diff line change
Expand Up @@ -78,10 +78,14 @@ PL011UartInitializePort (
UINT32 Integer;
UINT32 Fractional;
UINT32 HardwareFifoDepth;
UINT32 UartPid2;

HardwareFifoDepth = FixedPcdGet16 (PcdUartDefaultReceiveFifoDepth);
if (HardwareFifoDepth == 0) {
UartPid2 = MmioRead32 (UartBase + UARTPID2);
HardwareFifoDepth = (PL011_UARTPID2_VER (UartPid2) > PL011_VER_R1P4) ? 32 : 16;
}

HardwareFifoDepth = (PL011_UARTPID2_VER (MmioRead32 (UartBase + UARTPID2)) \
> PL011_VER_R1P4) \
? 32 : 16 ;
// The PL011 supports a buffer of 1, 16 or 32 chars. Therefore we can accept
// 1 char buffer as the minimum FIFO size. Because everything can be rounded
// down, there is no maximum FIFO size.
Expand Down
1 change: 1 addition & 0 deletions ArmPlatformPkg/Library/PL011UartLib/PL011UartLib.inf
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
ArmPlatformPkg/ArmPlatformPkg.dec

[FixedPcd]
gEfiMdePkgTokenSpaceGuid.PcdUartDefaultReceiveFifoDepth
gEfiMdeModulePkgTokenSpaceGuid.PcdSerialBaudRate

gArmPlatformTokenSpaceGuid.PL011UartInteger
Expand Down

0 comments on commit c8edb70

Please sign in to comment.