mirror of https://github.com/acidanthera/audk.git
Added 2 new PCDs for minimal and maximal valid year in RTC.
Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Elvin Li <elvin.li@intel.com> Reviewed-by: Liming Gao <liming.gao@intel.com> git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@16642 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
d47da78669
commit
1e5fff631b
|
@ -4,7 +4,7 @@
|
||||||
# This package is designed to public interfaces and implementation which follows
|
# This package is designed to public interfaces and implementation which follows
|
||||||
# PcAt defacto standard.
|
# PcAt defacto standard.
|
||||||
#
|
#
|
||||||
# Copyright (c) 2009 - 2014, Intel Corporation. All rights reserved.<BR>
|
# Copyright (c) 2009 - 2015, Intel Corporation. All rights reserved.<BR>
|
||||||
#
|
#
|
||||||
# This program and the accompanying materials
|
# This program and the accompanying materials
|
||||||
# are licensed and made available under the terms and conditions of the BSD License
|
# are licensed and made available under the terms and conditions of the BSD License
|
||||||
|
@ -117,6 +117,14 @@
|
||||||
# @Prompt IO APIC base address.
|
# @Prompt IO APIC base address.
|
||||||
gPcAtChipsetPkgTokenSpaceGuid.PcdIoApicBaseAddress|0xFEC00000|UINT32|0x0000000C
|
gPcAtChipsetPkgTokenSpaceGuid.PcdIoApicBaseAddress|0xFEC00000|UINT32|0x0000000C
|
||||||
|
|
||||||
|
## This PCD specifies the minimal valid year in RTC.
|
||||||
|
# @Prompt Minimal valid year in RTC.
|
||||||
|
gPcAtChipsetPkgTokenSpaceGuid.PcdMinimalValidYear|1998|UINT16|0x0000000D
|
||||||
|
|
||||||
|
## This PCD specifies the maximal valid year in RTC.
|
||||||
|
# @Prompt Maximal valid year in RTC.
|
||||||
|
gPcAtChipsetPkgTokenSpaceGuid.PcdMaximalValidYear|2099|UINT16|0x0000000E
|
||||||
|
|
||||||
[PcdsFixedAtBuild, PcdsPatchableInModule]
|
[PcdsFixedAtBuild, PcdsPatchableInModule]
|
||||||
## Defines the ACPI register set base address.
|
## Defines the ACPI register set base address.
|
||||||
# The invalid 0xFFFF is as its default value. It must be configured to the real value.
|
# The invalid 0xFFFF is as its default value. It must be configured to the real value.
|
||||||
|
|
Binary file not shown.
|
@ -1,7 +1,7 @@
|
||||||
/** @file
|
/** @file
|
||||||
RTC Architectural Protocol GUID as defined in DxeCis 0.96.
|
RTC Architectural Protocol GUID as defined in DxeCis 0.96.
|
||||||
|
|
||||||
Copyright (c) 2006 - 2014, Intel Corporation. All rights reserved.<BR>
|
Copyright (c) 2006 - 2015, Intel Corporation. All rights reserved.<BR>
|
||||||
This program and the accompanying materials
|
This program and the accompanying materials
|
||||||
are licensed and made available under the terms and conditions of the BSD License
|
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
|
which accompanies this distribution. The full text of the license may be found at
|
||||||
|
@ -955,8 +955,8 @@ RtcTimeFieldsValid (
|
||||||
IN EFI_TIME *Time
|
IN EFI_TIME *Time
|
||||||
)
|
)
|
||||||
{
|
{
|
||||||
if (Time->Year < 1998 ||
|
if (Time->Year < PcdGet16 (PcdMinimalValidYear) ||
|
||||||
Time->Year > 2099 ||
|
Time->Year > PcdGet16 (PcdMaximalValidYear) ||
|
||||||
Time->Month < 1 ||
|
Time->Month < 1 ||
|
||||||
Time->Month > 12 ||
|
Time->Month > 12 ||
|
||||||
(!DayValid (Time)) ||
|
(!DayValid (Time)) ||
|
||||||
|
|
|
@ -38,6 +38,7 @@
|
||||||
[Packages]
|
[Packages]
|
||||||
MdePkg/MdePkg.dec
|
MdePkg/MdePkg.dec
|
||||||
MdeModulePkg/MdeModulePkg.dec
|
MdeModulePkg/MdeModulePkg.dec
|
||||||
|
PcAtChipsetPkg/PcAtChipsetPkg.dec
|
||||||
|
|
||||||
[LibraryClasses]
|
[LibraryClasses]
|
||||||
UefiRuntimeServicesTableLib
|
UefiRuntimeServicesTableLib
|
||||||
|
@ -61,5 +62,8 @@
|
||||||
|
|
||||||
[Pcd]
|
[Pcd]
|
||||||
gEfiMdeModulePkgTokenSpaceGuid.PcdRealTimeClockUpdateTimeout ## CONSUMES
|
gEfiMdeModulePkgTokenSpaceGuid.PcdRealTimeClockUpdateTimeout ## CONSUMES
|
||||||
|
gPcAtChipsetPkgTokenSpaceGuid.PcdMinimalValidYear ## CONSUMES
|
||||||
|
gPcAtChipsetPkgTokenSpaceGuid.PcdMaximalValidYear ## CONSUMES
|
||||||
|
|
||||||
[UserExtensions.TianoCore."ExtraFiles"]
|
[UserExtensions.TianoCore."ExtraFiles"]
|
||||||
PcRtcExtra.uni
|
PcRtcExtra.uni
|
||||||
|
|
Loading…
Reference in New Issue