summaryrefslogtreecommitdiffstats
path: root/src/core/mem_map.h (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Memory: Move address type conversion routines to memory.cpp/hYuri Kunde Schlesner2015-08-161-11/+0
| | | | | These helpers aren't really part of the kernel, and mem_map.cpp/h is going to be moved there next.
* Core: Properly configure address space when loading a binaryYuri Kunde Schlesner2015-07-121-0/+5
| | | | | | 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 areasYuri Kunde Schlesner2015-05-271-8/+0
|
* Memmap: Re-organize memory function in two filesYuri Kunde Schlesner2015-05-151-148/+0
| | | | | | | 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 declarationsYuri Kunde Schlesner2015-05-151-9/+0
|
* Core/Memory: Add TLS support for creating up to 300 threadsSubv2015-05-121-3/+5
|
* Memory: Add GetPhysicalPointer helper functionYuri Kunde Schlesner2015-05-091-0/+9
|
* Memory: Support more regions in the VAddr-PAddr translation functionsYuri Kunde Schlesner2015-05-091-4/+9
| | | | | Also adds better documentation and removes the one-off reimplementation of the function in pica.h.
* Memory: Sort memory region variables by VAddrYuri Kunde Schlesner2015-05-091-7/+7
|
* Memory: Re-organize and rename memory area address constantsYuri Kunde Schlesner2015-05-091-75/+88
|
* Process: Support parsing of exheader kernel capsYuri Kunde Schlesner2015-05-091-0/+2
|
* Common: Remove mem_arena.cpp/hYuri Kunde Schlesner2015-05-081-12/+0
| | | | | | 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 includesYuri Kunde Schlesner2015-05-071-3/+0
|
* Memory: Properly cleanup & shutdown.bunnei2015-05-021-0/+6
|
* Clean-up mem_map constants and fix framebuffer translation errorsYuri Kunde Schlesner2015-04-061-16/+10
|
* dyncom: Make Load/Store instructions support big endianLioncash2015-03-171-0/+1
|
* Move VAddr/PAddr typedefs to kernel.hYuri Kunde Schlesner2015-01-301-9/+2
|
* MemMap: Add support for DSP Read & Writes in the memory mappurpasmart962014-12-301-0/+1
|
* Merge pull request #253 from purpasmart96/mem_mapbunnei2014-12-301-59/+76
|\ | | | | MemMap: Removed I/O address's and added more stuff
| * MemMap: Added AXI_WRAM & SHARED_PAGE along with other stuffpurpasmart962014-12-141-59/+76
| | | | | | | | | | | | 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.
* | License changepurpasmart962014-12-211-1/+1
|/
* MemMap: Renamed "GSP" heap to "linear", as this is not specific to GSP.bunnei2014-12-121-7/+7
| | | | - 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-memmapbunnei2014-12-091-10/+0
|\ | | | | MemMap: Updated memory map to subtract base address instead of mask.
| * MemMap: Updated memory map to subtract base address instead of mask.bunnei2014-12-031-10/+0
| | | | | | | | | | | | | | | | - More readable, a little less error prone. Conflicts: src/core/mem_map.h src/core/mem_map_funcs.cpp
* | Merge pull request #249 from lioncash/enumbunnei2014-12-041-1/+1
|\ \ | | | | | | mem_map: Make enum for addresses use u32 as the underlying type
| * | mem_map: Make enum for addresses use u32 as the underlying typeLioncash2014-12-041-1/+1
| |/
* / Add stub for ConvertProcessFromDspDramarchshift2014-12-041-1/+3
|/ | | | Should theoretically push retail stuff further along
* Fix documentation of parametersLioncash2014-11-181-1/+1
|
* mem_map: Add missing prototype for Write64Lioncash2014-11-171-0/+1
|
* Introduce VAddr and PAddr typedefs for ARM addresses.Yuri Kunde Schlesner2014-08-311-15/+24
|
* Pica/GPU: Change hardware registers to use physical addresses rather than virtual ones.Tony Wasserka2014-08-121-15/+7
| | | | | 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.bunnei2014-07-051-8/+0
|
* mem_map: Updated interface to expose template functions to other modules.bunnei2014-07-051-0/+6
|
* MemMap: Added a WriteBlock function to write a buffer of data to memory.bunnei2014-06-251-0/+2
|
* added memory mapped region for system mem - sdk demos load a segment here on ELF loadbunnei2014-05-161-0/+7
|
* added kernel memory to mem_mapbunnei2014-05-081-0/+6
|
* added mem_map read for config_membunnei2014-05-071-0/+5
|
* fixed a bug where ExeFs code was being incorrectly maskedbunnei2014-05-011-1/+1
|
* added virtual memory map for ExeFS (where ARM11 code is supposed to be loaded)bunnei2014-05-011-0/+1
|
* reorganized memory regions enum, added regions for ExeFS codebunnei2014-05-011-20/+25
|
* added virtual address conversion for firmware FW0Bbunnei2014-04-281-0/+2
|
* added helper functions to mem_map to convert physical addresses to virtual addressesbunnei2014-04-271-0/+14
|
* - changed HW IO map to use virtual addressesbunnei2014-04-261-1/+3
| | | | - added hooks to catch LCD IO read/writes
* added vram to memory_mapbunnei2014-04-261-1/+2
|
* - added preliminary support for svc_MapMemoryBlockbunnei2014-04-251-0/+9
| | | | | - added shared memory region - moarrrr cleanups to memory_map
* added functions to map Heap and Shared memory spacebunnei2014-04-251-4/+23
|
* added GSP heap memory allocationbunnei2014-04-181-0/+25
|
* moved enums into Memory:: namespacebunnei2014-04-181-4/+2
|
* added memory read/write to GSP heapbunnei2014-04-181-1/+3
|
* more various refactors to memory interfacebunnei2014-04-181-20/+33
|
* cleaned up memory interfaces a lot, removed some hackish stuffbunnei2014-04-181-3/+1
|
* replace tabs with spacesbunnei2014-04-131-3/+3
|
* added OS memory read/write for thread command bufferbunnei2014-04-131-4/+0
|
* - added HLE to connect to "srv:" servicebunnei2014-04-131-1/+2
| | | | | | - added a manager for keeping track of services/ports - added a memory mapped region for memory accessed by HLE - added HLE for GetThreadCommandBuffer function
* added a memory mapped option for HLEbunnei2014-04-121-5/+8
|
* added Memory::GetCharPointer to read strings from HLE functionsbunnei2014-04-111-0/+4
|
* fixed project includes to use new directory structurebunnei2014-04-091-2/+2
|
* got rid of 'src' folders in each sub-projectbunnei2014-04-091-0/+73