exo2: implement SmcSetKernelCarveoutRegion

This commit is contained in:
Michael Scire
2020-05-15 12:05:17 -07:00
committed by SciresM
parent bf546d5fb3
commit b6b114ec40
5 changed files with 31 additions and 4 deletions

View File

@@ -23,6 +23,8 @@ namespace ams::secmon {
constexpr inline int KernelCarveoutCount = 2;
constexpr size_t CarveoutSizeMax = 512_MB - 128_KB;
void SetupCpuMemoryControllersEnableMmu();
void SetupCpuCoreContext();
void SetupCpuSErrorDebug();
@@ -37,4 +39,6 @@ namespace ams::secmon {
void SaveSecurityEngineAesKeySlotTestVector();
void SetKernelCarveoutRegion(int index, uintptr_t address, size_t size);
}