Difference between revisions of "iMX6 TinyRex Ultra Updating SPI Bootloader"
Line 17: | Line 17: | ||
''''' Note: ''' In case of booting malfunction, follow [[iMX6 TinyRex USB Booting|USB Booting steps]] to load the firmware from a PC.<br /><br /> | ''''' Note: ''' In case of booting malfunction, follow [[iMX6 TinyRex USB Booting|USB Booting steps]] to load the firmware from a PC.<br /><br /> | ||
− | Stop autoboot in your serial line terminal. | + | Stop autoboot in your serial line terminal. Copy and paste commands separately to download appropriate bootloader file from TFTP server: |
<syntaxhighlight lang="bash"> | <syntaxhighlight lang="bash"> | ||
setenv ipaddr 192.168.1.150 | setenv ipaddr 192.168.1.150 | ||
Line 25: | Line 25: | ||
0x0 0x80000;sf write 0x10800000 0x400 0x7fc00 | 0x0 0x80000;sf write 0x10800000 0x400 0x7fc00 | ||
</syntaxhighlight> | </syntaxhighlight> | ||
+ | [[image:iMX6_TinyRex_Development_kit-SPI_bootloader_write.jpg|600px]]<br /><br /> | ||
+ | |||
+ | The bootloader is written to Base Board SPI Flash after automatic download from the TFTP Server:<br /> | ||
+ | [[image:iMX6_TinyRex_Development_kit-SPI_bootloader_written.jpg|600px]]<br /><br /> | ||
+ | |||
+ | Reset the board. iMX6 TinyRex Module will start booting from SPI Flash. The bootloader will start to download Image from the TFTP server by default:<br /> | ||
+ | [[image:iMX6_TinyRex_Development_kit-SPI_bootloader_loaded.jpg|600px]]<br /><br /> | ||
+ | |||
+ | To change bootloader environment, stop autoboot:<br /> | ||
+ | [[image:iMX6_TinyRex_Development_kit-SPI_bootloader_loaded_stopped.jpg|600px]] |
Revision as of 09:48, 15 March 2021
iMX6 TinyRex Base Board contains SPI Flash memory which can be used for bootloader storage and acts as an alternative to default SD card firmware location. This guide shows how to flash u-boot and configure it. There is also a possibility to update efuses in an existing module to use SPI memory by default.
Recommended HW:
- PC with USB port
- Voipac iMX6 TinyRex Development kit in Ultra configuration
- USB to Micro-USB cable
- Ethernet cable
Recommended SW:
- Serial line terminal
- The appropriate file
- TFTP server with the image file stored
Procedure
Note: In case of booting malfunction, follow USB Booting steps to load the firmware from a PC.
Stop autoboot in your 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-tinyrexultra-2.3.imx; sf probe 0:0;sf erase 0x0 0x80000;sf write 0x10800000 0x400 0x7fc00
The bootloader is written to Base Board SPI Flash after automatic download from the TFTP Server:
600px
Reset the board. iMX6 TinyRex Module will start booting from SPI Flash. The bootloader will start to download Image from the TFTP server by default:
600px
To change bootloader environment, stop autoboot:
600px