Revision: 16642
          http://sourceforge.net/p/edk2/code/16642
Author:   li-elvin
Date:     2015-01-23 04:49:00 +0000 (Fri, 23 Jan 2015)
Log Message:
-----------
Added 2 new PCDs for minimal and maximal valid year in RTC.

Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Elvin Li <[email protected]>
Reviewed-by: Liming Gao <[email protected]>

Modified Paths:
--------------
    trunk/edk2/PcAtChipsetPkg/PcAtChipsetPkg.dec
    trunk/edk2/PcAtChipsetPkg/PcAtChipsetPkg.uni
    trunk/edk2/PcAtChipsetPkg/PcatRealTimeClockRuntimeDxe/PcRtc.c
    
trunk/edk2/PcAtChipsetPkg/PcatRealTimeClockRuntimeDxe/PcatRealTimeClockRuntimeDxe.inf

Modified: trunk/edk2/PcAtChipsetPkg/PcAtChipsetPkg.dec
===================================================================
--- trunk/edk2/PcAtChipsetPkg/PcAtChipsetPkg.dec        2015-01-22 07:43:04 UTC 
(rev 16641)
+++ trunk/edk2/PcAtChipsetPkg/PcAtChipsetPkg.dec        2015-01-23 04:49:00 UTC 
(rev 16642)
@@ -4,7 +4,7 @@
 # This package is designed to public interfaces and implementation which 
follows
 # 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
 # are licensed and made available under the terms and conditions of the BSD 
License
@@ -116,6 +116,14 @@
   ## This PCD specifies the base address of the IO APIC.
   # @Prompt IO APIC base address.
   
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]
   ## Defines the ACPI register set base address.

Modified: trunk/edk2/PcAtChipsetPkg/PcAtChipsetPkg.uni
===================================================================
--- trunk/edk2/PcAtChipsetPkg/PcAtChipsetPkg.uni        2015-01-22 07:43:04 UTC 
(rev 16641)
+++ trunk/edk2/PcAtChipsetPkg/PcAtChipsetPkg.uni        2015-01-23 04:49:00 UTC 
(rev 16642)
@@ -10,7 +10,7 @@
  - @@ -256,4 +256,16 @@
  -\ No newline at end of file
+++++++\ No newline at end of file

Modified: trunk/edk2/PcAtChipsetPkg/PcatRealTimeClockRuntimeDxe/PcRtc.c
===================================================================
--- trunk/edk2/PcAtChipsetPkg/PcatRealTimeClockRuntimeDxe/PcRtc.c       
2015-01-22 07:43:04 UTC (rev 16641)
+++ trunk/edk2/PcAtChipsetPkg/PcatRealTimeClockRuntimeDxe/PcRtc.c       
2015-01-23 04:49:00 UTC (rev 16642)
@@ -1,7 +1,7 @@
 /** @file
   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
 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
@@ -955,8 +955,8 @@
   IN EFI_TIME *Time
   )
 {
-  if (Time->Year < 1998 ||
-      Time->Year > 2099 ||
+  if (Time->Year < PcdGet16 (PcdMinimalValidYear) ||
+      Time->Year > PcdGet16 (PcdMaximalValidYear) ||
       Time->Month < 1 ||
       Time->Month > 12 ||
       (!DayValid (Time)) ||

Modified: 
trunk/edk2/PcAtChipsetPkg/PcatRealTimeClockRuntimeDxe/PcatRealTimeClockRuntimeDxe.inf
===================================================================
--- 
trunk/edk2/PcAtChipsetPkg/PcatRealTimeClockRuntimeDxe/PcatRealTimeClockRuntimeDxe.inf
       2015-01-22 07:43:04 UTC (rev 16641)
+++ 
trunk/edk2/PcAtChipsetPkg/PcatRealTimeClockRuntimeDxe/PcatRealTimeClockRuntimeDxe.inf
       2015-01-23 04:49:00 UTC (rev 16642)
@@ -38,6 +38,7 @@
 [Packages]
   MdePkg/MdePkg.dec
   MdeModulePkg/MdeModulePkg.dec
+  PcAtChipsetPkg/PcAtChipsetPkg.dec
 
 [LibraryClasses]
   UefiRuntimeServicesTableLib
@@ -61,5 +62,8 @@
   
 [Pcd]
   gEfiMdeModulePkgTokenSpaceGuid.PcdRealTimeClockUpdateTimeout  ## CONSUMES
+  gPcAtChipsetPkgTokenSpaceGuid.PcdMinimalValidYear             ## CONSUMES
+  gPcAtChipsetPkgTokenSpaceGuid.PcdMaximalValidYear             ## CONSUMES
+
 [UserExtensions.TianoCore."ExtraFiles"]
   PcRtcExtra.uni


------------------------------------------------------------------------------
New Year. New Location. New Benefits. New Data Center in Ashburn, VA.
GigeNET is offering a free month of service with a new server in Ashburn.
Choose from 2 high performing configs, both with 100TB of bandwidth.
Higher redundancy.Lower latency.Increased capacity.Completely compliant.
http://p.sf.net/sfu/gigenet
_______________________________________________
edk2-commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/edk2-commits

Reply via email to