mirror of https://github.com/acidanthera/audk.git
DynamicTablesPkg: AcpiSsdtPcieLibArm: Support UID > 0xF
Add support for PCIe devices with UID > 0xF. This is done by using the next value in the name so PCI5, PC26, etc Signed-off-by: Jeff Brasen <jbrasen@nvidia.com> Reviewed-by: Pierre Gondois <pierre.gondois@arm.com> Reviewed-by: Sami Mujawar <sami.mujawar@arm.com>
This commit is contained in:
parent
6cda306da1
commit
9ac155bf0b
|
@ -824,7 +824,10 @@ GeneratePciDevice (
|
|||
|
||||
// Write the name of the PCI device.
|
||||
CopyMem (AslName, "PCIx", AML_NAME_SEG_SIZE + 1);
|
||||
AslName[AML_NAME_SEG_SIZE - 1] = AsciiFromHex (Uid);
|
||||
AslName[AML_NAME_SEG_SIZE - 1] = AsciiFromHex (Uid & 0xF);
|
||||
if (Uid > 0xF) {
|
||||
AslName[AML_NAME_SEG_SIZE - 2] = AsciiFromHex ((Uid >> 4) & 0xF);
|
||||
}
|
||||
|
||||
// ASL: Device (PCIx) {}
|
||||
Status = AmlCodeGenDevice (AslName, ScopeNode, &PciNode);
|
||||
|
|
|
@ -31,7 +31,7 @@
|
|||
Corresponding changes would be needed to support the Name and
|
||||
UID fields describing the Pci root complexes.
|
||||
*/
|
||||
#define MAX_PCI_ROOT_COMPLEXES_SUPPORTED 16
|
||||
#define MAX_PCI_ROOT_COMPLEXES_SUPPORTED 256
|
||||
|
||||
// _SB scope of the AML namespace.
|
||||
#define SB_SCOPE "\\_SB_"
|
||||
|
|
Loading…
Reference in New Issue