Revision: 16857
http://sourceforge.net/p/edk2/code/16857
Author: hwu1225
Date: 2015-02-13 05:27:21 +0000 (Fri, 13 Feb 2015)
Log Message:
-----------
IntelFspWrapperPkg: Refine the format of meta data files.
(Sync patch r16623 from main trunk.)
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Shumin Qiu <[email protected]>
Reviewed-by: Jiewen Yao <[email protected]>
Revision Links:
--------------
http://sourceforge.net/p/edk2/code/16623
Modified Paths:
--------------
branches/UDK2014.SP1/IntelFspWrapperPkg/FspNotifyDxe/FspNotifyDxe.inf
branches/UDK2014.SP1/IntelFspWrapperPkg/FspWrapperSecCore/FspWrapperSecCore.inf
branches/UDK2014.SP1/IntelFspWrapperPkg/IntelFspWrapperPkg.dec
branches/UDK2014.SP1/IntelFspWrapperPkg/IntelFspWrapperPkg.dsc
branches/UDK2014.SP1/IntelFspWrapperPkg/Library/BaseFspApiLib/BaseFspApiLib.inf
branches/UDK2014.SP1/IntelFspWrapperPkg/Library/BaseFspPlatformInfoLibSample/BaseFspPlatformInfoLibSample.inf
branches/UDK2014.SP1/IntelFspWrapperPkg/Library/PeiFspHobProcessLibSample/PeiFspHobProcessLibSample.inf
branches/UDK2014.SP1/IntelFspWrapperPkg/Library/SecPeiFspPlatformSecLibSample/SecPeiFspPlatformSecLibSample.inf
Modified: branches/UDK2014.SP1/IntelFspWrapperPkg/FspNotifyDxe/FspNotifyDxe.inf
===================================================================
--- branches/UDK2014.SP1/IntelFspWrapperPkg/FspNotifyDxe/FspNotifyDxe.inf
2015-02-13 05:25:55 UTC (rev 16856)
+++ branches/UDK2014.SP1/IntelFspWrapperPkg/FspNotifyDxe/FspNotifyDxe.inf
2015-02-13 05:27:21 UTC (rev 16857)
@@ -3,7 +3,7 @@
#
# This driver will register two callbacks to call fsp's notifies.
#
-# Copyright (c) 2014, Intel Corporation. All rights reserved.<BR>
+# Copyright (c) 2014 - 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
@@ -45,11 +45,11 @@
FspApiLib
[Protocols]
- gEfiPciEnumerationCompleteProtocolGuid
+ gEfiPciEnumerationCompleteProtocolGuid ## CONSUMES
[Pcd]
- gFspWrapperTokenSpaceGuid.PcdFlashFvFspBase
- gFspWrapperTokenSpaceGuid.PcdFlashFvFspSize
+ gFspWrapperTokenSpaceGuid.PcdFlashFvFspBase ## CONSUMES
+ gFspWrapperTokenSpaceGuid.PcdFlashFvFspSize ## CONSUMES
[Depex]
TRUE
Modified:
branches/UDK2014.SP1/IntelFspWrapperPkg/FspWrapperSecCore/FspWrapperSecCore.inf
===================================================================
---
branches/UDK2014.SP1/IntelFspWrapperPkg/FspWrapperSecCore/FspWrapperSecCore.inf
2015-02-13 05:25:55 UTC (rev 16856)
+++
branches/UDK2014.SP1/IntelFspWrapperPkg/FspWrapperSecCore/FspWrapperSecCore.inf
2015-02-13 05:27:21 UTC (rev 16857)
@@ -1,7 +1,7 @@
## @file
# This is the first module taking control of the platform upon power-on/reset.
#
-# Copyright (c) 2014, Intel Corporation. All rights reserved.<BR>
+# Copyright (c) 2014 - 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
@@ -57,10 +57,10 @@
PeCoffExtraActionLib
[Ppis]
- gTopOfTemporaryRamPpiGuid
+ gTopOfTemporaryRamPpiGuid ## CONSUMES
[FixedPcd]
- gFspWrapperTokenSpaceGuid.PcdSecCoreMaxPpiSupported
+ gFspWrapperTokenSpaceGuid.PcdSecCoreMaxPpiSupported ## CONSUMES
[Pcd]
- gFspWrapperTokenSpaceGuid.PcdPeiTemporaryRamStackSize
+ gFspWrapperTokenSpaceGuid.PcdPeiTemporaryRamStackSize ## CONSUMES
Modified: branches/UDK2014.SP1/IntelFspWrapperPkg/IntelFspWrapperPkg.dec
===================================================================
--- branches/UDK2014.SP1/IntelFspWrapperPkg/IntelFspWrapperPkg.dec
2015-02-13 05:25:55 UTC (rev 16856)
+++ branches/UDK2014.SP1/IntelFspWrapperPkg/IntelFspWrapperPkg.dec
2015-02-13 05:27:21 UTC (rev 16857)
@@ -1,8 +1,7 @@
## @file
-#
# Provides drivers and definitions to support fsp in EDKII bios.
#
-# Copyright (c) 2014, Intel Corporation. All rights reserved.<BR>
+# Copyright (c) 2014 - 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 that accompanies this
distribution.
# The full text of the license may be found at
Modified: branches/UDK2014.SP1/IntelFspWrapperPkg/IntelFspWrapperPkg.dsc
===================================================================
--- branches/UDK2014.SP1/IntelFspWrapperPkg/IntelFspWrapperPkg.dsc
2015-02-13 05:25:55 UTC (rev 16856)
+++ branches/UDK2014.SP1/IntelFspWrapperPkg/IntelFspWrapperPkg.dsc
2015-02-13 05:27:21 UTC (rev 16857)
@@ -1,8 +1,7 @@
## @file
-#
# Provides drivers and definitions to support fsp in EDKII bios.
#
-# Copyright (c) 2014, Intel Corporation. All rights reserved.<BR>
+# Copyright (c) 2014 - 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 that accompanies this
distribution.
# The full text of the license may be found at
Modified:
branches/UDK2014.SP1/IntelFspWrapperPkg/Library/BaseFspApiLib/BaseFspApiLib.inf
===================================================================
---
branches/UDK2014.SP1/IntelFspWrapperPkg/Library/BaseFspApiLib/BaseFspApiLib.inf
2015-02-13 05:25:55 UTC (rev 16856)
+++
branches/UDK2014.SP1/IntelFspWrapperPkg/Library/BaseFspApiLib/BaseFspApiLib.inf
2015-02-13 05:27:21 UTC (rev 16857)
@@ -1,7 +1,7 @@
## @file
# Provide FSP API related function.
#
-# Copyright (c) 2014, Intel Corporation. All rights reserved.<BR>
+# Copyright (c) 2014 - 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
@@ -64,4 +64,4 @@
BaseLib
[Guids]
- gFspHeaderFileGuid
+ gFspHeaderFileGuid ## CONSUMES ## GUID
Modified:
branches/UDK2014.SP1/IntelFspWrapperPkg/Library/BaseFspPlatformInfoLibSample/BaseFspPlatformInfoLibSample.inf
===================================================================
---
branches/UDK2014.SP1/IntelFspWrapperPkg/Library/BaseFspPlatformInfoLibSample/BaseFspPlatformInfoLibSample.inf
2015-02-13 05:25:55 UTC (rev 16856)
+++
branches/UDK2014.SP1/IntelFspWrapperPkg/Library/BaseFspPlatformInfoLibSample/BaseFspPlatformInfoLibSample.inf
2015-02-13 05:27:21 UTC (rev 16857)
@@ -1,7 +1,7 @@
## @file
# Sample to provide FSP platform information related function.
#
-# Copyright (c) 2014, Intel Corporation. All rights reserved.<BR>
+# Copyright (c) 2014 - 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
@@ -57,5 +57,5 @@
[LibraryClasses]
[Pcd]
- gFspWrapperTokenSpaceGuid.PcdTemporaryRamBase
- gFspWrapperTokenSpaceGuid.PcdTemporaryRamSize
+ gFspWrapperTokenSpaceGuid.PcdTemporaryRamBase ## CONSUMES
+ gFspWrapperTokenSpaceGuid.PcdTemporaryRamSize ## CONSUMES
Modified:
branches/UDK2014.SP1/IntelFspWrapperPkg/Library/PeiFspHobProcessLibSample/PeiFspHobProcessLibSample.inf
===================================================================
---
branches/UDK2014.SP1/IntelFspWrapperPkg/Library/PeiFspHobProcessLibSample/PeiFspHobProcessLibSample.inf
2015-02-13 05:25:55 UTC (rev 16856)
+++
branches/UDK2014.SP1/IntelFspWrapperPkg/Library/PeiFspHobProcessLibSample/PeiFspHobProcessLibSample.inf
2015-02-13 05:27:21 UTC (rev 16857)
@@ -1,7 +1,7 @@
## @file
# Sample to provide FSP hob process related function.
#
-# Copyright (c) 2014, Intel Corporation. All rights reserved.<BR>
+# Copyright (c) 2014 - 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
@@ -64,12 +64,12 @@
PeiServicesTablePointerLib
[Pcd]
- gFspWrapperTokenSpaceGuid.PcdPeiMinMemSize
- gFspWrapperTokenSpaceGuid.PcdPeiRecoveryMinMemSize
+ gFspWrapperTokenSpaceGuid.PcdPeiMinMemSize ## CONSUMES
+ gFspWrapperTokenSpaceGuid.PcdPeiRecoveryMinMemSize ## CONSUMES
[Guids]
- gFspReservedMemoryResourceHobGuid
- gEfiMemoryTypeInformationGuid
+ gFspReservedMemoryResourceHobGuid ## CONSUMES ## HOB
+ gEfiMemoryTypeInformationGuid ## CONSUMES ## GUID
[Ppis]
- gPeiCapsulePpiGuid
+ gPeiCapsulePpiGuid ## CONSUMES
Modified:
branches/UDK2014.SP1/IntelFspWrapperPkg/Library/SecPeiFspPlatformSecLibSample/SecPeiFspPlatformSecLibSample.inf
===================================================================
---
branches/UDK2014.SP1/IntelFspWrapperPkg/Library/SecPeiFspPlatformSecLibSample/SecPeiFspPlatformSecLibSample.inf
2015-02-13 05:25:55 UTC (rev 16856)
+++
branches/UDK2014.SP1/IntelFspWrapperPkg/Library/SecPeiFspPlatformSecLibSample/SecPeiFspPlatformSecLibSample.inf
2015-02-13 05:27:21 UTC (rev 16857)
@@ -1,7 +1,7 @@
## @file
# Sample to provide FSP wrapper platform sec related function.
#
-# Copyright (c) 2014, Intel Corporation. All rights reserved.<BR>
+# Copyright (c) 2014 - 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
@@ -76,18 +76,18 @@
LocalApicLib
[Ppis]
- gEfiSecPlatformInformationPpiGuid
- gPeiSecPerformancePpiGuid
- gEfiTemporaryRamSupportPpiGuid
+ gEfiSecPlatformInformationPpiGuid ## CONSUMES
+ gPeiSecPerformancePpiGuid ## CONSUMES
+ gEfiTemporaryRamSupportPpiGuid ## CONSUMES
[Pcd]
- gFspWrapperTokenSpaceGuid.PcdPeiTemporaryRamStackSize
- gFspWrapperTokenSpaceGuid.PcdFlashFvFspBase
- gFspWrapperTokenSpaceGuid.PcdFlashFvFspSize
+ gFspWrapperTokenSpaceGuid.PcdPeiTemporaryRamStackSize ## CONSUMES
+ gFspWrapperTokenSpaceGuid.PcdFlashFvFspBase ## CONSUMES
+ gFspWrapperTokenSpaceGuid.PcdFlashFvFspSize ## CONSUMES
[FixedPcd]
- gFspWrapperTokenSpaceGuid.PcdCpuMicrocodePatchAddress
- gFspWrapperTokenSpaceGuid.PcdCpuMicrocodePatchRegionSize
- gFspWrapperTokenSpaceGuid.PcdFlashMicroCodeOffset
- gFspWrapperTokenSpaceGuid.PcdFlashCodeCacheAddress
- gFspWrapperTokenSpaceGuid.PcdFlashCodeCacheSize
+ gFspWrapperTokenSpaceGuid.PcdCpuMicrocodePatchAddress ## CONSUMES
+ gFspWrapperTokenSpaceGuid.PcdCpuMicrocodePatchRegionSize ## CONSUMES
+ gFspWrapperTokenSpaceGuid.PcdFlashMicroCodeOffset ## CONSUMES
+ gFspWrapperTokenSpaceGuid.PcdFlashCodeCacheAddress ## CONSUMES
+ gFspWrapperTokenSpaceGuid.PcdFlashCodeCacheSize ## CONSUMES
------------------------------------------------------------------------------
Dive into the World of Parallel Programming. The Go Parallel Website,
sponsored by Intel and developed in partnership with Slashdot Media, is your
hub for all things parallel software development, from weekly thought
leadership blogs to news, videos, case studies, tutorials and more. Take a
look and join the conversation now. http://goparallel.sourceforge.net/
_______________________________________________
edk2-commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/edk2-commits