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
|
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2015-05-08 19:51:48 +00:00
|
|
|
const u32 PAGE_SIZE = 0x1000;
|
|
|
|
|
2015-05-09 03:39:56 +00:00
|
|
|
/// Physical memory regions as seen from the ARM11
|
|
|
|
enum : PAddr {
|
|
|
|
/// IO register area
|
|
|
|
IO_AREA_PADDR = 0x10100000,
|
|
|
|
IO_AREA_SIZE = 0x01000000, ///< IO area size (16MB)
|
|
|
|
IO_AREA_PADDR_END = IO_AREA_PADDR + IO_AREA_SIZE,
|
|
|
|
|
|
|
|
/// MPCore internal memory region
|
|
|
|
MPCORE_RAM_PADDR = 0x17E00000,
|
|
|
|
MPCORE_RAM_SIZE = 0x00002000, ///< MPCore internal memory size (8KB)
|
|
|
|
MPCORE_RAM_PADDR_END = MPCORE_RAM_PADDR + MPCORE_RAM_SIZE,
|
|
|
|
|
|
|
|
/// Video memory
|
|
|
|
VRAM_PADDR = 0x18000000,
|
|
|
|
VRAM_SIZE = 0x00600000, ///< VRAM size (6MB)
|
|
|
|
VRAM_PADDR_END = VRAM_PADDR + VRAM_SIZE,
|
|
|
|
|
|
|
|
/// DSP memory
|
|
|
|
DSP_RAM_PADDR = 0x1FF00000,
|
|
|
|
DSP_RAM_SIZE = 0x00080000, ///< DSP memory size (512KB)
|
|
|
|
DSP_RAM_PADDR_END = DSP_RAM_PADDR + DSP_RAM_SIZE,
|
|
|
|
|
|
|
|
/// AXI WRAM
|
|
|
|
AXI_WRAM_PADDR = 0x1FF80000,
|
|
|
|
AXI_WRAM_SIZE = 0x00080000, ///< AXI WRAM size (512KB)
|
|
|
|
AXI_WRAM_PADDR_END = AXI_WRAM_PADDR + AXI_WRAM_SIZE,
|
|
|
|
|
|
|
|
/// Main FCRAM
|
|
|
|
FCRAM_PADDR = 0x20000000,
|
|
|
|
FCRAM_SIZE = 0x08000000, ///< FCRAM size (128MB)
|
|
|
|
FCRAM_PADDR_END = FCRAM_PADDR + FCRAM_SIZE,
|
|
|
|
};
|
|
|
|
|
|
|
|
/// Virtual user-space memory regions
|
|
|
|
enum : VAddr {
|
|
|
|
/// Where the application text, data and bss reside.
|
|
|
|
PROCESS_IMAGE_VADDR = 0x00100000,
|
|
|
|
PROCESS_IMAGE_MAX_SIZE = 0x03F00000,
|
|
|
|
PROCESS_IMAGE_VADDR_END = PROCESS_IMAGE_VADDR + PROCESS_IMAGE_MAX_SIZE,
|
|
|
|
|
|
|
|
/// Area where IPC buffers are mapped onto.
|
|
|
|
IPC_MAPPING_VADDR = 0x04000000,
|
|
|
|
IPC_MAPPING_SIZE = 0x04000000,
|
|
|
|
IPC_MAPPING_VADDR_END = IPC_MAPPING_VADDR + IPC_MAPPING_SIZE,
|
|
|
|
|
|
|
|
/// Application heap (includes stack).
|
|
|
|
HEAP_VADDR = 0x08000000,
|
|
|
|
HEAP_SIZE = 0x08000000,
|
|
|
|
HEAP_VADDR_END = HEAP_VADDR + HEAP_SIZE,
|
|
|
|
|
|
|
|
/// Area where shared memory buffers are mapped onto.
|
|
|
|
SHARED_MEMORY_VADDR = 0x10000000,
|
|
|
|
SHARED_MEMORY_SIZE = 0x04000000,
|
|
|
|
SHARED_MEMORY_VADDR_END = SHARED_MEMORY_VADDR + SHARED_MEMORY_SIZE,
|
|
|
|
|
|
|
|
/// Maps 1:1 to an offset in FCRAM. Used for HW allocations that need to be linear in physical memory.
|
|
|
|
LINEAR_HEAP_VADDR = 0x14000000,
|
|
|
|
LINEAR_HEAP_SIZE = 0x08000000,
|
|
|
|
LINEAR_HEAP_VADDR_END = LINEAR_HEAP_VADDR + LINEAR_HEAP_SIZE,
|
|
|
|
|
|
|
|
/// Maps 1:1 to the IO register area.
|
|
|
|
IO_AREA_VADDR = 0x1EC00000,
|
|
|
|
IO_AREA_VADDR_END = IO_AREA_VADDR + IO_AREA_SIZE,
|
|
|
|
|
|
|
|
/// Maps 1:1 to VRAM.
|
|
|
|
VRAM_VADDR = 0x1F000000,
|
|
|
|
VRAM_VADDR_END = VRAM_VADDR + VRAM_SIZE,
|
|
|
|
|
|
|
|
/// Maps 1:1 to DSP memory.
|
|
|
|
DSP_RAM_VADDR = 0x1FF00000,
|
|
|
|
DSP_RAM_VADDR_END = DSP_RAM_VADDR + DSP_RAM_SIZE,
|
|
|
|
|
|
|
|
/// Read-only page containing kernel and system configuration values.
|
|
|
|
CONFIG_MEMORY_VADDR = 0x1FF80000,
|
|
|
|
CONFIG_MEMORY_SIZE = 0x00001000,
|
|
|
|
CONFIG_MEMORY_VADDR_END = CONFIG_MEMORY_VADDR + CONFIG_MEMORY_SIZE,
|
|
|
|
|
|
|
|
/// Usually read-only page containing mostly values read from hardware.
|
|
|
|
SHARED_PAGE_VADDR = 0x1FF81000,
|
|
|
|
SHARED_PAGE_SIZE = 0x00001000,
|
|
|
|
SHARED_PAGE_VADDR_END = SHARED_PAGE_VADDR + SHARED_PAGE_SIZE,
|
|
|
|
|
|
|
|
// TODO(yuriks): The exact location and size of this area is uncomfirmed.
|
|
|
|
/// Area where TLS (Thread-Local Storage) buffers are allocated.
|
|
|
|
TLS_AREA_VADDR = 0x1FFA0000,
|
|
|
|
TLS_AREA_SIZE = 0x00002000, // Each TLS buffer is 0x200 bytes, allows for 16 threads
|
|
|
|
TLS_AREA_VADDR_END = TLS_AREA_VADDR + TLS_AREA_SIZE,
|
2014-04-04 02:04:24 +00:00
|
|
|
};
|
2013-09-06 03:04:04 +00:00
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2014-04-25 02:32:26 +00:00
|
|
|
/// Represents a block of memory mapped by ControlMemory/MapMemoryBlock
|
|
|
|
struct MemoryBlock {
|
|
|
|
MemoryBlock() : handle(0), base_address(0), address(0), size(0), operation(0), permissions(0) {
|
2014-04-18 03:05:31 +00:00
|
|
|
}
|
2014-04-25 02:32:26 +00:00
|
|
|
u32 handle;
|
2014-04-18 03:05:31 +00:00
|
|
|
u32 base_address;
|
|
|
|
u32 address;
|
|
|
|
u32 size;
|
|
|
|
u32 operation;
|
|
|
|
u32 permissions;
|
|
|
|
|
|
|
|
const u32 GetVirtualAddress() const{
|
|
|
|
return base_address + address;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2015-05-09 03:44:29 +00:00
|
|
|
extern u8* g_exefs_code; ///< ExeFS:/.code is loaded here
|
|
|
|
extern u8* g_heap; ///< Application heap (main memory)
|
|
|
|
extern u8* g_shared_mem; ///< Shared memory
|
|
|
|
extern u8* g_heap_linear; ///< Linear heap (main memory)
|
|
|
|
extern u8* g_vram; ///< Video memory (VRAM)
|
|
|
|
extern u8* g_dsp_mem; ///< DSP memory
|
|
|
|
extern u8* g_tls_mem; ///< TLS memory
|
2013-09-05 22:33:46 +00:00
|
|
|
|
|
|
|
void Init();
|
|
|
|
void Shutdown();
|
|
|
|
|
2014-07-05 03:46:16 +00:00
|
|
|
template <typename T>
|
2014-08-28 18:20:55 +00:00
|
|
|
inline void Read(T &var, VAddr addr);
|
2014-07-05 03:46:16 +00:00
|
|
|
|
|
|
|
template <typename T>
|
2014-08-28 18:20:55 +00:00
|
|
|
inline void Write(VAddr addr, T data);
|
2014-07-05 03:46:16 +00:00
|
|
|
|
2014-08-28 18:20:55 +00:00
|
|
|
u8 Read8(VAddr addr);
|
|
|
|
u16 Read16(VAddr addr);
|
|
|
|
u32 Read32(VAddr addr);
|
2015-03-11 20:10:14 +00:00
|
|
|
u64 Read64(VAddr addr);
|
2013-09-05 22:33:46 +00:00
|
|
|
|
2014-08-28 18:20:55 +00:00
|
|
|
u32 Read8_ZX(VAddr addr);
|
|
|
|
u32 Read16_ZX(VAddr addr);
|
2013-09-20 03:13:33 +00:00
|
|
|
|
2014-08-28 18:20:55 +00:00
|
|
|
void Write8(VAddr addr, u8 data);
|
|
|
|
void Write16(VAddr addr, u16 data);
|
|
|
|
void Write32(VAddr addr, u32 data);
|
2014-11-17 03:50:13 +00:00
|
|
|
void Write64(VAddr addr, u64 data);
|
2013-09-05 22:33:46 +00:00
|
|
|
|
2014-08-28 18:20:55 +00:00
|
|
|
void WriteBlock(VAddr addr, const u8* data, size_t size);
|
2014-06-24 22:51:31 +00:00
|
|
|
|
2014-08-28 18:20:55 +00:00
|
|
|
u8* GetPointer(VAddr virtual_address);
|
2014-03-25 14:50:34 +00:00
|
|
|
|
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-04-28 01:59:06 +00:00
|
|
|
/// Initialize mapped memory blocks
|
|
|
|
void MemBlock_Init();
|
|
|
|
|
|
|
|
/// Shutdown mapped memory blocks
|
|
|
|
void MemBlock_Shutdown();
|
|
|
|
|
2014-08-28 18:20:55 +00:00
|
|
|
inline const char* GetCharPointer(const VAddr address) {
|
2014-04-13 04:39:05 +00:00
|
|
|
return (const char *)GetPointer(address);
|
2014-04-10 23:56:30 +00:00
|
|
|
}
|
|
|
|
|
2014-08-02 23:46:47 +00:00
|
|
|
/// Converts a physical address to virtual address
|
2014-08-28 18:20:55 +00:00
|
|
|
VAddr PhysicalToVirtualAddress(PAddr addr);
|
2014-04-27 16:40:31 +00:00
|
|
|
|
2014-08-02 23:46:47 +00:00
|
|
|
/// Converts a virtual address to physical address
|
2014-08-28 18:20:55 +00:00
|
|
|
PAddr VirtualToPhysicalAddress(VAddr addr);
|
2014-04-27 16:40:31 +00:00
|
|
|
|
2013-09-05 22:33:46 +00:00
|
|
|
} // namespace
|