The main purpose of this document is to help developers understand the overall software layout structure and enable them to compile each part of the software separately. It provides instructions for advanced users how Embedian offers patches and builds a customized version of u-boot and linux kernel for Embedian’s SMARC-iMX8M product platform and how to install the images to bring the evaluation board up and running. It is very helpful for gaining a better understanding of the entire system.

The host Linux machine is recommended Ubuntu 20.04 or 22.04.
Once you have Ubuntu 20.04 or 22.04 LTS running, install the additional required support packages using the following console command:
$ sudo apt-get install gawk wget git-core diffstat unzip texinfo gcc-multilib build-essential chrpath socat cpio python python3 python3-pip python3-pexpect xz-utils debianutils iputils-ping python3-git python3-jinja2 libegl1-mesa libsdl1.2-dev pylint xterm rsync curl zstd lz4 libssl-dev pv device-tree-compiler libghc-gnutls-dev
Availability
SMARC-iMX8M at Embedian.
Carrier Board
EVK-STD-CARRIER-S20 (universal carrier board for all SMARC 1.1 and 2.0 modules) at Embedian.
Basic Resources
- ARM Cross Compiler
- ARM: https://developer.arm.com/downloads/-/gnu-a
- Bootloader
- Das U-Boot – the Universal Boot Loader http://www.denx.de/wiki/U-Boot
- Source – http://git.denx.de/?p=u-boot.git;a=summary
- Linux Kernel
- Linus’s Mainline tree: http://git.kernel.org/?p=linux/kernel/git/torvalds/linux.git;a=summary
- NXP Linux source tree: git://github.com/nxp-imx/linux-imx.git
- NXP Yocto BSP meta layer: https://github.com/nxp-imx/meta-imx/meta-bsp
- Freescale community BSP release: https://github.com/Freescale/meta-freescale-distro
- Embedian SMARC-iMX8M Linux kernel source tree: https://github.com/embedian/smarc-fsl-linux-kernel.git
ARM Cross Compiler: GCC
To build Embedian’s SMARC-iMX8M u-boot and linux kernel, you will need to install the following ARM compiler:
For u-boot 2024.04/2023.04 and Linux kernel 6.6.52/6.1.55 (paired by Yocto release), you need to use the following Arm compiler.
$ wget -c https://developer.arm.com/-/media/Files/downloads/gnu-a/10.3-2021.07/binrel/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu.tar.xz
$ sudo tar -Jxvf gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu.tar.xz -C /opt
$ export CC=/opt/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/bin/aarch64-none-linux-gnu-
For u-boot 2022.04 and Linux kernel 5.15.71, you need to use the following ARM compiler.
$ wget -c https://developer.arm.com/-/media/Files/downloads/gnu-a/9.2-2019.12/binrel/gcc-arm-9.2-2019.12-x86_64-aarch64-none-linux-gnu.tar.xz
$ sudo tar -Jxvf gcc-arm-9.2-2019.12-x86_64-aarch64-none-linux-gnu.tar.xz -C /opt
$ export CC=/opt/gcc-arm-9.2-2019.12-x86_64-aarch64-none-linux-gnu/bin/aarch64-none-linux-gnu-
Test:
aarch64-none-linux-gnu-gcc (GNU Toolchain for the A-profile Architecture 10.3-2021.07 (arm-10.29)) 10.3.1 20210621$ ${CC}gcc --version
Copyright (C) 2020 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
Boot File: flash.bin
The boot file is called flash.bin. It is made up of some pieces of programs. This section instruct you how to generate flash.bin.
For u-boot 2024.04 and Linux kernel 6.6.52 (Paired from NXP Yocto Scarthgap release)
1. Download the imx-mkimage tool and apply Embedian’s patch to accept Embedian’s device tree blob.
Notes
Note 1:
For u-boot 2023.04 and Linux kernel 6.1.55 (Paired from NXP Yocto Mickledore release)
$ git clone https://github.com/nxp-imx/imx-mkimage -b
lf-6.1.55_2.2.0
$ cd imx-mkimage
$ wget -c ftp://ftp.embedian.com/public/smarcimx8m/0001-imx8m-mickledore-change-uboot-device-tree-name.patch
$ patch -p1 <0001-imx8m-mickledore-change-uboot-device-tree-name.patch
$ cd ../
Note 2:
For u-boot 2022.04 and Linux kernel 5.15.71 (Paired from NXP Yocto Kirkstone release)
$ git clone https://github.com/nxp-imx/imx-mkimage -b
lf-5.15.71_2.2.0
$ cd imx-mkimage
$ wget -c ftp://ftp.embedian.com/public/smarcimx8m/0001-imx8m-kirkstone-change-uboot-device-tree-name.patch
$ patch -p1 <0001-imx8m-kirkstone-change-uboot-device-tree-name.patch
$ cd ../
2. Get and Build the ARM Trusted firmware and copy bl31.bin to imx-mkimage/iMX8M directory.
$ git clone https://github.com/nxp-imx/imx-atf -b lf_v2.10
$ cd imx-atf
$ make CROSS_COMPILE=${CC} PLAT=imx8mq bl31
$ cp build/imx8mq/release/bl31.bin ../imx-mkimage/iMX8M/
$ cd ../
Notes
Note 1:
For u-boot 2023.04 and Linux kernel 6.1.55 (Paired from NXP Yocto Mickledore release)
$ git clone https://github.com/nxp-imx/imx-atf -b lf_v2.8
$ cd imx-atf
$ make CROSS_COMPILE=${CC} PLAT=imx8mq bl31
$ cp build/imx8mq/release/bl31.bin ../imx-mkimage/iMX8M/
$ cd ../
Note 2:
For u-boot 2022.04 and Linux kernel 5.15.71 (Paired from NXP Yocto Kirkstone release)
$ git clone https://github.com/nxp-imx/imx-atf -b lf_v2.6
$ cd imx-atf
$ make CROSS_COMPILE=${CC} PLAT=imx8mq bl31
$ cp build/imx8mq/release/bl31.bin ../imx-mkimage/iMX8M/
$ cd ../
3. Get the DDR firmware and copy to imx-mkimage/iMX8M/ directory.
$ wget https://www.nxp.com/lgfiles/NMG/MAD/YOCTO/firmware-imx-8.26.bin
$ chmod a+x firmware-imx-8.26.bin
$ ./firmware-imx-8.26
enter "y" to accept EULA
$ cd firmware-imx-8.
26
$ cp firmware/ddr/synopsys/lpddr4_pmu_train_1d_dmem.bin ../imx-mkimage/iMX8M/
$ cp firmware/ddr/synopsys/lpddr4_pmu_train_1d_imem.bin ../imx-mkimage/iMX8M/
$ cp firmware/ddr/synopsys/lpddr4_pmu_train_2d_dmem.bin ../imx-mkimage/iMX8M/
$ cp firmware/ddr/synopsys/lpddr4_pmu_train_2d_imem.bin ../imx-mkimage/iMX8M/
$ cp firmware/hdmi/cadence/signed_hdmi_imx8m.bin ../imx-mkimage/iMX8M/
$ cp firmware/hdmi/cadence/signed_dp_imx8m.bin ../imx-mkimage/iMX8M/
$ cd ../
Notes
Note 1:
For u-boot 2023.04 and Linux kernel 6.1.55 (Paired from NXP Yocto Mickledore release)
$ wget https://www.nxp.com/lgfiles/NMG/MAD/YOCTO/firmware-imx-8.22.bin
$ chmod a+x firmware-imx-8.22.bin
$ ./firmware-imx-8.22
enter "y" to accept EULA
$ cd firmware-imx-8.
22
$ cp firmware/ddr/synopsys/lpddr4_pmu_train_1d_dmem.bin ../imx-mkimage/iMX8M/
$ cp firmware/ddr/synopsys/lpddr4_pmu_train_1d_imem.bin ../imx-mkimage/iMX8M/
$ cp firmware/ddr/synopsys/lpddr4_pmu_train_2d_dmem.bin ../imx-mkimage/iMX8M/
$ cp firmware/ddr/synopsys/lpddr4_pmu_train_2d_imem.bin ../imx-mkimage/iMX8M/
$ cp firmware/hdmi/cadence/signed_hdmi_imx8m.bin ../imx-mkimage/iMX8M/
$ cp firmware/hdmi/cadence/signed_dp_imx8m.bin ../imx-mkimage/iMX8M/
$ cd ../
Note 2:
For u-boot 2022.04 and Linux kernel 5.15.71 (Paired from NXP Yocto Kirkstone release)
$ wget https://www.nxp.com/lgfiles/NMG/MAD/YOCTO/firmware-imx-8.18.bin
$ chmod a+x firmware-imx-8.18.bin
$ ./firmware-imx-8.18
enter "y" to accept EULA
$ cd firmware-imx-8.
18
$ cp firmware/ddr/synopsys/lpddr4_pmu_train_1d_dmem.bin ../imx-mkimage/iMX8M/
$ cp firmware/ddr/synopsys/lpddr4_pmu_train_1d_imem.bin ../imx-mkimage/iMX8M/
$ cp firmware/ddr/synopsys/lpddr4_pmu_train_2d_dmem.bin ../imx-mkimage/iMX8M/
$ cp firmware/ddr/synopsys/lpddr4_pmu_train_2d_imem.bin ../imx-mkimage/iMX8M/
$ cp firmware/hdmi/cadence/signed_hdmi_imx8m.bin ../imx-mkimage/iMX8M/
$ cp firmware/hdmi/cadence/signed_dp_imx8m.bin ../imx-mkimage/iMX8M/
$ cd ../
4. Clone the U-Boot source code from Embedian Guthub Server and copy related files to imx-mkimage/iMX8M/ directory.
Download:
For u-boot v2024.04: (Paired from NXP Yocto Scarthgap release)
$ git clone https://github.com/embedian/smarc-uboot.git v2024.04 -b emb_lf_v2024.04
Notes
Note 1:
For u-boot 2023.04 and Linux kernel 6.1.55 (Paired from NXP Yocto Mickledore release)
$ git clone https://github.com/embedian/smarc-uboot.git v2023.04 -b emb_lf_v2023.04
Note 2:
For u-boot 2022.04 and Linux kernel 5.15.71 (Paired from NXP Yocto Kirkstone release)
$ git clone https://github.com/embedian/smarc-uboot.git v2022.04 -b emb_lf_v2022.04
Configure and Build:
$ make ARCH=arm CROSS_COMPILE=${CC} distclean
$ make ARCH=arm CROSS_COMPILE=${CC} smarcimx8mq_4g_ser3_defconfig
$ make ARCH=arm CROSS_COMPILE=${CC}
Notes
Note 1:
If the board is 2GB LPDDR4 in commercial or industrial temperature, use$ make ARCH=arm CROSS_COMPILE=${CC} smarcimx8mq_2g_ser3_defconfig
If the board is 4GB LPDDR4, use$ make ARCH=arm CROSS_COMPILE=${CC} smarcimx8mq_4g_ser3_defconfig
Note 2:
“ser3” stands for console debug port in SMARC definition. In this example, we uses SER3 as debug port. If user uses SER0 as your debug port, make change to “ser0” instead. Same as SER1 and SER2.
Note 3:
To change the debug port, in addition to u-boot defconfig and uEnv.txt files, you also need to modify plat/imx/imx8m/imx8mq/include/platform_def.h in the imx-atf. Find “#define IMX_BOOT_UART_BASE U(0x30890000)” and change to the correct address that defined in uEnv.txt file.
Note 4:
The SMARC-iMX8MQ module always boot up from the on-module eMMC flash. The factory default will be flash.bin pre-installed with SER3 as console output. In some cases when the eMMC flash is empty or needs to be upgraded. Users can shunt crossed the TEST# to ground. In this way, the SMARC-iMX8MQ module will boot up to carrier SD card. The flash.bin image are the same, the difference is where you flash flash.bin. This will be explained in the “Setup SD card” section.
Copy u-boot-nodtb.bin spl/u-boot-spl.bin arch/arm/dts/imx8mq-smarc.dtb
to imx-mkimage/iMX8M
directory and copy tools/mkimage
to imx-mkimage/iMX8M/mkimage_uboot
$ cp u-boot-nodtb.bin spl/u-boot-spl.bin arch/arm/dts/imx8mq-smarc.dtb ../imx-mkimage/iMX8M/
$ cp tools/mkimage ../imx-mkimage/iMX8M/mkimage_uboot
5. Generate flash.bin file.
$ cd ../imx-mkimage
$ make CROSS_COMPILE=${CC} SOC=iMX8M clean
$ make CROSS_COMPILE=${CC} SOC=iMX8M flash_spl_uboot
Notes
If you device has HDMI port use the following command instead.
$ make CROSS_COMPILE=${CC} SOC=iMX8M flash_hdmi_spl_uboot
If you device has Display Port use the following command instead.
$ make CROSS_COMPILE=${CC} SOC=iMX8M flash_dp_spl_uboot
The flash.bin file will be located at imx-mkimage/iMX8M directory. Go to “Setup SD Card” section to instruct you how to flash this file into SD card.
Linux Kernel
Download:
For Linux Kernel v6.6.52 (Paired from NXP Yocto Scarthgap release)
$ git clone https://github.com/embedian/smarc-fsl-linux-kernel.git v6.6.52 -b emb_imx_lf-6.6.y
Notes
Note 1:
For u-boot 2023.04 and Linux kernel 6.1.55 (Paired from NXP Yocto Mickledore release)
$ git clone https://github.com/embedian/smarc-fsl-linux-kernel.git v6.1.55 -b emb_imx_lf-6.1.y
Note 2:
For u-boot 2022.04 and Linux kernel 5.15.71 (Paired from NXP Yocto Kirkstone release)
$ git clone https://github.com/embedian/smarc-fsl-linux-kernel.git v5.15.71 -b emb_imx_lf-5.15.y
Configure and Build:
$ make ARCH=arm64 CROSS_COMPILE=${CC} distclean
$ make ARCH=arm64 CROSS_COMPILE=${CC} emb_imx_v8_defconfig
$ make ARCH=arm64 CROSS_COMPILE=${CC} Image modules dtbs
Selecting display configuration is a matter of selecting an appropriate DTB file under arch/arm64/boot/dts/embedian
.
All available DTB files are listed in the table below.
DTB FILENAME | DESCRIPTION |
imx8mq-smarc.dtb | Device tree blob for no display configuration. |
imx8mq-smarc-hdmi.dtb | Device tree blob for HDMI display configuration. (DCSS) |
imx8mq-smarc-dp.dtb | Device tree blob for Display Port (DP) display configuration. (DCSS) |
imx8mq-smarc-lcdif-lvds.dtb | Device tree blob for LCDIF LVDS display configuration. |
imx8mq-smarc-dcss-lvds.dtb | Device tree blob for DCSS LVDS display configuration. |
imx8mq-smarc-dual-display.dtb | Device tree blob for dual (LVDS and HDMI) display configuration. |
Root File System
Ubuntu 22.04 Jammy Jellyfish:
USERNAME | PASSWORD |
user | user |
Ubuntu 22.04 Jammy Jellyfish Download:
$ wget -c ftp://ftp.embedian.com/public/dev/minfs/ubuntu/jammy_jellyfish/smarcimx8mq/imx-image-desktop-smarcimx8mq4g.tar.bz2
Verify:
$ md5sum imx-image-desktop-smarcimx8mq4g.tar.bz2
e7e8be81800d1dca2c4b088bdd9257cd imx-image-desktop-smarcimx8mq4g.tar.bz2
Debian 11 Bullseye:
USERNAME | PASSWORD |
root | root |
Debian 11 Bullseye Download:
$ wget -c ftp://ftp.embedian.com/public/dev/minfs/debian/bullseye/imx8mq-bulleys-arm64.tar.gz
Verify:
$ md5sum imx8mq-bulleys-arm64.tar.gz
918b18f255f69fa1e48024ebf2cae054 imx8mq-bulleys-arm64.tar.gz
Yocto Scarthgap:
USERNAME | PASSWORD |
root | N/A |
Yocto Scarthgap Download:
$ wget -c ftp://ftp.embedian.com/public/dev/minfs/ubuntu/jammy_jellyfish/smarcimx8mp/imx-image-desktop-smarcimx8mp4g.tar.bz2
Verify:
$ md5sum imx-image-desktop-smarcimx8mp4g.tar.bz2
b54abbf8d70176e064e83e81c8cde138 imx-image-desktop-smarcimx8mp4g.tar.bz2
Yocto Mickledore:
USERNAME | PASSWORD |
root | N/A |
Yocto Mickledore Download:
$ wget -c ftp://ftp.embedian.com/public/dev/minfs/dev/minfs/mickledore/fsl-image-qt6-validation-imx-smarcimx8mq4g.tar.bz2
Verify:
$ md5sum fsl-image-qt6-validation-imx-smarcimx8mq4g.tar.bz2
8f14828150d9242cf5159af32ed22b8e fsl-image-qt6-validation-imx-smarcimx8mq4g.tar.bz2
Yocto Kirkstone:
USERNAME | PASSWORD |
root | N/A |
Yocto Kirkstone Download:
$ wget -c ftp://ftp.embedian.com/public/dev/minfs/dev/minfs/kirkstone/fsl-image-qt6-validation-imx-smarcimx8mq4g.tar.bz2
Verify:
$ md5sum imx-image-desktop-smarcimx8mq4g.tar.bz2
292e761d1dbdd2a9768de59e7f90b88a fsl-image-qt6-validation-imx-smarcimx8mq4g.tar.bz2
Setup SD Card
For these instruction, we are assuming: DISK=/dev/mmcblk0, “lsblk” is very useful for determining the device id.
$ export DISK=/dev/mmcblk0
Erase SD card:
$ sudo dd if=/dev/zero of=${DISK} bs=2M count=160
Create Partition Layout: Leave 2MB offset for boot file. With util-linux v2.26, sfdisk was rewritten and is now based on libfdisk.
(sfdisk)
$ sudo sfdisk --version
sfdisk from util-linux 2.34
Create Partitions:
(sfdisk >=2.26.x)
$ sudo sfdisk ${DISK} <<-__EOF__
2M,48M,0x83,*
50M,,,
__EOF__
Format Partitions:
for: DISK=/dev/mmcblk0$ sudo mkfs.vfat -F 16 ${DISK}p1 -n boot
$ sudo mkfs.ext4 ${DISK}p2 -L rootfs
for: DISK=/dev/sdX$ sudo mkfs.vfat -F 16 ${DISK}1 -n boot
$ sudo mkfs.ext4 ${DISK}2 -L rootfs
Mount Partitions:
On some systems, these partitions may be auto-mounted…
$ sudo mkdir -p /media/boot/
$ sudo mkdir -p /media/rootfs/
for: DISK=/dev/mmcblk0$ sudo mount ${DISK}p1 /media/boot/
$ sudo mount ${DISK}p2 /media/rootfs/
for: DISK=/dev/sdX$ sudo mount ${DISK}1 /media/boot/
$ sudo mount ${DISK}2 /media/rootfs/
Boot file is factory default flashed at on-module eMMC flash.
Install Boot File (
)flash.bin
In some cases, when eMMC flash is erased or the u-boot is under development, we need a way to boot from SD card first. Users need to shunt cross the TEST# pin to ground. In this way, SMARC-iMX8MQ will always boot up from SD card.
Write flash.bin to SD card.
~/imx-mkimage/
$ sudo dd if=iMX8M/flash.bin of=${DISK} bs=1024 seek=33
The flash.bin is pre-installed in on-module eMMC flash at factory default. SMARC-iMX8MQ is designed to always boot up from on-module eMMC flash and to load Image, device tree blob and root file systems based on the setting of BOOT_SEL. If users need to fuse your own flash.bin or perform u-boot upgrade. This section will instruct you how to do that.
Copy flash.bin to the second partition home directory of your SD card and boot into SD card. Boot up from SD card and go to home directory and you should see flash.bin file.
~/imx-mkimage/
$ sudo cp -v iMX8M/flash.bin /media/rootfs/home/root/
Write flash.bin to the on-module eMMC flash. (The eMMC flash is emulated as /dev/mmcblk0 in SMARC-iMX8MQ)
(home directory of device)
$
sudo dd if=flash.bin of=/dev/mmcblk0 bs=1024 seek=33
Notes
1. If your u-boot hasn’t been finalized and still under development, it is recommended to shunt cross the test pin and boot directly from SD card first (shunt cross TEST# to GND). Once your u-boot is fully tested and finalized, you can fuse your <boot file> to eMMC flash.
2. When TEST# pin of SMARC-iMX8MQ is not shunt crossed, it will always boot up from on-module eMMC flash. U-boot will read the BOOT_SEL configuration and determine where it should load Image and device tree blob. When TEST# is shunt crossed (pull low), it will always boot up from SD card.
Install uEnv.txt based bootscript
Create “uEnv.txt” boot script: ($ vim uEnv.txt)
~/uEnv.txt
optargs="video=HDMI-A-1:1920x1080-32@60 consoleblank=0"
#optargs="video=HDMI-A-1:3840x2160-32@30 consoleblank=0"
#optargs="video=HDMI-A-1:3840x2160-32@60 consoleblank=0"
#console port SER3
console=ttymxc0,115200 earlycon=ec_imx6q,0x30860000,115200
#console port SER2
#console=ttymxc1,115200 earlycon=ec_imx6q,0x30890000,115200
#console port SER1
#console=ttymxc2,115200 earlycon=ec_imx6q,0x30880000,115200
#console port SER0
#console=ttymxc3,115200 earlycon=ec_imx6q,0x30A60000,115200
mmcdev=1
mmcpart=1
image=Image
loadaddr=0x40480000
fdt_addr=0x43000000
mmcroot=/dev/mmcblk1p2 rw
usbroot=/dev/sda2 rw
mmcrootfstype=ext4 rootwait fixrtc
netdev=eth0
ethact=FEC0
ipaddr=192.168.1.150
serverip=192.168.1.53
gatewayip=192.168.1.254
mmcargs=setenv bootargs ${mcore_clk} console=${console} root=${mmcroot} rootfstype=${mmcrootfstype} ${optargs}
uenvcmd=run loadimage; run loadfdt; run mmcboot
# USB Boot
#usbargs=setenv bootargs console=${console} root=${usbroot} rootfstype=${mmcrootfstype} ${optargs}
#uenvcmd=run loadusbimage; run loadusbfdt; run usbboot
Copy uEnv.txt to the boot partition:
~/
$
sudo cp -v ~/uEnv.txt /media/boot/
Install Linux Kernel Image
Copy Image to the boot partition:
~/<linux kernel source directory>/
$ sudo cp -v arch/arm/boot/Image /media/boot/
Install Linux Kernel Device Tree Binary
~/<linux kernel source directory>/
$ sudo mkdir -p /media/boot/dtbs
$ sudo cp -v arch/arm/boot/dts/embedian/<device tree binary> /media/boot/dtbs/imx8mq-smarc.dtb
All available DTB binary files are listed in the table below.
DTB FILENAME | DESCRIPTION |
imx8mq-smarc.dtb | Device tree blob for no display configuration. |
imx8mq-smarc-hdmi.dtb | Device tree blob for HDMI display configuration. (DCSS) |
imx8mq-smarc-dp.dtb | Device tree blob for Display Port (DP) display configuration. (DCSS) |
imx8mq-smarc-lcdif-lvds.dtb | Device tree blob for LCDIF LVDS display configuration. |
imx8mq-smarc-dcss-lvds.dtb | Device tree blob for DCSS LVDS display configuration. |
imx8mq-smarc-dual-display.dtb | Device tree blob for dual (LVDS and HDMI) display configuration. |
Notes
The device tree name in your SD card has be to imx8mq-smarc.dtb
Install Root Filesystem
Extract the Yocto built root filesystem to your SD card
~/<directory where your rootfs is>/
$ sudo tar jxvf <filename.tar.bz2> -C /media/rootfs
~/<directory where your rootfs is>/
$ sudo tar xvfz <filename.tar.gz> -C /media/rootfs
Install Kernel Modules
~/<Linux kernel source directory>/
$ sudo make ARCH=arm64 CROSS_COMPILE=${CC} INSTALL_MOD_PATH=/media/rootfs modules_install
Notes
1. SMARC-iMX8MQ always boots up from on-module eMMC flash first. The boot file in eMMC flash is factory pre-installed from Embedian. It will read the BOOT_SEL configuration that defined by SMARC specification on your carrier board and load Image and device tree blob from the partition one of the device (could be SD card, eMMC, GBE,..etc) that you selected.
2. MAC address is factory pre-installed at on board I2C EEPROM at offset 60 bytes. It starts with Embedian’s vendor code 10:0D:32. u-boot will read it and pass this parameter to kernel.
3. The kernel modules is included in the Yocto rootfs.
Remove SD card:
$ sync
$ sudo umount /media/boot
$ sudo umount /media/rootfs
Setup eMMC
Setting up eMMC usually is the last step at development stage after the development work is done at your SD card or NFS environments. From software point of view, eMMC is nothing but a non-removable SD card on board. For SMARC-iMX8MQ, the SD card is always emulated as /dev/mmcblk1
and on-module eMMC is always emulated as /dev/mmcblk0
. Setting up eMMC now is nothing but changing the device descriptor.
This section gives a step-by-step procedure to setup eMMC flash. Users can write a shell script your own at production to simplify the steps.
First, we need to backup the final firmware from your SD card or NFS.
Prepare for eMMC binaries from SD card (or NFS):
Insert SD card into your Linux PC. For these instructions, we are assuming: DISK=/dev/mmcblk0, “lsblk” is very useful for determining the device id.
For these instruction, we are assuming: DISK=/dev/mmcblk0
, “lsblk
” is very useful for determining the device id.
$ export DISK=/dev/mmcblk0
Mount Partitions:
On some systems, these partitions may be auto-mounted…
$ sudo mkdir -p /media/boot/
$ sudo mkdir -p /media/rootfs/
for: DISK=/dev/mmcblk0
$ sudo mount ${DISK}p1 /media/boot/
$ sudo mount ${DISK}p2 /media/rootfs/
for: DISK=/dev/sdX
<Host Computer>
$ sudo mount ${DISK}1 /media/boot/
$ sudo mount ${DISK}2 /media/rootfs/
Copy Image to rootfs partition
<Host Computer>
$ sudo cp -v /media/boot/Image /media/rootfs/home/root
Copy uEnv.txt to rootfs partition
Copy and paste the following contents to /media/rootfs/home/root ($ sudo vim /media/rootfs/home/root/uEnv.txt)
<Host Computer>
optargs="video=HDMI-A-1:1920x1080-32@60 consoleblank=0"
#optargs="video=HDMI-A-1:3840x2160-32@30 consoleblank=0"
#optargs="video=HDMI-A-1:3840x2160-32@60 consoleblank=0"
#console port SER3
console=ttymxc0,115200 earlycon=ec_imx6q,0x30860000,115200
#console port SER2
#console=ttymxc1,115200 earlycon=ec_imx6q,0x30890000,115200
#console port SER1
#console=ttymxc2,115200 earlycon=ec_imx6q,0x30880000,115200
#console port SER0
#console=ttymxc3,115200 earlycon=ec_imx6q,0x30A60000,115200
mmcdev=0
mmcpart=1
image=Image
loadaddr=0x40480000
fdt_addr=0x43000000
mmcroot=/dev/mmcblk0p2 rw
usbroot=/dev/sda2 rw
mmcrootfstype=ext4 rootwait fixrtc
netdev=eth0
ethact=FEC0
ipaddr=192.168.1.150
serverip=192.168.1.53
gatewayip=192.168.1.254
mmcargs=setenv bootargs ${mcore_clk} console=${console} root=${mmcroot} rootfstype=${mmcrootfstype} ${optargs}
uenvcmd=run loadimage; run loadfdt; run mmcboot
# USB Boot
#usbargs=setenv bootargs console=${console} root=${usbroot} rootfstype=${mmcrootfstype} ${optargs}
#uenvcmd=run loadusbimage; run loadusbfdt; run usbboot
Copy device tree binary to rootfs partition
<Host Computer>
$ sudo cp -v /media/boot/dtbs/imx8mq-smarc.dtb /media/rootfs/home/root/imx8mq-smarc.dtb
Copy boot file to rootfs partition
~/imx-mkimage/
$ sudo cp -v iMX8M/flash.bin
/media/rootfs/home/root/flash.bin
Copy final root file system to rootfs partition
<Host Computer>
$ pushd /media/rootfs
$ sudo tar cvfz ~/smarcimx8mq-emmc-rootfs.tar.gz .
$ sudo mv ~/smarcimx8mq-emmc-rootfs.tar.gz /media/rootfs/home/root
$ popd
Remove SD card:
$ sync
$ sudo umount /media/boot
rootfs$ sudo umount /media/
Copy Binaries to eMMC from SD card
Insert this SD card into your SMARC-iMX8MQ device.
Now it will be almost the same as you did when setup your SD card, but the eMMC device descriptor is /dev/mmcblk0 now. Booting up the device from SD card (shunt cross TEST#).
$ export DISK=/dev/mmcblk0
Erase eMMC:
$ sudo dd if=/dev/zero of=${DISK} bs=2M count=160
Create Partition Layout:
$ sudo sfdisk ${DISK} <<-__EOF__
2M,48M,0x83,*
50M,,,
__EOF__
Format Partitions:
$ sudo mkfs.vfat -F 16 ${DISK}p1 -n boot
$ sudo mkfs.ext4 ${DISK}p2 -L rootfs
Mount Partitions:
$ sudo mkdir -p /media/boot/
$ sudo mkdir -p /media/rootfs/
$ sudo mount ${DISK}p1 /media/boot/
$ sudo mount ${DISK}p2 /media/rootfs/
Copy binaries to boot partition
Copy uEnv.txt/Image/*.dtb to the boot partition
$ sudo cp -v Image uEnv.txt /media/boot/
Copy Linux kernel device tree binary
$ sudo mkdir -p /media/boot/dtbs
$ sudo cp -v imx8mq-smarc.dtb /media/boot/dtbs/
Copy root file system to rootfs partition
$ sudo tar -zxvf smarcimx8mq-emmc-rootfs.tar.gz -C /media/rootfs
Unmount eMMC:
$ sync
$ sudo umount /media/boot
$ sudo umount /media/rootfs
Write boot file to eMMC
$ sudo dd if=flash.bin of=${DISK} bs=1024 seek=33
Switch your Boot Select to eMMC (OFF ON ON) and you will be able to boot up from eMMC now.
Video Decoding
For playing video, we can use three solutions to support it.
1. $ gplay-1.0 <video file>
2. $ gst-launch-1.0 playbin uri=file://<video absolute path>
3. (i) if video container on .mp4 format$ gst-launch-1.0 filesrc location=<file name.mp4> typefind=true ! video/quicktime ! qtdemux ! queue max-size-time=0 ! vpudec ! queue max-size-time=0 ! kmssink force-hantrope=true sync=false &
(ii) if video container on .ts format$ gst-launch-1.0 filesrc location=<file name.ts> typefind=true ! video/mpegts ! tsdemux ! queue max-size-time=0 ! vpudec ! queue max-size-time=0 ! waylandsink
version 1.0a, 10/28/2024
Last updated 2024-10-28