Now that the generic Variable Runtime DXE code no longer distinguishes between gEfiVariableGuid and gEfiAuthenticatedVariableGuid in the varstore FV header, we can relax the check in the NOR flash driver to accept either GUID regardless of whether we are running a secure boot capable build or not. This also means we can always use gEfiAuthenticatedVariableGuid when we encounter an empty NOR flash that needs to be initialized before use. So remove the mNorFlashVariableGuid global from the shared code and from both versions of NorFlashDxe.inf. This essentially collapses the two drivers into a single one, which means we can remove NorFlashAuthenticatedDxe entirely in a subsequent patch. Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Ard Biesheuvel <ard.biesheuvel@linaro.org> Reviewed-by: Laszlo Ersek <lersek@redhat.com> Reviewed-by: Leif Lindholm <leif.lindholm@linaro.org>
74 lines
2.1 KiB
INI
74 lines
2.1 KiB
INI
#/** @file
|
|
#
|
|
# Component description file for NorFlashDxe module
|
|
#
|
|
# Copyright (c) 2011 - 2014, ARM Ltd. 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
|
|
# http://opensource.org/licenses/bsd-license.php
|
|
#
|
|
# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
|
#
|
|
#**/
|
|
|
|
[Defines]
|
|
INF_VERSION = 0x00010005
|
|
BASE_NAME = ArmVeNorFlashDxe
|
|
FILE_GUID = 93E34C7E-B50E-11DF-9223-2443DFD72085
|
|
MODULE_TYPE = DXE_RUNTIME_DRIVER
|
|
VERSION_STRING = 1.0
|
|
ENTRY_POINT = NorFlashInitialise
|
|
|
|
[Sources.common]
|
|
NorFlashDxe.c
|
|
NorFlashFvbDxe.c
|
|
NorFlashBlockIoDxe.c
|
|
|
|
[Packages]
|
|
MdePkg/MdePkg.dec
|
|
MdeModulePkg/MdeModulePkg.dec
|
|
ArmPlatformPkg/ArmPlatformPkg.dec
|
|
|
|
[LibraryClasses]
|
|
IoLib
|
|
BaseLib
|
|
DebugLib
|
|
HobLib
|
|
NorFlashPlatformLib
|
|
UefiLib
|
|
UefiDriverEntryPoint
|
|
UefiBootServicesTableLib
|
|
UefiRuntimeLib
|
|
DxeServicesTableLib
|
|
|
|
[Guids]
|
|
gEfiSystemNvDataFvGuid
|
|
gEfiVariableGuid
|
|
gEfiAuthenticatedVariableGuid
|
|
gEfiEventVirtualAddressChangeGuid
|
|
|
|
[Protocols]
|
|
gEfiBlockIoProtocolGuid
|
|
gEfiDevicePathProtocolGuid
|
|
gEfiFirmwareVolumeBlockProtocolGuid
|
|
gEfiDiskIoProtocolGuid
|
|
|
|
[Pcd.common]
|
|
gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageVariableBase
|
|
gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageVariableSize
|
|
gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwWorkingBase
|
|
gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwWorkingSize
|
|
gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwSpareBase
|
|
gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwSpareSize
|
|
|
|
gArmPlatformTokenSpaceGuid.PcdNorFlashCheckBlockLocked
|
|
|
|
[Depex]
|
|
#
|
|
# NorFlashDxe must be loaded before VariableRuntimeDxe in case empty flash needs populating with default values
|
|
#
|
|
BEFORE gVariableRuntimeDxeFileGuid
|