Rane
Rane's devices use the Engine OS operating system.
Hardware IDs
Device Name | Model ID (Per DTS) | Hardware ID | DTS Files |
|---|---|---|---|
System One |
|
|
AZ04 Platform
The System One is the first device I've found that isn't built on the RK3288. It's an RK3588 (4x Cortex-A76, 4x Cortex-A55 in the DTS) on a new platform generation, AZ04, and it's the first arm64 Engine OS device.
Notes below were measured against SYSTEMONE-5.0.4-Update.img, compared against PRIMEGO-5.0.4-Update.img so that both sides are the same firmware version.
Property |
|
|
|---|---|---|
SoC | Rockchip RK3288 | Rockchip RK3588 |
Userspace |
|
|
Kernel |
|
|
GPU | Mali-T764 | Mali-G610 ( |
Audio card | Custom machine driver | Mainline |
Boot |
| Signed kernel FIT ( |
Audio
This is the biggest change from the older platforms, and it makes the System One much easier to work with.
On AZ01/AZ05, the sound card is a pair of out-of-tree drivers. A custom machine driver plus a custom codec (see inmusic,jp11-audio and inmusic,jp11-audio-codec in rk3288-az01-jp11.dts).
On AZ04, the machine driver is gone. The card is mainline simple-audio-card bound to a mainline rockchip,rk3588-i2s-tdm CPU DAI at i2s@fe480000:
The only inMusic-specific piece left is the codec, which takes all of its capabilities from the device tree:
That driver ships in the rootfs as a 13 KB unstripped module at /usr/lib/modules/6.18.9-imb-2026-02-06-rt3/kernel/sound/soc/codecs/snd-soc-inmusic-az04.ko:
It has no register map and no I2C or SPI. The only kernel symbols it imports for hardware access are devm_gpiod_get_optional and gpiod_set_value_cansleep, for the mute and reset lines, plus a regulator for avdd. Everything else is DAPM widgets and routes. It's effectively a codec stub, so reimplementing it against a mainline kernel is realistic.
Graphics
The System One has no libmali anywhere in the rootfs. It uses the mainline panthor DRM driver (kernel/drivers/gpu/drm/panthor/panthor.ko) with the Mali CSF firmware blob at /usr/lib/firmware/arm/mali/arch10.8/mali_csffw.bin, and a Mesa userspace (libEGL.so.1, libGLESv2.so.2, /usr/lib/gbm/dri_gbm.so). Qt renders through EglFS with the KMS/GBM backend (libQt6EglFsKmsGbmSupport.so.6.7.2).
This means the graphics stack on this device is entirely open source, unlike the situation described on Mali-T764.
Boot
The kernel FIT is signed, which the older unsigned layouts aren't:
Note the separate fdt-cmdline image and the Initrd, neither of which the AZ01 devices use. The firmware image also carries two boot partitions, each holding a kernel.fit, and the DTS has a bootcount@200 node, so this platform looks like it does A/B updates.
/boot in the rootfs is empty on this device. On AZ01 it still holds boot.scr.uimg alongside a loose .dtb for every sibling device on that platform, which is where most of the DTS files in this repository came from.
Additional References
QEngine - boots this device's firmware under
QEMU, and is furthest along on the System One of any target it supports. Itsdocs/ENGINEOS.mdindependently reaches the same conclusions as the sections above onpanthor, Mesa andQt 6.7.2, and adds detail this page doesn't cover: the/datasubdirectories are encrypted per-directory withext4fscryptviafscryptctlat everyEnginelaunch (not a whole-partitionLUKSscheme), each partition is auto-formatted by anaz0x-*-mkfsoneshot if it isn't already labeled,/var/libis bind-mounted from/data/system/var-lib, andQt 6.7.2has dropped thevncplatform plugin that theAZ01devices'Qt 5.15.2still ships. See Engine OS for a summary of the project.