replace PCI Root Bridge I/O protocol with PciLib to achieve M2 qulity.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@5515 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
@ -2,7 +2,7 @@
|
|||||||
# Component description file for FtwLite module.
|
# Component description file for FtwLite module.
|
||||||
#
|
#
|
||||||
# This driver provides fault tolerant write capability for block devices.
|
# This driver provides fault tolerant write capability for block devices.
|
||||||
# Copyright (c) 2006 - 2007, Intel Corporation
|
# Copyright (c) 2006 - 2008, Intel Corporation
|
||||||
#
|
#
|
||||||
# All rights reserved. This program and the accompanying materials
|
# All rights reserved. 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
|
||||||
@ -49,13 +49,10 @@
|
|||||||
[Sources.EBC]
|
[Sources.EBC]
|
||||||
Ia32/Ia32FtwMisc.c
|
Ia32/Ia32FtwMisc.c
|
||||||
|
|
||||||
|
|
||||||
[Packages]
|
[Packages]
|
||||||
MdePkg/MdePkg.dec
|
MdePkg/MdePkg.dec
|
||||||
MdeModulePkg/MdeModulePkg.dec
|
MdeModulePkg/MdeModulePkg.dec
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
[LibraryClasses]
|
[LibraryClasses]
|
||||||
UefiBootServicesTableLib
|
UefiBootServicesTableLib
|
||||||
MemoryAllocationLib
|
MemoryAllocationLib
|
||||||
@ -72,13 +69,6 @@
|
|||||||
gEfiFirmwareVolumeBlockProtocolGuid # PROTOCOL ALWAYS_CONSUMED
|
gEfiFirmwareVolumeBlockProtocolGuid # PROTOCOL ALWAYS_CONSUMED
|
||||||
gEfiFaultTolerantWriteLiteProtocolGuid # PROTOCOL ALWAYS_PRODUCED
|
gEfiFaultTolerantWriteLiteProtocolGuid # PROTOCOL ALWAYS_PRODUCED
|
||||||
|
|
||||||
[Protocols.IA32]
|
|
||||||
gEfiPciRootBridgeIoProtocolGuid # PROTOCOL ALWAYS_CONSUMED
|
|
||||||
|
|
||||||
[Protocols.EBC]
|
|
||||||
gEfiPciRootBridgeIoProtocolGuid # PROTOCOL ALWAYS_CONSUMED
|
|
||||||
|
|
||||||
|
|
||||||
[Pcd.common]
|
[Pcd.common]
|
||||||
gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwWorkingSize
|
gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwWorkingSize
|
||||||
gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwWorkingBase
|
gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwWorkingBase
|
||||||
|
@ -35,51 +35,7 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
||||||
Read PCI register value.
|
Get swap state.
|
||||||
This is a internal function.
|
|
||||||
|
|
||||||
|
|
||||||
@param Offset Offset of the register
|
|
||||||
|
|
||||||
@return The pci register value.
|
|
||||||
|
|
||||||
**/
|
|
||||||
UINT32
|
|
||||||
ReadPciRegister (
|
|
||||||
IN UINT32 Offset
|
|
||||||
)
|
|
||||||
{
|
|
||||||
EFI_STATUS Status;
|
|
||||||
UINT32 Value;
|
|
||||||
EFI_PCI_ROOT_BRIDGE_IO_PROTOCOL *PciRootBridgeIo;
|
|
||||||
|
|
||||||
Value = 0;
|
|
||||||
Status = gBS->LocateProtocol (&gEfiPciRootBridgeIoProtocolGuid, NULL, (VOID **) &PciRootBridgeIo);
|
|
||||||
if (EFI_ERROR (Status)) {
|
|
||||||
DEBUG ((EFI_D_ERROR, "FtwLite: Locate PCI root bridge io protocol - %r", Status));
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
Status = PciRootBridgeIo->Pci.Read (
|
|
||||||
PciRootBridgeIo,
|
|
||||||
EfiPciWidthUint32,
|
|
||||||
EFI_PCI_ADDRESS (
|
|
||||||
LPC_BUS_NUMBER,
|
|
||||||
LPC_DEVICE_NUMBER,
|
|
||||||
LPC_IF,
|
|
||||||
Offset
|
|
||||||
),
|
|
||||||
1,
|
|
||||||
&Value
|
|
||||||
);
|
|
||||||
ASSERT_EFI_ERROR (Status);
|
|
||||||
|
|
||||||
return Value;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
|
|
||||||
Get swap state
|
|
||||||
|
|
||||||
This is a internal function.
|
This is a internal function.
|
||||||
|
|
||||||
@ -95,10 +51,13 @@ GetSwapState (
|
|||||||
OUT BOOLEAN *SwapState
|
OUT BOOLEAN *SwapState
|
||||||
)
|
)
|
||||||
{
|
{
|
||||||
|
UINT32 Value;
|
||||||
|
Value = PciRead32(EFI_PCI_ADDRESS (LPC_BUS_NUMBER, LPC_DEVICE_NUMBER, LPC_IF, GEN_STATUS))
|
||||||
|
|
||||||
//
|
//
|
||||||
// Top swap status is 13 bit
|
// Top swap status is 13 bit
|
||||||
//
|
//
|
||||||
*SwapState = (BOOLEAN) ((ReadPciRegister (GEN_STATUS) & TOP_SWAP_BIT) != 0);
|
*SwapState = (BOOLEAN) ((Value & TOP_SWAP_BIT) != 0);
|
||||||
|
|
||||||
return EFI_SUCCESS;
|
return EFI_SUCCESS;
|
||||||
}
|
}
|
||||||
@ -131,7 +90,7 @@ SetSwapState (
|
|||||||
//
|
//
|
||||||
// Top-Swap bit (bit 13, D31: F0, Offset D4h)
|
// Top-Swap bit (bit 13, D31: F0, Offset D4h)
|
||||||
//
|
//
|
||||||
GenStatus = ReadPciRegister (GEN_STATUS);
|
GenStatus = PciRead32(EFI_PCI_ADDRESS (LPC_BUS_NUMBER, LPC_DEVICE_NUMBER, LPC_IF, GEN_STATUS));
|
||||||
|
|
||||||
//
|
//
|
||||||
// Set 13 bit, according to input NewSwapState
|
// Set 13 bit, according to input NewSwapState
|
||||||
@ -142,26 +101,10 @@ SetSwapState (
|
|||||||
GenStatus &= ~TOP_SWAP_BIT;
|
GenStatus &= ~TOP_SWAP_BIT;
|
||||||
}
|
}
|
||||||
|
|
||||||
Status = gBS->LocateProtocol (&gEfiPciRootBridgeIoProtocolGuid, NULL, (VOID **) &PciRootBridgeIo);
|
|
||||||
if (EFI_ERROR (Status)) {
|
|
||||||
DEBUG ((EFI_D_ERROR, "FtwLite: Locate PCI root bridge io protocol - %r", Status));
|
|
||||||
return Status;
|
|
||||||
}
|
|
||||||
//
|
//
|
||||||
// Write back the GenStatus register
|
// Write back the GenStatus register
|
||||||
//
|
//
|
||||||
Status = PciRootBridgeIo->Pci.Write (
|
PciWrite32(EFI_PCI_ADDRESS (LPC_BUS_NUMBER, LPC_DEVICE_NUMBER, LPC_IF, GEN_STATUS), GenStatus);
|
||||||
PciRootBridgeIo,
|
|
||||||
EfiPciWidthUint32,
|
|
||||||
EFI_PCI_ADDRESS (
|
|
||||||
LPC_BUS_NUMBER,
|
|
||||||
LPC_DEVICE_NUMBER,
|
|
||||||
LPC_IF,
|
|
||||||
GEN_STATUS
|
|
||||||
),
|
|
||||||
1,
|
|
||||||
&GenStatus
|
|
||||||
);
|
|
||||||
|
|
||||||
DEBUG_CODE_BEGIN ();
|
DEBUG_CODE_BEGIN ();
|
||||||
if (TopSwap) {
|
if (TopSwap) {
|
||||||
|
Reference in New Issue
Block a user