For the complete documentation index, see llms.txt. This page is also available as Markdown.

eFuses for i.MX8M Mini SOM

The intention of this page is to provide developers the utilities to boot SolidRun based i.MX8M mini boards (by default HummingBoard Pulse) that can boot from Micro SD and eMMC.

In this tutorial you will learn how to boot a standalone minimal kernel with buildroot based image.

Once the prompt is there you can blow fuses, download files (wget) and perform other tasks for the sake of evaluating the boot process.

Setting up the environment

  1. HummingBoard Pulse + IMX8M mini.

  2. PC that runs Linux

  3. Terminal emulation (putty, minicom etc..) that are connected to HummingBoard Pulse serial terminal 115200bps 8N1 via USB to microusb cable.

  4. Download and build buildroot image for IMX8M mini and flashing it to SD card.

Booting through USB OTG

Clone the following git repository: https://github.com/SolidRun/imx8mm_build.git

Run the “runme.sh” script to start the build, the output is presented in the “Image” directory as “microsd.img”, Flash the “microsd.img” to SD card and insert it into the hummingboard pulse.

Blowing fuses to program the unit MAC address

echo <high 16 bit of the MAC address> > /sys/fsl_otp/HW_OCOTP_MAC_ADDR1

echo <lower 32bit of the MAC address> > /sys/fsl_otp/HW_OCOTP_MAC_ADDR0

For example – use the following command in order to fuse “d0:63:12:34:56:78” MAC address

In Linux:

In order to blow high 16 bit of MAC address in u-boot; run –

and for the low 32bit run –

In order to read the low 32bit; run –

and for the high 16bit run –

Blowing fuses to boot from chosen device

For this we blow fuse set that marks the boot device as we choose, this action instructs i.MX8M mini to ignore the boot from GPIO and use the eFuses for the boot device settings.

From Micro SD:

Under Linux –

Under U-Boot –

From eMMC

Under Linux –

Under U-Boot –

As an example of flashing u-boot on eMMC –

Last updated