public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
* [edk2-staging/RiscV64QemuVirt PATCH V6 00/23] Add support for RISC-V virt machine
@ 2022-12-15 12:56 Sunil V L
  2022-12-15 12:56 ` [edk2-staging/RiscV64QemuVirt PATCH V6 01/23] MdePkg/Register: Add register definition header files for RISC-V Sunil V L
                   ` (24 more replies)
  0 siblings, 25 replies; 26+ messages in thread
From: Sunil V L @ 2022-12-15 12:56 UTC (permalink / raw)
  To: devel
  Cc: Abner Chang, Daniel Schaefer, Michael D Kinney, Liming Gao,
	Zhiguang Liu, Ard Biesheuvel, Jiewen Yao, Jordan Justen,
	Gerd Hoffmann, Rebecca Cran, Peter Grehan, Brijesh Singh,
	Erdem Aktas, James Bottomley, Min Xu, Tom Lendacky, Eric Dong,
	Ray Ni, Rahul Kumar, Leif Lindholm, Sami Mujawar, Andrew Fish,
	Jian J Wang, Anup Patel, Heinrich Schuchardt, Andrei Warkentin

REF: https://bugzilla.tianocore.org/show_bug.cgi?id=4076

Add support for RISC-V qemu virt machine. Most of the changes are migrated from
edk2-platforms repo and followed the latest guidelines for EDK2 code structuring.

The series has passed all CI tests (https://github.com/tianocore/edk2/pull/3471)

These changes are available at: https://github.com/vlsunil/edk2/tree/RiscV64QemuVirt

Changes since V5:
	1) Avoided editing the existing INF files (as per feedback from Ray Ni). This reduced
	   several refactor patches.
	2) Moved to PEI less design (as per suggestion from Andrei Warkentin).
	3) Added PciCpuIo2Dxe driver in OvmfPkg.
	4) Removed APRIORI requirement in DSC/FDF infrastructure files. Now they 
	   are very similar to ArmVirtQemu.
	5) Addressed Heinrich's feedback.
	6) Rebased and added the tags

Changes since V4:
	1) Rebased and added ACKs
	2) Dropped few patches related to VirtNorFlashDxe since they are already taken care by Ard.

Changes since V3:
	1) Addressed Abner's comments
	2) Changed folder name from Ia32_X64 to Ia32X64 as per latest guidelines.
	2) Rebased

Changes since V2:
	1) Fixed issues detected by CI (https://github.com/tianocore/edk2/pull/3471)
	2) Added an extra patch to fix up the consumers of NvVarStoreFormattedLib

Changes since V1:
	1) Added couple of patches from Ard to optimize the NorFlashDxe in Ovmf.
	   Note: There will be a separate patch series in future to update existing
	   consumers of NorFlashDxe driver.
	2) Migrated NvVarStoreFormattedLib from EmbeddedPkg to MdeModulePkg
	3) Created Null instance of the NorFlashPlatformLib library class
	4) Moved NorFlashPlatformLib.h from ArmPlatformPkg

Cc: Abner Chang <abner.chang@amd.com>
Cc: Daniel Schaefer <git@danielschaefer.me>
Cc: Michael D Kinney <michael.d.kinney@intel.com>
Cc: Liming Gao <gaoliming@byosoft.com.cn>
Cc: Zhiguang Liu <zhiguang.liu@intel.com>
Cc: Ard Biesheuvel <ardb+tianocore@kernel.org>
Cc: Jiewen Yao <jiewen.yao@intel.com>
Cc: Jordan Justen <jordan.l.justen@intel.com>
Cc: Gerd Hoffmann <kraxel@redhat.com>
Cc: Rebecca Cran <rebecca@bsdio.com>
Cc: Peter Grehan <grehan@freebsd.org>
Cc: Brijesh Singh <brijesh.singh@amd.com>
Cc: Erdem Aktas <erdemaktas@google.com>
Cc: James Bottomley <jejb@linux.ibm.com>
Cc: Min Xu <min.m.xu@intel.com>
Cc: Tom Lendacky <thomas.lendacky@amd.com>
Cc: Eric Dong <eric.dong@intel.com>
Cc: Ray Ni <ray.ni@intel.com>
Cc: Rahul Kumar <rahul1.kumar@intel.com>
Cc: Leif Lindholm <quic_llindhol@quicinc.com>
Cc: Sami Mujawar <sami.mujawar@arm.com>
Cc: Andrew Fish <afish@apple.com>
Cc: Jian J Wang <jian.j.wang@intel.com>
Cc: Anup Patel <apatel@ventanamicro.com>
Cc: Heinrich Schuchardt <heinrich.schuchardt@canonical.com>
Cc: Andrei Warkentin <andrei.warkentin@intel.com>

