diff options
author | Abner Chang <abner.chang@hpe.com> | 2021-10-11 21:35:49 +0800 |
---|---|---|
committer | mergify[bot] <37929162+mergify[bot]@users.noreply.github.com> | 2021-10-14 06:25:52 +0000 |
commit | c6770f4b883358c9e096d15bc2da293c14cb3236 (patch) | |
tree | 76acb65f6fb3b45b011a87f94a7ab72d98a0ca96 | |
parent | 26aa241d2f25993d6b30a8c030938048d8dc3e02 (diff) | |
download | edk2-c6770f4b883358c9e096d15bc2da293c14cb3236.tar.gz |
MdePkg: Add PcdPciMmio32(64)Translation PCDs
PcdPciMmio32Translation and PcdPciMmio64Translation PCDs are added
to MdePkg as the common PCDs for ARM and RSIC-V archs.
The one under ArmPkg is removed in the next patch.
Signed-off-by: Abner Chang <abner.chang@hpe.com>
Cc: Michael D Kinney <michael.d.kinney@intel.com>
Cc: Liming Gao <gaoliming@byosoft.com.cn>
Cc: Zhiguang Liu <zhiguang.liu@intel.com>
Cc: Ard Biesheuvel <ardb+tianocore@kernel.org>
Cc: Leif Lindholm <leif@nuviainc.com>
Cc: Sami Mujawar <sami.mujawar@arm.com>
Cc: Gerd Hoffmann <kraxel@redhat.com>
Cc: Daniel Schaefer <daniel.schaefer@hpe.com>
Cc: Sunil V L <sunilvl@ventanamicro.com>
Reviewed-by: Liming Gao <gaoliming@byosoft.com.cn>
Reviewed-by: Daniel Schaefer <daniel.schaefer@hpe.com>
Reviewed-by: Sunil V L <sunilvl@ventanamicro.com>
Acked-by: Gerd Hoffmann <kraxel@redhat.com>
-rw-r--r-- | MdePkg/MdePkg.dec | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/MdePkg/MdePkg.dec b/MdePkg/MdePkg.dec index 96372d4879..8b18415b10 100644 --- a/MdePkg/MdePkg.dec +++ b/MdePkg/MdePkg.dec @@ -2309,6 +2309,14 @@ # @Prompt PCI I/O Memory Map Window Base Address.
gEfiMdePkgTokenSpaceGuid.PcdPciIoTranslation|0x0|UINT64|0x00000040
+ ## This value is used for the 32-bit PCI memory map I/O base address translation.
+ # @Prompt 32-bit PCI Memory Map I/O Base Address translation.
+ gEfiMdePkgTokenSpaceGuid.PcdPciMmio32Translation|0x0|UINT64|0x00000041
+
+ ## This value is used for the 64-bit PCI memory map I/O base address translation.
+ # @Prompt 64-bit PCI Memory Map I/O Base Address translation.
+ gEfiMdePkgTokenSpaceGuid.PcdPciMmio64Translation|0x0|UINT64|0x00000042
+
## This value is used to set the size of PCI express hierarchy. The default is 256 MB.
# @Prompt PCI Express Base Size.
gEfiMdePkgTokenSpaceGuid.PcdPciExpressBaseSize|0x10000000|UINT64|0x0000000f
|