Skip to content
Advertisement

How u-boot start instruction is found by ROM Code

I am trying to understand ARM Linux Boot Process.

These are the things I understood:

  • When reset button is pressed in any processor, it jumps to the reset vector or address, in case of ARM it is either 0x00 or 0xFFFF0000.
  • This location contains the start up code or ROM Code or Boot ROM Code

My query is how this Boot ROM Code gets the address of u-boot first instruction ?

Advertisement

Answer

It depends on the SoC, and the scheme used for booting will differ from one SoC to the other. It is usually documented in the SoC’s reference manual, and it does describe the various conventions (where to read u-boot from, specific addresses) the u-boot port specific to this SoC should follow in order to the code in ROM to be able to load u-boot, and ultimately transfer control to u-boot.

This code in the ROM could do something like:
– If pin x is 0, read 64KiB from first sector of the eMMC into the On Chip Static RAM, then transfer control to the code located at offset 256 of the OCRAM for example.
– If pin x is 1, configure the UART for 19200 bauds, 8 bits parity, no stop bits, attempt to read 64KiB from the serial port using the X-MODEM protocol into the OCRAM, then transfer control to the code located at offset 256 of the OCRAM.

This code, which is often named the Secondary Program Loader (SPL) would then be responsible for, say, configuring the SDRAM controller, then read the non-SPL part of u-boot into at the beginnning of the SDRAM, then jump to a specific address in the SDRAM. The SPL for a given SoC should be small enough to fit in the SoC On Chip RAM. The ROM code would be the Primary Boot Loader in this scenario.

In the case of the TI AM335x Cortex-A8 SoCs for example, section 26.1.6 of the Technical Reference Manual, and more specifically figure 26-10, explains the boot process. Some input pins may be used by the ROM code to direct the boot process – see SYSBOOT Configuration Pins in table 26-7. See The AM335x U-Boot User’s Guide for more u-boot specific, AM335x-related information.

User contributions licensed under: CC BY-SA
5 People found this is helpful
Advertisement