Age | Commit message (Collapse) | Author | |
---|---|---|---|
2015-08-16 | Move core/mem_map.{cpp,h} => core/hle/kernel/memory.{cpp,h} | Yuri Kunde Schlesner | |
2015-08-16 | Memory: Move address type conversion routines to memory.cpp/h | Yuri Kunde Schlesner | |
These helpers aren't really part of the kernel, and mem_map.cpp/h is going to be moved there next. | |||
2015-07-11 | Core: Properly configure address space when loading a binary | Yuri Kunde Schlesner | |
The code now properly configures the process image to match the loaded binary segments (code, rodata, data) instead of just blindly allocating a large chunk of dummy memory. | |||
2015-05-27 | Memmap: Remove unused global pointers to memory areas | Yuri Kunde Schlesner | |
2015-05-15 | Memmap: Re-organize memory function in two files | Yuri Kunde Schlesner | |
memory.cpp/h contains definitions related to acessing memory and configuring the address space mem_map.cpp/h contains higher-level definitions related to configuring the address space accoording to the kernel and allocating memory. | |||
2015-05-15 | Memmap: Remove unused declarations | Yuri Kunde Schlesner | |
2015-05-11 | Core/Memory: Add TLS support for creating up to 300 threads | Subv | |
2015-05-09 | Memory: Add GetPhysicalPointer helper function | Yuri Kunde Schlesner | |
2015-05-09 | Memory: Support more regions in the VAddr-PAddr translation functions | Yuri Kunde Schlesner | |
Also adds better documentation and removes the one-off reimplementation of the function in pica.h. | |||
2015-05-09 | Memory: Sort memory region variables by VAddr | Yuri Kunde Schlesner | |
2015-05-09 | Memory: Re-organize and rename memory area address constants | Yuri Kunde Schlesner | |
2015-05-08 | Process: Support parsing of exheader kernel caps | Yuri Kunde Schlesner | |
2015-05-07 | Common: Remove mem_arena.cpp/h | Yuri Kunde Schlesner | |
It is superfluous for Citra. (It's only really necessary if you're doing JIT. We were using it but not taking any advantage from it.) This should make 32-bit builds work again. | |||
2015-05-06 | Clean-up includes | Yuri Kunde Schlesner | |
2015-05-01 | Memory: Properly cleanup & shutdown. | bunnei | |
2015-04-05 | Clean-up mem_map constants and fix framebuffer translation errors | Yuri Kunde Schlesner | |
2015-03-17 | dyncom: Make Load/Store instructions support big endian | Lioncash | |
2015-01-30 | Move VAddr/PAddr typedefs to kernel.h | Yuri Kunde Schlesner | |
2014-12-29 | MemMap: Add support for DSP Read & Writes in the memory map | purpasmart96 | |
2014-12-29 | Merge pull request #253 from purpasmart96/mem_map | bunnei | |
MemMap: Removed I/O address's and added more stuff | |||
2014-12-20 | License change | purpasmart96 | |
2014-12-13 | MemMap: Added AXI_WRAM & SHARED_PAGE along with other stuff | purpasmart96 | |
Got rid of I/O address's since the I/O addresses range's overlap with other address's types such as vram, these I/O addresses need to be done in an different way. | |||
2014-12-12 | MemMap: Renamed "GSP" heap to "linear", as this is not specific to GSP. | bunnei | |
- Linear simply indicates that the mapped physical address is always MappedVAddr+0x0C000000, thus this memory can be used for hardware devices' DMA (such as the GPU). | |||
2014-12-08 | Merge pull request #244 from bunnei/cleanup-memmap | bunnei | |
MemMap: Updated memory map to subtract base address instead of mask. | |||
2014-12-04 | Merge pull request #249 from lioncash/enum | bunnei | |
mem_map: Make enum for addresses use u32 as the underlying type | |||
2014-12-03 | mem_map: Make enum for addresses use u32 as the underlying type | Lioncash | |
2014-12-03 | Add stub for ConvertProcessFromDspDram | archshift | |
Should theoretically push retail stuff further along | |||
2014-12-03 | MemMap: Updated memory map to subtract base address instead of mask. | bunnei | |
- More readable, a little less error prone. Conflicts: src/core/mem_map.h src/core/mem_map_funcs.cpp | |||
2014-11-18 | Fix documentation of parameters | Lioncash | |
2014-11-16 | mem_map: Add missing prototype for Write64 | Lioncash | |
2014-08-31 | Introduce VAddr and PAddr typedefs for ARM addresses. | Yuri Kunde Schlesner | |
2014-08-12 | Pica/GPU: Change hardware registers to use physical addresses rather than ↵ | Tony Wasserka | |
virtual ones. This cleans up the mess that address reading/writing had become and makes the code a *lot* more sensible. This adds a physical<->virtual address converter to mem_map.h. For further accuracy, we will want to properly extend this to support a wider range of address regions. For now, this makes simply homebrew applications work in a good manner though. | |||
2014-07-05 | Memory: Removed deprecated MapBlock_Shared function. | bunnei | |
2014-07-04 | mem_map: Updated interface to expose template functions to other modules. | bunnei | |
2014-06-24 | MemMap: Added a WriteBlock function to write a buffer of data to memory. | bunnei | |
2014-05-15 | added memory mapped region for system mem - sdk demos load a segment here on ↵ | bunnei | |
ELF load | |||
2014-05-07 | added kernel memory to mem_map | bunnei | |
2014-05-06 | added mem_map read for config_mem | bunnei | |
2014-04-30 | fixed a bug where ExeFs code was being incorrectly masked | bunnei | |
2014-04-30 | added virtual memory map for ExeFS (where ARM11 code is supposed to be loaded) | bunnei | |
2014-04-30 | reorganized memory regions enum, added regions for ExeFS code | bunnei | |
2014-04-27 | added virtual address conversion for firmware FW0B | bunnei | |
2014-04-27 | added helper functions to mem_map to convert physical addresses to virtual ↵ | bunnei | |
addresses | |||
2014-04-26 | - changed HW IO map to use virtual addresses | bunnei | |
- added hooks to catch LCD IO read/writes | |||
2014-04-26 | added vram to memory_map | bunnei | |
2014-04-24 | - added preliminary support for svc_MapMemoryBlock | bunnei | |
- added shared memory region - moarrrr cleanups to memory_map | |||
2014-04-24 | added functions to map Heap and Shared memory space | bunnei | |
2014-04-17 | added GSP heap memory allocation | bunnei | |
2014-04-17 | moved enums into Memory:: namespace | bunnei | |
2014-04-17 | added memory read/write to GSP heap | bunnei | |