From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mx0a-002e3701.pphosted.com (mx0a-002e3701.pphosted.com [148.163.147.86]) by mx.groups.io with SMTP id smtpd.web11.7623.1633344525659524278 for ; Mon, 04 Oct 2021 03:48:53 -0700 Authentication-Results: mx.groups.io; dkim=pass header.i=@hpe.com header.s=pps0720 header.b=STkPjCsE; spf=temperror, err=temporary DNS error (domain: hpe.com, ip: 148.163.147.86, mailfrom: prvs=0911ffc138=abner.chang@hpe.com) Received: from pps.filterd (m0148663.ppops.net [127.0.0.1]) by mx0a-002e3701.pphosted.com (8.16.1.2/8.16.1.2) with SMTP id 19463I3t015256; Mon, 4 Oct 2021 10:48:34 GMT DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=hpe.com; h=from : to : cc : subject : date : message-id : mime-version; s=pps0720; bh=f7Do7MqOMf9fMj8qjhPuCOkfAtULKuZsLjb7gY1ksoY=; b=STkPjCsE3ihxNpGf3jyayzHP8Yw2HV2z+6lI2jLDI4bNogHpowlRD2oORvmhCy65HNV/ 8ag55u7kXkpaY45boN9GgfkIeD0cHwP8bY+dfU6HcshocmaiINpNxD4hBvGbCfAuB+ZA KVc/8n5n3ETD8/vd0IGrUK3q0u/NVcSH1gQEuHimieoOYGVklSW5wJCIPr1lwd7BFKO5 Bbd/2WRoIJh7GIBbX+lHe/YQW9S5K5u3N1x1QaHJPfsvZmVesOGpVpkcbmJD3jUp7F7r 0PiO3AV/0lRZjLNZ/2aS/bJ1E9TlgxCaljM3DXNW7iChapT+Uhrx0K2OncqDToeORBo9 +g== Received: from g9t5009.houston.hpe.com (g9t5009.houston.hpe.com [15.241.48.73]) by mx0a-002e3701.pphosted.com with ESMTP id 3bfv0rhyf5-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-GCM-SHA384 bits=256 verify=NOT); Mon, 04 Oct 2021 10:48:34 +0000 Received: from g9t2301.houston.hpecorp.net (g9t2301.houston.hpecorp.net [16.220.97.129]) by g9t5009.houston.hpe.com (Postfix) with ESMTP id 309C351; Mon, 4 Oct 2021 10:48:33 +0000 (UTC) Received: from abner-virtual-machine.asiapacific.hpqcorp.net (abner-virtual-machine.asiapacific.hpqcorp.net [15.119.210.153]) by g9t2301.houston.hpecorp.net (Postfix) with ESMTP id 540D44E; Mon, 4 Oct 2021 10:48:29 +0000 (UTC) From: "Abner Chang" To: devel@edk2.groups.io Cc: Ard Biesheuvel , Leif Lindholm , Daniel Schaefer , Peng Xie , Ling Jia , Yiqi Shu , Thomas Abraham , Sami Mujawar , Graeme Gregory , Radoslaw Biernacki , Wenyi Xie Subject: [edk2-platforms][PATCH 00/15] Changes to compliant with BZ:#3665 Date: Mon, 4 Oct 2021 17:50:58 +0800 Message-Id: <20211004095058.4775-1-abner.chang@hpe.com> X-Mailer: git-send-email 2.17.1 X-Proofpoint-GUID: kRioqBnVi3mVtADlmo4ap2xcmn1tyaO8 X-Proofpoint-ORIG-GUID: kRioqBnVi3mVtADlmo4ap2xcmn1tyaO8 X-Proofpoint-UnRewURL: 0 URL was un-rewritten MIME-Version: 1.0 X-HPE-SCL: -1 X-Proofpoint-Virus-Version: vendor=baseguard engine=ICAP:2.0.182.1,Aquarius:18.0.790,Hydra:6.0.391,FMLib:17.0.607.475 definitions=2021-10-04_02,2021-10-04_01,2020-04-07_01 X-Proofpoint-Spam-Details: rule=outbound_notspam policy=outbound score=0 priorityscore=1501 mlxscore=0 suspectscore=0 lowpriorityscore=0 clxscore=1015 spamscore=0 impostorscore=0 bulkscore=0 mlxlogscore=539 malwarescore=0 phishscore=0 adultscore=0 classifier=spam adjust=0 reason=mlx scancount=1 engine=8.12.0-2109230001 definitions=main-2110040073 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 This edk2-platforms patch set is the corresponding platform DSC/FDF/INF changes to compliant with BZ:#3665. We will merge this patch set when the time the changes of edk2 are merged once this patch set is reviewed. FYI, The modules moved from ArmVirtPkg to OvmfPkg are: - FdtClientDxe - PciPcdProducerLib - HighMemDxe - QemuFwCfgLib - FdtPciHostBridgeLib - VirtioFdtDxe Below PCDs are moved to under MdePkg and leverage by RiscVVirtPkg. This change also remove the dependency on ArmPkg of OvmfPkg. - PcdPciIoTranslation - PcdPciIoTranslation Signed-off-by: Abner Chang Cc: Ard Biesheuvel Cc: Leif Lindholm Cc: Daniel Schaefer Cc: Peng Xie Cc: Ling Jia Cc: Yiqi Shu Cc: Thomas Abraham Cc: Sami Mujawar Cc: Graeme Gregory Cc: Radoslaw Biernacki Cc: Wenyi Xie Abner Chang (15): Platform/Comcast: Use FdtClientDxe from EmbeddedPkg Platform/Hisilicon: Use PcdPciIoTranslation PCD from MdePkg Platform/SbsaQemu: Use PcdPciIoTranslation PCD from MdePkg Platform/AMD: Use PcdPciIoTranslation PCD from MdePkg Platform/ARM: Use PcdPciIoTranslation PCD from MdePkg Platform/Comcast: Use PcdPciIoTranslation PCD from MdePkg Platform/LeMaker: Use PcdPciIoTranslation PCD from MdePkg Platform/Phytium: Use PcdPciIoTranslation PCD from MdePkg Platform/SoftIron: Use PcdPciIoTranslation PCD from MdePkg Platform/Socionext: Use PcdPciIoTranslation PCD from MdePkg Platform/Comcast: Use PciPcdProducerLib in OvmfPkg. Platform/Comcast: Use HighMemDxe provided by OvmfPkg Platform/Comcast: Use QemuFwCfgMmio provided by OvmfPkg Platform/Comcast: Use FdtPciHostBridgeLib provided by OvmfPkg. Platform/Comcast: Use VirtioFdtDxe provided by OvmfPkg. Platform/ARM/SgiPkg/SgiPlatform.dsc.inc | 3 ++- .../AMD/OverdriveBoard/OverdriveBoard.dsc | 2 +- Platform/ARM/JunoPkg/ArmJuno.dsc | 3 ++- Platform/Comcast/RDKQemu/RDKQemu.dsc | 20 +++++++++---------- Platform/Hisilicon/D03/D03.dsc | 2 +- Platform/Hisilicon/D05/D05.dsc | 2 +- Platform/Hisilicon/D06/D06.dsc | 2 +- Platform/LeMaker/CelloBoard/CelloBoard.dsc | 2 +- Platform/Phytium/DurianPkg/DurianPkg.dsc | 2 +- Platform/Qemu/SbsaQemu/SbsaQemu.dsc | 2 +- .../Overdrive1000Board/Overdrive1000Board.dsc | 2 +- .../JunoPciHostBridgeLib.inf | 3 ++- .../Library/PlatformLib/PlatformLib.inf | 2 +- .../Qemu/SbsaQemu/AcpiTables/AcpiTables.inf | 2 +- .../SynQuacerPciHostBridgeLib.inf | 2 +- 15 files changed, 27 insertions(+), 24 deletions(-) -- 2.17.1