Sunil V L (23):
  MdePkg/Register: Add register definition header files for RISC-V
  MdePkg: Add RISCV_EFI_BOOT_PROTOCOL related definitions
  MdePkg/BaseLib: RISC-V: Add few more helper functions
  MdePkg: Add BaseRiscVSbiLib Library for RISC-V
  UefiCpuPkg: Add CpuTimerDxe module
  UefiCpuPkg/CpuExceptionHandlerLib: Add RISC-V instance
  UefiCpuPkg/CpuDxe: Add RISC-V instance
  UefiCpuPkg/CpuTimerLib: Add RISC-V instance
  UefiCpuPkg/UefiCpuPkg.ci.yaml: Ignore RISC-V file
  EmbeddedPkg: Enable PcdPrePiCpuIoSize for RISC-V
  EmbeddedPkg/NvVarStoreFormattedLib: Migrate to MdeModulePkg
  ArmVirtPkg: Update the references to NvVarStoreFormattedLib
  ArmVirtPkg/PlatformHasAcpiDtDxe: Move to OvmfPkg
  ArmVirtPkg: Fix up the location of PlatformHasAcpiDtDxe
  OvmfPkg: Add VirtNorFlashPlatformLib library
  OvmfPkg/PlatformInitLib: Add RISC-V instance
  OvmfPkg: Add PrePiHobListPointerLib library
  OvmfPkg: Add PciCpuIo2Dxe driver
  OvmfPkg/ResetSystemLib: Add RISC-V instance
  OvmfPkg/Sec: Add RISC-V SEC module
  OvmfPkg/PlatformBootManagerLib: Add RISC-V instance
  OvmfPkg: RiscVVirt: Add Qemu Virt platform support
  Maintainers.txt: Add entry for OvmfPkg/RiscVVirt

 ArmVirtPkg/ArmVirtPkg.dec                                                               |    9 -
 EmbeddedPkg/EmbeddedPkg.dec                                                             |    6 +-
 MdeModulePkg/MdeModulePkg.dec                                                           |    3 +
 MdePkg/MdePkg.dec                                                                       |    9 +
 OvmfPkg/OvmfPkg.dec                                                                     |   11 +
 OvmfPkg/RiscVVirt/RiscVVirt.dsc.inc                                                     |  338 ++++++
 ArmVirtPkg/ArmVirtCloudHv.dsc                                                           |    2 +-
 ArmVirtPkg/ArmVirtKvmTool.dsc                                                           |    2 +-
 ArmVirtPkg/ArmVirtQemu.dsc                                                              |    6 +-
 ArmVirtPkg/ArmVirtQemuKernel.dsc                                                        |    4 +-
 MdeModulePkg/MdeModulePkg.dsc                                                           |    2 +
 MdePkg/MdePkg.dsc                                                                       |    3 +
 OvmfPkg/RiscVVirt/RiscVVirtQemu.dsc                                                     |  510 +++++++++
 UefiCpuPkg/UefiCpuPkg.dsc                                                               |    6 +
 OvmfPkg/RiscVVirt/RiscVVirtQemu.fdf                                                     |  306 ++++++
 ArmVirtPkg/CloudHvPlatformHasAcpiDtDxe/CloudHvHasAcpiDtDxe.inf                          |    2 +-
 ArmVirtPkg/KvmtoolPlatformDxe/KvmtoolPlatformDxe.inf                                    |    2 +-
 {EmbeddedPkg => MdeModulePkg}/Library/NvVarStoreFormattedLib/NvVarStoreFormattedLib.inf |    1 -
 MdePkg/Library/BaseLib/BaseLib.inf                                                      |    3 +
 MdePkg/Library/BaseRiscVSbiLib/BaseRiscVSbiLib.inf                                      |   25 +
 OvmfPkg/Library/PlatformBootManagerLib/DxeRiscV64PlatformBootManagerLib.inf             |   75 ++
 OvmfPkg/Library/PlatformInitLib/BaseRiscV64PlatformInitLib.inf                          |   51 +
 OvmfPkg/Library/PrePiHobListPointerLib/PrePiHobListPointerLib.inf                       |   23 +
 OvmfPkg/Library/ResetSystemLib/BaseRiscV64ResetSystemLib.inf                            |   38 +
 OvmfPkg/Library/VirtNorFlashPlatformLib/VirtNorFlashDeviceTreeLib.inf                   |   40 +
 OvmfPkg/Library/VirtNorFlashPlatformLib/VirtNorFlashStaticLib.inf                       |   30 +
 OvmfPkg/PciCpuIo2Dxe/PciCpuIo2Dxe.inf                                                   |   48 +
 {ArmVirtPkg => OvmfPkg}/PlatformHasAcpiDtDxe/PlatformHasAcpiDtDxe.inf                   |    3 +-
 OvmfPkg/Sec/SecMainRiscV64.inf                                                          |   58 ++
 UefiCpuPkg/CpuDxe/CpuDxeRiscV64.inf                                                     |   68 ++
 UefiCpuPkg/CpuTimerDxe/CpuTimerDxe.inf                                                  |   51 +
 UefiCpuPkg/Library/CpuExceptionHandlerLib/BaseRiscV64CpuExceptionHandlerLib.inf         |   42 +
 UefiCpuPkg/Library/CpuTimerLib/BaseRiscV64CpuTimerLib.inf                               |   32 +
 {EmbeddedPkg => MdeModulePkg}/Include/Guid/NvVarStoreFormatted.h                        |    0
 MdePkg/Include/Library/BaseLib.h                                                        |   50 +
 MdePkg/Include/Library/BaseRiscVSbiLib.h                                                |  127 +++
 MdePkg/Include/Protocol/RiscVBootProtocol.h                                             |   34 +
 MdePkg/Include/Register/RiscV64/RiscVEncoding.h                                         |  119 +++
 MdePkg/Include/Register/RiscV64/RiscVImpl.h                                             |   25 +
 OvmfPkg/Include/Library/PlatformInitLib.h                                               |   39 +
 OvmfPkg/Library/PlatformBootManagerLib/RiscV64/PlatformBm.h                             |   45 +
 OvmfPkg/Sec/RiscV64/SecMain.h                                                           |   63 ++
 UefiCpuPkg/CpuDxe/RiscV64/CpuDxe.h                                                      |  199 ++++
 UefiCpuPkg/CpuTimerDxe/RiscV64/Timer.h                                                  |  177 ++++
 UefiCpuPkg/Library/CpuExceptionHandlerLib/RiscV64/CpuExceptionHandlerLib.h              |  116 +++
 {EmbeddedPkg => MdeModulePkg}/Library/NvVarStoreFormattedLib/NvVarStoreFormattedLib.c   |    0
 MdePkg/Library/BaseRiscVSbiLib/BaseRiscVSbiLib.c                                        |  227 +++++
 OvmfPkg/Library/PlatformBootManagerLib/RiscV64/PlatformBm.c                             | 1078 ++++++++++++++++++++
 OvmfPkg/Library/PlatformBootManagerLib/RiscV64/QemuKernel.c                             |   77 ++
 OvmfPkg/Library/PlatformInitLib/RiscV64/Cpu.c                                           |   33 +
 OvmfPkg/Library/PlatformInitLib/RiscV64/Memory.c                                        |  263 +++++
 OvmfPkg/Library/PlatformInitLib/RiscV64/Platform.c                                      |   83 ++
 OvmfPkg/Library/PrePiHobListPointerLib/RiscV64/PrePiHobListPointer.c                    |   65 ++
 OvmfPkg/Library/ResetSystemLib/RiscV64/DxeResetShutdown.c                               |   20 +
 OvmfPkg/Library/ResetSystemLib/RiscV64/ResetSystemLib.c                                 |  128 +++
 OvmfPkg/Library/VirtNorFlashPlatformLib/VirtNorFlashDeviceTreeLib.c                     |  136 +++
 OvmfPkg/Library/VirtNorFlashPlatformLib/VirtNorFlashStaticLib.c                         |   40 +
 OvmfPkg/PciCpuIo2Dxe/PciCpuIo2Dxe.c                                                     |  557 ++++++++++
 {ArmVirtPkg => OvmfPkg}/PlatformHasAcpiDtDxe/PlatformHasAcpiDtDxe.c                     |    0
 OvmfPkg/Sec/RiscV64/SecMain.c                                                           |  104 ++
 UefiCpuPkg/CpuDxe/RiscV64/CpuDxe.c                                                      |  365 +++++++
 UefiCpuPkg/CpuTimerDxe/RiscV64/Timer.c                                                  |  294 ++++++
 UefiCpuPkg/Library/CpuExceptionHandlerLib/RiscV64/CpuExceptionHandlerLib.c              |  133 +++
 UefiCpuPkg/Library/CpuTimerLib/RiscV64/CpuTimerLib.c                                    |  199 ++++
 ArmVirtPkg/ArmVirtQemuFvMain.fdf.inc                                                    |    2 +-
 Maintainers.txt                                                                         |    4 +
 MdePkg/Library/BaseLib/RiscV64/CpuScratch.S                                             |   31 +
 MdePkg/Library/BaseLib/RiscV64/ReadTimer.S                                              |   23 +
 MdePkg/Library/BaseLib/RiscV64/RiscVInterrupt.S                                         |   53 +-
 MdePkg/Library/BaseLib/RiscV64/RiscVMmu.S                                               |   23 +
 OvmfPkg/RiscVVirt/RiscVVirt.fdf.inc                                                     |   41 +
 OvmfPkg/RiscVVirt/VarStore.fdf.inc                                                      |   79 ++
 OvmfPkg/Sec/RiscV64/SecEntry.S                                                          |   21 +
 UefiCpuPkg/CpuTimerDxe/CpuTimer.uni                                                     |   14 +
 UefiCpuPkg/CpuTimerDxe/CpuTimerExtra.uni                                                |   12 +
 UefiCpuPkg/Library/CpuExceptionHandlerLib/RiscV64/SupervisorTrapHandler.S               |  105 ++
 UefiCpuPkg/UefiCpuPkg.ci.yaml                                                           |    1 +
 77 files changed, 6985 insertions(+), 29 deletions(-)
 create mode 100644 OvmfPkg/RiscVVirt/RiscVVirt.dsc.inc
 create mode 100644 OvmfPkg/RiscVVirt/RiscVVirtQemu.dsc
 create mode 100644 OvmfPkg/RiscVVirt/RiscVVirtQemu.fdf
 rename {EmbeddedPkg => MdeModulePkg}/Library/NvVarStoreFormattedLib/NvVarStoreFormattedLib.inf (96%)
 create mode 100644 MdePkg/Library/BaseRiscVSbiLib/BaseRiscVSbiLib.inf
 create mode 100644 OvmfPkg/Library/PlatformBootManagerLib/DxeRiscV64PlatformBootManagerLib.inf
 create mode 100644 OvmfPkg/Library/PlatformInitLib/BaseRiscV64PlatformInitLib.inf
 create mode 100644 OvmfPkg/Library/PrePiHobListPointerLib/PrePiHobListPointerLib.inf
 create mode 100644 OvmfPkg/Library/ResetSystemLib/BaseRiscV64ResetSystemLib.inf
 create mode 100644 OvmfPkg/Library/VirtNorFlashPlatformLib/VirtNorFlashDeviceTreeLib.inf
 create mode 100644 OvmfPkg/Library/VirtNorFlashPlatformLib/VirtNorFlashStaticLib.inf
 create mode 100644 OvmfPkg/PciCpuIo2Dxe/PciCpuIo2Dxe.inf
 rename {ArmVirtPkg => OvmfPkg}/PlatformHasAcpiDtDxe/PlatformHasAcpiDtDxe.inf (89%)
 create mode 100644 OvmfPkg/Sec/SecMainRiscV64.inf
 create mode 100644 UefiCpuPkg/CpuDxe/CpuDxeRiscV64.inf
 create mode 100644 UefiCpuPkg/CpuTimerDxe/CpuTimerDxe.inf
 create mode 100644 UefiCpuPkg/Library/CpuExceptionHandlerLib/BaseRiscV64CpuExceptionHandlerLib.inf
 create mode 100644 UefiCpuPkg/Library/CpuTimerLib/BaseRiscV64CpuTimerLib.inf
 rename {EmbeddedPkg => MdeModulePkg}/Include/Guid/NvVarStoreFormatted.h (100%)
 create mode 100644 MdePkg/Include/Library/BaseRiscVSbiLib.h
 create mode 100644 MdePkg/Include/Protocol/RiscVBootProtocol.h
 create mode 100644 MdePkg/Include/Register/RiscV64/RiscVEncoding.h
 create mode 100644 MdePkg/Include/Register/RiscV64/RiscVImpl.h
 create mode 100644 OvmfPkg/Library/PlatformBootManagerLib/RiscV64/PlatformBm.h
 create mode 100644 OvmfPkg/Sec/RiscV64/SecMain.h
 create mode 100644 UefiCpuPkg/CpuDxe/RiscV64/CpuDxe.h
 create mode 100644 UefiCpuPkg/CpuTimerDxe/RiscV64/Timer.h
 create mode 100644 UefiCpuPkg/Library/CpuExceptionHandlerLib/RiscV64/CpuExceptionHandlerLib.h
 rename {EmbeddedPkg => MdeModulePkg}/Library/NvVarStoreFormattedLib/NvVarStoreFormattedLib.c (100%)
 create mode 100644 MdePkg/Library/BaseRiscVSbiLib/BaseRiscVSbiLib.c
 create mode 100644 OvmfPkg/Library/PlatformBootManagerLib/RiscV64/PlatformBm.c
 create mode 100644 OvmfPkg/Library/PlatformBootManagerLib/RiscV64/QemuKernel.c
 create mode 100644 OvmfPkg/Library/PlatformInitLib/RiscV64/Cpu.c
 create mode 100644 OvmfPkg/Library/PlatformInitLib/RiscV64/Memory.c
 create mode 100644 OvmfPkg/Library/PlatformInitLib/RiscV64/Platform.c
 create mode 100644 OvmfPkg/Library/PrePiHobListPointerLib/RiscV64/PrePiHobListPointer.c
 create mode 100644 OvmfPkg/Library/ResetSystemLib/RiscV64/DxeResetShutdown.c
 create mode 100644 OvmfPkg/Library/ResetSystemLib/RiscV64/ResetSystemLib.c
 create mode 100644 OvmfPkg/Library/VirtNorFlashPlatformLib/VirtNorFlashDeviceTreeLib.c
 create mode 100644 OvmfPkg/Library/VirtNorFlashPlatformLib/VirtNorFlashStaticLib.c
 create mode 100644 OvmfPkg/PciCpuIo2Dxe/PciCpuIo2Dxe.c
 rename {ArmVirtPkg => OvmfPkg}/PlatformHasAcpiDtDxe/PlatformHasAcpiDtDxe.c (100%)
 create mode 100644 OvmfPkg/Sec/RiscV64/SecMain.c
 create mode 100644 UefiCpuPkg/CpuDxe/RiscV64/CpuDxe.c
 create mode 100644 UefiCpuPkg/CpuTimerDxe/RiscV64/Timer.c
 create mode 100644 UefiCpuPkg/Library/CpuExceptionHandlerLib/RiscV64/CpuExceptionHandlerLib.c
 create mode 100644 UefiCpuPkg/Library/CpuTimerLib/RiscV64/CpuTimerLib.c
 create mode 100644 MdePkg/Library/BaseLib/RiscV64/CpuScratch.S
 create mode 100644 MdePkg/Library/BaseLib/RiscV64/ReadTimer.S
 create mode 100644 MdePkg/Library/BaseLib/RiscV64/RiscVMmu.S
 create mode 100644 OvmfPkg/RiscVVirt/RiscVVirt.fdf.inc
 create mode 100644 OvmfPkg/RiscVVirt/VarStore.fdf.inc
 create mode 100644 OvmfPkg/Sec/RiscV64/SecEntry.S
 create mode 100644 UefiCpuPkg/CpuTimerDxe/CpuTimer.uni
 create mode 100644 UefiCpuPkg/CpuTimerDxe/CpuTimerExtra.uni
 create mode 100644 UefiCpuPkg/Library/CpuExceptionHandlerLib/RiscV64/SupervisorTrapHandler.S

