2014-04-13 02:55:36 +01:00
|
|
|
// Copyright 2014 Citra Emulator Project
|
2014-04-09 00:15:46 +01:00
|
|
|
// Licensed under GPLv2
|
|
|
|
// Refer to the license.txt file included.
|
2013-09-05 23:33:46 +01:00
|
|
|
|
2014-04-09 01:15:08 +01:00
|
|
|
#include "common/common.h"
|
|
|
|
#include "common/mem_arena.h"
|
2013-09-06 04:04:04 +01:00
|
|
|
|
2014-04-09 01:15:08 +01:00
|
|
|
#include "core/mem_map.h"
|
|
|
|
#include "core/core.h"
|
2013-09-06 04:04:04 +01:00
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
2013-09-05 23:33:46 +01:00
|
|
|
|
|
|
|
namespace Memory {
|
|
|
|
|
2014-04-01 23:18:02 +01:00
|
|
|
u8* g_base = NULL; ///< The base pointer to the auto-mirrored arena.
|
2013-09-06 04:04:04 +01:00
|
|
|
|
2014-04-01 23:18:02 +01:00
|
|
|
MemArena g_arena; ///< The MemArena class
|
2013-09-06 04:04:04 +01:00
|
|
|
|
2014-04-30 04:16:12 +01:00
|
|
|
u8* g_exefs_code = NULL; ///< ExeFS:/.code is loaded here
|
2014-05-15 23:56:28 +01:00
|
|
|
u8* g_system_mem = NULL; ///< System memory
|
2014-04-18 02:15:40 +01:00
|
|
|
u8* g_heap = NULL; ///< Application heap (main memory)
|
2014-04-25 03:32:26 +01:00
|
|
|
u8* g_heap_gsp = NULL; ///< GSP heap (main memory)
|
2014-04-01 23:18:02 +01:00
|
|
|
u8* g_vram = NULL; ///< Video memory (VRAM) pointer
|
2014-04-25 04:56:06 +01:00
|
|
|
u8* g_shared_mem = NULL; ///< Shared memory
|
2014-05-08 02:01:09 +01:00
|
|
|
u8* g_kernel_mem; ///< Kernel memory
|
2014-04-01 02:05:51 +01:00
|
|
|
|
2014-04-01 23:18:02 +01:00
|
|
|
u8* g_physical_bootrom = NULL; ///< Bootrom physical memory
|
|
|
|
u8* g_uncached_bootrom = NULL;
|
2013-09-19 03:36:39 +01:00
|
|
|
|
2014-04-30 04:16:12 +01:00
|
|
|
u8* g_physical_exefs_code = NULL; ///< Phsical ExeFS:/.code is loaded here
|
2014-05-15 23:56:28 +01:00
|
|
|
u8* g_physical_system_mem = NULL; ///< System physical memory
|
2014-04-01 23:18:02 +01:00
|
|
|
u8* g_physical_fcram = NULL; ///< Main physical memory (FCRAM)
|
2014-04-25 03:32:26 +01:00
|
|
|
u8* g_physical_heap_gsp = NULL; ///< GSP heap physical memory
|
2014-04-01 23:18:02 +01:00
|
|
|
u8* g_physical_vram = NULL; ///< Video physical memory (VRAM)
|
2014-04-25 04:56:06 +01:00
|
|
|
u8* g_physical_shared_mem = NULL; ///< Physical shared memory
|
2014-05-08 02:01:09 +01:00
|
|
|
u8* g_physical_kernel_mem; ///< Kernel memory
|
2013-09-06 04:04:04 +01:00
|
|
|
|
|
|
|
// We don't declare the IO region in here since its handled by other means.
|
2014-04-01 23:18:02 +01:00
|
|
|
static MemoryView g_views[] = {
|
2014-04-30 04:16:12 +01:00
|
|
|
{&g_exefs_code, &g_physical_exefs_code, EXEFS_CODE_VADDR, EXEFS_CODE_SIZE, 0},
|
2014-04-25 04:56:06 +01:00
|
|
|
{&g_vram, &g_physical_vram, VRAM_VADDR, VRAM_SIZE, 0},
|
|
|
|
{&g_heap, &g_physical_fcram, HEAP_VADDR, HEAP_SIZE, MV_IS_PRIMARY_RAM},
|
|
|
|
{&g_shared_mem, &g_physical_shared_mem, SHARED_MEMORY_VADDR, SHARED_MEMORY_SIZE, 0},
|
2014-05-15 23:56:28 +01:00
|
|
|
{&g_system_mem, &g_physical_system_mem, SYSTEM_MEMORY_VADDR, SYSTEM_MEMORY_SIZE, 0},
|
2014-05-08 02:01:09 +01:00
|
|
|
{&g_kernel_mem, &g_physical_kernel_mem, KERNEL_MEMORY_VADDR, KERNEL_MEMORY_SIZE, 0},
|
2014-04-25 04:56:06 +01:00
|
|
|
{&g_heap_gsp, &g_physical_heap_gsp, HEAP_GSP_VADDR, HEAP_GSP_SIZE, 0},
|
2013-09-06 04:04:04 +01:00
|
|
|
};
|
|
|
|
|
2013-09-19 03:36:39 +01:00
|
|
|
/*static MemoryView views[] =
|
|
|
|
{
|
2014-04-01 23:18:02 +01:00
|
|
|
{&m_pScratchPad, &m_pPhysicalScratchPad, 0x00010000, SCRATCHPAD_SIZE, 0},
|
|
|
|
{NULL, &m_pUncachedScratchPad, 0x40010000, SCRATCHPAD_SIZE, MV_MIRROR_PREVIOUS},
|
|
|
|
{&m_pVRAM, &m_pPhysicalVRAM, 0x04000000, 0x00800000, 0},
|
|
|
|
{NULL, &m_pUncachedVRAM, 0x44000000, 0x00800000, MV_MIRROR_PREVIOUS},
|
|
|
|
{&m_pRAM, &m_pPhysicalRAM, 0x08000000, g_MemorySize, MV_IS_PRIMARY_RAM}, // only from 0x08800000 is it usable (last 24 megs)
|
|
|
|
{NULL, &m_pUncachedRAM, 0x48000000, g_MemorySize, MV_MIRROR_PREVIOUS | MV_IS_PRIMARY_RAM},
|
|
|
|
{NULL, &m_pKernelRAM, 0x88000000, g_MemorySize, MV_MIRROR_PREVIOUS | MV_IS_PRIMARY_RAM},
|
|
|
|
|
|
|
|
// TODO: There are a few swizzled mirrors of VRAM, not sure about the best way to
|
|
|
|
// implement those.
|
2013-09-19 03:36:39 +01:00
|
|
|
};*/
|
|
|
|
|
2014-04-01 23:18:02 +01:00
|
|
|
static const int kNumMemViews = sizeof(g_views) / sizeof(MemoryView); ///< Number of mem views
|
2013-09-06 04:04:04 +01:00
|
|
|
|
|
|
|
void Init() {
|
2014-04-01 23:18:02 +01:00
|
|
|
int flags = 0;
|
2013-09-06 04:04:04 +01:00
|
|
|
|
2014-04-01 23:18:02 +01:00
|
|
|
for (size_t i = 0; i < ARRAY_SIZE(g_views); i++) {
|
|
|
|
if (g_views[i].flags & MV_IS_PRIMARY_RAM)
|
2014-04-18 02:05:34 +01:00
|
|
|
g_views[i].size = FCRAM_SIZE;
|
2014-04-01 23:18:02 +01:00
|
|
|
}
|
2013-09-06 04:04:04 +01:00
|
|
|
|
2014-04-01 23:18:02 +01:00
|
|
|
g_base = MemoryMap_Setup(g_views, kNumMemViews, flags, &g_arena);
|
2014-03-30 02:53:41 +01:00
|
|
|
|
2014-08-03 00:46:47 +01:00
|
|
|
NOTICE_LOG(MEMMAP, "initialized OK, RAM at %p (mirror at 0 @ %p)", g_heap,
|
2014-04-01 23:18:02 +01:00
|
|
|
g_physical_fcram);
|
2013-09-06 04:04:04 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void Shutdown() {
|
2014-04-01 23:18:02 +01:00
|
|
|
u32 flags = 0;
|
|
|
|
MemoryMap_Shutdown(g_views, kNumMemViews, flags, &g_arena);
|
2014-08-03 00:46:47 +01:00
|
|
|
|
2014-04-01 23:18:02 +01:00
|
|
|
g_arena.ReleaseSpace();
|
2014-04-17 23:40:42 +01:00
|
|
|
g_base = NULL;
|
2014-04-01 23:18:02 +01:00
|
|
|
|
2014-04-11 03:45:40 +01:00
|
|
|
NOTICE_LOG(MEMMAP, "shutdown OK");
|
2013-09-06 04:04:04 +01:00
|
|
|
}
|
|
|
|
|
2013-09-05 23:33:46 +01:00
|
|
|
} // namespace
|