i.MX51 SODIMM PC Loading bootloader

From Voipac Wiki
Revision as of 22:44, 23 October 2021 by Voipac (talk | contribs)
Jump to navigation Jump to search

This page shows the steps how to initiate On-Chip Debugging and load bootloader into i.MX51 SODIMM PC - Development Kit.

JTAG Debugger and Programmer Installation

  • Connect JTAG Cable to USB port on a computer. JTAG device should be automatically recognized and prepared for usage.
  • Download OpenOCD v0.6.0 software
  • Unzip the files

JTAG cable with serial line.jpg

Running Open On-Chip Debugger

Locate the folder where the software was unpacked. Run OpenOCD utility in command line (by using Total Commander or Windows Command Prompt):

openocd.exe -f wmx51w.cfg

i.MX51 SODIMM PC-Development Kit-JTAG debugging.png

Debugging session is opened and running:
i.MX51 SODIMM PC-Development Kit-OpenOCD running.png

Connecting to Open On-Chip Debugger session

Using Windows Telnet Client

Click on Start/Run (or press Windows key + R), and open the Telnet session using 4444 port:

telnet localhost 4444

i.MX25 SODIMM Base Board-Telnet.png

Telnet session is active and ready for use:
i.MX25 SODIMM Base Board-Telnet ready.png

Using terminal emulator

To open Telnet service using TeraTerm program, click on File/New Connection, select TCP/IP option and type 4444 into TCP port# field. The IP address to connect to is localhost (127.0.0.1):
i.MX25 SODIMM Base Board-Telnet session.png

TeraTerm session is running and ready for use:
i.MX25 SODIMM Base Board-Telnet ready TeraTerm.png

Establishing serial connection

Open TeraTerm program, click on File/New Connection, choose Serial and select the port which was assigned to the serial console:
i.MX25 SODIMM Base Board-Serial connection.png

A successful connection is created only if the following serial port settings are applied (115200, 8n1):
i.MX25 SODIMM Base Board-Serial console settings.png

Boot mode options

H902 jumper (BOOTMODE) allows to choose different bootloader sources:

  • Direct Boot is enabled when a link is placed between pins 1 and 2
  • Serial boot (Internal boot) is selected when pins 2 and 3 are shortened.
i.MX51 SODIMM PC-Development Kit-Direct boot.jpg i.MX51 SODIMM PC-Development Kit-Serial boot.jpg
Direct Boot Serial Boot


Important: In a standard module configuration serial (internal) boot mode is active by default. This setting has a higher priority than boot mode jumper selection. No boot mode changes are needed during firmware loading.

Loading bootloader

The following commands need to be placed inside Localhost Telnet session and executed one by one. Console logs are included for comparison:

reset_halt

i.MX51 SODIMM PC-Development Kit-OpenOCD reset halt.png

step

i.MX51 SODIMM PC-Development Kit-OpenOCD step.png

resume

i.MX51 SODIMM PC-Development Kit-OpenOCD resume.png

vmx51_init

i.MX51 SODIMM PC-Development Kit-OpenOCD init.png

boot

i.MX51 SODIMM PC-Development Kit-OpenOCD boot.png

Barebox was loaded into the i.MX51 SODIMM PC Module SRAM and executed:
i.MX51 SODIMM PC-Development Kit-Bootloader loaded.png

Module's MAC address was entered (it can be found on the sticker placed on the module):
i.MX51 SODIMM PC-Development Kit-MAC address.png

As this fresh Barebox is stored in SRAM only at this point, switching the module off causes the bootloader to be erased. To store the new Barebox and use it automatically after power on, image flashing is required. Follow this section to do so.