mirror of
https://github.com/acidanthera/audk.git
synced 2025-07-29 00:24:07 +02:00
IntelFspPkg: Refine the format of meta data files.
Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Shumin Qiu <shumin.qiu@intel.com> Reviewed-by: Jiewen Yao <jiewen.yao@intel.com> git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@16622 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
aaedfe3c12
commit
b34eb19083
@ -1,6 +1,7 @@
|
|||||||
## @file
|
## @file
|
||||||
|
# PEIM for DXE IPL
|
||||||
#
|
#
|
||||||
# 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
|
# 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
|
||||||
@ -53,17 +54,17 @@
|
|||||||
[Ppis]
|
[Ppis]
|
||||||
gEfiDxeIplPpiGuid ## PRODUCES
|
gEfiDxeIplPpiGuid ## PRODUCES
|
||||||
gEfiEndOfPeiSignalPpiGuid ## SOMETIMES_PRODUCES(Not produced on S3 boot path)
|
gEfiEndOfPeiSignalPpiGuid ## SOMETIMES_PRODUCES(Not produced on S3 boot path)
|
||||||
gEfiPeiDecompressPpiGuid
|
gEfiPeiDecompressPpiGuid ## CONSUMES
|
||||||
|
|
||||||
[Protocols]
|
[Protocols]
|
||||||
gEfiPciEnumerationCompleteProtocolGuid # ALWAYS_PRODUCED
|
gEfiPciEnumerationCompleteProtocolGuid ## PRODUCES
|
||||||
|
|
||||||
[Guids]
|
[Guids]
|
||||||
gEfiEventReadyToBootGuid # ALWAYS_PRODUCED
|
gEfiEventReadyToBootGuid ## PRODUCES ## Event
|
||||||
|
|
||||||
[FixedPcd]
|
[FixedPcd]
|
||||||
gIntelFspPkgTokenSpaceGuid.PcdFspMaxPatchEntry
|
gIntelFspPkgTokenSpaceGuid.PcdFspMaxPatchEntry ## CONSUMES
|
||||||
gIntelFspPkgTokenSpaceGuid.PcdFspMaxPerfEntry
|
gIntelFspPkgTokenSpaceGuid.PcdFspMaxPerfEntry ## CONSUMES
|
||||||
|
|
||||||
[Depex]
|
[Depex]
|
||||||
gEfiPeiMemoryDiscoveredPpiGuid AND gEfiPeiLoadFilePpiGuid
|
gEfiPeiMemoryDiscoveredPpiGuid AND gEfiPeiLoadFilePpiGuid
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
## @file
|
## @file
|
||||||
|
# Sec Core for FSP
|
||||||
#
|
#
|
||||||
# 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
|
# 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
|
||||||
@ -57,16 +58,16 @@
|
|||||||
FspCommonLib
|
FspCommonLib
|
||||||
|
|
||||||
[Pcd]
|
[Pcd]
|
||||||
gEfiMdePkgTokenSpaceGuid.PcdPciExpressBaseAddress
|
gEfiMdePkgTokenSpaceGuid.PcdPciExpressBaseAddress ## UNDEFINED
|
||||||
gIntelFspPkgTokenSpaceGuid.PcdGlobalDataPointerAddress
|
gIntelFspPkgTokenSpaceGuid.PcdGlobalDataPointerAddress ## CONSUMES
|
||||||
gIntelFspPkgTokenSpaceGuid.PcdTemporaryRamBase
|
gIntelFspPkgTokenSpaceGuid.PcdTemporaryRamBase ## CONSUMES
|
||||||
gIntelFspPkgTokenSpaceGuid.PcdTemporaryRamSize
|
gIntelFspPkgTokenSpaceGuid.PcdTemporaryRamSize ## CONSUMES
|
||||||
gIntelFspPkgTokenSpaceGuid.PcdFspTemporaryRamSize
|
gIntelFspPkgTokenSpaceGuid.PcdFspTemporaryRamSize ## CONSUMES
|
||||||
|
|
||||||
[FixedPcd]
|
[FixedPcd]
|
||||||
gIntelFspPkgTokenSpaceGuid.PcdFspMaxPatchEntry
|
gIntelFspPkgTokenSpaceGuid.PcdFspMaxPatchEntry ## CONSUMES
|
||||||
gIntelFspPkgTokenSpaceGuid.PcdFspMaxPerfEntry
|
gIntelFspPkgTokenSpaceGuid.PcdFspMaxPerfEntry ## CONSUMES
|
||||||
|
|
||||||
[Ppis]
|
[Ppis]
|
||||||
gEfiTemporaryRamSupportPpiGuid # PPI ALWAYS_PRODUCED
|
gEfiTemporaryRamSupportPpiGuid ## PRODUCES
|
||||||
|
|
||||||
|
@ -1,8 +1,7 @@
|
|||||||
## @file
|
## @file
|
||||||
#
|
|
||||||
# Provides driver and definitions to build fsp in EDKII bios.
|
# Provides driver and definitions to build 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
|
# 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 terms and conditions of the BSD License that accompanies this distribution.
|
||||||
# The full text of the license may be found at
|
# The full text of the license may be found at
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
## @file
|
## @file
|
||||||
|
# Provides driver and definitions to build 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
|
# 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 terms and conditions of the BSD License that accompanies this distribution.
|
||||||
# The full text of the license may be found at
|
# The full text of the license may be found at
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
## @file
|
## @file
|
||||||
|
# NULL instance of Base cache as RAM.
|
||||||
#
|
#
|
||||||
# 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
|
# 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
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
## @file
|
## @file
|
||||||
|
# Instance of BaseCache.
|
||||||
#
|
#
|
||||||
# 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
|
# 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
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
## @file
|
## @file
|
||||||
#
|
# Instance of FspCommonLib
|
||||||
# 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
|
# 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
|
||||||
@ -30,8 +30,8 @@
|
|||||||
BaseMemoryLib
|
BaseMemoryLib
|
||||||
|
|
||||||
[Pcd]
|
[Pcd]
|
||||||
gIntelFspPkgTokenSpaceGuid.PcdGlobalDataPointerAddress
|
gIntelFspPkgTokenSpaceGuid.PcdGlobalDataPointerAddress ## CONSUMES
|
||||||
|
|
||||||
[FixedPcd]
|
[FixedPcd]
|
||||||
gIntelFspPkgTokenSpaceGuid.PcdFspMaxPatchEntry
|
gIntelFspPkgTokenSpaceGuid.PcdFspMaxPatchEntry ## CONSUMES
|
||||||
gIntelFspPkgTokenSpaceGuid.PcdFspMaxPerfEntry
|
gIntelFspPkgTokenSpaceGuid.PcdFspMaxPerfEntry ## CONSUMES
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
## @file
|
## @file
|
||||||
|
# Instance of BaseFspDebugLib
|
||||||
#
|
#
|
||||||
# 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
|
# 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
|
||||||
@ -44,6 +45,6 @@
|
|||||||
DebugPrintErrorLevelLib
|
DebugPrintErrorLevelLib
|
||||||
|
|
||||||
[Pcd]
|
[Pcd]
|
||||||
gEfiMdePkgTokenSpaceGuid.PcdDebugClearMemoryValue
|
gEfiMdePkgTokenSpaceGuid.PcdDebugClearMemoryValue ## CONSUMES
|
||||||
gEfiMdePkgTokenSpaceGuid.PcdDebugPropertyMask
|
gEfiMdePkgTokenSpaceGuid.PcdDebugPropertyMask ## CONSUMES
|
||||||
|
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
## @file
|
## @file
|
||||||
|
# Instance of FspPlatformLib
|
||||||
#
|
#
|
||||||
# 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
|
# 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
|
||||||
@ -31,14 +32,14 @@
|
|||||||
BaseMemoryLib
|
BaseMemoryLib
|
||||||
|
|
||||||
[Pcd]
|
[Pcd]
|
||||||
gIntelFspPkgTokenSpaceGuid.PcdGlobalDataPointerAddress
|
gIntelFspPkgTokenSpaceGuid.PcdGlobalDataPointerAddress ## CONSUMES
|
||||||
gIntelFspPkgTokenSpaceGuid.PcdTemporaryRamBase
|
gIntelFspPkgTokenSpaceGuid.PcdTemporaryRamBase ## CONSUMES
|
||||||
gIntelFspPkgTokenSpaceGuid.PcdTemporaryRamSize
|
gIntelFspPkgTokenSpaceGuid.PcdTemporaryRamSize ## CONSUMES
|
||||||
gIntelFspPkgTokenSpaceGuid.PcdFspTemporaryRamSize
|
gIntelFspPkgTokenSpaceGuid.PcdFspTemporaryRamSize ## CONSUMES
|
||||||
|
|
||||||
[Guids]
|
[Guids]
|
||||||
gFspBootLoaderTemporaryMemoryGuid
|
gFspBootLoaderTemporaryMemoryGuid ## PRODUCES ## HOB
|
||||||
|
|
||||||
[FixedPcd]
|
[FixedPcd]
|
||||||
gIntelFspPkgTokenSpaceGuid.PcdFspMaxPatchEntry
|
gIntelFspPkgTokenSpaceGuid.PcdFspMaxPatchEntry ## CONSUMES
|
||||||
gIntelFspPkgTokenSpaceGuid.PcdFspMaxPerfEntry
|
gIntelFspPkgTokenSpaceGuid.PcdFspMaxPerfEntry ## CONSUMES
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
## @file
|
## @file
|
||||||
|
# Instance of BaseFspSwitchStackLib
|
||||||
#
|
#
|
||||||
# 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
|
# 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
|
||||||
@ -35,8 +36,8 @@
|
|||||||
IoLib
|
IoLib
|
||||||
|
|
||||||
[FixedPcd]
|
[FixedPcd]
|
||||||
gIntelFspPkgTokenSpaceGuid.PcdFspMaxPatchEntry
|
gIntelFspPkgTokenSpaceGuid.PcdFspMaxPatchEntry ## CONSUMES
|
||||||
gIntelFspPkgTokenSpaceGuid.PcdFspMaxPerfEntry
|
gIntelFspPkgTokenSpaceGuid.PcdFspMaxPerfEntry ## CONSUMES
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
## @file
|
## @file
|
||||||
|
# NULL instance of Platform Sec Lib.
|
||||||
#
|
#
|
||||||
# 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
|
# 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
|
||||||
|
Loading…
x
Reference in New Issue
Block a user