MdeModulePkg PiDxeS3BootScriptLib: Support multiple PCI segment

Support multiple PCI segment for PCI_CONFIG2 opcodes.

PiDxeS3BootScriptLib needs to be updated to consume PciSegmentLib
instead of PciLib. That means platforms need to add PciSegmentLib
declaration like below in platform dsc if the PciSegmentLib was
not declared in platform dsc before.

PciSegmentLib|MdePkg/Library/BasePciSegmentLibPci/BasePciSegmentLibPci.inf

For platforms only have one segment,
MdePkg/Library/BasePciSegmentLibPci/BasePciSegmentLibPci.inf is recommended
to be used and declared in platform dsc for PiDxeS3BootScriptLib to have
equivalent functionality with before.

Cc: Jiewen Yao <jiewen.yao@intel.com>
Cc: Michael D Kinney <michael.d.kinney@intel.com>
Cc: Amy Chan <amy.chan@intel.com>
Cc: Laszlo Ersek <lersek@redhat.com>
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Star Zeng <star.zeng@intel.com>
Reviewed-by: Jiewen Yao <jiewen.yao@intel.com>
Reviewed-by: Michael Kinney <michael.d.kinney@intel.com>
Tested-by: Laszlo Ersek <lersek@redhat.com>
This commit is contained in:
Star Zeng 2016-08-08 18:20:58 +08:00
parent 3a03e95eda
commit 3d20524af0
4 changed files with 80 additions and 90 deletions

View File

