[edk2-devel] [PATCH 0/5] OvmfPkg/Bhyve: install Acpi tables by FwCfg

Corvin Köhne posted 5 patches 10 months, 2 weeks ago
Failed in applying to current master (apply log)
There is a newer version of this series
ArmVirtPkg/ArmVirtQemu.dsc                    |   1 +
ArmVirtPkg/ArmVirtQemuKernel.dsc              |   1 +
OvmfPkg/AmdSev/AmdSevX64.dsc                  |   1 +
OvmfPkg/CloudHv/CloudHvX64.dsc                |   1 +
OvmfPkg/IntelTdx/IntelTdxX64.dsc              |   1 +
OvmfPkg/Microvm/MicrovmX64.dsc                |   1 +
OvmfPkg/OvmfPkgIa32.dsc                       |   1 +
OvmfPkg/OvmfPkgIa32X64.dsc                    |   1 +
OvmfPkg/OvmfPkgX64.dsc                        |   1 +
OvmfPkg/RiscVVirt/RiscVVirtQemu.dsc           |   1 +
OvmfPkg/AcpiPlatformDxe/AcpiPlatformDxe.inf   |  10 +-
.../Bhyve/AcpiPlatformDxe/AcpiPlatformDxe.inf |   1 -
.../AcpiPlatformLib/DxeAcpiPlatformLib.inf    |  14 ++
OvmfPkg/AcpiPlatformDxe/AcpiPlatform.h        |  51 ----
OvmfPkg/Bhyve/AcpiPlatformDxe/AcpiPlatform.h  |  17 --
OvmfPkg/Include/Library/AcpiPlatformLib.h     |  56 +++++
OvmfPkg/AcpiPlatformDxe/AcpiPlatform.c        |   3 +
OvmfPkg/Bhyve/AcpiPlatformDxe/AcpiPlatform.c  |   5 +
OvmfPkg/Bhyve/AcpiPlatformDxe/PciDecoding.c   | 232 ------------------
.../AcpiPlatformLib}/BootScript.c             |   3 +-
.../AcpiPlatformLib}/PciDecoding.c            |   3 +-
.../AcpiPlatformLib}/QemuFwCfgAcpi.c          |   3 +-
22 files changed, 92 insertions(+), 316 deletions(-)
delete mode 100644 OvmfPkg/Bhyve/AcpiPlatformDxe/PciDecoding.c
rename OvmfPkg/{AcpiPlatformDxe => Library/AcpiPlatformLib}/BootScript.c (96%)
rename OvmfPkg/{AcpiPlatformDxe => Library/AcpiPlatformLib}/PciDecoding.c (96%)
rename OvmfPkg/{AcpiPlatformDxe => Library/AcpiPlatformLib}/QemuFwCfgAcpi.c (96%)
[edk2-devel] [PATCH 0/5] OvmfPkg/Bhyve: install Acpi tables by FwCfg
Posted by Corvin Köhne 10 months, 2 weeks ago
Hi,

latest Bhyve exposes it's Acpi tables by FwCfg. This patch series reuses
the Acpi Install method of Qemu for Bhyve.

CI: https://github.com/tianocore/edk2/pull/4545


Kind regards,
Corvin

Corvin Köhne (5):
  OvmfPkg: avoid including AcpiPlatformLib twice
  OvmfPkg: move PciEncoding into AcpiPlatformLib
  OvmfPkg: move BootScript into AcpiPlatformLib
  OvmfPkg: move QemuFwCfgAcpi into AcpiPlatformLib
  OvmfPkg/Bhyve: install Acpi tables provided by FwCfg

 ArmVirtPkg/ArmVirtQemu.dsc                    |   1 +
 ArmVirtPkg/ArmVirtQemuKernel.dsc              |   1 +
 OvmfPkg/AmdSev/AmdSevX64.dsc                  |   1 +
 OvmfPkg/CloudHv/CloudHvX64.dsc                |   1 +
 OvmfPkg/IntelTdx/IntelTdxX64.dsc              |   1 +
 OvmfPkg/Microvm/MicrovmX64.dsc                |   1 +
 OvmfPkg/OvmfPkgIa32.dsc                       |   1 +
 OvmfPkg/OvmfPkgIa32X64.dsc                    |   1 +
 OvmfPkg/OvmfPkgX64.dsc                        |   1 +
 OvmfPkg/RiscVVirt/RiscVVirtQemu.dsc           |   1 +
 OvmfPkg/AcpiPlatformDxe/AcpiPlatformDxe.inf   |  10 +-
 .../Bhyve/AcpiPlatformDxe/AcpiPlatformDxe.inf |   1 -
 .../AcpiPlatformLib/DxeAcpiPlatformLib.inf    |  14 ++
 OvmfPkg/AcpiPlatformDxe/AcpiPlatform.h        |  51 ----
 OvmfPkg/Bhyve/AcpiPlatformDxe/AcpiPlatform.h  |  17 --
 OvmfPkg/Include/Library/AcpiPlatformLib.h     |  56 +++++
 OvmfPkg/AcpiPlatformDxe/AcpiPlatform.c        |   3 +
 OvmfPkg/Bhyve/AcpiPlatformDxe/AcpiPlatform.c  |   5 +
 OvmfPkg/Bhyve/AcpiPlatformDxe/PciDecoding.c   | 232 ------------------
 .../AcpiPlatformLib}/BootScript.c             |   3 +-
 .../AcpiPlatformLib}/PciDecoding.c            |   3 +-
 .../AcpiPlatformLib}/QemuFwCfgAcpi.c          |   3 +-
 22 files changed, 92 insertions(+), 316 deletions(-)
 delete mode 100644 OvmfPkg/Bhyve/AcpiPlatformDxe/PciDecoding.c
 rename OvmfPkg/{AcpiPlatformDxe => Library/AcpiPlatformLib}/BootScript.c (96%)
 rename OvmfPkg/{AcpiPlatformDxe => Library/AcpiPlatformLib}/PciDecoding.c (96%)
 rename OvmfPkg/{AcpiPlatformDxe => Library/AcpiPlatformLib}/QemuFwCfgAcpi.c (96%)

-- 
2.41.0



-=-=-=-=-=-=-=-=-=-=-=-
Groups.io Links: You receive all messages sent to this group.
View/Reply Online (#106074): https://edk2.groups.io/g/devel/message/106074
Mute This Topic: https://groups.io/mt/99523352/1787277
Group Owner: devel+owner@edk2.groups.io
Unsubscribe: https://edk2.groups.io/g/devel/unsub [importer@patchew.org]
-=-=-=-=-=-=-=-=-=-=-=-