aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/mem_map.h
diff options
context:
space:
mode:
authorGravatar Yuri Kunde Schlesner <yuriks@yuriks.net>2015-05-09 03:08:11 -0300
committerGravatar Yuri Kunde Schlesner <yuriks@yuriks.net>2015-05-09 03:08:11 -0300
commit28a9e4c1d55c66e99b5cf16fda00dcb75ab27fde (patch)
tree9c40b519bff8a84c948b9343367763781cb64454 /src/core/mem_map.h
parente7b6ed757849bcec43d736ec8efaf17141a46d4b (diff)
Memory: Support more regions in the VAddr-PAddr translation functions
Also adds better documentation and removes the one-off reimplementation of the function in pica.h.
Diffstat (limited to 'src/core/mem_map.h')
-rw-r--r--src/core/mem_map.h13
1 files changed, 9 insertions, 4 deletions
diff --git a/src/core/mem_map.h b/src/core/mem_map.h
index 1591fc0a..5a08cc10 100644
--- a/src/core/mem_map.h
+++ b/src/core/mem_map.h
@@ -181,10 +181,15 @@ inline const char* GetCharPointer(const VAddr address) {
return (const char *)GetPointer(address);
}
-/// Converts a physical address to virtual address
-VAddr PhysicalToVirtualAddress(PAddr addr);
-
-/// Converts a virtual address to physical address
+/**
+ * Converts a virtual address inside a region with 1:1 mapping to physical memory to a physical
+ * address. This should be used by services to translate addresses for use by the hardware.
+ */
PAddr VirtualToPhysicalAddress(VAddr addr);
+/**
+ * Undoes a mapping performed by VirtualToPhysicalAddress().
+ */
+VAddr PhysicalToVirtualAddress(PAddr addr);
+
} // namespace