Google celebrates Women's History Month. See how.

Install Fuchsia on a Khadas VIM3 board

This guide shows you how to install Fuchsia on a Khadas VIM3. The installation process will probably take between 1 to 3 hours.

Running Fuchsia on VIM3 is useful if you want to explore how Fuchsia works on relatively low-cost real hardware that supports many kinds of peripheral devices. See Appendix: Feature support for details on which VIM3 features Fuchsia supports.

If you just want to explore Fuchsia with the lowest friction possible, check out Get started with the Fuchsia SDK instead.

See Appendix: Support if you have any trouble completing this guide.

Audience

If you've never tinkered with electronics you might find this guide difficult to complete. For example, this guide assumes that you know how to hook up serial cable wires to GPIOs to read logs and send commands over a serial communication program.

This guide also assumes that you're comfortable with CLI workflows such as building Fuchsia from source.

Prerequisites

You'll need all of the following hardware and software to complete this guide:

  • A Khadas VIM3 single-board computer.

  • A desktop or laptop computer that's running Linux and has 2 USB ports available.

  • A power supply of at least 24W to your host. The VIM3 can draw that much power when DVFS is enabled.

  • A working Fuchsia development environment on your host. In other words you should be able to build Fuchsia from its source code on your host. See Build Fuchsia.

  • A USB to TTL serial cable.

  • A USB-C to USB-* cable that supports both data and power delivery. The USB-C side is for the VIM3. The other side can be whatever USB type your host supports.

The following is optional:

  • A heatsink. This enables running 2 CPU cores on the VIM3 at full speed without reaching 80°C, the critical temperature beyond which cores are throttled down.

See the VIM3 collection in the Khadas shop for examples of compatible accessories.

Build Fuchsia

If you don't already have an in-tree environment set up, you should start the process now because it can take a while to complete:

  1. Download the Fuchsia source code.

  2. Configure and build Fuchsia.

    • When building Fuchsia, use fx set core.vim3 instead.

You'll use the Fuchsia development environment to build the Fuchsia image for VIM3 and run an in-tree CLI tool for flashing the Fuchsia image onto the VIM3.

Set up the hardware

Set up the VIM3 to communicate with your host:

  1. Connect the VIM3 and your host to each other with the USB-C to USB-* cable. The white LED on the VIM3 should turn on.

    This connection is used to power and flash the VIM3 with fastboot.

  2. Connect the serial cable wires to the VIM3's GPIOs:

    • GND to pin 17.

    • RX (in to VIM3) to pin 18.

    • TX (out from VIM3) to pin 19.

    • Don't connect the power wire of your serial cable to any VIM3 GPIO. The VIM3 is getting power through the USB cable.

    See Serial Debugging Tool for an example image of how your serial wires should be connected to the VIM3.

Verify the serial connection

Make sure that you can view the logs being sent over the serial cable:

  1. Open Fuchsia's serial console:

    fx serial
    
  2. Press the reset button on the VIM3. The reset button is the one with the R printed next to it on the circuit board. See VIM3/3L Hardware for a diagram. In your serial console you should see human-readable logs.

Erase the eMMC

In later sections of this guide you'll update the bootloader and OS on the VIM3. These updates don't work unless you completely erase the eMMC first:

  1. Press the reset button on your VIM3.

  2. Right after you press the reset button, start repeatedly pressing the Space key as your VIM3 boots up. Make sure that your cursor is focused on your serial console. The bootloader process should pause and your serial console should show a kvim3# prompt. Your serial console is now providing you access to the U-Boot shell.

  3. Run the following command in the U-Boot shell:

    store init 3
    

    Your serial console logs should verify that the eMMC was correctly erased.

See Erase eMMC for more details.

Update the Android image on the VIM3

