Hacker News new | ask | show | jobs
by recklesstodd 2109 days ago
Another usage for the MMU would be in a virtualization context. The Hypervisor can configure static address translation tables for each RTOS VM.
1 comments

The MPU (Memory Protection Unit) in the ARM architecture is like an MVP MMU in that it doesn't have the flexibility of an MMU as the MPU has protection domains (ranges of memory and access semantics bits) and doesn't do address translation like an MMU. It is analogous to mprotect()

I haven't used it, but depending on latency and complexity of updating the MPU config, one could dynamically program it to have an arbitrary levels of protection, think hardware range checks at language level array access.

[1] https://static.docs.arm.com/100699/0100/armv8m_architecture_...

https://man7.org/linux/man-pages/man2/mprotect.2.html