Boot Loader: Difference between revisions

From Linux/Xtensa
Jump to navigation Jump to search
No edit summary
No edit summary
Line 7: Line 7:
U-Boot is one of the most popular boot loaders for Linux. It has a very complete [http://www.denx.de/wiki/U-Boot Project Page] as well as an nice introduction available [http://www.linuxfordevices.com/c/a/Linux-For-Devices-Articles/Introduction-to-Das-UBoot-the-universal-open-source-bootloader/ here]. A very complete U-Boot manual is also available [http://www.denx.de/wiki/DULG/Manual here].
U-Boot is one of the most popular boot loaders for Linux. It has a very complete [http://www.denx.de/wiki/U-Boot Project Page] as well as an nice introduction available [http://www.linuxfordevices.com/c/a/Linux-For-Devices-Articles/Introduction-to-Das-UBoot-the-universal-open-source-bootloader/ here]. A very complete U-Boot manual is also available [http://www.denx.de/wiki/DULG/Manual here].


A development tree for supporting Xtensa in the latest version of U-Boot has been set up [http://git.linux-xtensa.org/cgi-bin/git.cgi?p=dev/u-boot.git;a=summary here]
A development tree for supporting Xtensa in the latest version of U-Boot has been set up [https://github.com/foss-xtensa/u-boot here]
 
An older port to the Xtensa architecture is also available for the LX60 and LX200 FPGA development boards in the git repository [http://git.linux-xtensa.org/cgi-bin/git.cgi?p=discont/u-boot-xtensa.git;a=summary here] with instructions for [[Setting up U-Boot]] for the LX60 or LX200 FPGA development boards.


== RedBoot ==
== RedBoot ==

Revision as of 22:30, 3 December 2013

Boot Loaders

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.

U-Boot (build instructions for Xtensa)

U-Boot is one of the most popular boot loaders for Linux. It has a very complete Project Page as well as an nice introduction available here. A very complete U-Boot manual is also available here.

A development tree for supporting Xtensa in the latest version of U-Boot has been set up here

RedBoot

Tensilica has also ported 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.

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.