You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
bzt 7ace64ba9f Initial commit 7 years ago
..
Makefile Initial commit 7 years ago
OLVASSEL.md Initial commit 7 years ago
README.md Initial commit 7 years ago
kernel8.img Initial commit 7 years ago
link.ld Initial commit 7 years ago
start.S Initial commit 7 years ago

README.md

Tutorial 01 - Bare Minimum

Okay, we're not going to do anything here, just test our toolchain. The resulting kernel8.img should boot on Raspberry Pi, and stop the CPU cores in an infinite loop. You can check that by running

$ qemu-system-aarch64 -M raspi3 -kernel kernel8.img -d in_asm
        ... output removed for clearity, last line: ...
0x0000000000080004:  17ffffff      b #-0x4 (addr 0x80000)

Start

When the control is passed to kernel8.img, the environment is not ready for C. Therefore we must implement a small preambule in Assembly. As this first tutorial is very simple, that's all we have, no C for now.

Note that CPU has 4 cores. All of them are running the same infinite loop for now.

Makefile

Our Makefile is very simple. We compile start.S, as this is our only source. Then in linker phase we link it using the linker.ld script. Finaly we convert the resulting elf executable into a raw image.

Linker script

Not surpisingly simple too. We just set the base address where our kernel8.img will be loaded, and we put the only section we have there.