citra-shitamoto-network/src/core/mem_map.h

47 lines
1.2 KiB
C
Raw Normal View History

2014-04-09 04:45:46 +05:30
// Copyright 2014 Citra Emulator Project
2014-12-17 11:08:14 +05:30
// Licensed under GPLv2 or any later version
2014-04-09 04:45:46 +05:30
// Refer to the license.txt file included.
#pragma once
#include "common/common_types.h"
namespace Kernel {
class VMManager;
}
2015-01-11 09:26:28 +05:30
namespace Memory {
void Init();
void InitLegacyAddressSpace(Kernel::VMManager& address_space);
void Shutdown();
/**
* Maps a block of memory on the heap
* @param size Size of block in bytes
* @param operation Memory map operation type
2014-11-18 19:01:24 +05:30
* @param permissions Memory allocation permissions
*/
u32 MapBlock_Heap(u32 size, u32 operation, u32 permissions);
2014-04-18 08:35:31 +05:30
/**
* Maps a block of memory on the GSP heap
* @param size Size of block in bytes
* @param operation Memory map operation type
2014-04-18 08:35:31 +05:30
* @param permissions Control memory permissions
*/
u32 MapBlock_HeapLinear(u32 size, u32 operation, u32 permissions);
2014-04-18 08:35:31 +05:30
/**
* Converts a virtual address inside a region with 1:1 mapping to physical memory to a physical
* address. This should be used by services to translate addresses for use by the hardware.
*/
PAddr VirtualToPhysicalAddress(VAddr addr);
/**
* Undoes a mapping performed by VirtualToPhysicalAddress().
*/
VAddr PhysicalToVirtualAddress(PAddr addr);
} // namespace