2014-04-11 23:44:21 +01:00
|
|
|
// Copyright 2014 Citra Emulator Project
|
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"
|
|
|
|
|
2014-05-15 23:25:56 +01:00
|
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
2014-05-18 23:12:29 +01:00
|
|
|
// SVC types
|
2014-05-15 23:25:56 +01:00
|
|
|
|
2014-05-16 01:17:30 +01:00
|
|
|
struct MemoryInfo {
|
|
|
|
u32 base_address;
|
|
|
|
u32 size;
|
|
|
|
u32 permission;
|
|
|
|
u32 state;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct PageInfo {
|
|
|
|
u32 flags;
|
|
|
|
};
|
|
|
|
|
2014-04-11 23:44:21 +01:00
|
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
2014-05-20 23:28:38 +01:00
|
|
|
// Namespace SVC
|
2014-04-11 23:44:21 +01:00
|
|
|
|
2014-05-20 23:28:38 +01:00
|
|
|
namespace SVC {
|
2014-04-11 23:44:21 +01:00
|
|
|
|
2015-11-27 03:00:16 +00:00
|
|
|
/// Values accepted by svcGetSystemInfo's type parameter.
|
|
|
|
enum class SystemInfoType {
|
|
|
|
/**
|
|
|
|
* Reports total used memory for all regions or a specific one, according to the extra
|
|
|
|
* parameter. See `SystemInfoMemUsageRegion`.
|
|
|
|
*/
|
|
|
|
REGION_MEMORY_USAGE = 0,
|
|
|
|
/**
|
|
|
|
* Returns the memory usage for certain allocations done internally by the kernel.
|
|
|
|
*/
|
|
|
|
KERNEL_ALLOCATED_PAGES = 2,
|
|
|
|
/**
|
|
|
|
* "This returns the total number of processes which were launched directly by the kernel.
|
|
|
|
* For the ARM11 NATIVE_FIRM kernel, this is 5, for processes sm, fs, pm, loader, and pxi."
|
|
|
|
*/
|
|
|
|
KERNEL_SPAWNED_PIDS = 26,
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Accepted by svcGetSystemInfo param with REGION_MEMORY_USAGE type. Selects a region to query
|
|
|
|
* memory usage of.
|
|
|
|
*/
|
|
|
|
enum class SystemInfoMemUsageRegion {
|
|
|
|
ALL = 0,
|
|
|
|
APPLICATION = 1,
|
|
|
|
SYSTEM = 2,
|
|
|
|
BASE = 3,
|
|
|
|
};
|
|
|
|
|
2015-07-21 08:51:36 +01:00
|
|
|
void CallSVC(u32 immediate);
|
2014-04-11 23:44:21 +01:00
|
|
|
|
|
|
|
} // namespace
|