Difference between revisions of "iMX6 OpenRex Ultra Updating SPI Bootloader"

From Voipac Wiki
Jump to navigation Jump to search
(Created page with "Category:iMX6 OpenRex SBC Category:iMX6 OpenRex Ultra <!-- --> iMX6 OpenRex Single Board Computer contains SPI Flash memory which is used as a default bootloader stora...")
 
Line 12: Line 12:
 
''''' Recommended SW: '''''
 
''''' Recommended SW: '''''
 
* Serial line terminal
 
* Serial line terminal
* [http://downloads.voipac.com/files/iMX6_OpenRex_SBC/software/uboot/binaries/u-boot-imx6-openrexultrasata-2.4.imx Appropriate binary file]
+
* [http://downloads.voipac.com/files/iMX6_OpenRex_SBC/software/uboot/binaries/u-boot-imx6-openrexultra-2.4.imx Appropriate binary file]
 
* TFTP server with the image file stored
 
* TFTP server with the image file stored
  

Revision as of 08:46, 27 March 2021

iMX6 OpenRex Single Board Computer contains SPI Flash memory which is used as a default bootloader storage. This guide shows how to flash u-boot and configure it for SPI memory.

Recommended HW:

  • PC with USB port
  • Voipac iMX6 OpenRex SBC in Ultra configuration
  • USB to Micro-USB cable
  • Ethernet cable

Recommended SW:

Procedure

Note: In case of booting malfunction, follow USB Booting steps first to load the firmware from PC.

Stop autoboot in serial line terminal. Copy and paste commands separately to download appropriate bootloader file from TFTP server:

setenv ipaddr 192.168.1.150
setenv serverip 192.168.1.75
mw.b 0x10800000 0xFF 0x80000
tftp 0x10800000 u-boot-imx6-openrexultra-2.4.imx; sf probe;sf erase 0x0 0x80000
sf write 0x10800000 0x400 0x7fc00

600px

The bootloader is written to SPI Flash after automatic download from the TFTP Server:
600px

Reset the board. iMX6 OpenRex SBC will start booting from SPI Flash. The bootloader will start to download Image from TFTP server by default:
600px

To change bootloader environment, stop autoboot:
600px