mem_map.cpp 3.9 KB

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