Juno has several serial ports, one of which may be used for a remote debug interface (e.g. gdb, WinDbg). The debug serial port needs to be distinct from that used for UEFI trace to prevent corruption of debugger protocol messaging. The UEFI spec requires that serial devices be initialised to default settings. (11.8 Serial I/O Protocol - "The default attributes for all UART-style serial device interfaces are: 115,200 baud, ..." and 17.3.3 EFI Debugport Variable - "These defaults must be used in the absence of a DEBUGPORT variable...") This change adds initialization of the serial device reported in the ACPI DBG2 table. The initialisation is done early in the boot to allow the possibility of remote debug of UEFI itself. NOTE: This is functionally dependent on the DBG2 table being updated in OpenPlatformPkg, but is required as a precursor to that change. Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Sami Mujawar <sami.mujawar@arm.com> Signed-off-by: Evan Lloyd <evan.lloyd@arm.com> Tested-by: Ryan Harkin <ryan.harkin@linaro.org> Reviewed-by: Leif Lindholm <leif.lindholm@linaro.org>
81 lines
2.2 KiB
INI
81 lines
2.2 KiB
INI
#
|
|
# Copyright (c) 2013-2016, ARM Limited. All rights reserved.
|
|
#
|
|
# This program and the accompanying materials
|
|
# are licensed and made available under the terms and conditions of the BSD License
|
|
# which accompanies this distribution. The full text of the license may be found at
|
|
# http://opensource.org/licenses/bsd-license.php
|
|
#
|
|
# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
|
#
|
|
|
|
[Defines]
|
|
INF_VERSION = 0x00010005
|
|
BASE_NAME = ArmJunoLib
|
|
FILE_GUID = 87c525cd-e1a2-469e-994c-c28cd0c7bd0d
|
|
MODULE_TYPE = BASE
|
|
VERSION_STRING = 1.0
|
|
LIBRARY_CLASS = ArmPlatformLib
|
|
|
|
[Packages]
|
|
MdePkg/MdePkg.dec
|
|
MdeModulePkg/MdeModulePkg.dec
|
|
EmbeddedPkg/EmbeddedPkg.dec
|
|
ArmPkg/ArmPkg.dec
|
|
ArmPlatformPkg/ArmPlatformPkg.dec
|
|
ArmPlatformPkg/ArmJunoPkg/ArmJuno.dec
|
|
|
|
[LibraryClasses]
|
|
IoLib
|
|
ArmLib
|
|
HobLib
|
|
MemoryAllocationLib
|
|
SerialPortLib
|
|
|
|
[Sources.common]
|
|
ArmJuno.c
|
|
ArmJunoMem.c
|
|
|
|
[Sources.AARCH64]
|
|
AArch64/ArmJunoHelper.S
|
|
|
|
[Sources.ARM]
|
|
Arm/ArmJunoHelper.S | GCC
|
|
|
|
[FeaturePcd]
|
|
gEmbeddedTokenSpaceGuid.PcdCacheEnable
|
|
|
|
[FixedPcd]
|
|
gArmTokenSpaceGuid.PcdSystemMemoryBase
|
|
gArmTokenSpaceGuid.PcdSystemMemorySize
|
|
gArmTokenSpaceGuid.PcdFvBaseAddress
|
|
|
|
gArmTokenSpaceGuid.PcdArmPrimaryCoreMask
|
|
|
|
gArmJunoTokenSpaceGuid.PcdPcieControlBaseAddress
|
|
gArmJunoTokenSpaceGuid.PcdPciConfigurationSpaceBaseAddress
|
|
gArmJunoTokenSpaceGuid.PcdPciConfigurationSpaceSize
|
|
|
|
|
|
#
|
|
# PL011 Serial Debug UART
|
|
#
|
|
gArmPlatformTokenSpaceGuid.PcdSerialDbgRegisterBase
|
|
gArmPlatformTokenSpaceGuid.PcdSerialDbgUartBaudRate
|
|
gArmPlatformTokenSpaceGuid.PcdSerialDbgUartClkInHz
|
|
|
|
gEfiMdePkgTokenSpaceGuid.PcdUartDefaultBaudRate
|
|
gEfiMdePkgTokenSpaceGuid.PcdUartDefaultDataBits
|
|
gEfiMdePkgTokenSpaceGuid.PcdUartDefaultParity
|
|
gEfiMdePkgTokenSpaceGuid.PcdUartDefaultStopBits
|
|
|
|
[Pcd]
|
|
gArmTokenSpaceGuid.PcdPciMmio32Base
|
|
gArmTokenSpaceGuid.PcdPciMmio32Size
|
|
gArmTokenSpaceGuid.PcdPciMmio64Base
|
|
gArmTokenSpaceGuid.PcdPciMmio64Size
|
|
|
|
[Ppis]
|
|
gArmMpCoreInfoPpiGuid
|