📚 Learn to write an embedded OS in Rust 🦀
Go to file
2019-11-05 21:23:36 +01:00
.githooks Initial preparations for rewrite 2019-10-27 23:09:23 +01:00
.github/workflows Actions: Run clippy aswell 2019-10-29 22:53:07 +01:00
01_wait_forever Built with new compiler version 2019-11-01 23:21:57 +01:00
02_runtime_init Built with new compiler version 2019-11-01 23:21:57 +01:00
03_hacky_hello_world Built with new compiler version 2019-11-01 23:21:57 +01:00
04_zero_overhead_abstraction Built with new compiler version 2019-11-01 23:21:57 +01:00
05_safe_globals Built with new compiler version 2019-11-01 23:21:57 +01:00
06_drivers_gpio_uart Built with new compiler version 2019-11-01 23:21:57 +01:00
07_uart_chainloader Built with new compiler version 2019-11-01 23:21:57 +01:00
08_timestamps Built with new compiler version 2019-11-01 23:21:57 +01:00
09_hw_debug_JTAG Built with new compiler version 2019-11-01 23:21:57 +01:00
10_privilege_level EL transition is unsafe 2019-11-03 20:53:30 +01:00
11_virtual_memory Add code for tutorial 11 2019-11-05 21:23:36 +01:00
doc Add code for tutorial 11 2019-11-05 21:23:36 +01:00
docker Fix qemu version to 4.1.0 2019-10-28 00:51:09 +01:00
utils Add misspell check 2019-11-01 23:22:04 +01:00
X1_JTAG_boot Misspell run 2019-10-29 08:54:03 +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 Initial preparations for rewrite 2019-10-27 23:09:23 +01:00
README.md Add code for tutorial 11 2019-11-05 21:23:36 +01:00

Operating System development tutorials in Rust on the Raspberry Pi

Notice

This is a work-in-progress rewrite, started on September 2019.

You can find the original version of the tutorials here. They are worth checking out for some advanced features that are not yet rewritten, like exception handling. They will be ported over soon, though.

Some info on the rewrite and in general:

  • I will first add code and minimal READMEs, and later write accompanying full-fledged tutorial text.
  • 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 on QEMU.
    • Starting with tutorial 6, you can load and run the kernel on Raspberrys and observe output over UART.
  • For editing, I recommend Visual Studio Code with the Rust Language Server extension.
  • Check out the make doc command to browse the code with HTML goodness.

Cheers, Andre

Introduction

The target audience is 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 from scratch. They cover implementation of common Operating Systems tasks, like writing to the serial console, setting up virtual memory and exception handling. All while leveraging Rust's unique features to provide for safety and speed.

While 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.

Ease of use

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

Users eager to try the code should not be bothered with complicated toolchain installation/compilation steps. This is achieved by trying to use the standard Rust toolchain as much as possible, and bridge existing gaps with Docker containers. Please install Docker for your distro.

The setup consists of the following components:

  • Compiler, linker and binutils are used from Rust nightly.
  • Additional OS Dev tools, like QEMU, are pre-packaged into this container.

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

Prerequisites

Before you can start, you'll need 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

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 the MIT license (LICENSE-MIT or http://opensource.org/licenses/MIT).