@ -1,7 +1,7 @@
/** @file /** @file
Interpret and execute the S3 data in S3 boot script. Interpret and execute the S3 data in S3 boot script.
Copyright (c) 2006 - 2015, Intel Corporation. All rights reserved.<BR> Copyright (c) 2006 - 2016, 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 are licensed and made available under the terms and conditions
@ -639,9 +639,10 @@ BootScriptExecuteMemoryWrite (
} }
/** /**
Performance PCI configuration read operation Performance PCI configuration 2 read operation
@param Width Width of the operation. @param Width Width of the operation.
@param Segment Pci segment number
@param Address Address of the operation. @param Address Address of the operation.
@param Count Count of the number of accesses to perform. @param Count Count of the number of accesses to perform.
@param Buffer Pointer to the buffer read from PCI config space @param Buffer Pointer to the buffer read from PCI config space
@ -652,8 +653,9 @@ BootScriptExecuteMemoryWrite (
**/ **/
EFI_STATUS EFI_STATUS
ScriptPciCfgRead ( ScriptPciCfg2Read (
IN S3_BOOT_SCRIPT_LIB_WIDTH Width, IN S3_BOOT_SCRIPT_LIB_WIDTH Width,
IN UINT16 Segment,
IN UINT64 Address, IN UINT64 Address,
IN UINTN Count, IN UINTN Count,
OUT VOID *Buffer OUT VOID *Buffer
@ -663,11 +665,11 @@ ScriptPciCfgRead (
UINTN AddressStride; UINTN AddressStride;
UINTN BufferStride; UINTN BufferStride;
PTR Out; PTR Out;
UINTN PciAddress; UINT64 PciAddress;
Out.Buf = (UINT8 *) Buffer; Out.Buf = (UINT8 *) Buffer;
PciAddress = PCI_ADDRESS_ENCODE (Address); PciAddress = PCI_ADDRESS_ENCODE (Segment, Address);
Status = BuildLoopData (Width, PciAddress, &AddressStride, &BufferStride); Status = BuildLoopData (Width, PciAddress, &AddressStride, &BufferStride);
if (EFI_ERROR (Status)) { if (EFI_ERROR (Status)) {
@ -679,42 +681,42 @@ ScriptPciCfgRead (
for (; Count > 0; Count--, PciAddress += AddressStride, Out.Buf += BufferStride) { for (; Count > 0; Count--, PciAddress += AddressStride, Out.Buf += BufferStride) {
switch (Width) { switch (Width) {
case S3BootScriptWidthUint8: case S3BootScriptWidthUint8:
DEBUG ((EFI_D_INFO, "S3BootScriptWidthUint8 - 0x%08x\n", PciAddress)); DEBUG ((EFI_D_INFO, "S3BootScriptWidthUint8 - 0x%016lx\n", PciAddress));
*Out.Uint8 = PciRead8 (PciAddress); *Out.Uint8 = PciSegmentRead8 (PciAddress);
break; break;
case S3BootScriptWidthFifoUint8: case S3BootScriptWidthFifoUint8:
DEBUG ((EFI_D_INFO, "S3BootScriptWidthFifoUint8 - 0x%08x\n", PciAddress)); DEBUG ((EFI_D_INFO, "S3BootScriptWidthFifoUint8 - 0x%016lx\n", PciAddress));
*Out.Uint8 = PciRead8 (PciAddress); *Out.Uint8 = PciSegmentRead8 (PciAddress);
break; break;
case S3BootScriptWidthFillUint8: case S3BootScriptWidthFillUint8:
DEBUG ((EFI_D_INFO, "S3BootScriptWidthFillUint8 - 0x%08x\n", PciAddress)); DEBUG ((EFI_D_INFO, "S3BootScriptWidthFillUint8 - 0x%016lx\n", PciAddress));
*Out.Uint8 = PciRead8 (PciAddress); *Out.Uint8 = PciSegmentRead8 (PciAddress);
break; break;
case S3BootScriptWidthUint16: case S3BootScriptWidthUint16:
DEBUG ((EFI_D_INFO, "S3BootScriptWidthUint16 - 0x%08x\n", PciAddress)); DEBUG ((EFI_D_INFO, "S3BootScriptWidthUint16 - 0x%016lx\n", PciAddress));
*Out.Uint16 = PciRead16 (PciAddress); *Out.Uint16 = PciSegmentRead16 (PciAddress);
break; break;
case S3BootScriptWidthFifoUint16: case S3BootScriptWidthFifoUint16:
DEBUG ((EFI_D_INFO, "S3BootScriptWidthFifoUint16 - 0x%08x\n", PciAddress)); DEBUG ((EFI_D_INFO, "S3BootScriptWidthFifoUint16 - 0x%016lx\n", PciAddress));
*Out.Uint16 = PciRead16 (PciAddress); *Out.Uint16 = PciSegmentRead16 (PciAddress);
break; break;
case S3BootScriptWidthFillUint16: case S3BootScriptWidthFillUint16:
DEBUG ((EFI_D_INFO, "S3BootScriptWidthFillUint16 - 0x%08x\n", PciAddress)); DEBUG ((EFI_D_INFO, "S3BootScriptWidthFillUint16 - 0x%016lx\n", PciAddress));
*Out.Uint16 = PciRead16 (PciAddress); *Out.Uint16 = PciSegmentRead16 (PciAddress);
break; break;
case S3BootScriptWidthUint32: case S3BootScriptWidthUint32:
DEBUG ((EFI_D_INFO, "S3BootScriptWidthUint32 - 0x%08x\n", PciAddress)); DEBUG ((EFI_D_INFO, "S3BootScriptWidthUint32 - 0x%016lx\n", PciAddress));
*Out.Uint32 = PciRead32 (PciAddress); *Out.Uint32 = PciSegmentRead32 (PciAddress);
break; break;
case S3BootScriptWidthFifoUint32: case S3BootScriptWidthFifoUint32:
DEBUG ((EFI_D_INFO, "S3BootScriptWidthFifoUint32 - 0x%08x\n", PciAddress)); DEBUG ((EFI_D_INFO, "S3BootScriptWidthFifoUint32 - 0x%016lx\n", PciAddress));
*Out.Uint32 = PciRead32 (PciAddress); *Out.Uint32 = PciSegmentRead32 (PciAddress);
break; break;
case S3BootScriptWidthFillUint32: case S3BootScriptWidthFillUint32:
DEBUG ((EFI_D_INFO, "S3BootScriptWidthFillUint32 - 0x%08x\n", PciAddress)); DEBUG ((EFI_D_INFO, "S3BootScriptWidthFillUint32 - 0x%016lx\n", PciAddress));
*Out.Uint32 = PciRead32 (PciAddress); *Out.Uint32 = PciSegmentRead32 (PciAddress);
break; break;
default: default:
@ -725,9 +727,10 @@ ScriptPciCfgRead (
} }
/** /**
Performance PCI configuration write operation Performance PCI configuration 2 write operation
@param Width Width of the operation. @param Width Width of the operation.
@param Segment Pci segment number
@param Address Address of the operation. @param Address Address of the operation.
@param Count Count of the number of accesses to perform. @param Count Count of the number of accesses to perform.
@param Buffer Pointer to the buffer write to PCI config space @param Buffer Pointer to the buffer write to PCI config space
@ -738,8 +741,9 @@ ScriptPciCfgRead (
**/ **/
EFI_STATUS EFI_STATUS
ScriptPciCfgWrite ( ScriptPciCfg2Write (
IN S3_BOOT_SCRIPT_LIB_WIDTH Width, IN S3_BOOT_SCRIPT_LIB_WIDTH Width,
IN UINT16 Segment,
IN UINT64 Address, IN UINT64 Address,
IN UINTN Count, IN UINTN Count,
IN VOID *Buffer IN VOID *Buffer
@ -748,14 +752,14 @@ ScriptPciCfgWrite (
EFI_STATUS Status; EFI_STATUS Status;
UINTN AddressStride; UINTN AddressStride;
UINTN BufferStride; UINTN BufferStride;
UINTN OriginalPciAddress; UINT64 OriginalPciAddress;
PTR In; PTR In;
PTR OriginalIn; PTR OriginalIn;
UINTN PciAddress; UINT64 PciAddress;
In.Buf = (UINT8 *) Buffer; In.Buf = (UINT8 *) Buffer;
PciAddress = PCI_ADDRESS_ENCODE (Address); PciAddress = PCI_ADDRESS_ENCODE (Segment, Address);
Status = BuildLoopData (Width, PciAddress, &AddressStride, &BufferStride); Status = BuildLoopData (Width, PciAddress, &AddressStride, &BufferStride);
if (EFI_ERROR (Status)) { if (EFI_ERROR (Status)) {
@ -769,40 +773,40 @@ ScriptPciCfgWrite (
for (; Count > 0; Count--, PciAddress += AddressStride, In.Buf += BufferStride) { for (; Count > 0; Count--, PciAddress += AddressStride, In.Buf += BufferStride) {
switch (Width) { switch (Width) {
case S3BootScriptWidthUint8: case S3BootScriptWidthUint8:
DEBUG ((EFI_D_INFO, "S3BootScriptWidthUint8 - 0x%08x (0x%02x)\n", PciAddress, (UINTN)*In.Uint8)); DEBUG ((EFI_D_INFO, "S3BootScriptWidthUint8 - 0x%016lx (0x%02x)\n", PciAddress, (UINTN)*In.Uint8));
PciWrite8 (PciAddress, *In.Uint8); PciSegmentWrite8 (PciAddress, *In.Uint8);
break; break;
case S3BootScriptWidthFifoUint8: case S3BootScriptWidthFifoUint8:
DEBUG ((EFI_D_INFO, "S3BootScriptWidthFifoUint8 - 0x%08x (0x%02x)\n", OriginalPciAddress, (UINTN)*In.Uint8)); DEBUG ((EFI_D_INFO, "S3BootScriptWidthFifoUint8 - 0x%016lx (0x%02x)\n", OriginalPciAddress, (UINTN)*In.Uint8));
PciWrite8 (OriginalPciAddress, *In.Uint8); PciSegmentWrite8 (OriginalPciAddress, *In.Uint8);
break; break;
case S3BootScriptWidthFillUint8: case S3BootScriptWidthFillUint8:
DEBUG ((EFI_D_INFO, "S3BootScriptWidthFillUint8 - 0x%08x (0x%02x)\n", PciAddress, (UINTN)*OriginalIn.Uint8)); DEBUG ((EFI_D_INFO, "S3BootScriptWidthFillUint8 - 0x%016lx (0x%02x)\n", PciAddress, (UINTN)*OriginalIn.Uint8));
PciWrite8 (PciAddress, *OriginalIn.Uint8); PciSegmentWrite8 (PciAddress, *OriginalIn.Uint8);
break; break;
case S3BootScriptWidthUint16: case S3BootScriptWidthUint16:
DEBUG ((EFI_D_INFO, "S3BootScriptWidthUint16 - 0x%08x (0x%04x)\n", PciAddress, (UINTN)*In.Uint16)); DEBUG ((EFI_D_INFO, "S3BootScriptWidthUint16 - 0x%016lx (0x%04x)\n", PciAddress, (UINTN)*In.Uint16));
PciWrite16 (PciAddress, *In.Uint16); PciSegmentWrite16 (PciAddress, *In.Uint16);
break; break;
case S3BootScriptWidthFifoUint16: case S3BootScriptWidthFifoUint16:
DEBUG ((EFI_D_INFO, "S3BootScriptWidthFifoUint16 - 0x%08x (0x%04x)\n", OriginalPciAddress, (UINTN)*In.Uint16)); DEBUG ((EFI_D_INFO, "S3BootScriptWidthFifoUint16 - 0x%016lx (0x%04x)\n", OriginalPciAddress, (UINTN)*In.Uint16));
PciWrite16 (OriginalPciAddress, *In.Uint16); PciSegmentWrite16 (OriginalPciAddress, *In.Uint16);
break; break;
case S3BootScriptWidthFillUint16: case S3BootScriptWidthFillUint16:
DEBUG ((EFI_D_INFO, "S3BootScriptWidthFillUint16 - 0x%08x (0x%04x)\n", PciAddress, (UINTN)*OriginalIn.Uint16)); DEBUG ((EFI_D_INFO, "S3BootScriptWidthFillUint16 - 0x%016lx (0x%04x)\n", PciAddress, (UINTN)*OriginalIn.Uint16));
PciWrite16 (PciAddress, *OriginalIn.Uint16); PciSegmentWrite16 (PciAddress, *OriginalIn.Uint16);
break; break;
case S3BootScriptWidthUint32: case S3BootScriptWidthUint32:
DEBUG ((EFI_D_INFO, "S3BootScriptWidthUint32 - 0x%08x (0x%08x)\n", PciAddress, (UINTN)*In.Uint32)); DEBUG ((EFI_D_INFO, "S3BootScriptWidthUint32 - 0x%016lx (0x%08x)\n", PciAddress, (UINTN)*In.Uint32));
PciWrite32 (PciAddress, *In.Uint32); PciSegmentWrite32 (PciAddress, *In.Uint32);
break; break;
case S3BootScriptWidthFifoUint32: case S3BootScriptWidthFifoUint32:
DEBUG ((EFI_D_INFO, "S3BootScriptWidthFifoUint32 - 0x%08x (0x%08x)\n", OriginalPciAddress, (UINTN)*In.Uint32)); DEBUG ((EFI_D_INFO, "S3BootScriptWidthFifoUint32 - 0x%016lx (0x%08x)\n", OriginalPciAddress, (UINTN)*In.Uint32));
PciWrite32 (OriginalPciAddress, *In.Uint32); PciSegmentWrite32 (OriginalPciAddress, *In.Uint32);
break; break;
case S3BootScriptWidthFillUint32: case S3BootScriptWidthFillUint32:
DEBUG ((EFI_D_INFO, "S3BootScriptWidthFillUint32 - 0x%08x (0x%08x)\n", (UINTN)PciAddress, (UINTN)*OriginalIn.Uint32)); DEBUG ((EFI_D_INFO, "S3BootScriptWidthFillUint32 - 0x%016lx (0x%08x)\n", (UINTN)PciAddress, (UINTN)*OriginalIn.Uint32));
PciWrite32 (PciAddress, *OriginalIn.Uint32); PciSegmentWrite32 (PciAddress, *OriginalIn.Uint32);
break; break;
default: default:
return EFI_INVALID_PARAMETER; return EFI_INVALID_PARAMETER;
@ -811,10 +815,9 @@ ScriptPciCfgWrite (
return EFI_SUCCESS; return EFI_SUCCESS;
} }
/** /**
Performance PCI configuration 2 read operation Performance PCI configuration read operation
@param Width Width of the operation. @param Width Width of the operation.
@param Segment Pci segment number
@param Address Address of the operation. @param Address Address of the operation.
@param Count Count of the number of accesses to perform. @param Count Count of the number of accesses to perform.
@param Buffer Pointer to the buffer to read from PCI config space. @param Buffer Pointer to the buffer to read from PCI config space.
@ -824,27 +827,22 @@ ScriptPciCfgWrite (
Buffer is NULL. Buffer is NULL.
The Buffer is not aligned for the given Width. The Buffer is not aligned for the given Width.
Address is outside the legal range of I/O ports. Address is outside the legal range of I/O ports.
@note A known Limitations in the implementation which is the 'Segment' parameter is assumed as
Zero, or else, assert.
**/ **/
EFI_STATUS EFI_STATUS
ScriptPciCfg2Read ( ScriptPciCfgRead (
IN S3_BOOT_SCRIPT_LIB_WIDTH Width, IN S3_BOOT_SCRIPT_LIB_WIDTH Width,
IN UINT16 Segment,
IN UINT64 Address, IN UINT64 Address,
IN UINTN Count, IN UINTN Count,
OUT VOID *Buffer OUT VOID *Buffer
) )
{ {
ASSERT (Segment==0); return ScriptPciCfg2Read (Width, 0, Address, Count, Buffer);
return ScriptPciCfgRead (Width, Address, Count, Buffer);
} }
/** /**
Performance PCI configuration 2 write operation Performance PCI configuration write operation
@param Width Width of the operation. @param Width Width of the operation.
@param Segment Pci segment number
@param Address Address of the operation. @param Address Address of the operation.
@param Count Count of the number of accesses to perform. @param Count Count of the number of accesses to perform.
@param Buffer Pointer to the buffer to write to PCI config space. @param Buffer Pointer to the buffer to write to PCI config space.
@ -854,22 +852,18 @@ ScriptPciCfg2Read (
Buffer is NULL. Buffer is NULL.
The Buffer is not aligned for the given Width. The Buffer is not aligned for the given Width.
Address is outside the legal range of I/O ports. Address is outside the legal range of I/O ports.
@note A known Limitations in the implementation which is the 'Segment' parameter is assumed as
Zero, or else, assert.
**/ **/
EFI_STATUS EFI_STATUS
EFIAPI EFIAPI
ScriptPciCfg2Write ( ScriptPciCfgWrite (
IN S3_BOOT_SCRIPT_LIB_WIDTH Width, IN S3_BOOT_SCRIPT_LIB_WIDTH Width,
IN UINT16 Segment,
IN UINT64 Address, IN UINT64 Address,
IN UINTN Count, IN UINTN Count,
IN VOID *Buffer IN VOID *Buffer
) )
{ {
ASSERT (Segment==0); return ScriptPciCfg2Write (Width, 0, Address, Count, Buffer);
return ScriptPciCfgWrite (Width, Address, Count, Buffer);
} }
/** /**
Interprete the boot script node with EFI_BOOT_SCRIPT_PCI_CONFIG_WRITE OP code. Interprete the boot script node with EFI_BOOT_SCRIPT_PCI_CONFIG_WRITE OP code.
@ -896,7 +890,7 @@ BootScriptExecutePciCfgWrite (
Count = PciCfgWrite.Count; Count = PciCfgWrite.Count;
Buffer = Script + sizeof(EFI_BOOT_SCRIPT_PCI_CONFIG_WRITE); Buffer = Script + sizeof(EFI_BOOT_SCRIPT_PCI_CONFIG_WRITE);
DEBUG ((EFI_D_INFO, "BootScriptExecutePciCfgWrite - 0x%08x, 0x%08x, 0x%08x\n", PCI_ADDRESS_ENCODE (Address), Count, (UINTN)Width)); DEBUG ((EFI_D_INFO, "BootScriptExecutePciCfgWrite - 0x%016lx, 0x%08x, 0x%08x\n", PCI_ADDRESS_ENCODE (0, Address), Count, (UINTN)Width));
return ScriptPciCfgWrite (Width, Address, Count, Buffer); return ScriptPciCfgWrite (Width, Address, Count, Buffer);
} }
/** /**
@ -1012,7 +1006,7 @@ BootScriptExecutePciCfgReadWrite (
CopyMem((VOID*)&PciCfgReadWrite, (VOID*)Script, sizeof(EFI_BOOT_SCRIPT_PCI_CONFIG_READ_WRITE)); CopyMem((VOID*)&PciCfgReadWrite, (VOID*)Script, sizeof(EFI_BOOT_SCRIPT_PCI_CONFIG_READ_WRITE));
DEBUG ((EFI_D_INFO, "BootScriptExecutePciCfgReadWrite - 0x%08x, 0x%016lx, 0x%016lx\n", PCI_ADDRESS_ENCODE (PciCfgReadWrite.Address), AndMask, OrMask)); DEBUG ((EFI_D_INFO, "BootScriptExecutePciCfgReadWrite - 0x%016lx, 0x%016lx, 0x%016lx\n", PCI_ADDRESS_ENCODE (0, PciCfgReadWrite.Address), AndMask, OrMask));
Status = ScriptPciCfgRead ( Status = ScriptPciCfgRead (
(S3_BOOT_SCRIPT_LIB_WIDTH) PciCfgReadWrite.Width, (S3_BOOT_SCRIPT_LIB_WIDTH) PciCfgReadWrite.Width,
@ -1422,7 +1416,7 @@ BootScriptExecutePciCfg2Write (
Count = PciCfg2Write.Count; Count = PciCfg2Write.Count;
Buffer = Script + sizeof(EFI_BOOT_SCRIPT_PCI_CONFIG2_WRITE); Buffer = Script + sizeof(EFI_BOOT_SCRIPT_PCI_CONFIG2_WRITE);
DEBUG ((EFI_D_INFO, "BootScriptExecutePciCfg2Write - 0x%04x, 0x%08x, 0x%08x, 0x%08x\n", Segment, PCI_ADDRESS_ENCODE (Address), Count, (UINTN)Width)); DEBUG ((EFI_D_INFO, "BootScriptExecutePciCfg2Write - 0x%016lx, 0x%08x, 0x%08x\n", PCI_ADDRESS_ENCODE (Segment, Address), Count, (UINTN)Width));
return ScriptPciCfg2Write (Width, Segment, Address, Count, Buffer); return ScriptPciCfg2Write (Width, Segment, Address, Count, Buffer);
} }
@ -1452,7 +1446,7 @@ BootScriptExecutePciCfg2ReadWrite (
CopyMem ((VOID*)&PciCfg2ReadWrite, (VOID*)Script, sizeof(EFI_BOOT_SCRIPT_PCI_CONFIG2_READ_WRITE)); CopyMem ((VOID*)&PciCfg2ReadWrite, (VOID*)Script, sizeof(EFI_BOOT_SCRIPT_PCI_CONFIG2_READ_WRITE));
DEBUG ((EFI_D_INFO, "BootScriptExecutePciCfg2ReadWrite - 0x%04x, 0x%08x, 0x%016lx, 0x%016lx\n", PciCfg2ReadWrite.Segment, PCI_ADDRESS_ENCODE (PciCfg2ReadWrite.Address), AndMask, OrMask)); DEBUG ((EFI_D_INFO, "BootScriptExecutePciCfg2ReadWrite - 0x%016lx, 0x%016lx, 0x%016lx\n", PCI_ADDRESS_ENCODE (PciCfg2ReadWrite.Segment, PciCfg2ReadWrite.Address), AndMask, OrMask));
Status = ScriptPciCfg2Read ( Status = ScriptPciCfg2Read (
(S3_BOOT_SCRIPT_LIB_WIDTH) PciCfg2ReadWrite.Width, (S3_BOOT_SCRIPT_LIB_WIDTH) PciCfg2ReadWrite.Width,
@ -1499,7 +1493,7 @@ BootScriptPciCfgPoll (
EFI_BOOT_SCRIPT_PCI_CONFIG_POLL PciCfgPoll; EFI_BOOT_SCRIPT_PCI_CONFIG_POLL PciCfgPoll;
CopyMem ((VOID*)&PciCfgPoll, (VOID*)Script, sizeof(EFI_BOOT_SCRIPT_PCI_CONFIG_POLL)); CopyMem ((VOID*)&PciCfgPoll, (VOID*)Script, sizeof(EFI_BOOT_SCRIPT_PCI_CONFIG_POLL));
DEBUG ((EFI_D_INFO, "BootScriptPciCfgPoll - 0x%08x, 0x%016lx, 0x%016lx\n", PCI_ADDRESS_ENCODE (PciCfgPoll.Address), AndMask, OrMask)); DEBUG ((EFI_D_INFO, "BootScriptPciCfgPoll - 0x%016lx, 0x%016lx, 0x%016lx\n", PCI_ADDRESS_ENCODE (0, PciCfgPoll.Address), AndMask, OrMask));
Data = 0; Data = 0;
Status = ScriptPciCfgRead ( Status = ScriptPciCfgRead (
@ -1561,7 +1555,7 @@ BootScriptPciCfg2Poll (
Data = 0; Data = 0;
CopyMem ((VOID*)&PciCfg2Poll, (VOID*)Script, sizeof(EFI_BOOT_SCRIPT_PCI_CONFIG2_POLL)); CopyMem ((VOID*)&PciCfg2Poll, (VOID*)Script, sizeof(EFI_BOOT_SCRIPT_PCI_CONFIG2_POLL));
DEBUG ((EFI_D_INFO, "BootScriptPciCfg2Poll - 0x%04x, 0x%08x, 0x%016lx, 0x%016lx\n", PciCfg2Poll.Segment, PCI_ADDRESS_ENCODE (PciCfg2Poll.Address), AndMask, OrMask)); DEBUG ((EFI_D_INFO, "BootScriptPciCfg2Poll - 0x%016lx, 0x%016lx, 0x%016lx\n", PCI_ADDRESS_ENCODE (PciCfg2Poll.Segment, PciCfg2Poll.Address), AndMask, OrMask));
Status = ScriptPciCfg2Read ( Status = ScriptPciCfg2Read (
(S3_BOOT_SCRIPT_LIB_WIDTH) PciCfg2Poll.Width, (S3_BOOT_SCRIPT_LIB_WIDTH) PciCfg2Poll.Width,
@ -1604,9 +1598,6 @@ BootScriptPciCfg2Poll (
@retval RETURN_SUCCESS The boot script table was executed successfully. @retval RETURN_SUCCESS The boot script table was executed successfully.
@retval RETURN_UNSUPPORTED Invalid script table or opcode. @retval RETURN_UNSUPPORTED Invalid script table or opcode.
@note A known Limitations in the implementation: When interpreting the opcode EFI_BOOT_SCRIPT_PCI_CONFIG2_WRITE_OPCODE
EFI_BOOT_SCRIPT_PCI_CONFIG2_READ_WRITE_OPCODE and EFI_BOOT_SCRIPT_PCI_CONFIG2_POLL_OPCODE, the 'Segment' parameter is assumed as
Zero, or else, assert.
**/ **/
RETURN_STATUS RETURN_STATUS
EFIAPI EFIAPI

View File

@ -1291,7 +1291,7 @@ S3BootScriptSavePciCfgReadWrite (
@retval RETURN_OUT_OF_RESOURCES Not enough memory for the table do operation. @retval RETURN_OUT_OF_RESOURCES Not enough memory for the table do operation.
@retval RETURN_SUCCESS Opcode is added. @retval RETURN_SUCCESS Opcode is added.
@note A known Limitations in the implementation which is non-zero Segment and 64bits operations are not supported. @note A known Limitations in the implementation which is 64bits operations are not supported.
**/ **/
RETURN_STATUS RETURN_STATUS
@ -1309,8 +1309,7 @@ S3BootScriptSavePciCfg2Write (
UINT8 WidthInByte; UINT8 WidthInByte;
EFI_BOOT_SCRIPT_PCI_CONFIG2_WRITE ScriptPciWrite2; EFI_BOOT_SCRIPT_PCI_CONFIG2_WRITE ScriptPciWrite2;
if (Segment != 0 || if (Width == S3BootScriptWidthUint64 ||
Width == S3BootScriptWidthUint64 ||
Width == S3BootScriptWidthFifoUint64 || Width == S3BootScriptWidthFifoUint64 ||
Width == S3BootScriptWidthFillUint64) { Width == S3BootScriptWidthFillUint64) {
return EFI_INVALID_PARAMETER; return EFI_INVALID_PARAMETER;
@ -1351,7 +1350,7 @@ S3BootScriptSavePciCfg2Write (
@retval RETURN_OUT_OF_RESOURCES Not enough memory for the table do operation. @retval RETURN_OUT_OF_RESOURCES Not enough memory for the table do operation.
@retval RETURN_SUCCESS Opcode is added. @retval RETURN_SUCCESS Opcode is added.
@note A known Limitations in the implementation which is non-zero Segment and 64bits operations are not supported. @note A known Limitations in the implementation which is 64bits operations are not supported.
**/ **/
RETURN_STATUS RETURN_STATUS
@ -1369,8 +1368,7 @@ S3BootScriptSavePciCfg2ReadWrite (
UINT8 WidthInByte; UINT8 WidthInByte;
EFI_BOOT_SCRIPT_PCI_CONFIG2_READ_WRITE ScriptPciReadWrite2; EFI_BOOT_SCRIPT_PCI_CONFIG2_READ_WRITE ScriptPciReadWrite2;
if (Segment != 0 || if (Width == S3BootScriptWidthUint64 ||
Width == S3BootScriptWidthUint64 ||
Width == S3BootScriptWidthFifoUint64 || Width == S3BootScriptWidthFifoUint64 ||
Width == S3BootScriptWidthFillUint64) { Width == S3BootScriptWidthFillUint64) {
return EFI_INVALID_PARAMETER; return EFI_INVALID_PARAMETER;
@ -1946,7 +1944,7 @@ S3BootScriptSavePciPoll (
@retval RETURN_OUT_OF_RESOURCES Not enough memory for the table do operation. @retval RETURN_OUT_OF_RESOURCES Not enough memory for the table do operation.
@retval RETURN_SUCCESS Opcode is added. @retval RETURN_SUCCESS Opcode is added.
@note A known Limitations in the implementation which is non-zero Segment and 64bits operations are not supported. @note A known Limitations in the implementation which is 64bits operations are not supported.
**/ **/
RETURN_STATUS RETURN_STATUS
@ -1965,8 +1963,7 @@ S3BootScriptSavePci2Poll (
UINT8 Length; UINT8 Length;
EFI_BOOT_SCRIPT_PCI_CONFIG2_POLL ScriptPci2Poll; EFI_BOOT_SCRIPT_PCI_CONFIG2_POLL ScriptPci2Poll;
if (Segment != 0 || if (Width == S3BootScriptWidthUint64 ||
Width == S3BootScriptWidthUint64 ||
Width == S3BootScriptWidthFifoUint64 || Width == S3BootScriptWidthFifoUint64 ||
Width == S3BootScriptWidthFillUint64) { Width == S3BootScriptWidthFillUint64) {
return EFI_INVALID_PARAMETER; return EFI_INVALID_PARAMETER;

View File

@ -52,7 +52,7 @@
PcdLib PcdLib
UefiLib UefiLib
SmbusLib SmbusLib
PciLib PciSegmentLib
IoLib IoLib
LockBoxLib LockBoxLib

View File

@ -2,7 +2,7 @@
Support for S3 boot script lib. This file defined some internal macro and internal Support for S3 boot script lib. This file defined some internal macro and internal
data structure data structure
Copyright (c) 2006 - 2015, Intel Corporation. All rights reserved.<BR> Copyright (c) 2006 - 2016, 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 are licensed and made available under the terms and conditions
@ -33,7 +33,7 @@
#include <Library/PcdLib.h> #include <Library/PcdLib.h>
#include <Library/SmbusLib.h> #include <Library/SmbusLib.h>
#include <Library/IoLib.h> #include <Library/IoLib.h>
#include <Library/PciLib.h> #include <Library/PciSegmentLib.h>
#include <Library/DebugLib.h> #include <Library/DebugLib.h>
#include <Library/BaseMemoryLib.h> #include <Library/BaseMemoryLib.h>
#include <Library/TimerLib.h> #include <Library/TimerLib.h>
@ -45,13 +45,15 @@
#define MAX_IO_ADDRESS 0xFFFF #define MAX_IO_ADDRESS 0xFFFF
// //
// Macro to convert a UEFI PCI address to a PCI Library PCI address // Macro to convert a UEFI PCI address + segment to a PCI Segment Library PCI address
// //
#define PCI_ADDRESS_ENCODE(A) (UINTN)PCI_LIB_ADDRESS( \ #define PCI_ADDRESS_ENCODE(S, A) PCI_SEGMENT_LIB_ADDRESS( \
((((UINTN)(A))& 0xff000000) >> 24), ((((UINTN)(A)) &0x00ff0000) >> 16), ((((UINTN)(A)) & 0xff00) >> 8), ((RShiftU64 ((A), 32) & 0xfff) | ((A)& 0xff)) \ S, \
) ((((UINTN)(A)) & 0xff000000) >> 24), \
((((UINTN)(A)) & 0x00ff0000) >> 16), \
((((UINTN)(A)) & 0xff00) >> 8), \
((RShiftU64 ((A), 32) & 0xfff) | ((A) & 0xff)) \
)
typedef union { typedef union {
UINT8 volatile *Buf; UINT8 volatile *Buf;