📚 Learn to write an embedded OS in Rust 🦀
Go to file
2019-12-30 22:06:04 +01:00
.githooks Relicense as dual MIT OR Apache-2.0 2019-11-25 19:54:05 +01:00
.github/workflows Actions: Run clippy aswell 2019-10-29 22:53:07 +01:00
01_wait_forever Some Makefile tweaks 2019-12-01 22:19:29 +01:00
02_runtime_init Add missing source comments 2019-12-17 13:42:20 +01:00
03_hacky_hello_world Add missing source comments 2019-12-17 13:42:20 +01:00
04_zero_overhead_abstraction Add missing source comments 2019-12-17 13:42:20 +01:00
05_safe_globals Add missing source comments 2019-12-17 13:42:20 +01:00
06_drivers_gpio_uart Add console chars_read implementation 2019-12-25 17:29:51 +01:00
07_uart_chainloader Add console chars_read implementation 2019-12-25 17:29:51 +01:00
08_timestamps Add console chars_read implementation 2019-12-25 17:29:51 +01:00
09_hw_debug_JTAG Add console chars_read implementation 2019-12-25 17:29:51 +01:00
10_privilege_level Add console chars_read implementation 2019-12-25 17:29:51 +01:00
11_virtual_memory Add console chars_read implementation 2019-12-25 17:29:51 +01:00
12_cpu_exceptions_part1 Add console chars_read implementation 2019-12-25 17:29:51 +01:00
doc Add code for tutorial 11 2019-11-05 21:23:36 +01:00
docker Add VCS ref to docker image 2019-12-25 18:33:04 +01:00
utils Conditionally include extra folders in utils scripts 2019-12-17 13:40:09 +01:00
X1_JTAG_boot Add console chars_read implementation 2019-12-25 17:29:51 +01:00
.editorconfig Add editorconfig 2019-11-26 08:46:13 +01:00
.gitignore Add code for tutorial 09 2019-10-27 23:12:48 +01:00
.rubocop.yml Adapt tooling settings 2019-10-27 23:12:19 +01:00
.rustfmt.toml Adapt tooling settings 2019-10-27 23:12:19 +01:00
contributor_setup.sh Add a pre-commit hook 2019-01-12 21:55:28 +01:00
LICENSE-APACHE Relicense as dual MIT OR Apache-2.0 2019-11-25 19:54:05 +01:00
LICENSE-MIT Relicense as dual MIT OR Apache-2.0 2019-11-25 19:54:05 +01:00
README.md Restructure Readme 2019-12-30 22:06:04 +01:00

Operating System development tutorials in Rust on the Raspberry Pi

Introduction

This is a tutorial series for hobby OS developers who are new to ARM's 64 bit ARMv8-A architecture. The tutorials will give a guided, step-by-step tour of how to write a monolithic Operating System kernel for an embedded system from scratch. They cover implementation of common Operating Systems tasks, like writing to the serial console, setting up virtual memory and handling HW exceptions. All while leveraging Rust's unique features to provide for safety and speed.

Cheers, Andre

Organization

  • Each new tutorial extends the previous one.
  • Each tutorial README will have a short tl;dr section giving a brief overview of the additions, and show the source code diff to the previous tutorial, so that you can conveniently inspect the changes/additions.
  • Some tutorials have a full-fledged, detailed text in addition to the tl;dr section. The long-term plan is that all tutorials get a full text, but for now this is exclusive to tutorials where I think that tl;dr and diff are not enough to get the idea.
  • The code written in these tutorials supports and runs on the Raspberry Pi 3 and the Raspberry Pi 4.
    • Tutorials 1 till 5 are groundwork code which only makes sense to run in QEMU.
    • Starting with tutorial 6, you can load and run the kernel on Raspberrys and observe output over UART.
  • Although the Raspberry Pi 3 and 4 are the main target boards, the code is written in a modular fashion which allows for easy porting to other CPU architectures and/or boards.
    • I would really love if someone takes a shot at a RISC-V implementation!
  • For editing, I recommend Visual Studio Code with the Rust Language Server extension.
  • In addition to the tutorial text, also check out the make doc command to browse the code with HTML goodness.

✔️ Ease of use

This series tries to put a strong focus on user friendliness. Therefore, I made efforts to eliminate the biggest painpoint in embedded development: Toolchain hassles.

Users eager to try the code will not be bothered with complicated toolchain installation/compilation steps. This is achieved by using the standard Rust toolchain as much as possible, and provide all additional tooling through an accompanying Docker container. The container will be pulled in automagically once it is needed. The only requirement is that you have installed Docker for your distro.

The development setup consists of the following components:

  • Compiler, linker and binutils are used from Rust nightly.
  • Additional OS Dev tools, like QEMU or GDB, are provided by this container.

If you want to know more about docker and peek at the the container used for the tutorials, please refer to the repository's docker folder.

🛠 Prerequisites

Before you can start, you must install a suitable Rust toolchain:

curl https://sh.rustup.rs -sSf  \
    |                           \
    sh -s --                    \
    --default-toolchain nightly \
    --component rust-src llvm-tools-preview clippy rustfmt rls rust-analysis

cargo install cargo-xbuild cargo-binutils

💻 USB Serial Output

It is highly recommended to get a USB serial debug cable. It also powers the Raspberry once you connect it, so you don't need extra power over the dedicated power-USB. I use a bunch of these.

You connect it to the GPIO pins 14/15 as shown beyond.

Tutorial 6 is the first where you can use it. Go to the README there for instructions on how to prepare the SD card to run your self-made kernels from it.

UART wiring diagram

🙌 Acknowledgements

The original version of the tutorials started out as a fork of Zoltan Baldaszti's awesome tutorials on bare metal programming on RPi3 in C. Thanks for giving me a head start!

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.