2014-12-17 00:38:14 -05:00
|
|
|
// Copyright 2014 Citra Emulator Project
|
|
|
|
// Licensed under GPLv2 or any later version
|
2014-04-08 19:15:46 -04:00
|
|
|
// Refer to the license.txt file included.
|
2013-09-05 18:33:46 -04:00
|
|
|
|
2015-05-06 03:06:12 -04:00
|
|
|
#include "common/common_types.h"
|
|
|
|
#include "common/logging/log.h"
|
2013-09-05 23:04:04 -04:00
|
|
|
|
2014-04-08 20:15:08 -04:00
|
|
|
#include "core/mem_map.h"
|
2013-09-05 23:04:04 -04:00
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
2013-09-05 18:33:46 -04:00
|
|
|
|
|
|
|
namespace Memory {
|
|
|
|
|
2015-05-07 18:01:09 -04:00
|
|
|
u8* g_exefs_code; ///< ExeFS:/.code is loaded here
|
|
|
|
u8* g_system_mem; ///< System memory
|
|
|
|
u8* g_heap; ///< Application heap (main memory)
|
|
|
|
u8* g_heap_linear; ///< Linear heap
|
|
|
|
u8* g_vram; ///< Video memory (VRAM) pointer
|
|
|
|
u8* g_shared_mem; ///< Shared memory
|
|
|
|
u8* g_dsp_mem; ///< DSP memory
|
|
|
|
u8* g_kernel_mem; ///< Kernel memory
|
2015-04-27 21:59:06 -04:00
|
|
|
|
2015-05-07 18:01:09 -04:00
|
|
|
namespace {
|
2015-04-27 21:59:06 -04:00
|
|
|
|
2015-05-07 18:01:09 -04:00
|
|
|
struct MemoryArea {
|
|
|
|
u8** ptr;
|
|
|
|
size_t size;
|
2013-09-05 23:04:04 -04:00
|
|
|
};
|
|
|
|
|
2015-05-07 18:01:09 -04:00
|
|
|
// We don't declare the IO regions in here since its handled by other means.
|
|
|
|
static MemoryArea memory_areas[] = {
|
|
|
|
{&g_exefs_code, EXEFS_CODE_SIZE },
|
|
|
|
{&g_vram, VRAM_SIZE },
|
|
|
|
{&g_heap, HEAP_SIZE },
|
|
|
|
{&g_shared_mem, SHARED_MEMORY_SIZE},
|
|
|
|
{&g_system_mem, SYSTEM_MEMORY_SIZE},
|
|
|
|
{&g_dsp_mem, DSP_MEMORY_SIZE },
|
|
|
|
{&g_kernel_mem, KERNEL_MEMORY_SIZE},
|
|
|
|
{&g_heap_linear, HEAP_LINEAR_SIZE },
|
|
|
|
};
|
2013-09-18 22:36:39 -04:00
|
|
|
|
2015-05-07 18:01:09 -04:00
|
|
|
}
|
2013-09-05 23:04:04 -04:00
|
|
|
|
|
|
|
void Init() {
|
2015-05-07 18:01:09 -04:00
|
|
|
for (MemoryArea& area : memory_areas) {
|
|
|
|
*area.ptr = new u8[area.size];
|
2014-04-01 18:18:02 -04:00
|
|
|
}
|
2015-04-27 21:59:06 -04:00
|
|
|
MemBlock_Init();
|
2014-03-29 21:53:41 -04:00
|
|
|
|
2015-05-07 18:01:09 -04:00
|
|
|
LOG_DEBUG(HW_Memory, "initialized OK, RAM at %p", g_heap);
|
2013-09-05 23:04:04 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void Shutdown() {
|
2015-04-27 21:59:06 -04:00
|
|
|
MemBlock_Shutdown();
|
2015-05-07 18:01:09 -04:00
|
|
|
for (MemoryArea& area : memory_areas) {
|
|
|
|
delete[] *area.ptr;
|
|
|
|
*area.ptr = nullptr;
|
|
|
|
}
|
2014-04-01 18:18:02 -04:00
|
|
|
|
2014-12-05 20:53:49 -05:00
|
|
|
LOG_DEBUG(HW_Memory, "shutdown OK");
|
2013-09-05 23:04:04 -04:00
|
|
|
}
|
|
|
|
|
2013-09-05 18:33:46 -04:00
|
|
|
} // namespace
|