public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
* [edk2-staging/RiscV64QemuVirt PATCH V5 00/30] Add support for RISC-V virt machine
@ 2022-10-30 13:28 Sunil V L
  2022-10-30 13:28 ` [edk2-staging/RiscV64QemuVirt PATCH V5 01/30] MdePkg/Register: Add register definition header files for RISC-V Sunil V L
                   ` (29 more replies)
  0 siblings, 30 replies; 35+ messages in thread
From: Sunil V L @ 2022-10-30 13:28 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

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 changes at a high level are,

1) MdePkg:
	- Add RISC-V register definitions
	- Add RISCV_EFI_BOOT_PROTOCOL related definitions
	- Add BaseRiscVSbiLib library to make ecall to machine mode firmware

2) UefiCpuPkg:
	- Refactor modules/libraries as per latest guidelines
	- Add RISC-V support in below modules/libraries.
		- CpuTimerLib, CpuExceptionHandlerLib, CpuDxe
	- Add new CpuTimerDxe module

3) ArmVirtPkg:
	- Migrate below libraries/modules to OvmfPkg
		- PlatformBootManagerLib, PlatformHasAcpiDtDxe
	- Fix up the consumers of these modules

4) OvmfPkg:
	- Refactor the libraries/modules as per latest guidelines
	- Add RISC-V support for below libraries/modules.
		- Sec, ResetSystemLib, PlatformInitLib, PlatformPei
	- Add VirtNorFlashPlatformLib (Copied from ArmVirtPkg and SbsaQemu)
	- Add new DSC/FDF files to build for RISC-V virt machine

5) MdeModulePkg/EmbeddedPkg:
	- Migrated NvVarStoreFormattedLib from EmbeddedPkg to MdeModulePkg
	- Fix up the consumers of NvVarStoreFormattedLib
 
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

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

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>

