From: "Rebecca Cran" <rebecca@bsdio.com>
To: devel@edk2.groups.io
Cc: Jordan Justen <jordan.l.justen@intel.com>,
Laszlo Ersek <lersek@redhat.com>,
Ard Biesheuvel <ard.biesheuvel@arm.com>,
Leif Lindholm <leif.lindholm@linaro.org>,
Michael Kinney <michael.d.kinney@intel.com>,
Andrew Fish <afish@apple.com>, Rebecca Cran <rebecca@bsdio.com>
Subject: [PATCH v2 0/8] Add BhyvePkg, to support the bhyve hypervisor
Date: Mon, 20 Apr 2020 20:04:33 -0600 [thread overview]
Message-ID: <20200421020441.34175-1-rebecca@bsdio.com> (raw)
Many changes from the first patch series, hopefully incorporating all
feedback I received. Changes include switching to the SPDX license
headers, updating Maintainers.txt, moving PlatformPei and
AcpiPlatformDxe under BhyvePkg, changing FILE_GUIDs to be unique
(except AcpiTables, which needs to be the same between OvmfPkg and
BhyvePkg), and incorporating Peter Grehan's arbitrary GOP resolution
patch (https://people.freebsd.org/~grehan/bhyve_uefi/bhyve_edk2_ares.diff).
Signed-off-by: Rebecca Cran <rebecca@bsdio.com>
Rebecca Cran (8):
OvmfPkg: Add bhyve support into AcpiTimerLib
BhyvePkg: Add BhyveFwCtlLibNull
OvmfPkg: Add QemuFwCfgLibNull
OvmfPkg: Add VBE2 mode info structure to LegacyVgaBios.h
Add BhyvePkg, to support the bhyve hypervisor
BhyvePkg: Add PlatformPei
BhyvePkg: Add AcpiPlatformDxe
BhyvePkg: Add InstrinsicsLib to BhyveFwCtlLib
BhyvePkg/AcpiPlatformDxe/AcpiPlatform.c | 250 +++
BhyvePkg/AcpiPlatformDxe/AcpiPlatform.h | 76 +
BhyvePkg/AcpiPlatformDxe/AcpiPlatformDxe.inf | 64 +
BhyvePkg/AcpiPlatformDxe/Bhyve.c | 138 ++
BhyvePkg/AcpiPlatformDxe/EntryPoint.c | 90 +
BhyvePkg/AcpiPlatformDxe/PciDecoding.c | 192 ++
BhyvePkg/AcpiTables/AcpiTables.inf | 42 +
BhyvePkg/AcpiTables/Dsdt.asl | 1134 +++++++++++
BhyvePkg/AcpiTables/Facp.aslc | 75 +
BhyvePkg/AcpiTables/Facs.aslc | 79 +
BhyvePkg/AcpiTables/Hpet.aslc | 71 +
BhyvePkg/AcpiTables/Madt.aslc | 144 ++
BhyvePkg/AcpiTables/Mcfg.aslc | 56 +
BhyvePkg/AcpiTables/Platform.h | 71 +
BhyvePkg/AcpiTables/Spcr.aslc | 62 +
BhyvePkg/AcpiTables/Ssdt.asl | 14 +
BhyvePkg/BhyvePkg.dec | 170 ++
BhyvePkg/BhyvePkg.fdf.inc | 85 +
BhyvePkg/BhyvePkgX64.dsc | 846 +++++++++
BhyvePkg/BhyvePkgX64.fdf | 513 +++++
BhyvePkg/BhyveRfbDxe/BhyveRfbDxe.inf | 67 +
BhyvePkg/BhyveRfbDxe/ComponentName.c | 200 ++
BhyvePkg/BhyveRfbDxe/Gop.h | 148 ++
BhyvePkg/BhyveRfbDxe/GopDriver.c | 542 ++++++
BhyvePkg/BhyveRfbDxe/GopScreen.c | 392 ++++
BhyvePkg/BhyveRfbDxe/VbeShim.asm | 341 ++++
BhyvePkg/BhyveRfbDxe/VbeShim.c | 258 +++
BhyvePkg/BhyveRfbDxe/VbeShim.h | 912 +++++++++
BhyvePkg/BhyveRfbDxe/VbeShim.sh | 79 +
BhyvePkg/DecomprScratchEnd.fdf.inc | 66 +
BhyvePkg/Include/Library/BhyveFwCtlLib.h | 46 +
.../Library/BhyveFwCtlLib/BhyveFwCtlLib.c | 425 +++++
.../Library/BhyveFwCtlLib/BhyveFwCtlLib.inf | 40 +
.../BhyveFwCtlLibNull/BhyveFwCtlLibNull.c | 53 +
.../BhyveFwCtlLibNull/BhyveFwCtlLibNull.inf | 39 +
.../PlatformBootManagerLib/BdsPlatform.c | 1660 +++++++++++++++++
.../PlatformBootManagerLib/BdsPlatform.h | 191 ++
.../PlatformBootManagerLib.inf | 74 +
.../PlatformBootManagerLib/PlatformData.c | 171 ++
BhyvePkg/License.txt | 50 +
BhyvePkg/PlatformPei/AmdSev.c | 106 ++
BhyvePkg/PlatformPei/ClearCache.c | 111 ++
BhyvePkg/PlatformPei/Cmos.c | 58 +
BhyvePkg/PlatformPei/Cmos.h | 50 +
BhyvePkg/PlatformPei/FeatureControl.c | 20 +
BhyvePkg/PlatformPei/Fv.c | 94 +
BhyvePkg/PlatformPei/MemDetect.c | 631 +++++++
BhyvePkg/PlatformPei/Platform.c | 612 ++++++
BhyvePkg/PlatformPei/Platform.h | 136 ++
BhyvePkg/PlatformPei/PlatformPei.inf | 117 ++
BhyvePkg/SmbiosPlatformDxe/Bhyve.c | 42 +
.../SmbiosPlatformDxe/SmbiosPlatformDxe.c | 244 +++
.../SmbiosPlatformDxe/SmbiosPlatformDxe.h | 63 +
.../SmbiosPlatformDxe/SmbiosPlatformDxe.inf | 54 +
BhyvePkg/VarStore.fdf.inc | 115 ++
Maintainers.txt | 7 +
OvmfPkg/AcpiPlatformDxe/AcpiPlatform.c | 8 +-
OvmfPkg/AcpiPlatformDxe/AcpiPlatform.h | 9 +
OvmfPkg/AcpiPlatformDxe/AcpiPlatformDxe.inf | 3 +
OvmfPkg/Include/IndustryStandard/Bhyve.h | 16 +
.../Include/IndustryStandard/LegacyVgaBios.h | 38 +
OvmfPkg/Include/OvmfPlatforms.h | 1 +
.../AcpiTimerLib/BaseAcpiTimerLibBhyve.c | 32 +
.../AcpiTimerLib/BaseAcpiTimerLibBhyve.inf | 30 +
.../Library/QemuFwCfgLib/QemuFwCfgLibNull.inf | 37 +
OvmfPkg/Library/QemuFwCfgLib/QemuFwCfgNull.c | 209 +++
OvmfPkg/OvmfPkgIa32.dsc | 1 +
OvmfPkg/OvmfPkgIa32X64.dsc | 1 +
OvmfPkg/OvmfPkgX64.dsc | 1 +
OvmfPkg/OvmfXen.dsc | 1 +
70 files changed, 12770 insertions(+), 3 deletions(-)
create mode 100644 BhyvePkg/AcpiPlatformDxe/AcpiPlatform.c
create mode 100644 BhyvePkg/AcpiPlatformDxe/AcpiPlatform.h
create mode 100644 BhyvePkg/AcpiPlatformDxe/AcpiPlatformDxe.inf
create mode 100644 BhyvePkg/AcpiPlatformDxe/Bhyve.c
create mode 100644 BhyvePkg/AcpiPlatformDxe/EntryPoint.c
create mode 100644 BhyvePkg/AcpiPlatformDxe/PciDecoding.c
create mode 100644 BhyvePkg/AcpiTables/AcpiTables.inf
create mode 100644 BhyvePkg/AcpiTables/Dsdt.asl
create mode 100644 BhyvePkg/AcpiTables/Facp.aslc
create mode 100644 BhyvePkg/AcpiTables/Facs.aslc
create mode 100644 BhyvePkg/AcpiTables/Hpet.aslc
create mode 100644 BhyvePkg/AcpiTables/Madt.aslc
create mode 100644 BhyvePkg/AcpiTables/Mcfg.aslc
create mode 100644 BhyvePkg/AcpiTables/Platform.h
create mode 100644 BhyvePkg/AcpiTables/Spcr.aslc
create mode 100644 BhyvePkg/AcpiTables/Ssdt.asl
create mode 100644 BhyvePkg/BhyvePkg.dec
create mode 100644 BhyvePkg/BhyvePkg.fdf.inc
create mode 100644 BhyvePkg/BhyvePkgX64.dsc
create mode 100644 BhyvePkg/BhyvePkgX64.fdf
create mode 100644 BhyvePkg/BhyveRfbDxe/BhyveRfbDxe.inf
create mode 100644 BhyvePkg/BhyveRfbDxe/ComponentName.c
create mode 100644 BhyvePkg/BhyveRfbDxe/Gop.h
create mode 100644 BhyvePkg/BhyveRfbDxe/GopDriver.c
create mode 100644 BhyvePkg/BhyveRfbDxe/GopScreen.c
create mode 100644 BhyvePkg/BhyveRfbDxe/VbeShim.asm
create mode 100644 BhyvePkg/BhyveRfbDxe/VbeShim.c
create mode 100644 BhyvePkg/BhyveRfbDxe/VbeShim.h
create mode 100644 BhyvePkg/BhyveRfbDxe/VbeShim.sh
create mode 100644 BhyvePkg/DecomprScratchEnd.fdf.inc
create mode 100644 BhyvePkg/Include/Library/BhyveFwCtlLib.h
create mode 100644 BhyvePkg/Library/BhyveFwCtlLib/BhyveFwCtlLib.c
create mode 100644 BhyvePkg/Library/BhyveFwCtlLib/BhyveFwCtlLib.inf
create mode 100644 BhyvePkg/Library/BhyveFwCtlLibNull/BhyveFwCtlLibNull.c
create mode 100644 BhyvePkg/Library/BhyveFwCtlLibNull/BhyveFwCtlLibNull.inf
create mode 100644 BhyvePkg/Library/PlatformBootManagerLib/BdsPlatform.c
create mode 100644 BhyvePkg/Library/PlatformBootManagerLib/BdsPlatform.h
create mode 100644 BhyvePkg/Library/PlatformBootManagerLib/PlatformBootManagerLib.inf
create mode 100644 BhyvePkg/Library/PlatformBootManagerLib/PlatformData.c
create mode 100644 BhyvePkg/License.txt
create mode 100644 BhyvePkg/PlatformPei/AmdSev.c
create mode 100644 BhyvePkg/PlatformPei/ClearCache.c
create mode 100644 BhyvePkg/PlatformPei/Cmos.c
create mode 100644 BhyvePkg/PlatformPei/Cmos.h
create mode 100644 BhyvePkg/PlatformPei/FeatureControl.c
create mode 100644 BhyvePkg/PlatformPei/Fv.c
create mode 100644 BhyvePkg/PlatformPei/MemDetect.c
create mode 100644 BhyvePkg/PlatformPei/Platform.c
create mode 100644 BhyvePkg/PlatformPei/Platform.h
create mode 100644 BhyvePkg/PlatformPei/PlatformPei.inf
create mode 100644 BhyvePkg/SmbiosPlatformDxe/Bhyve.c
create mode 100644 BhyvePkg/SmbiosPlatformDxe/SmbiosPlatformDxe.c
create mode 100644 BhyvePkg/SmbiosPlatformDxe/SmbiosPlatformDxe.h
create mode 100644 BhyvePkg/SmbiosPlatformDxe/SmbiosPlatformDxe.inf
create mode 100644 BhyvePkg/VarStore.fdf.inc
create mode 100644 OvmfPkg/Include/IndustryStandard/Bhyve.h
create mode 100644 OvmfPkg/Library/AcpiTimerLib/BaseAcpiTimerLibBhyve.c
create mode 100644 OvmfPkg/Library/AcpiTimerLib/BaseAcpiTimerLibBhyve.inf
create mode 100644 OvmfPkg/Library/QemuFwCfgLib/QemuFwCfgLibNull.inf
create mode 100644 OvmfPkg/Library/QemuFwCfgLib/QemuFwCfgNull.c
--
2.20.1
next reply other threads:[~2020-04-21 2:04 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-04-21 2:04 Rebecca Cran [this message]
2020-04-21 2:04 ` [PATCH v2 1/8] OvmfPkg: Add bhyve support into AcpiTimerLib Rebecca Cran
2020-04-21 2:04 ` [PATCH v2 2/8] BhyvePkg: Add BhyveFwCtlLibNull Rebecca Cran
2020-04-21 2:04 ` [PATCH v2 3/8] OvmfPkg: Add QemuFwCfgLibNull Rebecca Cran
2020-04-21 2:04 ` [PATCH v2 4/8] OvmfPkg: Add VBE2 mode info structure to LegacyVgaBios.h Rebecca Cran
2020-04-21 2:04 ` [PATCH v2 5/8] Add BhyvePkg, to support the bhyve hypervisor Rebecca Cran
2020-04-21 2:04 ` [PATCH v2 6/8] BhyvePkg: Add PlatformPei Rebecca Cran
2020-04-21 2:04 ` [PATCH v2 7/8] BhyvePkg: Add AcpiPlatformDxe Rebecca Cran
2020-04-21 2:04 ` [PATCH v2 8/8] BhyvePkg: Add InstrinsicsLib to BhyveFwCtlLib Rebecca Cran
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-list from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20200421020441.34175-1-rebecca@bsdio.com \
--to=devel@edk2.groups.io \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox