mirror of https://github.com/acidanthera/audk.git
ShellPkg: pci -i -_e to print next capability
According to PCI spec the next AER capability is relative to the beginning of PCI configuration space. Hence substract the base offset to get the next capability. "-_e" option is changed from TypeFlag to TypeValue, so that user can specify individual AER capability to print. e.g. pci 00 00 01 -i -_e <capability-id> Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Abdul Lateef Attar <abdul-lateef.attar@hpe.com> Reviewed-by: Jaben Carsey <jaben.carsey@intel.com>
This commit is contained in:
parent
e51a677dea
commit
1b3be4a12e
|
@ -2370,7 +2370,7 @@ PCI_CONFIG_SPACE *mConfigSpace = NULL;
|
|||
STATIC CONST SHELL_PARAM_ITEM ParamList[] = {
|
||||
{L"-s", TypeValue},
|
||||
{L"-i", TypeFlag},
|
||||
{L"-_e", TypeFlag},
|
||||
{L"-_e", TypeValue},
|
||||
{NULL, TypeMax}
|
||||
};
|
||||
|
||||
|
@ -5914,7 +5914,7 @@ PciExplainPciExpress (
|
|||
// Advance to the next item if it exists
|
||||
//
|
||||
if (ExtHdr->NextCapabilityOffset != 0) {
|
||||
ExtHdr = (PCI_EXP_EXT_HDR*)((UINT8*)ExRegBuffer + ExtHdr->NextCapabilityOffset);
|
||||
ExtHdr = (PCI_EXP_EXT_HDR*)((UINT8*)ExRegBuffer + ExtHdr->NextCapabilityOffset - EFI_PCIE_CAPABILITY_BASE_OFFSET);
|
||||
} else {
|
||||
break;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue