public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
* [PATCH v4 0/6] Add BhyvePkg, to support the bhyve hypervisor
@ 2020-04-24 18:29 Rebecca Cran
  2020-04-24 18:29 ` [PATCH v4 1/6] OvmfPkg: Add bhyve support into AcpiTimerLib Rebecca Cran
                   ` (5 more replies)
  0 siblings, 6 replies; 11+ messages in thread
From: Rebecca Cran @ 2020-04-24 18:29 UTC (permalink / raw)
  To: devel, Jordan Justen, Laszlo Ersek, Ard Biesheuvel, Andrew Fish,
	Leif Lindholm, Michael D Kinney
  Cc: Rebecca Cran

- 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



^ permalink raw reply	[flat|nested] 11+ messages in thread

end of thread, other threads:[~2020-04-28 16:12 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-04-24 18:29 [PATCH v4 0/6] Add BhyvePkg, to support the bhyve hypervisor Rebecca Cran
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

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox