2018-01-13 21:22:39 +00:00
|
|
|
// Copyright 2018 yuzu emulator team
|
2014-12-17 05:38:14 +00:00
|
|
|
// Licensed under GPLv2 or any later version
|
2014-11-19 08:49:13 +00:00
|
|
|
// Refer to the license.txt file included.
|
2014-04-11 23:44:21 +01:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "common/common_types.h"
|
|
|
|
|
2018-01-03 01:40:30 +00:00
|
|
|
namespace Kernel {
|
2014-05-15 23:25:56 +01:00
|
|
|
|
2014-05-16 01:17:30 +01:00
|
|
|
struct MemoryInfo {
|
2017-10-14 22:31:25 +01:00
|
|
|
u64 base_address;
|
|
|
|
u64 size;
|
2017-10-20 04:00:46 +01:00
|
|
|
u32 type;
|
|
|
|
u32 attributes;
|
|
|
|
u32 permission;
|
2018-01-19 04:37:54 +00:00
|
|
|
u32 device_refcount;
|
|
|
|
u32 ipc_refcount;
|
|
|
|
INSERT_PADDING_WORDS(1);
|
2014-05-16 01:17:30 +01:00
|
|
|
};
|
2018-01-19 04:37:54 +00:00
|
|
|
static_assert(sizeof(MemoryInfo) == 0x28, "MemoryInfo has incorrect size.");
|
2014-05-16 01:17:30 +01:00
|
|
|
|
|
|
|
struct PageInfo {
|
2017-10-14 22:31:25 +01:00
|
|
|
u64 flags;
|
2014-05-16 01:17:30 +01:00
|
|
|
};
|
|
|
|
|
2018-01-01 21:01:06 +00:00
|
|
|
/// Values accepted by svcGetInfo
|
|
|
|
enum class GetInfoType : u64 {
|
|
|
|
// 1.0.0+
|
2018-01-10 05:58:25 +00:00
|
|
|
AllowedCpuIdBitmask = 0,
|
2018-01-16 22:06:45 +00:00
|
|
|
AllowedThreadPrioBitmask = 1,
|
|
|
|
MapRegionBaseAddr = 2,
|
|
|
|
MapRegionSize = 3,
|
|
|
|
HeapRegionBaseAddr = 4,
|
|
|
|
HeapRegionSize = 5,
|
2018-01-01 21:01:06 +00:00
|
|
|
TotalMemoryUsage = 6,
|
|
|
|
TotalHeapUsage = 7,
|
2018-01-16 22:06:45 +00:00
|
|
|
IsCurrentProcessBeingDebugged = 8,
|
|
|
|
ResourceHandleLimit = 9,
|
|
|
|
IdleTickCount = 10,
|
2018-01-01 21:01:06 +00:00
|
|
|
RandomEntropy = 11,
|
2018-01-16 22:06:45 +00:00
|
|
|
PerformanceCounter = 0xF0000002,
|
2018-01-01 21:01:06 +00:00
|
|
|
// 2.0.0+
|
|
|
|
AddressSpaceBaseAddr = 12,
|
|
|
|
AddressSpaceSize = 13,
|
|
|
|
NewMapRegionBaseAddr = 14,
|
|
|
|
NewMapRegionSize = 15,
|
2018-01-16 22:06:45 +00:00
|
|
|
// 3.0.0+
|
|
|
|
IsVirtualAddressMemoryEnabled = 16,
|
2018-05-26 03:31:54 +01:00
|
|
|
PersonalMmHeapUsage = 17,
|
2018-01-16 22:06:45 +00:00
|
|
|
TitleId = 18,
|
2018-01-15 20:41:16 +00:00
|
|
|
// 4.0.0+
|
2018-01-16 22:06:45 +00:00
|
|
|
PrivilegedProcessId = 19,
|
2018-05-26 03:31:54 +01:00
|
|
|
// 5.0.0+
|
|
|
|
UserExceptionContextAddr = 20,
|
2015-11-27 03:00:16 +00:00
|
|
|
};
|
|
|
|
|
2015-07-21 08:51:36 +01:00
|
|
|
void CallSVC(u32 immediate);
|
2014-04-11 23:44:21 +01:00
|
|
|
|
2018-01-03 01:40:30 +00:00
|
|
|
} // namespace Kernel
|