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>, Peter Grehan <grehan@freebsd.org>,
Rebecca Cran <rebecca@bsdio.com>
Subject: [PATCH v3 0/6] Add BhyvePkg, to support the bhyve hypervisor
Date: Mon, 20 Apr 2020 21:09:49 -0600 [thread overview]
Message-ID: <20200421030955.114850-1-rebecca@bsdio.com> (raw)
I noticed a few things wrong with the v2 series:
o BhyveFwCtlLibNull is no longer used, and could be deleted.
o Some changes from the v1 AcpiPlatformDxe patch were left in OvmfPkg.
o BhyvePkg/License.txt still referred to OvmfPkg. I've updated it so
everything under BhyvePkg should be BSD-2-Clause.
This patch series can also be found at
https://git.bsdio.com/bcran/edk2-bhyve/commits/branch/master
Signed-off-by: Rebecca Cran <rebecca@bsdio.com>
Rebecca Cran (6):
OvmfPkg: Add bhyve support into AcpiTimerLib
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/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 +
.../PlatformBootManagerLib/BdsPlatform.c | 1660 +++++++++++++++++
.../PlatformBootManagerLib/BdsPlatform.h | 191 ++
.../PlatformBootManagerLib.inf | 74 +
.../PlatformBootManagerLib/PlatformData.c | 171 ++
BhyvePkg/License.txt | 44 +
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/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 +++
61 files changed, 12651 insertions(+)
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/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 3:10 UTC|newest]
Thread overview: 24+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-04-21 3:09 Rebecca Cran [this message]
2020-04-21 3:09 ` [PATCH v3 1/6] OvmfPkg: Add bhyve support into AcpiTimerLib Rebecca Cran
2020-04-23 7:56 ` [edk2-devel] " Laszlo Ersek
2020-04-21 3:09 ` [PATCH v3 2/6] OvmfPkg: Add QemuFwCfgLibNull Rebecca Cran
2020-04-23 8:21 ` [edk2-devel] " Laszlo Ersek
2020-04-21 3:09 ` [PATCH v3 3/6] OvmfPkg: Add VBE2 mode info structure to LegacyVgaBios.h Rebecca Cran
2020-04-23 8:05 ` [edk2-devel] " Laszlo Ersek
2020-04-21 3:09 ` [PATCH v3 4/6] Add BhyvePkg, to support the bhyve hypervisor Rebecca Cran
2020-04-23 9:19 ` [edk2-devel] " Laszlo Ersek
2020-04-23 9:42 ` Laszlo Ersek
2020-04-24 5:54 ` Rebecca Cran
2020-04-24 12:22 ` Laszlo Ersek
2020-04-23 20:08 ` Rebecca Cran
2020-04-24 10:11 ` Laszlo Ersek
2020-04-24 16:00 ` Rebecca Cran
2020-04-21 3:09 ` [PATCH v3 5/6] BhyvePkg: Add PlatformPei Rebecca Cran
2020-04-23 9:24 ` [edk2-devel] " Laszlo Ersek
2020-04-21 3:09 ` [PATCH v3 6/6] BhyvePkg: Add AcpiPlatformDxe Rebecca Cran
2020-04-23 9:44 ` [edk2-devel] " Laszlo Ersek
2020-04-21 15:27 ` [PATCH v3 0/6] Add BhyvePkg, to support the bhyve hypervisor Laszlo Ersek
2020-04-21 15:38 ` Rebecca Cran
2020-04-22 15:21 ` Laszlo Ersek
2020-04-22 16:48 ` Rebecca Cran
2020-04-24 10:11 ` Laszlo Ersek
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=20200421030955.114850-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