arm_hardware | cmake_plat | xcompiler_arg | platform | arch | virtualization | iommu | soc | cpu | Status | Contrib | Maintained | SPDX-License-Identifier | SPDX-FileCopyrightText |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|
true |
exynos5250 |
-DAARCH32=1 |
Arndale |
ARMv7A |
ARM Hyp |
No |
Exynos5 |
Cortex-A15 |
Unverified |
Data61 |
No |
CC-BY-SA-4.0 |
2020 seL4 Project a Series of LF Projects, LLC. |
Note: This board is not being regression tested, but has same SoC as Odroid-XU (which is tested).
seL4 supports the the Arndale dual core A15 ARM development board.
- 5V power supply, center +ve
The offsets depend on which versions of bl1, bl2 and U-Boot you get.
For BL1 from the Android tree:
Key | Position (block) | file |
---|---|---|
BL1 | 1 | |
BL2 (uboot-module) | 31 (8k) | |
u-boot | 63 | (24k) |
!TrustZone | 719 |
For BL1 from https://wiki.linaro.org/Boards/Arndale/Setup/EnterpriseUbuntuServer?action=AttachFile&do=view&target=arndale-bl1.img
Note — U-Boot understands DOS filesystems (and ext2) so uImage, uInitrd and the DTB could be normal files in a partition, rather than at a fixed offset on the SD card.
These offsets are designed for a U-Boot environment like this:
bootargs=root=/dev/mmcblk1p1 rw rootwait console=ttySAC2,115200n8 init --no-log
bootcmd=mmc read 40007000 451 2000;mmc read 42000000 2451 20;bootm 40007000 - 42000000
If you have a separate boot partition on your card you could instead use: (untested as yet)
kernel=0x40007000
dtb=42000000
bootcmd=mmc init; fatload mmc 0:1 ${kernel} uImage; fatload mmc 0:1 ${dtb} dtb; bootm ${kernel} - ${dtb}
There are at least three versions available, the one in the Android tree (which should have Fastboot) and the one from Linaro (which understands the USB and network drivers).
There's also http://www.spinics.net/lists/kvm-arm/msg02817.html which is supposed to enable the virtualisation features. I'm not sure at present whether the difference is merely configuration or if there are source differences. U-Boot.
Inside the Android environment do:
make ARCH=arm CROSS_COMPILE=arm-eabi-arndale
sudo dd iflag=dsync oflag=dsync if=u-boot.bin of=/dev/sdb seek=63
In most cases it is okay to simply load the elf file into memory and run bootelf. However, Fastboot may require that the ELF file be packed into a U-Boot application image file. Follow the below instructions to create this image.
sudo apt-get install uboot-mkimage
INPUT_FILE=images/sel4test-image-arm-exynos4
OUTPUT_FILE=sel4-uImage
mkimage -a 0x48000000 -e 0x48000000 -C none -A arm -T kernel -O qnx -d $INPUT_FILE $OUTPUT_FILE
The reason we choose QNX is because we exploit the fact that, like seL4, QNX expects to be ELF-loaded. The alternative is to convert our ELF file into a binary file using objcopy.
{% include sel4test.md %}
<TODO>
<TODO> Currently not working...
At the U-Boot prompt, type print to see the list of environment variables and their values. Use the following commands to set any variables that are missing from the list.
setenv bootfile filename
setenv ethaddr 00:40:5c:26:0a:FF
setenv usbethaddr 00:40:5c:26:0a:FF
setenv pxefile_addr_r 0x50000000
Now run:
usb start; dhcp; bootelf; bootm;