2018-01-09 02:41:37 +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 22:44:21 +00:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "common/common_types.h"
|
|
|
|
|
2018-01-03 01:40:30 +00:00
|
|
|
namespace Kernel {
|
2014-05-15 22:25:56 +00:00
|
|
|
|
2014-05-16 00:17:30 +00:00
|
|
|
struct MemoryInfo {
|
2017-10-14 21:31:25 +00:00
|
|
|
u64 base_address;
|
|
|
|
u64 size;
|
2017-10-20 03:00:46 +00:00
|
|
|
u32 type;
|
|
|
|
u32 attributes;
|
|
|
|
u32 permission;
|
2014-05-16 00:17:30 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct PageInfo {
|
2017-10-14 21:31:25 +00:00
|
|
|
u64 flags;
|
2014-05-16 00:17:30 +00: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-01 21:01:06 +00:00
|
|
|
TotalMemoryUsage = 6,
|
|
|
|
TotalHeapUsage = 7,
|
|
|
|
RandomEntropy = 11,
|
|
|
|
// 2.0.0+
|
|
|
|
AddressSpaceBaseAddr = 12,
|
|
|
|
AddressSpaceSize = 13,
|
|
|
|
NewMapRegionBaseAddr = 14,
|
|
|
|
NewMapRegionSize = 15,
|
2015-11-27 03:00:16 +00:00
|
|
|
};
|
|
|
|
|
2015-07-21 07:51:36 +00:00
|
|
|
void CallSVC(u32 immediate);
|
2014-04-11 22:44:21 +00:00
|
|
|
|
2018-01-03 01:40:30 +00:00
|
|
|
} // namespace Kernel
|