Yocto Build U-Boot MX95: Difference between revisions
(Created page with "<!-- Set release according to "release" parameter in URL and use mx8m-yocto-kirkstone-5.15-2.0.x-v1.1 as default --> {{INIT_RELEASE_PARAM|mx8m-yocto-kirkstone-5.15-2.0.x-v1.1}}<!-- --> {{INIT_RELEASE_PARAM|mx93-yocto-mickledore-6.1.36_2.1.0-v2.3}}<!-- --> {{INIT_RELEASE_PARAM|mx95-yocto-scarthgap-6.6.23_2.0.0-v1.0}}<!-- --> {{#lst:Yocto_Platform_Customization|{{#var:RELEASE_PARAM}}}} <!-- --> {{#lst:Debian_Platform_Customization|{{#var:RELEASE_PARAM}}}} <!-- --> {{#lst:B...") |
No edit summary |
||
(2 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
<!-- Set release according to "release" parameter in URL and use | <!-- Set release according to "release" parameter in URL and use mx95-yocto-scarthgap-6.6.23_2.0.0-v1.0 as default | ||
--> {{INIT_RELEASE_PARAM|mx95-yocto-scarthgap-6.6.23_2.0.0-v1.0}}<!-- | --> {{INIT_RELEASE_PARAM|mx95-yocto-scarthgap-6.6.23_2.0.0-v1.0}}<!-- | ||
--> {{#lst:Yocto_Platform_Customization|{{#var:RELEASE_PARAM}}}} <!-- | --> {{#lst:Yocto_Platform_Customization|{{#var:RELEASE_PARAM}}}} <!-- | ||
Line 46: | Line 44: | ||
$ cd imx-boot-tools | $ cd imx-boot-tools | ||
Download | Download imx_mkimage: | ||
$ git clone {{#var:NXP_IMX_GIT}}/imx-mkimage -b {{#var:NXP_IMX_BRANCH}} | $ git clone {{#var:NXP_IMX_GIT}}/imx-mkimage -b {{#var:NXP_IMX_BRANCH}} | ||
Download DDR firmware: | Download DDR firmware: | ||
Line 77: | Line 72: | ||
$ cd .. | $ cd .. | ||
Download and build OEI:<!-- | Download and build OEI DDR Image and OEI TCM Image:<!-- | ||
Use VARISCITE_OEI_GIT from yocto platform customization if exists for Variscite hosted repo, else default to NXP: | Use VARISCITE_OEI_GIT from yocto platform customization if exists for Variscite hosted repo, else default to NXP: | ||
--> | --> | ||
$ git clone {{#var:VARISCITE_OEI_GIT | {{#var:NXP_IMX_GIT}}/imx-oei}} -b {{#var:VARISCITE_OEI_BRANCH | {{#var:NXP_IMX_BRANCH}}}} | $ git clone {{#var:VARISCITE_OEI_GIT | {{#var:NXP_IMX_GIT}}/imx-oei}} -b {{#var:VARISCITE_OEI_BRANCH | {{#var:NXP_IMX_BRANCH}}}} | ||
$ cd imx-oei | $ cd imx-oei | ||
$ export | $ export OEI_CROSS_COMPILE=/opt/{{#var:TOOLCHAIN_ARM-NONE-EABI_NAME}}/bin/arm-none-eabi- | ||
$ make really-clean | $ make really-clean | ||
$ make board={{#var:OEI_CFG_BOARD}} oei=ddr | $ make board={{#var:OEI_CFG_BOARD}} DEBUG=0 oei=ddr | ||
$ cp build/mx95lp5/ddr/oei-m33-ddr.bin ../imx-mkimage/iMX95 | $ cp build/mx95lp5/ddr/oei-m33-ddr.bin ../imx-mkimage/iMX95 | ||
$ make board={{#var:OEI_CFG_BOARD}} oei=tcm | $ make board={{#var:OEI_CFG_BOARD}} DEBUG=0 oei=tcm | ||
$ cp build/mx95lp5/tcm/oei-m33-tcm.bin ../imx-mkimage/iMX95 | $ cp build/mx95lp5/tcm/oei-m33-tcm.bin ../imx-mkimage/iMX95 | ||
$ cd .. | $ cd .. | ||
Line 95: | Line 90: | ||
$ git clone {{#var:VARISCITE_SM_GIT | {{#var:NXP_IMX_GIT}}/imx-sm}} -b {{#var:VARISCITE_SM_BRANCH | {{#var:NXP_IMX_BRANCH}}}} | $ git clone {{#var:VARISCITE_SM_GIT | {{#var:NXP_IMX_GIT}}/imx-sm}} -b {{#var:VARISCITE_SM_BRANCH | {{#var:NXP_IMX_BRANCH}}}} | ||
$ cd imx-sm | $ cd imx-sm | ||
$ export | $ export SM_CROSS_COMPILE=/opt/{{#var:TOOLCHAIN_ARM-NONE-EABI_NAME}}/bin/arm-none-eabi- | ||
$ make really-clean | $ make really-clean | ||
$ make -j $(nproc --all) config={{#var:SM_CFG_BOARD}} cfg | $ make -j $(nproc --all) config={{#var:SM_CFG_BOARD}} cfg | ||
$ make -j $(nproc --all) config={{#var:SM_CFG_BOARD}} | $ make -j $(nproc --all) config={{#var:SM_CFG_BOARD}} img | ||
$ cp build/mx95evk/m33_image.bin ../imx-mkimage/iMX95 | $ cp build/mx95evk/m33_image.bin ../imx-mkimage/iMX95 | ||
$ cd .. | $ cd .. |
Latest revision as of 11:31, 21 November 2024
This page is using the default release mx95-yocto-scarthgap-6.6.23_2.0.0-v1.0.
To view this page for a specific Variscite SoM and software release, please follow these steps:
- Visit variwiki.com
- Select your SoM
- Select the software release
Toolchain installation for out of Yocto builds
To install the toolchain, follow the Yocto Toolchain installation guide.
Build U-Boot out of Yocto tree
Obtain sources:
$ git clone https://github.com/varigit/uboot-imx.git -b lf_v2024.04_6.6.23-2.0.0_var01 $ cd uboot-imx
Configure compilation environment:
$ source /opt/fsl-imx-xwayland/6.6-scarthgap/environment-setup-armv8a-poky-linux
Cleanup everything:
$ make mrproper
Select configuration:
$ make imx95_var_dart_defconfig
Build U-Boot:
$ make -j$(nproc)
Download and install Arm-none-eabi cross-compiler required to build OEI and SM
$ wget https://developer.arm.com/-/media/Files/downloads/gnu/13.2.Rel1/binrel/arm-gnu-toolchain-13.2.Rel1-x86_64-arm-none-eabi.tar.xz $ sudo tar -xf arm-gnu-toolchain-13.2.Rel1-x86_64-arm-none-eabi.tar.xz -C /opt
Build boot image
The final boot image contains multiple firmware files, as explained by NXP in IMX_LINUX_USERS_GUIDE.pdf (Search for "How to build imx-boot image by using imx-mkimage").
The following procedure builds the final image:
Create imx-boot-tools directory:
$ mkdir imx-boot-tools $ cd imx-boot-tools
Download imx_mkimage:
$ git clone https://github.com/nxp-imx/imx-mkimage -b lf-6.6.23-2.0.0
Download DDR firmware:
$ wget https://www.nxp.com/lgfiles/NMG/MAD/YOCTO/firmware-imx-8.24-fbe0a4c.bin $ chmod +x firmware-imx-8.24-fbe0a4c.bin $ ./firmware-imx-8.24-fbe0a4c.bin $ rm firmware-imx-8.24-fbe0a4c.bin $ cp firmware-imx-8.24-fbe0a4c/firmware/ddr/synopsys/* imx-mkimage/iMX95
Download ELE firmware:
$ wget https://www.nxp.com/lgfiles/NMG/MAD/YOCTO/firmware-ele-imx-0.1.2-4ed450a.bin $ chmod +x firmware-ele-imx-0.1.2-4ed450a.bin $ ./firmware-ele-imx-0.1.2-4ed450a.bin $ rm firmware-ele-imx-0.1.2-4ed450a.bin $ cp firmware-ele-imx-0.1.2-4ed450a/mx95a0-ahab-container.img imx-mkimage/iMX95
Download and build ATF:
$ git clone https://github.com/varigit/imx-atf -b lf_v2.10_6.6.23-2.0.0_var01 $ cd imx-atf $ source /opt/fsl-imx-xwayland/6.6-scarthgap/environment-setup-armv8a-poky-linux $ unset LDFLAGS $ make PLAT=imx95 bl31 $ cp build/imx95/release/bl31.bin ../imx-mkimage/iMX95 $ cd ..
Download and build OEI DDR Image and OEI TCM Image:
$ git clone https://github.com/varigit/imx-oei -b lf-6.6.23-2.0.0_var01 $ cd imx-oei $ export OEI_CROSS_COMPILE=/opt/arm-gnu-toolchain-13.2.Rel1-x86_64-arm-none-eabi/bin/arm-none-eabi- $ make really-clean $ make board=mx95lp5 DEBUG=0 oei=ddr $ cp build/mx95lp5/ddr/oei-m33-ddr.bin ../imx-mkimage/iMX95 $ make board=mx95lp5 DEBUG=0 oei=tcm $ cp build/mx95lp5/tcm/oei-m33-tcm.bin ../imx-mkimage/iMX95 $ cd ..
Download and build SM:
$ git clone https://github.com/varigit/imx-sm -b lf-6.6.23-2.0.0_var01 $ cd imx-sm $ export SM_CROSS_COMPILE=/opt/arm-gnu-toolchain-13.2.Rel1-x86_64-arm-none-eabi/bin/arm-none-eabi- $ make really-clean $ make -j $(nproc --all) config=mx95evk cfg $ make -j $(nproc --all) config=mx95evk img $ cp build/mx95evk/m33_image.bin ../imx-mkimage/iMX95 $ cd ..
Copy U-Boot binaries:
$ cp ../u-boot.bin imx-mkimage/iMX95 $ cp ../spl/u-boot-spl.bin imx-mkimage/iMX95
Build boot image:
$ cd imx-mkimage $ make clean $ make SOC=iMX95 flash_a55 REV=A0 OEI=YES LPDDR_TYPE=lpddr5 LPDDR_FUNC=train $ mv iMX95/flash.bin iMX95/imx-boot-sd.bin
Install the built U-Boot on an SD card
$ sudo dd if=iMX95/imx-boot-sd.bin of=/dev/sdX bs=1K seek=32 conv=fsync (Replace /dev/sdX with the correct device)
If you want to use our recovery SD card to flash the built U-Boot to NAND flash/eMMC, then copy it to the appropriate location in the SD card:
$ sudo cp iMX95/imx-boot-sd.bin /media/rootfs/opt/images/…
And eject the SD card gracefully from host machine.
Update your U-Boot out of Yocto tree
$ git pull