kern: add SvcQueryIoMapping (NOTE: pre-10.x, ABI needs update)

This commit is contained in:
Michael Scire 2020-07-13 13:24:32 -07:00
parent 57867d6ced
commit 18698bf1d3
6 changed files with 204 additions and 2 deletions

View file

@ -120,6 +120,14 @@ namespace ams::svc {
u32 flags;
};
enum MemoryRegionType {
MemoryRegionType_None = 0,
MemoryRegionType_KernelTraceBuffer = 1,
MemoryRegionType_OnMemoryBootImage = 2,
MemoryRegionType_DTB = 3,
MemoryRegionType_Count,
};
/* Info Types. */
enum InfoType : u32 {
InfoType_CoreMask = 0,