mirror of
https://github.com/rust-embedded/rust-raspberrypi-OS-tutorials.git
synced 2024-11-11 07:10:59 +00:00
c4f9432e13
`rustup target add aarch64-unknown-none-softfloat` is now a thing. It is no longer required to build rust-std on-demand with `xbuild`. This reduces compile-times significantly.
1.1 KiB
1.1 KiB
Tutorial 01 - Wait Forever
tl;dr
The project skeleton is set up; A small piece of assembly code runs that just halts all CPU cores executing the kernel code.
Building
Makefile
targets:doc
: Generate documentation.qemu
: Run thekernel
in QEMUclippy
clean
readelf
: Inspect theELF
output.objdump
: Inspect the assembly.nm
: Inspect the symbols.
Code to look at
- Custom
link.ld
linker script.- Load address at
0x80_000
- Only
.text
section.
- Load address at
main.rs
: Important inner attributes:#![no_std]
,#![no_main]
cpu.S
: Assembly_start()
function that executeswfe
(Wait For Event), halting all cores that are executing_start()
.- We (have to) define a
#[panic_handler]
function.- Just waits infinitely for a cpu event.
Test it
In the project folder, invoke QEMU and observe the CPU core spinning on wfe
:
$ make qemu
[...]
IN:
0x00080000: d503205f wfe
0x00080004: 17ffffff b #0x80000