NixOS on ARM/OLIMEX Teres-A64

From NixOS Wiki
Revision as of 10:47, 3 July 2023 by KREYREN (talk | contribs) (add resource for olimex forum)
Jump to: navigation, search
OLIMEX Teres-A64
The King Himself
Manufacturer OLIMEX, Ltd
Architecture AArch64
Bootloader Upstream U-Boot[1]
Boot order SD, eMMC
Maintainer KREYREN

Teres-1 (often referred as teres-a64) is an open-source hardware and software netbook design based on the Allwinner A64 SoC.

It can boot from SD or from the included and slow af eMMC module (insane people use only).

Status

Work In Progress..

The system is bootable and seems to work, but audio is broken and has rare graphical issues that are currently being investigated, note known issues below for building on Linux 6.0~6.1 resulting in broken display.

U-boot support has been submitted on 2023-06-30, but not yet merged.

Installation instructions

To use the generic installation image for your board, you will need to copy it verbatim to an SD card.

sudo dd if=sd-image-aarch64-linux.img of=/dev/DEVICE conv=sync status=progress

This board requires the installation of u-boot at a specific location on the storage where NixOS was written to.

sudo dd if=u-boot-sunxi-with-spl.bin of=/dev/DEVICE bs=1024 seek=8

Partitioning

All Allwinner SoCs will try to find a boot image at sector 16 (8KB) of an SD card, connected to the first MMC controller.[3]

MBR partition scheme

GPT partition scheme

The Allwinner GPT Installation instruction explains how to create a GPT partition table while allowing the isntallation of u-boot at the required offset.

Serial console

Serial console can be accessed by default on BAUM 115200 using the TERES-USB-DEBUG cable (or make one it's 3 pole jack with pl2303 converter, can be made work off of single board computer, etc..) in headphone jack port and accessed through:

$ picocom -b BAUM /dev/SERIAL-DEVICE # Often set as /dev/ttyUSB0

Currently the sdcard has set this by fault, but if you use custom configuration and want to maintain the serial console functionality then you need to append it to the kernel CLI through:

boot.kernelParams = [
    "console=ttyS0,115200n8"
    "console=ttyAMA0,115200n8"
    "console=tty0"
  ];

Compatibility notes

Mainline kernel on NixOS
HDMI
  • Hasn't been tested.
Display
  • Works outside of Linux 6.0~6.1
WiFi/Bluetooth
  • Work, Requires non-libre firmware for RTL8723BS
Audio (reproductors)
  • Broken, investigating..
Audio (audio jack)
  • Unknown
3D Acceleration
  • Works
Webcam
  • Unknown
Touchpad
  • Works
Keyboard
  • Works
SdCard reader
  • Works
FOSS Bootloader
  • Works - U-Boot

Downstream kernel

Note: Keep in mind that using non-upstream forks of the kernel always incurs some risk as far as security goes.

USB booting with u-boot

You will need to either have mainline U-Boot installed to the eMMC or to an SD card.

Stop the boot process when prompted (by pressing a key). Then, do the following:

Hit any key to stop autoboot:  0
=> setenv boot_targets usb0
=> boot

This sets the boot order for this boot only. U-Boot can boot (among others) either of the NixOS sd-image or EFI iso from USB.

Known issues

Building the bootloader and the configuration on linux 6.0~6.1 will result in broken display rendering due to "DRM_IOCTL_MODE_CREATE_DUMB failed: Cannot allocate memory' caused by insufficient Quality Assurance at mesa upstream tracked on https://gitlab.freedesktop.org/mesa/mesa/-/issues/8198.

The fix has been merged in https://gitlab.freedesktop.org/mesa/mesa/-/commit/c426e5677f36c3b0b8e8ea199ed4f2c7fad06d47 and is part of Linux 6.2 so as long as you build ""and use"" this kernel the display should work without an issue.

Note that if you boot and build on broken kernel then you can use serial console on BAUM 115200 to fix the issue.

As of 03/07/2023-EU NixOS 23.05 is shipped with LTS kernel which is 6.1 to get non-broken kernel you can use the following configuration:

# configuration.nix
boot.kernelPackages = pkgs.linuxPackages_6_3;

Please let me know if you encounter this issue outside of known broken linux release. -- KREYREN

Resources

1. Official product page

2. linux-sunxi wiki page

3. U-Boot documentation for the SoC

4. Armbian product page for Teres

5. Teres-A64 section on the OLIMEX forum