Sunil V L (30):
  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
  OvmfPkg/PlatformInitLib: Refactor to allow other architectures
  OvmfPkg/PlatformInitLib: Add support for RISC-V
  OvmfPkg/ResetSystemLib: Refactor to allow other architectures.
  OvmfPkg/ResetSystemLib: Add support for RISC-V
  OvmfPkg/Sec: Refactor to allow other architectures
  OvmfPkg/Sec: Add RISC-V support
  OvmfPkg/PlatformPei: Refactor to allow other architectures
  OvmfPkg/PlatformPei: Add support for RISC-V
  UefiCpuPkg/CpuTimerLib: Refactor to allow other architectures
  UefiCpuPkg/CpuTimerLib: Add support for RISC-V
  UefiCpuPkg/CpuExceptionHandlerLib: Refactor to allow other
    architectures
  UefiCpuPkg/CpuExceptionHandlerLib: Add support for RISC-V
  UefiCpuPkg/CpuDxe: Refactor to allow other architectures
  UefiCpuPkg/CpuDxe: Add support for RISC-V
  UefiCpuPkg/CpuDxe: Add RISCV_EFI_BOOT_PROTOCOL support
  UefiCpuPkg: Add CpuTimerDxe module
  ArmVirtPkg/PlatformHasAcpiDtDxe: Move to OvmfPkg
  ArmVirtPkg: Fix up the location of PlatformHasAcpiDtDxe
  ArmVirtPkg/PlatformBootManagerLib: Move to OvmfPkg
  ArmVirtPkg: Fix up the paths to PlatformBootManagerLib
  EmbeddedPkg/NvVarStoreFormattedLib: Migrate to MdeModulePkg
  ArmVirtPkg: Update the references to NvVarStoreFormattedLib
  OvmfPkg: Add VirtNorFlashPlatformLib library
  OvmfPkg: RiscVVirt: Add Qemu Virt platform support
  Maintainers.txt: Add entry for OvmfPkg/RiscVVirt
  UefiCpuPkg/UefiCpuPkg.ci.yaml: Ignore RISC-V file

 ArmVirtPkg/ArmVirtPkg.dec                                                                                            |   9 -
 EmbeddedPkg/EmbeddedPkg.dec                                                                                          |   3 -
 MdeModulePkg/MdeModulePkg.dec                                                                                        |   3 +
 MdePkg/MdePkg.dec                                                                                                    |   9 +
 OvmfPkg/OvmfPkg.dec                                                                                                  |  18 +
 ArmVirtPkg/ArmVirtCloudHv.dsc                                                                                        |   2 +-
 ArmVirtPkg/ArmVirtKvmTool.dsc                                                                                        |   2 +-
 ArmVirtPkg/ArmVirtQemu.dsc                                                                                           |  10 +-
 ArmVirtPkg/ArmVirtQemuKernel.dsc                                                                                     |   8 +-
 MdeModulePkg/MdeModulePkg.dsc                                                                                        |   2 +
 MdePkg/MdePkg.dsc                                                                                                    |   3 +
 OvmfPkg/Platforms/RiscVVirt/RiscVVirt.dsc                                                                            | 727 ++++++++++++++++++++
 UefiCpuPkg/UefiCpuPkg.dsc                                                                                            |  15 +-
 OvmfPkg/Platforms/RiscVVirt/RiscVVirt.fdf                                                                            | 406 +++++++++++
 ArmVirtPkg/CloudHvPlatformHasAcpiDtDxe/CloudHvHasAcpiDtDxe.inf                                                       |   2 +-
 ArmVirtPkg/KvmtoolPlatformDxe/KvmtoolPlatformDxe.inf                                                                 |   2 +-
 {EmbeddedPkg => MdeModulePkg}/Library/NvVarStoreFormattedLib/NvVarStoreFormattedLib.inf                              |   1 -
 MdePkg/Library/BaseLib/BaseLib.inf                                                                                   |   2 +
 MdePkg/Library/BaseRiscVSbiLib/BaseRiscVSbiLib.inf                                                                   |  25 +
 {ArmVirtPkg/Library/PlatformBootManagerLib => OvmfPkg/Library/PlatformBootManagerLibVirt}/PlatformBootManagerLib.inf |   3 +-
 OvmfPkg/Library/PlatformInitLib/PlatformInitLib.inf                                                                  |  31 +-
 OvmfPkg/Library/ResetSystemLib/BaseResetSystemLib.inf                                                                |  12 +-
 OvmfPkg/Library/ResetSystemLib/BaseResetSystemLibBhyve.inf                                                           |   4 +-
 OvmfPkg/Library/ResetSystemLib/BaseResetSystemLibMicrovm.inf                                                         |   2 +-
 OvmfPkg/Library/ResetSystemLib/DxeResetSystemLib.inf                                                                 |  15 +-
 OvmfPkg/Library/ResetSystemLib/DxeResetSystemLibMicrovm.inf                                                          |   4 +-
 OvmfPkg/Library/VirtNorFlashPlatformLib/VirtNorFlashDeviceTreeLib.inf                                                |  40 ++
 OvmfPkg/Library/VirtNorFlashPlatformLib/VirtNorFlashStaticLib.inf                                                    |  30 +
 {ArmVirtPkg => OvmfPkg}/PlatformHasAcpiDtDxe/PlatformHasAcpiDtDxe.inf                                                |   3 +-
 OvmfPkg/PlatformPei/PlatformPei.inf                                                                                  |  43 +-
 OvmfPkg/Sec/SecMain.inf                                                                                              |  34 +-
 UefiCpuPkg/CpuDxe/CpuDxe.inf                                                                                         |  41 +-
 UefiCpuPkg/CpuTimerDxe/CpuTimerDxe.inf                                                                               |  51 ++
 UefiCpuPkg/Library/CpuExceptionHandlerLib/DxeCpuExceptionHandlerLib.inf                                              |  21 +-
 UefiCpuPkg/Library/CpuExceptionHandlerLib/PeiCpuExceptionHandlerLib.inf                                              |   8 +-
 UefiCpuPkg/Library/CpuExceptionHandlerLib/SecPeiCpuExceptionHandlerLib.inf                                           |  19 +-
 UefiCpuPkg/Library/CpuExceptionHandlerLib/SmmCpuExceptionHandlerLib.inf                                              |   8 +-
 UefiCpuPkg/Library/CpuExceptionHandlerLib/Xcode5SecPeiCpuExceptionHandlerLib.inf                                     |   6 +-
 UefiCpuPkg/Library/CpuTimerLib/BaseCpuTimerLib.inf                                                                   |   9 +-
 {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                                                                            |   6 +
 {ArmVirtPkg/Library/PlatformBootManagerLib => OvmfPkg/Library/PlatformBootManagerLibVirt}/PlatformBm.h               |   0
 OvmfPkg/PlatformPei/{ => Ia32X64}/Platform.h                                                                         |   0
 OvmfPkg/PlatformPei/RiscV64/Platform.h                                                                               |  97 +++
 OvmfPkg/Sec/{ => Ia32X64}/AmdSev.h                                                                                   |   0
 OvmfPkg/Sec/RiscV64/SecMain.h                                                                                        |  64 ++
 OvmfPkg/Sec/SecMainCommon.h                                                                                          |  73 ++
 UefiCpuPkg/CpuDxe/{ => Ia32X64}/CpuDxe.h                                                                             |   0
 UefiCpuPkg/CpuDxe/{ => Ia32X64}/CpuGdt.h                                                                             |   0
 UefiCpuPkg/CpuDxe/{ => Ia32X64}/CpuMp.h                                                                              |   0
 UefiCpuPkg/CpuDxe/{ => Ia32X64}/CpuPageTable.h                                                                       |   0
 UefiCpuPkg/CpuDxe/{ => RiscV64}/CpuDxe.h                                                                             | 122 +---
 UefiCpuPkg/CpuTimerDxe/RiscV64/Timer.h                                                                               | 177 +++++
 UefiCpuPkg/Library/CpuExceptionHandlerLib/{ => Ia32X64}/CpuExceptionCommon.h                                         |   0
 UefiCpuPkg/Library/CpuExceptionHandlerLib/RiscV64/CpuExceptionHandlerLib.h                                           | 116 ++++
 {EmbeddedPkg => MdeModulePkg}/Library/NvVarStoreFormattedLib/NvVarStoreFormattedLib.c                                |   0
 MdePkg/Library/BaseRiscVSbiLib/BaseRiscVSbiLib.c                                                                     | 227 ++++++
 {ArmVirtPkg/Library/PlatformBootManagerLib => OvmfPkg/Library/PlatformBootManagerLibVirt}/PlatformBm.c               |   0
 {ArmVirtPkg/Library/PlatformBootManagerLib => OvmfPkg/Library/PlatformBootManagerLibVirt}/QemuKernel.c               |   0
 OvmfPkg/Library/PlatformInitLib/{ => Ia32X64}/Cmos.c                                                                 |   0
 OvmfPkg/Library/PlatformInitLib/{ => Ia32X64}/IntelTdx.c                                                             |   0
 OvmfPkg/Library/PlatformInitLib/{ => Ia32X64}/IntelTdxNull.c                                                         |   0
 OvmfPkg/Library/PlatformInitLib/{ => Ia32X64}/MemDetect.c                                                            |   0
 OvmfPkg/Library/PlatformInitLib/{ => Ia32X64}/Platform.c                                                             |   0
 OvmfPkg/Library/PlatformInitLib/RiscV64/PlatformPeiLib.c                                                             |  72 ++
 OvmfPkg/Library/ResetSystemLib/{ => Ia32X64}/BaseResetShutdown.c                                                     |   0
 OvmfPkg/Library/ResetSystemLib/{ => Ia32X64}/BaseResetShutdownBhyve.c                                                |   0
 OvmfPkg/Library/ResetSystemLib/{ => Ia32X64}/DxeResetShutdown.c                                                      |   0
 OvmfPkg/Library/ResetSystemLib/{ => Ia32X64}/DxeResetSystemLibMicrovm.c                                              |   0
 OvmfPkg/Library/ResetSystemLib/{ => Ia32X64}/ResetSystemLib.c                                                        |   0
 OvmfPkg/Library/ResetSystemLib/{ => Ia32X64}/ResetSystemLibMicrovm.c                                                 |   0
 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 ++
 {ArmVirtPkg => OvmfPkg}/PlatformHasAcpiDtDxe/PlatformHasAcpiDtDxe.c                                                  |   0
 OvmfPkg/PlatformPei/{ => Ia32X64}/AmdSev.c                                                                           |   0
 OvmfPkg/PlatformPei/{ => Ia32X64}/ClearCache.c                                                                       |   0
 OvmfPkg/PlatformPei/{ => Ia32X64}/FeatureControl.c                                                                   |   0
 OvmfPkg/PlatformPei/{ => Ia32X64}/Fv.c                                                                               |   0
 OvmfPkg/PlatformPei/{ => Ia32X64}/IntelTdx.c                                                                         |   0
 OvmfPkg/PlatformPei/{ => Ia32X64}/MemDetect.c                                                                        |   0
 OvmfPkg/PlatformPei/{ => Ia32X64}/MemTypeInfo.c                                                                      |   0
 OvmfPkg/PlatformPei/{ => Ia32X64}/Platform.c                                                                         |   0
 OvmfPkg/PlatformPei/{ => RiscV64}/Fv.c                                                                               |  43 +-
 OvmfPkg/PlatformPei/RiscV64/MemDetect.c                                                                              | 212 ++++++
 OvmfPkg/PlatformPei/RiscV64/Platform.c                                                                               | 372 ++++++++++
 OvmfPkg/Sec/{ => Ia32X64}/AmdSev.c                                                                                   |   0
 OvmfPkg/Sec/{ => Ia32X64}/SecMain.c                                                                                  | 227 +-----
 OvmfPkg/Sec/RiscV64/SecMain.c                                                                                        | 573 +++++++++++++++
 OvmfPkg/Sec/SecMainCommon.c                                                                                          | 238 +++++++
 UefiCpuPkg/CpuDxe/{ => Ia32X64}/CpuDxe.c                                                                             |   0
 UefiCpuPkg/CpuDxe/{ => Ia32X64}/CpuGdt.c                                                                             |   0
 UefiCpuPkg/CpuDxe/{ => Ia32X64}/CpuMp.c                                                                              |   0
 UefiCpuPkg/CpuDxe/{ => Ia32X64}/CpuPageTable.c                                                                       |   0
 UefiCpuPkg/CpuDxe/RiscV64/CpuDxe.c                                                                                   | 365 ++++++++++
 UefiCpuPkg/CpuTimerDxe/RiscV64/Timer.c                                                                               | 294 ++++++++
 UefiCpuPkg/Library/CpuExceptionHandlerLib/{ => Ia32X64}/CpuExceptionCommon.c                                         |   0
 UefiCpuPkg/Library/CpuExceptionHandlerLib/{ => Ia32X64}/DxeException.c                                               |   0
 UefiCpuPkg/Library/CpuExceptionHandlerLib/{ => Ia32X64}/PeiCpuException.c                                            |   0
 UefiCpuPkg/Library/CpuExceptionHandlerLib/{ => Ia32X64}/PeiDxeSmmCpuException.c                                      |   0
 UefiCpuPkg/Library/CpuExceptionHandlerLib/{ => Ia32X64}/SecPeiCpuException.c                                         |   0
 UefiCpuPkg/Library/CpuExceptionHandlerLib/{ => Ia32X64}/SmmException.c                                               |   0
 UefiCpuPkg/Library/CpuExceptionHandlerLib/{SmmException.c => RiscV64/CpuExceptionHandlerLib.c}                       |  83 ++-
 UefiCpuPkg/Library/CpuTimerLib/{ => Ia32X64}/BaseCpuTimerLib.c                                                       |   0
 UefiCpuPkg/Library/CpuTimerLib/{ => Ia32X64}/CpuTimerLib.c                                                           |   0
 UefiCpuPkg/Library/CpuTimerLib/RiscV64/CpuTimerLib.c                                                                 | 199 ++++++
 ArmVirtPkg/ArmVirtPkg.ci.yaml                                                                                        |   1 -
 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 +-
 OvmfPkg/OvmfPkg.ci.yaml                                                                                              |   1 +
 OvmfPkg/Platforms/RiscVVirt/RiscVVirt.fdf.inc                                                                        |  66 ++
 OvmfPkg/Platforms/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 +
 126 files changed, 5758 insertions(+), 527 deletions(-)
 create mode 100644 OvmfPkg/Platforms/RiscVVirt/RiscVVirt.dsc
 create mode 100644 OvmfPkg/Platforms/RiscVVirt/RiscVVirt.fdf
 rename {EmbeddedPkg => MdeModulePkg}/Library/NvVarStoreFormattedLib/NvVarStoreFormattedLib.inf (96%)
 create mode 100644 MdePkg/Library/BaseRiscVSbiLib/BaseRiscVSbiLib.inf
 rename {ArmVirtPkg/Library/PlatformBootManagerLib => OvmfPkg/Library/PlatformBootManagerLibVirt}/PlatformBootManagerLib.inf (92%)
 create mode 100644 OvmfPkg/Library/VirtNorFlashPlatformLib/VirtNorFlashDeviceTreeLib.inf
 create mode 100644 OvmfPkg/Library/VirtNorFlashPlatformLib/VirtNorFlashStaticLib.inf
 rename {ArmVirtPkg => OvmfPkg}/PlatformHasAcpiDtDxe/PlatformHasAcpiDtDxe.inf (89%)
 create mode 100644 UefiCpuPkg/CpuTimerDxe/CpuTimerDxe.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
 rename {ArmVirtPkg/Library/PlatformBootManagerLib => OvmfPkg/Library/PlatformBootManagerLibVirt}/PlatformBm.h (100%)
 rename OvmfPkg/PlatformPei/{ => Ia32X64}/Platform.h (100%)
 create mode 100644 OvmfPkg/PlatformPei/RiscV64/Platform.h
 rename OvmfPkg/Sec/{ => Ia32X64}/AmdSev.h (100%)
 create mode 100644 OvmfPkg/Sec/RiscV64/SecMain.h
 create mode 100644 OvmfPkg/Sec/SecMainCommon.h
 copy UefiCpuPkg/CpuDxe/{ => Ia32X64}/CpuDxe.h (100%)
 rename UefiCpuPkg/CpuDxe/{ => Ia32X64}/CpuGdt.h (100%)
 rename UefiCpuPkg/CpuDxe/{ => Ia32X64}/CpuMp.h (100%)
 rename UefiCpuPkg/CpuDxe/{ => Ia32X64}/CpuPageTable.h (100%)
 rename UefiCpuPkg/CpuDxe/{ => RiscV64}/CpuDxe.h (69%)
 create mode 100644 UefiCpuPkg/CpuTimerDxe/RiscV64/Timer.h
 rename UefiCpuPkg/Library/CpuExceptionHandlerLib/{ => Ia32X64}/CpuExceptionCommon.h (100%)
 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
 rename {ArmVirtPkg/Library/PlatformBootManagerLib => OvmfPkg/Library/PlatformBootManagerLibVirt}/PlatformBm.c (100%)
 rename {ArmVirtPkg/Library/PlatformBootManagerLib => OvmfPkg/Library/PlatformBootManagerLibVirt}/QemuKernel.c (100%)
 rename OvmfPkg/Library/PlatformInitLib/{ => Ia32X64}/Cmos.c (100%)
 rename OvmfPkg/Library/PlatformInitLib/{ => Ia32X64}/IntelTdx.c (100%)
 rename OvmfPkg/Library/PlatformInitLib/{ => Ia32X64}/IntelTdxNull.c (100%)
 rename OvmfPkg/Library/PlatformInitLib/{ => Ia32X64}/MemDetect.c (100%)
 rename OvmfPkg/Library/PlatformInitLib/{ => Ia32X64}/Platform.c (100%)
 create mode 100644 OvmfPkg/Library/PlatformInitLib/RiscV64/PlatformPeiLib.c
 rename OvmfPkg/Library/ResetSystemLib/{ => Ia32X64}/BaseResetShutdown.c (100%)
 rename OvmfPkg/Library/ResetSystemLib/{ => Ia32X64}/BaseResetShutdownBhyve.c (100%)
 rename OvmfPkg/Library/ResetSystemLib/{ => Ia32X64}/DxeResetShutdown.c (100%)
 rename OvmfPkg/Library/ResetSystemLib/{ => Ia32X64}/DxeResetSystemLibMicrovm.c (100%)
 rename OvmfPkg/Library/ResetSystemLib/{ => Ia32X64}/ResetSystemLib.c (100%)
 rename OvmfPkg/Library/ResetSystemLib/{ => Ia32X64}/ResetSystemLibMicrovm.c (100%)
 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
 rename {ArmVirtPkg => OvmfPkg}/PlatformHasAcpiDtDxe/PlatformHasAcpiDtDxe.c (100%)
 rename OvmfPkg/PlatformPei/{ => Ia32X64}/AmdSev.c (100%)
 rename OvmfPkg/PlatformPei/{ => Ia32X64}/ClearCache.c (100%)
 rename OvmfPkg/PlatformPei/{ => Ia32X64}/FeatureControl.c (100%)
 copy OvmfPkg/PlatformPei/{ => Ia32X64}/Fv.c (100%)
 rename OvmfPkg/PlatformPei/{ => Ia32X64}/IntelTdx.c (100%)
 rename OvmfPkg/PlatformPei/{ => Ia32X64}/MemDetect.c (100%)
 rename OvmfPkg/PlatformPei/{ => Ia32X64}/MemTypeInfo.c (100%)
 rename OvmfPkg/PlatformPei/{ => Ia32X64}/Platform.c (100%)
 rename OvmfPkg/PlatformPei/{ => RiscV64}/Fv.c (63%)
 create mode 100644 OvmfPkg/PlatformPei/RiscV64/MemDetect.c
 create mode 100644 OvmfPkg/PlatformPei/RiscV64/Platform.c
 rename OvmfPkg/Sec/{ => Ia32X64}/AmdSev.c (100%)
 rename OvmfPkg/Sec/{ => Ia32X64}/SecMain.c (75%)
 create mode 100644 OvmfPkg/Sec/RiscV64/SecMain.c
 create mode 100644 OvmfPkg/Sec/SecMainCommon.c
 rename UefiCpuPkg/CpuDxe/{ => Ia32X64}/CpuDxe.c (100%)
 rename UefiCpuPkg/CpuDxe/{ => Ia32X64}/CpuGdt.c (100%)
 rename UefiCpuPkg/CpuDxe/{ => Ia32X64}/CpuMp.c (100%)
 rename UefiCpuPkg/CpuDxe/{ => Ia32X64}/CpuPageTable.c (100%)
 create mode 100644 UefiCpuPkg/CpuDxe/RiscV64/CpuDxe.c
 create mode 100644 UefiCpuPkg/CpuTimerDxe/RiscV64/Timer.c
 rename UefiCpuPkg/Library/CpuExceptionHandlerLib/{ => Ia32X64}/CpuExceptionCommon.c (100%)
 rename UefiCpuPkg/Library/CpuExceptionHandlerLib/{ => Ia32X64}/DxeException.c (100%)
 rename UefiCpuPkg/Library/CpuExceptionHandlerLib/{ => Ia32X64}/PeiCpuException.c (100%)
 rename UefiCpuPkg/Library/CpuExceptionHandlerLib/{ => Ia32X64}/PeiDxeSmmCpuException.c (100%)
 rename UefiCpuPkg/Library/CpuExceptionHandlerLib/{ => Ia32X64}/SecPeiCpuException.c (100%)
 copy UefiCpuPkg/Library/CpuExceptionHandlerLib/{ => Ia32X64}/SmmException.c (100%)
 rename UefiCpuPkg/Library/CpuExceptionHandlerLib/{SmmException.c => RiscV64/CpuExceptionHandlerLib.c} (67%)
 rename UefiCpuPkg/Library/CpuTimerLib/{ => Ia32X64}/BaseCpuTimerLib.c (100%)
 rename UefiCpuPkg/Library/CpuTimerLib/{ => Ia32X64}/CpuTimerLib.c (100%)
 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 OvmfPkg/Platforms/RiscVVirt/RiscVVirt.fdf.inc
 create mode 100644 OvmfPkg/Platforms/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] 35+ messages in thread

end of thread, other threads:[~2022-11-06 12:36 UTC | newest]

Thread overview: 35+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-10-30 13:28 [edk2-staging/RiscV64QemuVirt PATCH V5 00/30] Add support for RISC-V virt machine Sunil V L
2022-10-30 13:28 ` [edk2-staging/RiscV64QemuVirt PATCH V5 01/30] MdePkg/Register: Add register definition header files for RISC-V Sunil V L
2022-10-30 13:28 ` [edk2-staging/RiscV64QemuVirt PATCH V5 02/30] MdePkg: Add RISCV_EFI_BOOT_PROTOCOL related definitions Sunil V L
2022-10-30 13:28 ` [edk2-staging/RiscV64QemuVirt PATCH V5 03/30] MdePkg/BaseLib: RISC-V: Add few more helper functions Sunil V L
2022-10-30 13:28 ` [edk2-staging/RiscV64QemuVirt PATCH V5 04/30] MdePkg: Add BaseRiscVSbiLib Library for RISC-V Sunil V L
2022-10-30 13:28 ` [edk2-staging/RiscV64QemuVirt PATCH V5 05/30] OvmfPkg/PlatformInitLib: Refactor to allow other architectures Sunil V L
2022-10-30 13:28 ` [edk2-staging/RiscV64QemuVirt PATCH V5 06/30] OvmfPkg/PlatformInitLib: Add support for RISC-V Sunil V L
2022-10-30 13:28 ` [edk2-staging/RiscV64QemuVirt PATCH V5 07/30] OvmfPkg/ResetSystemLib: Refactor to allow other architectures Sunil V L
2022-10-30 13:28 ` [edk2-staging/RiscV64QemuVirt PATCH V5 08/30] OvmfPkg/ResetSystemLib: Add support for RISC-V Sunil V L
2022-10-30 13:28 ` [edk2-staging/RiscV64QemuVirt PATCH V5 09/30] OvmfPkg/Sec: Refactor to allow other architectures Sunil V L
2022-10-30 13:28 ` [edk2-staging/RiscV64QemuVirt PATCH V5 10/30] OvmfPkg/Sec: Add RISC-V support Sunil V L
2022-10-30 13:28 ` [edk2-staging/RiscV64QemuVirt PATCH V5 11/30] OvmfPkg/PlatformPei: Refactor to allow other architectures Sunil V L
2022-10-30 13:28 ` [edk2-staging/RiscV64QemuVirt PATCH V5 12/30] OvmfPkg/PlatformPei: Add support for RISC-V Sunil V L
2022-10-30 13:28 ` [edk2-staging/RiscV64QemuVirt PATCH V5 13/30] UefiCpuPkg/CpuTimerLib: Refactor to allow other architectures Sunil V L
2022-11-06 12:32   ` [edk2-devel] " Chang, Abner
2022-10-30 13:28 ` [edk2-staging/RiscV64QemuVirt PATCH V5 14/30] UefiCpuPkg/CpuTimerLib: Add support for RISC-V Sunil V L
2022-10-30 13:28 ` [edk2-staging/RiscV64QemuVirt PATCH V5 15/30] UefiCpuPkg/CpuExceptionHandlerLib: Refactor to allow other architectures Sunil V L
2022-11-06 12:35   ` [edk2-devel] " Chang, Abner
2022-10-30 13:28 ` [edk2-staging/RiscV64QemuVirt PATCH V5 16/30] UefiCpuPkg/CpuExceptionHandlerLib: Add support for RISC-V Sunil V L
2022-10-30 13:28 ` [edk2-staging/RiscV64QemuVirt PATCH V5 17/30] UefiCpuPkg/CpuDxe: Refactor to allow other architectures Sunil V L
2022-11-06 12:36   ` [edk2-devel] " Chang, Abner
2022-10-30 13:28 ` [edk2-staging/RiscV64QemuVirt PATCH V5 18/30] UefiCpuPkg/CpuDxe: Add support for RISC-V Sunil V L
2022-11-06 12:36   ` [edk2-devel] " Chang, Abner
2022-10-30 13:28 ` [edk2-staging/RiscV64QemuVirt PATCH V5 19/30] UefiCpuPkg/CpuDxe: Add RISCV_EFI_BOOT_PROTOCOL support Sunil V L
2022-10-30 13:28 ` [edk2-staging/RiscV64QemuVirt PATCH V5 20/30] UefiCpuPkg: Add CpuTimerDxe module Sunil V L
2022-10-30 13:28 ` [edk2-staging/RiscV64QemuVirt PATCH V5 21/30] ArmVirtPkg/PlatformHasAcpiDtDxe: Move to OvmfPkg Sunil V L
2022-10-30 13:28 ` [edk2-staging/RiscV64QemuVirt PATCH V5 22/30] ArmVirtPkg: Fix up the location of PlatformHasAcpiDtDxe Sunil V L
2022-10-30 13:28 ` [edk2-staging/RiscV64QemuVirt PATCH V5 23/30] ArmVirtPkg/PlatformBootManagerLib: Move to OvmfPkg Sunil V L
2022-10-30 13:28 ` [edk2-staging/RiscV64QemuVirt PATCH V5 24/30] ArmVirtPkg: Fix up the paths to PlatformBootManagerLib Sunil V L
2022-10-30 13:28 ` [edk2-staging/RiscV64QemuVirt PATCH V5 25/30] EmbeddedPkg/NvVarStoreFormattedLib: Migrate to MdeModulePkg Sunil V L
2022-10-30 13:28 ` [edk2-staging/RiscV64QemuVirt PATCH V5 26/30] ArmVirtPkg: Update the references to NvVarStoreFormattedLib Sunil V L
2022-10-30 13:28 ` [edk2-staging/RiscV64QemuVirt PATCH V5 27/30] OvmfPkg: Add VirtNorFlashPlatformLib library Sunil V L
2022-10-30 13:28 ` [edk2-staging/RiscV64QemuVirt PATCH V5 28/30] OvmfPkg: RiscVVirt: Add Qemu Virt platform support Sunil V L
2022-10-30 13:28 ` [edk2-staging/RiscV64QemuVirt PATCH V5 29/30] Maintainers.txt: Add entry for OvmfPkg/RiscVVirt Sunil V L
2022-10-30 13:28 ` [edk2-staging/RiscV64QemuVirt PATCH V5 30/30] UefiCpuPkg/UefiCpuPkg.ci.yaml: Ignore RISC-V file Sunil V L

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