The Android image that ships by default on the VIM3 does not support Fuchsia installation. If you just received your VIM3 from Khadas you must update your Android image:

  1. Click the following URL to download the updated Android image: https://dl.khadas.com/firmware/vim3/android/VIM3_Pie_V211220.7z

  2. Extract the compressed archive file (VIM3_Pie_V211220.7z). After the extraction you should have a VIM3_Pie_V211220 directory with an update.img file in it.

  3. Follow the instructions in Install OS into eMMC. When running aml-burn-tool the value for the -i flag should be the path to your update.img file. Your command should look similar to this:

    aml-burn-tool -b VIM3 -i ~/Downloads/VIM3_Pie_V211220/update.img
    
  4. If the white and red LEDs on your VIM3 are off and the blue LED is on, it means that your VIM3 is in sleep mode. Try putting your VIM3 back into Upgrade Mode and then pressing the reset button again.

At this point the white LED on your VIM3 should be on and you should see logs in your serial console after you press the reset button on your VIM3.

Update the bootloader

Flash Fuchsia's custom bootloader onto the VIM3:

  1. Access the U-Boot shell again by pressing the reset button and then repeatedly pressing the Space key in your serial console. When your serial console shows the kvim3# prompt, you're in the U-Boot shell.

  2. In your U-Boot shell run the following command:

    fastboot
    

    You should see the following logs in your serial console:

    g_dnl_register: g_dnl_driver.name = usb_dnl_fastboot
    
    USB RESET
    SPEED ENUM
    
    USB RESET
    SPEED ENUM
    

    If you see the first line (g_dnl_register: g_dnl_driver.name = usb_dnl_fastboot) but not the lines after that, try using a different USB-C to USB-* cable and make sure that it supports both data and power delivery.

  3. Open a new terminal window in your host and run the following commands:

    cd ~/fuchsia/prebuilt/third_party/fastboot
    ./fastboot flashing unlock
    ./fastboot flashing unlock_critical
    ./fastboot flash bootloader ~/fuchsia/prebuilt/third_party/firmware/vim3/u-boot.bin.unsigned
    ./fastboot reboot
    

Flash Fuchsia into the eMMC

Complete these steps to install Fuchsia onto your VIM3 for the first time. You only need to do these steps once. Once you have Fuchsia running on your VIM3, the Update your Fuchsia image workflow is a faster way to update the Fuchsia image on your VIM3.

  1. If you just ran the ./fastboot reboot command from the last section then your VIM3 should already be in fastboot mode. You can check your fx serial logs to confirm. Otherwise press the reset button and then repeatedly press the F in your fx serial console until you see USB RESET and SPEED ENUM again.

  2. From a separate terminal on your host run the following command:

    fx flash
    

Your VIM3 is now running Fuchsia!

Update your Fuchsia image

Complete these steps when you already have Fuchsia running on your VIM3 and want to update the Fuchsia image on your VIM3.

  1. Run the following command from a terminal on your host:

    fx serve
    

    Leave this command running.

  2. Make some changes in your in-tree Fuchsia checkout and build the changes.

  3. Open a new terminal window and perform an OTA update of the Fuchsia image on your VIM3:

    fx ota
    

Appendix: Fix a bricked VIM3

Do these steps if you've bricked your VIM3 and need to "factory reset" it:

  1. Erase the eMMC.
  2. Update the Android image.
  3. Update the bootloader.
  4. Flash Fuchsia into the eMMC.

Appendix: Support

Appendix: Feature support

Fuchsia currently supports these features of the VIM3:

  • UART Serial Debugger
  • Paving over ethernet and USB
  • Storage (eMMC)
  • HDMI Display and Framebuffer
  • GPU (Mali) and Vulkan graphics
  • Ethernet
  • SDIO
  • I2C
  • GPIO
  • Temperature Sensors and DVFS
  • RTC
  • Clock
  • Fan
  • NNA
  • USB-C in peripheral mode
  • USB-A

These features are under development and may not be supported:

  • Video decoder
  • SPI
  • Audio

The following features are not supported, but might be added by future contributions:

  • SPI Flash
  • USB-C in host mode
  • Power management and PMIC
  • Wake on LAN
  • UART BT

These features are not supported and are unlikely to be added:

  • Video encoding (due to non-public firmware)
  • Trusted Execution Environment / secure boot

Appendix: Update the boot splash screen

To update the boot splash screen to be the Fuchsia logo, run the following command from a host terminal while the VIM3 is in fastboot mode:

fastboot flash logo ~/fuchsia/zircon/kernel/target/arm64/board/vim3/firmware/logo.img