2018-01-08 21:41:37 -05:00
|
|
|
// Copyright 2018 Yuzu Emulator Team
|
2014-12-16 21:38:14 -08: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 18:44:21 -04:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "common/common_types.h"
|
|
|
|
|
2018-01-02 20:40:30 -05:00
|
|
|
namespace Kernel {
|
2014-05-15 18:25:56 -04:00
|
|
|
|
2014-05-15 20:17:30 -04:00
|
|
|
struct MemoryInfo {
|
2017-10-14 17:31:25 -04:00
|
|
|
u64 base_address;
|
|
|
|
u64 size;
|
2017-10-19 23:00:46 -04:00
|
|
|
u32 type;
|
|
|
|
u32 attributes;
|
|
|
|
u32 permission;
|
2014-05-15 20:17:30 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
struct PageInfo {
|
2017-10-14 17:31:25 -04:00
|
|
|
u64 flags;
|
2014-05-15 20:17:30 -04:00
|
|
|
};
|
|
|
|
|
2018-01-01 16:01:06 -05:00
|
|
|
/// Values accepted by svcGetInfo
|
|
|
|
enum class GetInfoType : u64 {
|
|
|
|
// 1.0.0+
|
2018-01-10 00:58:25 -05:00
|
|
|
AllowedCpuIdBitmask = 0,
|
2018-01-01 16:01:06 -05:00
|
|
|
TotalMemoryUsage = 6,
|
|
|
|
TotalHeapUsage = 7,
|
|
|
|
RandomEntropy = 11,
|
|
|
|
// 2.0.0+
|
|
|
|
AddressSpaceBaseAddr = 12,
|
|
|
|
AddressSpaceSize = 13,
|
|
|
|
NewMapRegionBaseAddr = 14,
|
|
|
|
NewMapRegionSize = 15,
|
2015-11-26 19:00:16 -08:00
|
|
|
};
|
|
|
|
|
2015-07-21 03:51:36 -04:00
|
|
|
void CallSVC(u32 immediate);
|
2014-04-11 18:44:21 -04:00
|
|
|
|
2018-01-02 20:40:30 -05:00
|
|
|
} // namespace Kernel
|