-- 
2.38.0


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

end of thread, other threads:[~2023-02-06 16:07 UTC | newest]

Thread overview: 26+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-12-15 12:56 [edk2-staging/RiscV64QemuVirt PATCH V6 00/23] Add support for RISC-V virt machine Sunil V L
2022-12-15 12:56 ` [edk2-staging/RiscV64QemuVirt PATCH V6 01/23] MdePkg/Register: Add register definition header files for RISC-V Sunil V L
2022-12-15 12:56 ` [edk2-staging/RiscV64QemuVirt PATCH V6 02/23] MdePkg: Add RISCV_EFI_BOOT_PROTOCOL related definitions Sunil V L
2022-12-15 12:56 ` [edk2-staging/RiscV64QemuVirt PATCH V6 03/23] MdePkg/BaseLib: RISC-V: Add few more helper functions Sunil V L
2022-12-15 12:56 ` [edk2-staging/RiscV64QemuVirt PATCH V6 04/23] MdePkg: Add BaseRiscVSbiLib Library for RISC-V Sunil V L
2022-12-15 12:56 ` [edk2-staging/RiscV64QemuVirt PATCH V6 05/23] UefiCpuPkg: Add CpuTimerDxe module Sunil V L
2022-12-15 12:56 ` [edk2-staging/RiscV64QemuVirt PATCH V6 06/23] UefiCpuPkg/CpuExceptionHandlerLib: Add RISC-V instance Sunil V L
2022-12-15 12:56 ` [edk2-staging/RiscV64QemuVirt PATCH V6 07/23] UefiCpuPkg/CpuDxe: " Sunil V L
2022-12-15 12:56 ` [edk2-staging/RiscV64QemuVirt PATCH V6 08/23] UefiCpuPkg/CpuTimerLib: " Sunil V L
2022-12-15 12:56 ` [edk2-staging/RiscV64QemuVirt PATCH V6 09/23] UefiCpuPkg/UefiCpuPkg.ci.yaml: Ignore RISC-V file Sunil V L
2022-12-15 12:56 ` [edk2-staging/RiscV64QemuVirt PATCH V6 10/23] EmbeddedPkg: Enable PcdPrePiCpuIoSize for RISC-V Sunil V L
2022-12-15 12:56 ` [edk2-staging/RiscV64QemuVirt PATCH V6 11/23] EmbeddedPkg/NvVarStoreFormattedLib: Migrate to MdeModulePkg Sunil V L
2022-12-15 12:56 ` [edk2-staging/RiscV64QemuVirt PATCH V6 12/23] ArmVirtPkg: Update the references to NvVarStoreFormattedLib Sunil V L
2022-12-15 12:56 ` [edk2-staging/RiscV64QemuVirt PATCH V6 13/23] ArmVirtPkg/PlatformHasAcpiDtDxe: Move to OvmfPkg Sunil V L
2022-12-15 12:56 ` [edk2-staging/RiscV64QemuVirt PATCH V6 14/23] ArmVirtPkg: Fix up the location of PlatformHasAcpiDtDxe Sunil V L
2022-12-15 12:56 ` [edk2-staging/RiscV64QemuVirt PATCH V6 15/23] OvmfPkg: Add VirtNorFlashPlatformLib library Sunil V L
2022-12-15 12:56 ` [edk2-staging/RiscV64QemuVirt PATCH V6 16/23] OvmfPkg/PlatformInitLib: Add RISC-V instance Sunil V L
2022-12-15 12:56 ` [edk2-staging/RiscV64QemuVirt PATCH V6 17/23] OvmfPkg: Add PrePiHobListPointerLib library Sunil V L
2022-12-15 12:56 ` [edk2-staging/RiscV64QemuVirt PATCH V6 18/23] OvmfPkg: Add PciCpuIo2Dxe driver Sunil V L
2022-12-15 12:56 ` [edk2-staging/RiscV64QemuVirt PATCH V6 19/23] OvmfPkg/ResetSystemLib: Add RISC-V instance Sunil V L
2022-12-15 12:56 ` [edk2-staging/RiscV64QemuVirt PATCH V6 20/23] OvmfPkg/Sec: Add RISC-V SEC module Sunil V L
2022-12-15 12:56 ` [edk2-staging/RiscV64QemuVirt PATCH V6 21/23] OvmfPkg/PlatformBootManagerLib: Add RISC-V instance Sunil V L
2022-12-15 12:56 ` [edk2-staging/RiscV64QemuVirt PATCH V6 22/23] OvmfPkg: RiscVVirt: Add Qemu Virt platform support Sunil V L
2022-12-15 12:56 ` [edk2-staging/RiscV64QemuVirt PATCH V6 23/23] Maintainers.txt: Add entry for OvmfPkg/RiscVVirt Sunil V L
     [not found] ` <1730F8C7E4A0D05E.9432@groups.io>
2023-01-04  4:08   ` [edk2-devel] [edk2-staging/RiscV64QemuVirt PATCH V6 01/23] MdePkg/Register: Add register definition header files for RISC-V Sunil V L
2023-02-06 16:06 ` [edk2-staging/RiscV64QemuVirt PATCH V6 00/23] Add support for RISC-V virt machine Andrei Warkentin

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