Boot Loader

From Linux/Xtensa
Revision as of 01:19, 16 July 2008 by Marc (talk | contribs) (→‎RedBoot: Add link to page showing how to boot the kernel using RedBoot.)
Jump to navigation Jump to search

BootLoader

The bootstrap loader or boot loader is a small program running on a computer or device after power-on to load the operating system. Most boot loaders today provide additional features that allow to upgrade the firmware and access the system for troubleshooting.

RedBoot

Tensilica has done a port of RedBoot for the Xtensa architecture. A RedBoot binary targeting the XTAV60 (LX60) or XTAV200 (LX200) emulation board is usually provided after generating an FPGA bitstream for one of these boards. See the relevant board documentation from Tensilica for more details such as usage and supported features. For more information and to request sources, please contact Tensilica directly. For an example of how to boot the Linux kernel using RedBoot on the LX60 or LX200 boards, see RedBoot Example.

A source tarball for RedBoot with support for the Xtensa architecture is available here. For more details, see the tarball's README.txt file.

U-Boot

U-Boot is another popular boot loader. A preliminary port to the Xtensa architecture is now available. See U-Boot Sources (GIT Summary). Or, to access this tree using git directly, use something like:

git clone git://git.linux-xtensa.org/git/u-boot/u-boot-xtensa.git u-boot

(Note: This path is subject to change.)

Host-Side Loading via OCD

An alternative to boot loaders is an external (e.g. "host-side") loading mechanism.

One common way to load a Linux kernel is to use debugging interfaces such as On-Chip Debug (OCD). For example, Tensilica Tools GDB (xt-gdb) can connect to a target Xtensa processor using OCD via the Xtensa OCD Daemon. It can then load and execute a Linux RAM image (Image.elf or vmlinux) onto the target using standard GDB commands. See Download and Run the Kernel for an example.

Linux Kernel Self-Boot Image

It is possible to adapt the kernel build scripts for the Xtensa architecture to create a self-booting image. That is, a Linux kernel image that includes a Reset handler and can be either burned in ROM or Flash or downloaded to the target using another mechanism such as OCD. Note: This has not yet been implemented.