mirror of
https://github.com/acidanthera/audk.git
synced 2025-08-20 09:08:10 +02:00
The Rtc library for the kvmtool guest firmware configures the RTC controller address range as runtime memory by calling the gDS->SetMemorySpaceAttributes(). The SetMemorySpaceAttributes() function has a dependency on the CPU Arch Protocol. If the CPU Arch Protocol is not installed the call to set the memory attributes fails with error code EFI_NOT_AVAILABLE_YET. Therefore, set the library dependency on the CPU Arch protocol. Reviewed-by: Ard Biesheuvel <ardb@kernel.org> Reviewed-by: Pierre Gondois <pierre.gondois@arm.com> Signed-off-by: Sami Mujawar <sami.mujawar@arm.com>
44 lines
1.2 KiB
INI
44 lines
1.2 KiB
INI
## @file
|
|
# FDT client library for motorola,mc146818 RTC driver
|
|
#
|
|
# Copyright (c) 2020 - 2023, ARM Limited. All rights reserved.<BR>
|
|
#
|
|
# SPDX-License-Identifier: BSD-2-Clause-Patent
|
|
#
|
|
##
|
|
|
|
[Defines]
|
|
INF_VERSION = 0x0001001B
|
|
BASE_NAME = KvmtoolRtcFdtClientLib
|
|
FILE_GUID = 3254B4F7-30B5-48C6-B06A-D8FF97F3EF95
|
|
MODULE_TYPE = DXE_DRIVER
|
|
VERSION_STRING = 1.0
|
|
LIBRARY_CLASS = KvmtoolRtcFdtClientLib|DXE_DRIVER DXE_RUNTIME_DRIVER
|
|
CONSTRUCTOR = KvmtoolRtcFdtClientLibConstructor
|
|
|
|
[Sources]
|
|
KvmtoolRtcFdtClientLib.c
|
|
|
|
[Packages]
|
|
ArmVirtPkg/ArmVirtPkg.dec
|
|
EmbeddedPkg/EmbeddedPkg.dec
|
|
MdePkg/MdePkg.dec
|
|
PcAtChipsetPkg/PcAtChipsetPkg.dec
|
|
|
|
[LibraryClasses]
|
|
BaseLib
|
|
DebugLib
|
|
PcdLib
|
|
UefiBootServicesTableLib
|
|
DxeServicesTableLib
|
|
|
|
[Protocols]
|
|
gFdtClientProtocolGuid ## CONSUMES
|
|
|
|
[Pcd]
|
|
gPcAtChipsetPkgTokenSpaceGuid.PcdRtcIndexRegister64
|
|
gPcAtChipsetPkgTokenSpaceGuid.PcdRtcTargetRegister64
|
|
|
|
[Depex]
|
|
gFdtClientProtocolGuid AND gEfiCpuArchProtocolGuid
|