aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/mem_map.h
Commit message (Collapse)AuthorAge
* Core: Properly configure address space when loading a binaryGravatar Yuri Kunde Schlesner2015-07-11
| | | | | | 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.
* Memmap: Remove unused global pointers to memory areasGravatar Yuri Kunde Schlesner2015-05-27
|
* Memmap: Re-organize memory function in two filesGravatar Yuri Kunde Schlesner2015-05-15
| | | | | | | 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.
* Memmap: Remove unused declarationsGravatar Yuri Kunde Schlesner2015-05-15
|
* Core/Memory: Add TLS support for creating up to 300 threadsGravatar Subv2015-05-11
|
* Memory: Add GetPhysicalPointer helper functionGravatar Yuri Kunde Schlesner2015-05-09
|
* Memory: Support more regions in the VAddr-PAddr translation functionsGravatar Yuri Kunde Schlesner2015-05-09
| | | | | Also adds better documentation and removes the one-off reimplementation of the function in pica.h.
* Memory: Sort memory region variables by VAddrGravatar Yuri Kunde Schlesner2015-05-09
|
* Memory: Re-organize and rename memory area address constantsGravatar Yuri Kunde Schlesner2015-05-09
|
* Process: Support parsing of exheader kernel capsGravatar Yuri Kunde Schlesner2015-05-08
|
* Common: Remove mem_arena.cpp/hGravatar Yuri Kunde Schlesner2015-05-07
| | | | | | 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.
* Clean-up includesGravatar Yuri Kunde Schlesner2015-05-06
|
* Memory: Properly cleanup & shutdown.Gravatar bunnei2015-05-01
|
* Clean-up mem_map constants and fix framebuffer translation errorsGravatar Yuri Kunde Schlesner2015-04-05
|
* dyncom: Make Load/Store instructions support big endianGravatar Lioncash2015-03-17
|
* Move VAddr/PAddr typedefs to kernel.hGravatar Yuri Kunde Schlesner2015-01-30
|
* MemMap: Add support for DSP Read & Writes in the memory mapGravatar purpasmart962014-12-29
|
* Merge pull request #253 from purpasmart96/mem_mapGravatar bunnei2014-12-29
|\ | | | | MemMap: Removed I/O address's and added more stuff
* | License changeGravatar purpasmart962014-12-20
| |
| * MemMap: Added AXI_WRAM & SHARED_PAGE along with other stuffGravatar purpasmart962014-12-13
|/ | | | | | 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.
* MemMap: Renamed "GSP" heap to "linear", as this is not specific to GSP.Gravatar bunnei2014-12-12
| | | | - 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).
* Merge pull request #244 from bunnei/cleanup-memmapGravatar bunnei2014-12-08
|\ | | | | MemMap: Updated memory map to subtract base address instead of mask.
* \ Merge pull request #249 from lioncash/enumGravatar bunnei2014-12-04
|\ \ | | | | | | mem_map: Make enum for addresses use u32 as the underlying type
| * | mem_map: Make enum for addresses use u32 as the underlying typeGravatar Lioncash2014-12-03
| | |
* | | Add stub for ConvertProcessFromDspDramGravatar archshift2014-12-03
|/ / | | | | | | Should theoretically push retail stuff further along
| * MemMap: Updated memory map to subtract base address instead of mask.Gravatar bunnei2014-12-03
|/ | | | | | | | - More readable, a little less error prone. Conflicts: src/core/mem_map.h src/core/mem_map_funcs.cpp
* Fix documentation of parametersGravatar Lioncash2014-11-18
|
* mem_map: Add missing prototype for Write64Gravatar Lioncash2014-11-16
|
* Introduce VAddr and PAddr typedefs for ARM addresses.Gravatar Yuri Kunde Schlesner2014-08-31
|
* Pica/GPU: Change hardware registers to use physical addresses rather than ↵Gravatar Tony Wasserka2014-08-12
| | | | | | | 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.
* Memory: Removed deprecated MapBlock_Shared function.Gravatar bunnei2014-07-05
|
* mem_map: Updated interface to expose template functions to other modules.Gravatar bunnei2014-07-04
|
* MemMap: Added a WriteBlock function to write a buffer of data to memory.Gravatar bunnei2014-06-24
|
* added memory mapped region for system mem - sdk demos load a segment here on ↵Gravatar bunnei2014-05-15
| | | | ELF load
* added kernel memory to mem_mapGravatar bunnei2014-05-07
|
* added mem_map read for config_memGravatar bunnei2014-05-06
|
* fixed a bug where ExeFs code was being incorrectly maskedGravatar bunnei2014-04-30
|
* added virtual memory map for ExeFS (where ARM11 code is supposed to be loaded)Gravatar bunnei2014-04-30
|
* reorganized memory regions enum, added regions for ExeFS codeGravatar bunnei2014-04-30
|
* added virtual address conversion for firmware FW0BGravatar bunnei2014-04-27
|
* added helper functions to mem_map to convert physical addresses to virtual ↵Gravatar bunnei2014-04-27
| | | | addresses
* - changed HW IO map to use virtual addressesGravatar bunnei2014-04-26
| | | | - added hooks to catch LCD IO read/writes
* added vram to memory_mapGravatar bunnei2014-04-26
|
* - added preliminary support for svc_MapMemoryBlockGravatar bunnei2014-04-24
| | | | | - added shared memory region - moarrrr cleanups to memory_map
* added functions to map Heap and Shared memory spaceGravatar bunnei2014-04-24
|
* added GSP heap memory allocationGravatar bunnei2014-04-17
|
* moved enums into Memory:: namespaceGravatar bunnei2014-04-17
|
* added memory read/write to GSP heapGravatar bunnei2014-04-17
|
* more various refactors to memory interfaceGravatar bunnei2014-04-17
|
* cleaned up memory interfaces a lot, removed some hackish stuffGravatar bunnei2014-04-17
|