You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<spanclass="gray">(Section written by [@andre-richter](https://github.com/andre-richter))</span>
52
+
53
+
The [_Operating System development tutorials in Rust on the Raspberry Pi_](https://github.com/rust-embedded/rust-raspberrypi-OS-tutorials) project now provides [Tutorial 15 - `Virtual Memory Part 2: MMIO Remap`](https://github.com/rust-embedded/rust-raspberrypi-OS-tutorials/tree/master/15_virtual_mem_part2_mmio_remap).
54
+
55
+
It introduces a first set of changes which are eventually needed for separating `kernel` and `user` address spaces:
56
+
- The memory mapping strategy gets more sophisticated and no longer `identity maps` the _whole_ of the board's address space.
57
+
- Instead, only ranges that are actually needed are mapped:
58
+
- The `kernel binary` stays `identity mapped` for now.
59
+
- Device `MMIO regions` are remapped lazily to a special virtual address region at the top of the virtual address space during the device driver's `init()`.
60
+
61
+
49
62
## Join Us?
50
63
51
64
Are you interested in Rust-based operating system development? Our `rust-osdev` organization is always open to new members and new projects. Just let us know if you want to join! A good way for getting in touch is our [gitter channel](https://gitter.im/rust-osdev/Lobby).
0 commit comments