2014-04-08 23:15:46 +00:00
|
|
|
// Copyright 2014 Citra Emulator Project
|
2014-12-17 05:38:14 +00:00
|
|
|
// Licensed under GPLv2 or any later version
|
2014-04-08 23:15:46 +00:00
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
2013-09-05 22:33:46 +00:00
|
|
|
|
2014-04-09 00:15:08 +00:00
|
|
|
#include "common/common_types.h"
|
2013-09-05 22:33:46 +00:00
|
|
|
|
2015-01-11 03:56:28 +00:00
|
|
|
namespace Memory {
|
2014-08-28 18:20:55 +00:00
|
|
|
|
2013-09-05 22:33:46 +00:00
|
|
|
void Init();
|
|
|
|
void Shutdown();
|
|
|
|
|
2014-04-25 02:32:26 +00:00
|
|
|
/**
|
|
|
|
* Maps a block of memory on the heap
|
|
|
|
* @param size Size of block in bytes
|
|
|
|
* @param operation Memory map operation type
|
2014-11-18 13:31:24 +00:00
|
|
|
* @param permissions Memory allocation permissions
|
2014-04-25 02:32:26 +00:00
|
|
|
*/
|
|
|
|
u32 MapBlock_Heap(u32 size, u32 operation, u32 permissions);
|
|
|
|
|
2014-04-18 03:05:31 +00:00
|
|
|
/**
|
|
|
|
* Maps a block of memory on the GSP heap
|
|
|
|
* @param size Size of block in bytes
|
2014-04-25 02:32:26 +00:00
|
|
|
* @param operation Memory map operation type
|
2014-04-18 03:05:31 +00:00
|
|
|
* @param permissions Control memory permissions
|
|
|
|
*/
|
2014-11-23 03:35:45 +00:00
|
|
|
u32 MapBlock_HeapLinear(u32 size, u32 operation, u32 permissions);
|
2014-04-18 03:05:31 +00:00
|
|
|
|
2015-05-09 06:08:11 +00:00
|
|
|
/**
|
|
|
|
* 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.
|
|
|
|
*/
|
2014-08-28 18:20:55 +00:00
|
|
|
PAddr VirtualToPhysicalAddress(VAddr addr);
|
2014-04-27 16:40:31 +00:00
|
|
|
|
2015-05-09 06:08:11 +00:00
|
|
|
/**
|
|
|
|
* Undoes a mapping performed by VirtualToPhysicalAddress().
|
|
|
|
*/
|
|
|
|
VAddr PhysicalToVirtualAddress(PAddr addr);
|
|
|
|
|
2013-09-05 22:33:46 +00:00
|
|
|
} // namespace
|