Difference between revisions of "iMX6 Rex Basic U-Boot"
Jump to navigation
Jump to search
Line 1: | Line 1: | ||
[[Category:iMX6 Rex Development kit]] | [[Category:iMX6 Rex Development kit]] | ||
[[Category:iMX6 Rex Basic]] | [[Category:iMX6 Rex Basic]] | ||
− | [[Category:U- | + | [[Category:U-Boot]] |
<!-- --> | <!-- --> | ||
<div style="float:right">__TOC__</div> | <div style="float:right">__TOC__</div> |
Revision as of 07:23, 26 April 2021
U-Boot is a bootloader responsible for hardware initialization, loading and booting Linux kernel. It is also used for module flashing.
Build
Set toolchain
Export toolchain variables for every related terminal session.
Initial steps
Create working directory
mkdir -pv ~/workdir/imx6/bootloader/
U-Boot v2015.04
Download and extract source code
cd ~/workdir/imx6/bootloader/ git clone -b uboot-imx-v2015.04 --single-branch https://github.com/voipac/uboot-imx uboot-imx-v2015.04-rex cd uboot-imx-v2015.04-rex
Compile
Output file is called u-boot.imx. All the compiled images are intended for production usage.
Compile for Linux/Yocto
cd ~/workdir/imx6/bootloader/uboot-imx-v2015.04-rex make distclean make mx6rexbasic_config make ARCH=arm CROSS_COMPILE=arm-linux-gnueabi- cp u-boot.imx /srv/tftp/imx6/u-boot-imx6-rexbasic.imx cp u-boot.bin /srv/tftp/imx6/u-boot-imx6-rexbasic.bin
How to Flash a new version
setenv ipaddr 192.168.0.150 setenv serverip 192.168.0.1 tftp 0x177ff400 imx6/u-boot-imx6-rex*.bin go 0x17800000 setenv ipaddr 192.168.0.150 setenv serverip 192.168.0.1 mw.b 0x10800000 0xFF 0x80000 tftp 0x10800000 imx6/u-boot-imx6-rex*.imx if sf probe 2:2; then sf erase 0x0 0x80000; sf write 0x10800000 0x400 0x7fc00; fi
Flashing log:
U-Boot 2015.04-g3e8754e-dirty (May 08 2017 - 15:31:43) CPU: Freescale i.MX6Q rev1.2 at 792 MHz CPU: Temperature 42 C Reset cause: WDOG Board: MX6 Rex - basic I2C: ready DRAM: 2 GiB MMC: FSL_SDHC: 0, FSL_SDHC: 1 SF: Detected SST25VF032B with page size 256 Bytes, erase size 4 KiB, total 4 MiB In: serial Out: serial Err: serial Fastboot: Normal flash target is MMC:0 Bad partition index:5 for partition:system Bad partition index:4 for partition:data Net: FEC [PRIME] Normal Boot Hit any key to stop autoboot: 0 Rex U-Boot > setenv ipaddr 192.168.1.150 Rex U-Boot > setenv serverip 192.168.1.1 Rex U-Boot > mw.b 0x10800000 0xFF 0x80000 Rex U-Boot > tftp 0x10800000 imx6/u-boot-imx6-rexbasic.imx Using FEC device TFTP from server 192.168.1.1; our IP address is 192.168.1.150 Filename 'imx6/u-boot-imx6-rexbasic.imx'. Load address: 0x10800000 Loading: ####################### 2.9 MiB/s done Bytes transferred = 330752 (50c00 hex) Rex U-Boot > sf probe 2:2;sf erase 0x0 0x80000;sf write 0x10800000 0x400 0x7fc00 SF: Detected SST25VF032B with page size 256 Bytes, erase size 4 KiB, total 4 MiB SF: 524288 bytes @ 0x0 Erased: OK SF: 523264 bytes @ 0x400 Written: OK Rex U-Boot >
U-Boot v2014.10
Download and Extract source code
cd ~/workdir/imx6/bootloader/ git clone -b uboot-imx-v2014.10 --single-branch https://github.com/voipac/uboot-imx uboot-imx-v2014.10-rex cd uboot-imx-v2014.10-rex
Compile
Output file is called u-boot.imx. The compiled image is intended for production usage.
Compile for Linux/Yocto
cd ~/workdir/imx6/bootloader/uboot-imx-v2014.10-rex make distclean make mx6rexbasic_config make cp u-boot.imx /srv/tftp/imx6/u-boot-imx6-rexbasic.imx cp u-boot.bin /srv/tftp/imx6/u-boot-imx6-rexbasic.bin
How to Flash a new version
setenv ipaddr 192.168.0.150 setenv serverip 192.168.0.1 tftp 0x177ff400 imx6/u-boot-imx6-rexbasic.imx go 0x17800000 setenv ipaddr 192.168.0.150 setenv serverip 192.168.0.1 mw.b 0x10800000 0xFF 0x80000 tftp 0x10800000 imx6/u-boot-imx6-rexbasic.imx sf probe 2:2;sf erase 0x0 0x80000;sf write 0x10800000 0x400 0x7fc00
Configure
Manually erase configuration
Rex U-Boot > sf probe 2:2 SF: Detected SST25VF032B with page size 256 Bytes, erase size 4 KiB, total 4 MiB Rex U-Boot > sf erase 0x80000 0x2000 SF: 8192 bytes @ 0x80000 Erased: OK Rex U-Boot > reset
Android 4.4.2 bootloader + FEDEVEL kernels
To boot kernels available at iMX6Rex.com the machine id variable must be modified:
Rex U-Boot > setenv machid f8c Rex U-Boot > saveenv
Running bootloader from SD card
iMX6 Rex Modules are configured to boot from SPI flash memory by default using eFuses configuration. This setting can be overwritten by running a special firmware that must be stored into SPI flash memory:
setenv ipaddr 192.168.0.150 setenv serverip 192.168.0.1 mw.b 0x10800000 0xFF 0x80000 tftp 0x10800000 imx6/iMX6DQ_SPI_to_uSDHC3.bin sf probe 2:2 sf erase 0x0 0x80000 sf write 0x10800000 0x0 0x80000