mirror of
https://github.com/acidanthera/audk.git
synced 2025-08-21 01:28:13 +02:00
Introduce three new DebugLib instances, forked from MdePkg/Library/BaseDebugLibSerialPort. All three instances rely on PL011UartLib rather than SerialPortLib so that they can customize the PL011 UART that the debug messages are written to. All three instances direct the debug output to the first such PL011 UART that *differs* from the one specified in the Device Tree's /chosen node's "stdout-path" property. From these, DebugLibFdtPL011UartFlash mirrors EarlyFdtPL011SerialPortLib: it parses the initial Device Tree, and initializes the UART -- a UART different from EarlyFdtPL011SerialPortLib's -- for every message written. Suitable for SEC, PEI_CORE, PEIM. (Note that OVMF uses a similar set of dedicated DebugLib instances (PlatformDebugLibIoPort) for logging to the (x86-only) isa-debugcon device from various firmware phases.) The contexts in which these DebugLib instances run are identical to those in which the corresponding SerialPortLib instances run. The particular original dependency chain is BaseDebugLibSerialPort (SEC, PEI_CORE, PEIM) EarlyFdtPL011SerialPortLib PcdDeviceTreeInitialBaseAddress FdtSerialPortAddressLib PL011UartLib and the new dependency chain is DebugLibFdtPL011UartFlash (SEC, PEI_CORE, PEIM) PcdDeviceTreeInitialBaseAddress FdtSerialPortAddressLib PL011UartLib Note that EarlyFdtPL011SerialPortLib remains in use (just not via BaseDebugLibSerialPort), namely for direct SerialPortLib calls from SEC, PEI_CORE, PEIM. See for example commit 56035d1c8b25 ("ArmPlatformPkg/PrePeiCore: Print the firmware version early in boot", 2022-10-25). The ArmVirtPkg DSC files will be switched to the new library instances in a separate patch. This patch is worth viewing with "git show --find-copies-harder". Cc: Ard Biesheuvel <ardb+tianocore@kernel.org> Cc: Gerd Hoffmann <kraxel@redhat.com> Cc: Leif Lindholm <quic_llindhol@quicinc.com> Cc: Sami Mujawar <sami.mujawar@arm.com> Signed-off-by: Laszlo Ersek <lersek@redhat.com> Message-Id: <20231008153912.175941-7-lersek@redhat.com> Acked-by: Ard Biesheuvel <ardb@kernel.org> Ref: https://bugzilla.tianocore.org/show_bug.cgi?id=4577 [lersek@redhat.com: add TianoCore BZ reference]
55 lines
1.6 KiB
INI
55 lines
1.6 KiB
INI
## @file
|
|
# DebugLib instance that produces debug output directly via PL011UartLib.
|
|
#
|
|
# If there are at least two PL011 UARTs in the device tree, and the /chosen
|
|
# node's "stdout-path" property references one PL011 UART, then both raw
|
|
# SerialPortLib IO, and -- via SerialDxe -- UEFI console IO, will occur on that
|
|
# UART; and this DebugLib instance will produce output on a *different* UART.
|
|
#
|
|
# This instance is suitable for modules that may run from flash or RAM.
|
|
#
|
|
# Copyright (C) Red Hat
|
|
#
|
|
# SPDX-License-Identifier: BSD-2-Clause-Patent
|
|
##
|
|
|
|
[Defines]
|
|
INF_VERSION = 1.27
|
|
BASE_NAME = DebugLibFdtPL011UartFlash
|
|
FILE_GUID = 43A4C56B-D071-4CE0-A157-9D59E6161DEC
|
|
MODULE_TYPE = BASE
|
|
VERSION_STRING = 1.0
|
|
LIBRARY_CLASS = DebugLib|SEC PEI_CORE PEIM
|
|
|
|
[Sources]
|
|
DebugLib.c
|
|
Flash.c
|
|
Write.h
|
|
|
|
[Packages]
|
|
ArmPlatformPkg/ArmPlatformPkg.dec
|
|
ArmVirtPkg/ArmVirtPkg.dec
|
|
MdePkg/MdePkg.dec
|
|
|
|
[LibraryClasses]
|
|
BaseLib
|
|
BaseMemoryLib
|
|
DebugPrintErrorLevelLib
|
|
FdtSerialPortAddressLib # Flash.c
|
|
PL011UartLib
|
|
PcdLib
|
|
PrintLib
|
|
|
|
[Pcd]
|
|
gArmVirtTokenSpaceGuid.PcdDeviceTreeInitialBaseAddress # Flash.c
|
|
gEfiMdePkgTokenSpaceGuid.PcdDebugClearMemoryValue
|
|
gEfiMdePkgTokenSpaceGuid.PcdDebugPropertyMask
|
|
gEfiMdePkgTokenSpaceGuid.PcdFixedDebugPrintErrorLevel
|
|
|
|
[FixedPcd]
|
|
gArmPlatformTokenSpaceGuid.PL011UartClkInHz
|
|
gEfiMdePkgTokenSpaceGuid.PcdUartDefaultBaudRate
|
|
gEfiMdePkgTokenSpaceGuid.PcdUartDefaultDataBits
|
|
gEfiMdePkgTokenSpaceGuid.PcdUartDefaultParity
|
|
gEfiMdePkgTokenSpaceGuid.PcdUartDefaultStopBits
|