2014-04-12 00:44:21 +02:00
|
|
|
// Copyright 2014 Citra Emulator Project
|
2014-12-17 06:38:14 +01:00
|
|
|
// Licensed under GPLv2 or any later version
|
2014-11-19 09:49:13 +01:00
|
|
|
// Refer to the license.txt file included.
|
2014-04-12 00:44:21 +02:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "common/common_types.h"
|
|
|
|
|
2017-12-10 03:05:43 +01:00
|
|
|
namespace Kernel {
|
2014-05-16 00:25:56 +02:00
|
|
|
|
2014-05-16 02:17:30 +02:00
|
|
|
struct MemoryInfo {
|
|
|
|
u32 base_address;
|
|
|
|
u32 size;
|
|
|
|
u32 permission;
|
|
|
|
u32 state;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct PageInfo {
|
|
|
|
u32 flags;
|
|
|
|
};
|
|
|
|
|
2015-11-27 04:00:16 +01: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 09:51:36 +02:00
|
|
|
void CallSVC(u32 immediate);
|
2014-04-12 00:44:21 +02:00
|
|
|
|
2017-12-10 03:05:43 +01:00
|
|
|
} // namespace Kernel
|