From: "Rebecca Cran" <rebecca@bsdio.com>
To: devel@edk2.groups.io, Jordan Justen <jordan.l.justen@intel.com>,
Laszlo Ersek <lersek@redhat.com>,
Ard Biesheuvel <ard.biesheuvel@arm.com>,
Andrew Fish <afish@apple.com>, Leif Lindholm <leif@nuviainc.com>,
Michael D Kinney <michael.d.kinney@intel.com>
Cc: Rebecca Cran <rebecca@bsdio.com>
Subject: [PATCH v4 0/6] Add BhyvePkg, to support the bhyve hypervisor
Date: Fri, 24 Apr 2020 12:29:08 -0600 [thread overview]
Message-ID: <20200424182914.138915-1-rebecca@bsdio.com> (raw)
- Updated License.txt
- Added copyright headers for myself
- Changed license from BSD-2-Clause to BSD-2-Clause-Patent
following email from Leif indicating that such relicensing
is valid without contacting all original authors
- Fixed BhyveFwCtlLib bug: due to Hdr being UINTN instead of
UINT32, an extra 4 bytes were being sent per transaction
- Other changes from review feedback
Cc: Andrew Fish <afish@apple.com>
Cc: Laszlo Ersek <lersek@redhat.com>
Cc: Leif Lindholm <leif@nuviainc.com>
Cc: Michael D Kinney <michael.d.kinney@intel.com>
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 | 251 +++
BhyvePkg/AcpiPlatformDxe/AcpiPlatform.h | 77 +
BhyvePkg/AcpiPlatformDxe/AcpiPlatformDxe.inf | 65 +
BhyvePkg/AcpiPlatformDxe/Bhyve.c | 132 ++
BhyvePkg/AcpiPlatformDxe/EntryPoint.c | 90 +
BhyvePkg/AcpiPlatformDxe/PciDecoding.c | 192 ++
BhyvePkg/AcpiTables/AcpiTables.inf | 39 +
BhyvePkg/AcpiTables/Dsdt.asl | 1140 +++++++++++
BhyvePkg/AcpiTables/Facp.aslc | 76 +
BhyvePkg/AcpiTables/Facs.aslc | 80 +
BhyvePkg/AcpiTables/Hpet.aslc | 72 +
BhyvePkg/AcpiTables/Madt.aslc | 145 ++
BhyvePkg/AcpiTables/Mcfg.aslc | 57 +
BhyvePkg/AcpiTables/Platform.h | 72 +
BhyvePkg/AcpiTables/Spcr.aslc | 63 +
BhyvePkg/AcpiTables/Ssdt.asl | 15 +
BhyvePkg/BhyvePkg.dec | 171 ++
BhyvePkg/BhyvePkgDefines.fdf.inc | 85 +
BhyvePkg/BhyvePkgX64.dsc | 847 +++++++++
BhyvePkg/BhyvePkgX64.fdf | 490 +++++
BhyvePkg/BhyveRfbDxe/BhyveRfbDxe.inf | 68 +
BhyvePkg/BhyveRfbDxe/ComponentName.c | 201 ++
BhyvePkg/BhyveRfbDxe/Gop.h | 149 ++
BhyvePkg/BhyveRfbDxe/GopDriver.c | 543 ++++++
BhyvePkg/BhyveRfbDxe/GopScreen.c | 393 ++++
BhyvePkg/BhyveRfbDxe/VbeShim.asm | 342 ++++
BhyvePkg/BhyveRfbDxe/VbeShim.c | 259 +++
BhyvePkg/BhyveRfbDxe/VbeShim.h | 912 +++++++++
BhyvePkg/BhyveRfbDxe/VbeShim.sh | 80 +
BhyvePkg/FvmainCompactScratchEnd.fdf.inc | 65 +
BhyvePkg/Include/Library/BhyveFwCtlLib.h | 47 +
.../Library/BhyveFwCtlLib/BhyveFwCtlLib.c | 426 +++++
.../Library/BhyveFwCtlLib/BhyveFwCtlLib.inf | 41 +
.../PlatformBootManagerLib/BdsPlatform.c | 1660 +++++++++++++++++
.../PlatformBootManagerLib/BdsPlatform.h | 190 ++
.../PlatformBootManagerLib.inf | 75 +
.../PlatformBootManagerLib/PlatformData.c | 171 ++
BhyvePkg/License.txt | 68 +
BhyvePkg/PlatformPei/AmdSev.c | 106 ++
BhyvePkg/PlatformPei/ClearCache.c | 111 ++
BhyvePkg/PlatformPei/Cmos.c | 58 +
BhyvePkg/PlatformPei/Cmos.h | 50 +
BhyvePkg/PlatformPei/FeatureControl.c | 21 +
BhyvePkg/PlatformPei/Fv.c | 94 +
BhyvePkg/PlatformPei/MemDetect.c | 627 +++++++
BhyvePkg/PlatformPei/Platform.c | 607 ++++++
BhyvePkg/PlatformPei/Platform.h | 137 ++
BhyvePkg/PlatformPei/PlatformPei.inf | 113 ++
BhyvePkg/SmbiosPlatformDxe/Bhyve.c | 43 +
.../SmbiosPlatformDxe/SmbiosPlatformDxe.c | 245 +++
.../SmbiosPlatformDxe/SmbiosPlatformDxe.h | 52 +
.../SmbiosPlatformDxe/SmbiosPlatformDxe.inf | 55 +
BhyvePkg/VarStore.fdf.inc | 115 ++
Maintainers.txt | 8 +
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 +++
Readme.md | 1 +
62 files changed, 12655 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/BhyvePkgDefines.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/FvmainCompactScratchEnd.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.25.1
next reply other threads:[~2020-04-24 18:29 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-04-24 18:29 Rebecca Cran [this message]
2020-04-24 18:29 ` [PATCH v4 1/6] OvmfPkg: Add bhyve support into AcpiTimerLib Rebecca Cran
2020-04-24 18:29 ` [PATCH v4 2/6] OvmfPkg: Add QemuFwCfgLibNull Rebecca Cran
2020-04-27 9:03 ` [edk2-devel] " Philippe Mathieu-Daudé
2020-04-27 17:33 ` Rebecca Cran
2020-04-28 11:27 ` Philippe Mathieu-Daudé
2020-04-28 16:12 ` Rebecca Cran
2020-04-24 18:29 ` [PATCH v4 3/6] OvmfPkg: Add VBE2 mode info structure to LegacyVgaBios.h Rebecca Cran
2020-04-24 18:29 ` [PATCH v4 4/6] Add BhyvePkg, to support the bhyve hypervisor Rebecca Cran
2020-04-24 18:29 ` [PATCH v4 5/6] BhyvePkg: Add PlatformPei Rebecca Cran
2020-04-24 18:29 ` [PATCH v4 6/6] BhyvePkg: Add AcpiPlatformDxe 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=20200424182914.138915-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