public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
* [edk2-platforms][PATCH V3 0/9] Use PcdPciMmio(32)64Translation PCDs from MdePkg
@ 2021-10-15  7:32 Abner Chang
  2021-10-15  7:32 ` [edk2-platforms][PATCH V3 1/9] Platform/OverdriveBoard: Use PcdPciMmio(32)64Translation PCD " Abner Chang
                   ` (9 more replies)
  0 siblings, 10 replies; 12+ messages in thread
From: Abner Chang @ 2021-10-15  7:32 UTC (permalink / raw)
  To: devel
  Cc: Ard Biesheuvel, Leif Lindholm, Daniel Schaefer, Thomas Abraham,
	Sami Mujawar, Graeme Gregory, Radoslaw Biernacki, Pierre Gondois,
	Peng Xie, Ling Jia, Yiqi Shu

In V3: Fix the commit message in each patch.
       ArmVirtPkg->ArmPkg
In V2: Fix the invalid email address.

This patch set fixes the build error caused by referring to
PcdPciMmio(32)64Translation under ArmPkg. It should use the ones from
MdePkg because of the PCD relocation (BZ:#3665).

https://bugzilla.tianocore.org/show_bug.cgi?id=3665

BZ:#3665 is to migrate some modules from ArmVirtPkg
to under OvmfPkg for the upcoming RiscVVirtPkg that can leverage
those modules without the dependency with Arm*Pkg.
Refer to below message of the pacthes of edk2 portion.
https://edk2.groups.io/g/devel/message/81306

Below PCDs are moved to under MdePkg and leverage by RiscVVirtPkg.
- PcdPciMmio32Translation
- PcdPciMmio64Translation

Signed-off-by: Abner Chang <abner.chang@hpe.com>
Cc: Ard Biesheuvel <ardb+tianocore@kernel.org>
Cc: Leif Lindholm <leif@nuviainc.com>
Cc: Daniel Schaefer <daniel.schaefer@hpe.com>
Cc: Thomas Abraham <thomas.abraham@arm.com>
Cc: Sami Mujawar <sami.mujawar@arm.com>
Cc: Graeme Gregory <graeme@nuviainc.com>
Cc: Radoslaw Biernacki <rad@semihalf.com>
Cc: Pierre Gondois <pierre.gondois@arm.com>
Cc: Peng Xie <xiepeng@phytium.com.cn>
Cc: Ling Jia <jialing@phytium.com.cn>
Cc: Yiqi Shu <shuyiqi@phytium.com.cn>

Abner Chang (9):
  Platform/OverdriveBoard: Use PcdPciMmio(32)64Translation PCD from
    MdePkg
  Platform/CelloBoard: Use PcdPciMmio(32)64Translation PCD from MdePkg
  Platform/Overdrive1000Board: Use PcdPciMmio(32)64Translation PCD from
    MdePkg
  Silicon/Styx: Use PcdPciMmio(32)64Translation PCD from MdePkg
  Platform/ARM: Use PcdPciMmio(32)64Translation PCD from MdePkg
  Platform/SabaQemu: Use PcdPciMmio(32)64Translation PCD from MdePkg
  Silicon/SabaQemu: Use PcdPciMmio(32)64Translation PCD from MdePkg
  Platform/DurianPkg: Use PcdPciMmio(32)64Translation PCD from MdePkg
  Silicon/FT2000-4Pkg: Use PcdPciMmio(32)64Translation PCD from MdePkg

 Platform/ARM/SgiPkg/SgiPlatform.dsc.inc                       | 4 ++--
 Platform/AMD/OverdriveBoard/OverdriveBoard.dsc                | 4 ++--
 Platform/LeMaker/CelloBoard/CelloBoard.dsc                    | 4 ++--
 Platform/Phytium/DurianPkg/DurianPkg.dsc                      | 2 +-
 Platform/Qemu/SbsaQemu/SbsaQemu.dsc                           | 4 ++--
 Platform/SoftIron/Overdrive1000Board/Overdrive1000Board.dsc   | 4 ++--
 .../Library/JunoPciHostBridgeLib/JunoPciHostBridgeLib.inf     | 4 ++--
 .../ARM/SgiPkg/Library/PciHostBridgeLib/PciHostBridgeLib.inf  | 2 +-
 .../AmdStyxPciHostBridgeLib/AmdStyxPciHostBridgeLib.inf       | 4 ++--
 .../Phytium/FT2000-4Pkg/Library/PlatformLib/PlatformLib.inf   | 2 +-
 Silicon/Qemu/SbsaQemu/AcpiTables/AcpiTables.inf               | 4 ++--
 .../SbsaQemuPciHostBridgeLib/SbsaQemuPciHostBridgeLib.c       | 4 ++--
 12 files changed, 21 insertions(+), 21 deletions(-)

-- 
2.17.1


^ permalink raw reply	[flat|nested] 12+ messages in thread

end of thread, other threads:[~2021-10-15 11:46 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-10-15  7:32 [edk2-platforms][PATCH V3 0/9] Use PcdPciMmio(32)64Translation PCDs from MdePkg Abner Chang
2021-10-15  7:32 ` [edk2-platforms][PATCH V3 1/9] Platform/OverdriveBoard: Use PcdPciMmio(32)64Translation PCD " Abner Chang
2021-10-15  7:32 ` [edk2-platforms][PATCH V3 2/9] Platform/CelloBoard: " Abner Chang
2021-10-15  7:32 ` [edk2-platforms][PATCH V3 3/9] Platform/Overdrive1000Board: " Abner Chang
2021-10-15  7:33 ` [edk2-platforms][PATCH V3 4/9] Silicon/Styx: " Abner Chang
2021-10-15  7:33 ` [edk2-platforms][PATCH V3 5/9] Platform/ARM: " Abner Chang
2021-10-15  7:33 ` [edk2-platforms][PATCH V3 6/9] Platform/SabaQemu: " Abner Chang
2021-10-15  7:33 ` [edk2-platforms][PATCH V3 7/9] Silicon/SabaQemu: " Abner Chang
2021-10-15  7:33 ` [edk2-platforms][PATCH V3 8/9] Platform/DurianPkg: " Abner Chang
2021-10-15  7:33 ` [edk2-platforms][PATCH V3 9/9] Silicon/FT2000-4Pkg: " Abner Chang
2021-10-15 10:54 ` [edk2-platforms][PATCH V3 0/9] Use PcdPciMmio(32)64Translation PCDs " Leif Lindholm
2021-10-15 11:46   ` [edk2-devel] " Abner Chang

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox