UefiCpuPkg: RISC-V: Support MMU with SV39/48/57 mode
During CpuDxe initialization, MMU will be setup with the highest mode that HW supports. Signed-off-by: Tuan Phan <tphan@ventanamicro.com> Reviewed-by: Andrei Warkentin <andrei.warkentin@intel.com> Reviewed-by: Sunil V L <sunilvl@ventanamicro.com>
This commit is contained in:
68
UefiCpuPkg/Include/Library/BaseRiscVMmuLib.h
Normal file
68
UefiCpuPkg/Include/Library/BaseRiscVMmuLib.h
Normal file
@@ -0,0 +1,68 @@
|
||||
/** @file
|
||||
|
||||
Copyright (c) 2015 - 2016, Linaro Ltd. All rights reserved.<BR>
|
||||
Copyright (c) 2023, Ventana Micro Systems Inc. All Rights Reserved.<BR>
|
||||
|
||||
SPDX-License-Identifier: BSD-2-Clause-Patent
|
||||
|
||||
**/
|
||||
|
||||
#ifndef BASE_RISCV_MMU_LIB_H_
|
||||
#define BASE_RISCV_MMU_LIB_H_
|
||||
|
||||
/**
|
||||
The API to flush all local TLBs.
|
||||
|
||||
**/
|
||||
VOID
|
||||
EFIAPI
|
||||
RiscVLocalTlbFlushAll (
|
||||
VOID
|
||||
);
|
||||
|
||||
/**
|
||||
The API to flush local TLB at a virtual address.
|
||||
|
||||
@param VirtAddr The virtual address.
|
||||
|
||||
**/
|
||||
VOID
|
||||
EFIAPI
|
||||
RiscVLocalTlbFlush (
|
||||
UINTN VirtAddr
|
||||
);
|
||||
|
||||
/**
|
||||
The API to set a GCD attribute on an memory region.
|
||||
|
||||
@param BaseAddress The base address of the region.
|
||||
@param Length The length of the region.
|
||||
@param Attributes The GCD attributes.
|
||||
|
||||
@retval EFI_INVALID_PARAMETER The BaseAddress or Length was not valid.
|
||||
@retval EFI_OUT_OF_RESOURCES Not enough resource.
|
||||
@retval EFI_SUCCESS The operation succesfully.
|
||||
|
||||
**/
|
||||
EFI_STATUS
|
||||
EFIAPI
|
||||
RiscVSetMemoryAttributes (
|
||||
IN EFI_PHYSICAL_ADDRESS BaseAddress,
|
||||
IN UINT64 Length,
|
||||
IN UINT64 Attributes
|
||||
);
|
||||
|
||||
/**
|
||||
The API to configure and enable RISC-V MMU with the highest mode supported.
|
||||
|
||||
@retval EFI_OUT_OF_RESOURCES Not enough resource.
|
||||
@retval EFI_SUCCESS The operation succesfully.
|
||||
|
||||
**/
|
||||
EFI_STATUS
|
||||
EFIAPI
|
||||
RiscVConfigureMmu (
|
||||
VOID
|
||||
);
|
||||
|
||||
#endif /* BASE_RISCV_MMU_LIB_H_ */
|
Reference in New Issue
Block a user