Configuring the Bootloader

Change the Device Tree

By default, U-boot loads a device tree binary (dtb) file named oftree during boot. The oftree file is a copy of k3-am625-phyboard-lyra-rdk.dtb. This portion of the guide will instruct how to change U-boot to load different device trees.

  • Power on the board and press any key to stop autoboot when prompted by the Bootloader.

  • Use the following command to list the available file’s within the boot media’s Boot partition (this is typically where binaries used for boot are stored):

    Target (U-Boot)
    ls mmc 1:1
    
    Example Output
    => ls mmc 1:1
    21142016   Image
         361   k3-am6-phycore-disable-eth-phy.dtbo
         234   k3-am6-phycore-disable-rtc.dtbo
         235   k3-am6-phycore-disable-spi-nor.dtbo
        1627   k3-am62-phyboard-lyra-gpio-fan.dtbo
        3620   k3-am62-phyboard-lyra-m2-lwb5p.dtbo
        3705   k3-am62-phyboard-lyra-oldi-lcd185.dtbo
        2001   k3-am62-phyboard-lyra-vm016-mipi.dtbo
         908   k3-am62-phyboard-lyra-x17-spi0.dtbo
       58615   k3-am625-phyboard-lyra-rdk.dtb
       58615   oftree
      291877   tiboot3.bin
     1049315   tispl.bin
      916571   u-boot.img
               System Volume Information/
    
  • We can check which file is the active device tree like so:

    Target (U-Boot)
    printenv fdtfile
    
  • Change the default device tree.

    Target (U-Boot)
    setenv fdtfile <dtb name>
    saveenv
    boot
    

U-boot will now load the dtb file named ‘<dtb name>’ automatically during subsequent boots (just replace it with the appropriate file name when you run the command).

Working with Overlays

The PHYTEC BSP also comes with some device tree overlays to help evaluate certain interfaces and accessory hardware. The table “Linux Device Tree Summary in the Release Notes shows an overview of all available overlays.

Enable an Overlay

  • U-boot has an extra environment variable called “overlays” to apply device tree overlay files. We can enable device tree overlays with it like so:

Target (U-boot)
setenv overlays k3-am62-phyboard-lyra-vm016-mipi.dtbo
saveenv
boot
  • Moreover, it’s possible to enable multiple overlays by separating them with a space.

Target (U-boot)
setenv overlays k3-am62-phyboard-lyra-vm016-mipi.dtbo k3-am62-phyboard-lyra-rpmsg.dtbo
saveenv
boot

The saveenv command stores the boot environment to non-volatile memory. If you would like temporarily adjust the boot environment, you can omit the saveenv command and the boot environment will go back to the previously saved settings on the next boot.

Reset the U-Boot Environment to Default Settings

  • In order to revert the U-Boot environment back to its original settings, run the following:

Target (U-Boot)
env default -f -a
saveenv
boot