Instructions for building and booting Linux: Difference between revisions

From Linux/Xtensa
Jump to navigation Jump to search
m (add 'cores supported by linux')
(4 intermediate revisions by 2 users not shown)
Line 1: Line 1:
''Note that development for buildroot has moved to the mainline Buildroot repository at http://buildroot.net. Instructions for building a version of Buildroot based on the latest version can be found under [[Buildroot]]''
This page describes what parts are necessary in order to run GNU/Linux OS on Xtensa, their interaction and setup.


= GNU/Linux on Xtensa =


These instructions explain how to build a toolchain, root filesystem and kernel for Linux running on an Xtensa processor.  These instructions apply specifically to the XTAV60 (LX60) board.
GNU is a collection of free software that provides POSIX environment.
Linux is an operating system kernel.
In order to boot GNU/Linux OS on Xtensa the following parts are needed:


Some general notes on these instructions:
* a board with Xtensa core supported by Linux, or Xtensa simulator
* bootable Linux kernel image
* GNU software packaged in a form suitable for booting on Linux, the so called root file system
* a bootloader or on-chip debugger capable of loading Linux kernel image into the board RAM


*  They are a work in progress. If you are using the latest development sources, the build process may change, so you should be sure to get the latest version of this document at [http://wiki.linux-xtensa.org/index.php/Buildroot_Build_Instructions http://wiki.linux-xtensa.org/index.php/Buildroot_Build_Instructions]. If you are using one of the development snapshot releases, you should use the version of the build instructions included with that snapshot.
To build Linux image and root file system a toolchain correctly configured for used Xtensa core is needed. Toolchain configuration is performed by application of [[Toolchain_Overlay_File|Xtensa configuration overlay]]. Correct toolchain configuration is critical for building other pieces of software correctly.


*  The following was tested on x86 machines running RedHat Enterprise Linux 4 (RHEL4) and Fedora Core 3 (FC3).  It is expected to work on newer Fedora releases (e.g., was tested on FC6) but to maintain host compatibility with Xtensa Tools, it is best to avoid Fedora releases beyond FC5.  Other host distributions likely work but have not been tested.
== Xtensa cores supported by Linux ==
**  '''NOTE:''' this assumes the default selection of packages in buildroot.  Selecting extra packages may require a more recent host OS or more recent version of certain tools.  For example, the default version of <tt>find</tt> on RHEL4 is too old to allow building all X11 packages in buildroot, so it is necessary to upgrade the host version of <tt>findutils</tt> on RHEL4 to build these packages.


*  Lines prefixed with "sudo" need to be executed as root. The rest is best executed as a non-root user. (It is possible to install <tt>git</tt> as a non-root user if root access is an issue. How to do this isn't shown here.)
Official requirements for Xtensa core to run Linux are listed in the Xtensa OSKit Guide document.
The absolute minimum set of options required to run Linux is full MMU, debug option, windowed registers, one level-1 or medium level timer interrupt.
* See [[uClinux]] for experimental support of Xtensa cores without full MMU.
* Thread pointer option and conditional store option are required for running userspace with NPTL or TLS.


*  Lines that set environment variables assume a Bourne compatible shell (e.g., /bin/sh or bash), but are easily adapted to other shells.
== Xtensa boards supported by Linux ==


*  Instructions are assumed executed all in order (e.g., commands assume current directory and environment variables set earlier).
The following boards collectively referred as XTFPGA family are readily supported by Linux: Avnet LX60, LX110, LX200; Xilinx ML605, KC705. For board details/setup guide please see corresponding Board Guide or Board Prototyping Guide provided with Xtensa software release.


== Xtensa simulators ==


* Xtensa software provides Instruction Set Simulator (xt-run) capable of running Linux configured for ISS.
* QEMU is a free system emulator capable of emulating any XTFPGA board or ISS. It can be configured to emulate any Xtensa core, but it does not currently support TIE extensions to the core architecture. Please see [[Xtensa_on_QEMU|this]] page for more details.


== Setup your host system ==
== Linux kernel ==


If you are using one of the snapshot releases, you can skip this step.
Linux kernel needs to be configured for the specific Xtensa core. For that reason Linux is usually configured and built separately from the userspace software. Please see [[Linux_Kernel|this]] page for more details.


If you want to work with the latest development sources, you will need
== Root file system ==
[[Installing GIT|<tt>git</tt> installed on your system]].


== Download buildroot and Linux kernel sources ==
Currently we support building GNU software and packaging it into root file system with the [[Buildroot]].
There are several types of root file system that Linux can boot with:


The following section describes how to download stable versions
=== CPIO archive ===
of buildroot, and of the Linux kernel, for Xtensa cores.
* CPIO archive may be built into the kernel (so called 'built-in initramfs'), the resulting single image will contain both Linux and GNU software. It's easy to boot, but in order to change anything the kernel needs to be rebuilt.
* CPIO archive may also be loaded separately from the kernel, but used in the same way as the built-in initramfs. It's harder to boot (two files instead of one), but easier to change.


First, create an empty directory <tt><workdir></tt> on a disk with
Both cases of CPIO use RAM for the root file system, so they're very fast. The downsides are that they take some time at startup to unpack, reserve some RAM (which may be an issue on low-memory boards like LX60) and are not persistent.
at least 4 GB available space.  After the download operations below,
you'll end up with the following file structure,
which is assumed by the rest of this document:


  <workdir>/
=== EXT2/3/4 file system image ===
            /buildroot
EXT2/3/4 file system image may be used directly with ISS or QEMU through the Simulated block device Linux feature. Please see [[Linux_Kernel#ISS_platform|this]] chapter for more details.
            /linux


First download the buildroot sources.
=== TAR image ===
The current stable source repository and branch have strange names,
Tar image may be unpacked into a directory shared through NFS. Linux on XTFPGA boards and on QEMU can be configured to use NFS root file system.
bear with me, they're the correct ones to use.
'''Note:'''  If you happen to have write access to the repository, use <tt>'''git+ssh:'''</tt> instead of '''<tt>git:</tt>''' in the clone command below,
so that you can later easily push changes back to the repository.
For more details, see the [http://wiki.linux-xtensa.org/index.php/Repository_Access repository access] page.


Download buildroot as follows:
=== UBIFS image ===
UBIFS image may be written directly to the daughterboard FLASH on XTFPGA boards. Please see [[Linux_Kernel#Rootfs_in_FLASH_.28UBIFS.29|this]] chapter for more details.


  '''$ cd <workdir>'''
== Bootloader ==
  '''$ git clone git://git.linux-xtensa.org/git/buildroot/buildroot-xtensa-HiFi2-Snapshot.git buildroot'''
U-Boot can be used as a bootloader on XTFPGA boards. Please see [[Setting_up_U-Boot|this]] page for more details about installing it into the daughterboard FLASH.
  '''$ cd buildroot'''
  '''$ git checkout -b snapshot_2+SMP origin/snapshot_2+SMP'''


then the Linux kernel sources:
== On-chip debugger ==
On-chip debugger is good for debugging lowest level software: bootloader and Linux kernel itself. It also allows loading executable images into new board with empty FLASH.
It consists of JTAG probe connected to the XTFPGA daughterboard (ML605 and KC705 daughterboards also have built-in JTAG chip), OCD monitor (xt-ocd) running on developer machine where the other end of JTAG probe is connected, and xt-gdb, the modified version of GNU debugger from the Xtensa software release. Please see Tensilica Debug User's Guide for more information about OCD setup and configuration.


  '''$ cd <workdir>'''
= Building GNU/Linux OS =
  '''$ git clone git://git.linux-xtensa.org/git/kernel/xtensa-2.6.29-smp.git linux'''
In order to follow these instruction a build machine with GNU/Linux and a set of development tools (native binutils and gcc, make, wget, tar, ...) is needed. In the following example all software will be downloaded and built in the current directory. Xtensa tools used in the examples are installed into $XT_ROOT, tools release is $XT_RELEASE and selected core is $XT_CORE.
   
Note how in the first case (buildroot), we use a non default branch,
so the last two commands setup tracking for that remote branch and
does a check-out of that branch in the working tree.
In the second case (linux), we use the default branch (<i>master</i> branch)
which gets checked out by default.


Major development updates to buildroot for Xtensa are expected to happen
== Prepare the overlay ==
in the following repository, mostly in the master branch.
Please see [[Toolchain_Overlay_File|this]] page for overlay repacking script and details of the overlay source location.
However, although it has some more recent packages, this repository is often
Create conversion script by pasting [[Toolchain_Overlay_File#Conversion_Script|this]] into the file overlay-script and making it executable:
in a state of development and not quite as stable as the above.
  $ '''cat > overlay-script'''
So, '''DON'T DO THIS STEP''' unless you know what you are doing, and want to
  '''....'''
experiment with this version of buildroot instead of the above.
  ^D
  $ '''chmod +x overlay-script'''


  '''$ cd <workdir>'''
Run it and rename the resulting file:
  '''$ git clone git://git.linux-xtensa.org/git/buildroot/buildroot-xtensa.git buildroot'''
  $ '''./overlay-script ${XT_ROOT}/XtDevTools/install/builds/${XT_RELEASE}-linux/${XT_CORE}/src/xtensa-config-overlay.tar.gz'''
  $ '''mv xtensa-overlay.tar xtensa_${XT_CORE}.tar'''


== Install any required processor specific overlay ==
== Get, configure and build the toolchain and root file system ==
Get the buildroot git tree:
  $ '''git clone git://git.buildroot.net/buildroot'''


This step is required if you are targeting a custom Xtensa processor.
Check out some released version:
If you use a Diamond 232L Standard Core, you can skip this step.
  $ '''git checkout 2014.11'''


To configure buildroot and the kernel to use a custom Xtensa processor
Create build directory and configure it:
configuration, you need to overlay a set of files customized for your
  $ '''mkdir buildroot-build'''
processor configuration onto toolchain sources (gcc, binutils, gdb, etc)
  $ '''make -C buildroot O=$(pwd)/buildroot-build menuconfig'''
and the Linux kernel.  This process has been automated using a script
located in the buildroot source tree.
For usage information, you can invoke it without arguments:


  '''$ cd <workdir>'''
Please see [[Buildroot#Configuring_and_building_Buildroot|this]] chapter for more details about configuring the Buildroot.
  '''$ ./buildroot/target/xtensa/xt-buildroot-overlay-install'''


which displays a help message similar to the following:
Select 'Target Architecture' = Xtensa, 'Target Architecture Variant' = Custom Xtensa processor configuration, set 'Custom Xtensa processor configuration name' to the contents of ${XT_CORE}, set 'Overlay directory for custom configuration' = $(TOPDIR)/..


xt-buildroot-overlay-install version 1.3
Select toolchain options, packages to be built and final root file system image type.
Usage:  xt-buildroot-overlay-install <parameters> [<options>]
Where <parameters> are:
  -t file.tgz    Specify path to the Xtensa Linux overlay tarball, typically
                  <xtensa_root>/src/xtensa-config-overlay.tar.gz
  -b dir          Path to the base of the buildroot source tree, in which
                  package specific overlay tarballs get installed.
  -k dir          Path to the base of the Linux kernel source tree, in which
                  the Linux kernel specific overlay gets installed.
  -c config_name  Name for the Xtensa processor configuration as it will be
                  known to the open source community.  Must be a lowercase
                  identifier, starting with a letter, consisting of letters
                  and numbers and underscores, not ending with underscore
                  and not containing consecutive underscores.  For examples:
                      dc232b , dc232b_be , mmubasele , fsf , s5000 .
  -l long_name    Long name for the Xtensa processor configuration, human-
                  readable with spaces etc allowed (must be quoted).
                  For example:  'Diamond 232L Standard Core Rev.B (LE)'
                  Try to keep it within approximately 40 characters.
And <options> are:
  -f              If package specific overlay tarballs already exist in
                  the destination source tree, overwrite them without asking.
  --help          Show this usage message.


Note that the Xtensa Linux overlay tarball MUST be obtained from an Xtensa
Build the toolchain and the root file system:
core package built using release RB-2008.3 or later.
  $ '''make -C buildroot O=$(pwd)/buildroot-build'''


Here is an example invocation of the overlay installation script:
== Get, configure and build the Linux kernel ==
Get stable Linux release tree:
  $ '''wget https://www.kernel.org/pub/linux/kernel/v3.x/linux-3.19.1.tar.xz'''
  $ '''tar -xf linux-3.19.1.tar.xz'''


  '''$ ./buildroot/target/xtensa/xt-buildroot-overlay-install -t blinkcore-config-overlay.tar.gz''' \
Create variant directory for the specific core and copy core configuration files there:
        '''-b ./buildroot -k ./linux -c superzip -l "ChipCorp SuperZIP Blink Accelerator Core"'''
  $ '''mkdir -p linux-3.19.1/arch/xtensa/variants/${XT_CORE}/include/variant'''
  $ '''cp ${XT_ROOT}/XtDevTools/install/builds/${XT_RELEASE}-linux/${XT_CORE}/config/*.h linux-3.19.1/arch/xtensa/variants/${XT_CORE}/include/variant'''


The script extracts some relevant information from the overlay tarball,
Create build directory and configure it:
presents it along with relevant parameters to the user, and prompts
  $ '''mkdir linux-build'''
for confirmation before proceeding.
  $ '''ARCH=xtensa CROSS_COMPILE=$(pwd)/buildroot-build/host/usr/bin/xtensa-buildroot-linux-uclibc- make -C linux-3.19.1 O=$(pwd)/linux-build menuconfig'''


The chosen processor name (-c option) must be unique among known Xtensa processors.
Select 'Xtensa Processor Configuration' = Custom Xtensa processor configuration, set 'Xtensa Processor Custom Core Variant Name' to the contents of ${XT_CORE}. Select desired 'Xtensa System Type'.
It is also probably wise to avoid names confusingly similar to other (non-Xtensa) processors.
If you expect at some point to contribute support for your custom processor to the
open-source community, this name will likely be long-lived.
(One way to contribute support for a custom processor might be to submit the overlay tarball
or files to the linux-xtensa.org maintainers.)


In the steps below, buildroot and the Linux kernel must be configured
Please see [[Linux_Kernel#Configuring_the_kernel|this]] chapter for more details about configuring Linux.
(in their respective <code>''make menuconfig''</code> steps) to select
the <code>''custom''</code> Xtensa processor option.
This presents an extra configuration menu entry where you must provide
the name of the Xtensa processor.  Set it to the same name
as was specified in the <code>-c</code> option above.


== Build a toolchain and root filesystem using buildroot ==
Build the kernel:
  $ '''ARCH=xtensa CROSS_COMPILE=$(pwd)/buildroot-build/host/usr/bin/xtensa-buildroot-linux-uclibc- make -C linux-3.19.1 O=$(pwd)/linux-build all'''


'''Note:'''  for more details on generic buildroot topics not covered in this simple how-to,
= Booting GNU/Linux =
see [http://buildroot.uclibc.org/ buildroot.uclibc.org].
TBD
 
=== Configure buildroot ===
 
The first time you configure buildroot, start with defaults for your Xtensa processor:
 
  '''$ cd <workdir>/buildroot'''
  '''$ ./target/xtensa/setup-config <i><corename></i>'''
 
where ''<corename>'' is the overlay name of your selected Xtensa or Diamond core
(e.g., '''dc233c''').  If you omit ''<corename>'', a help message and a list
of currently installed Tensilica core overlays is displayed.
 
Optionally, you can then customize your buildroot configuration, such as
selecting additional packages, setting various parameters, and so on.
The following make targets provide a ''curses'' (text-based graphical) interface
for configuring buildroot, the uClibc C library, and busybox, respectively.
('''Note:'''  You need the <tt>TERM</tt> environment variable properly set for
these curses based tools to work.)
 
  '''$ make menuconfig'''
  '''$ make uclibc-menuconfig'''
  '''$ make busybox-menuconfig'''
 
=== Build buildroot ===
 
Just type:
 
  '''$ make'''
 
THIS WILL TAKE A LONG TIME (from about 30 minutes with defaults on a 3 GHz Pentium 4,
to perhaps an hour or many depending on your system and on whether
you enabled extra packages in your buildroot configuration).
 
Wait patiently for the build to complete.  This builds an entire toolchain
as well as some basic packages, and constructs a root filesystem.
It might build many more packages if you selected them earlier with menuconfig.
 
==== If Something Goes Wrong ====
 
Perhaps you missed some step above and the build fails.  Or you're just switching to a different processor configuration, or making some change with unknown dependencies.  Either way, you'll probably need to fix the error and/or make the change, and redo the whole build.  The above <tt>make</tt> command usually works fine if you
just added a package using menuconfig, but otherwise does not check many dependencies, so it will usually NOT rebuild things that depend on whatever you have fixed or changed.  Here's one way to retry the make from scratch without having to wipe out the <tt>buildroot</tt> directory tree completely and start again from the git cloning.
 
  $ '''rm -rf *build_xtensa* binaries'''
  $ '''make'''
 
It is not necessary to empty the 'dl' subdirectory, which contains tarballs downloaded from the Internet, nor the .config file, which contains the buildroot configuration.  Customizations to the uClibc and <tt>busybox</tt> configurations should have ended up getting saved in target/xtensa/uClibc.config and target/xtensa/busybox-config, respectively, so hopefully are preserved by the above sequence.
 
== Build and Run a Linux Kernel on the XTAV60, AXAV110, or XTAV200 Boards ==
 
References to the ''XTAV60 board'' refer to the combination of
the Avnet [http://www.em.avnet.com/tensilica1 LX60 (Xilinx) Development Board]
and a Tensilica-provided FPGA bitstream containing a configured Tensilica
processor and basic peripheral IP.  For more details, please refer to the
''Tensilica Avnet LX60 (XT-AV60) Board User's Guide''.
 
Similarly, references to the ''XTAV200 board'' refers the combination of
the Avnet [http://www.em.avnet.com/tensilica2 LX200 (Xilinx) Development Board]
and a Tensilica-provided FPGA bitstream containing a configured Tensilica
processor and basic peripheral IP.  For more details, please refer to the
''Tensilica Avnet LX200 (XT-AV200) Board User's Guide''.
 
 
=== Configure the kernel ===
 
The kernel build is a two-step process:  configure the kernel, and build it.
First, before we can do anything with the kernel, set your PATH to
point to the toolchain built using buildroot.
 
  $ '''export PATH="''<workdir>''/buildroot/build_xtensa_''<cname>''/staging_dir/usr/bin:$PATH"'''
 
where ''<cname>'' is the name of the Xtensa processor configuration you selected
when building the toolchain (e.g., <code>dc232b</code>).
 
Now setup a destination for kernel builds.
We usually like to have the build directory separate from
the source directory, so we use 'O=</destination/path>' in
kernel make commands.  If you'll be routinely building multiple
configurations of the Linux kernel, it's good to have some
naming conventions for the build directory.  For example,
to experiment with multiple target platforms but only one
processor configuration, we include just the platform name here:
 
  $'''mkdir build-xtav60'''
 
Let's start with the default kernel configuration for the Avnet board
(which works on both XTAV60 (LX60), XTAV110 (LX110), and XTAV200 (LX200) boards)
as follows:
 
  $ '''cd linux'''
  $ '''make O=../build-xtav60 ARCH=xtensa KBUILD_DEFCONFIG=lx60_defconfig defconfig'''
 
This configures the kernel using the default configuration found in
'''arch/xtensa/configs/lx60_defconfig'''.
 
'''NOTE:'''  This kernel configuration has nothing to do with Xtensa
processor configuration.  That comes next.
 
Let's now customize this a little bit to select the correct Xtensa processor
configuration, and to bundle the root filesystem into the kernel:
 
  $ '''make O=../build-xtav60 ARCH=xtensa menuconfig'''
 
Under '''General setup''',
make sure the '''Initial RAM filesystem and RAM disk (initramfs/initrd) support'''
entry is enabled.  Underneath that, edit '''Initramfs source file(s)''',
and enter the path to the cpio formatted root filesystem
generated by buildroot:
 
      ''<workdir>''/buildroot/binaries/uclibc/rootfs.xtensa_''<cname>''.cpio.gz
 
(Don't forget to replace ''<workdir>'' with the appropriate full path
and ''<cname>'' with your Xtensa processor configuration name.)
 
Under '''Processor type and features''',
make sure the '''Xtensa Processor Configuration''' is correct and matches
the processor configuration name you used to build the toolchain with buildroot
(for example, ''dc232b'' for Diamond 232L Rev.B).
The kernel build selects a toolchain and processor variant specific headers
based on this selection.
If the desired processor configuration does not appear explicitly in the list,
simply select '''Custom Xtensa processor configuration''' and enter the
processor configuration name (all lowercase) into the next menu parameter,
'''Xtensa Processor Custom Variant Name'''.
 
Back in the main menu, under '''Platform options''', make sure the
'''CPU clock rate''' entry is set correctly according to the following table:
 
{| border="1" style="text-align:center; margin: 1em auto 1em auto"
|-
! Board !! Frequency selected in XPG <br/>(MHz) !! ''CPU clock rate'' setting <br/>(kHz)
|-
|rowspan="3"| XTAV60  (LX60)
|  30  || 33333
|-
|  40  || 40000
|-
|  50  || 50000
|-
|rowspan="3"| XTAV110 (LX110)
|  30  || 33333
|-
|  40  || 40000
|-
|  50  || 50000
|-
|rowspan="3"| XTAV200 (LX200)
|  30  || 31250
|-
|  40  || 41667
|-
|  50  || 50000
|-
|}
 
Exit menuconfig, saving your configuration changes.
 
Backup your configuration outside the build directory.  For example:
 
  $ '''cp ../build-xtav60/.config config.xtav60.saved'''
 
If you do a clean rebuild of the kernel (e.g., "rm -rf ../build-xtav60")
you can now configure it with simply:
  $ '''mkdir ../build-xtav60 ; cp config.xtav60.saved ../build-xtav60/.config'''
Of course if you update the kernel, you'll probably again have to do:
  $ '''make O=../build-xtav60 ARCH=xtensa  menuconfig'''
and save a new copy of your configuration.
 
=== Build the kernel ===
 
  $ '''make O=../build-xtav60 ARCH=xtensa'''
 
The build will issue a few warnings which are normal.
Once complete, the bootable image is in:
      <workdir>/build-xtav60/arch/xtensa/boot/Image.elf
and the uncompressed ELF file containing kernel symbols is in:
      <workdir>/build-xtav60/vmlinux
There is also a RedBoot bootable image (if you use RedBoot) in:
      <workdir>/build-xtav60/arch/xtensa/boot/zImage.redboot
 
=== Install Xtensa Tools for the selected core ===
 
If you opt to download the kernel over OCD, you need <tt>xt-gdb</tt>
which is part of Tensilica's Xtensa Tools package.  This must be obtained
from Tensilica, and is not the same toolchain as built by buildroot.
You also need to install the corresponding Tensilica core package,
so that the Xtensa Tools know about your particular configured
Tensilica core.
 
The toolchain built using buildroot can be configured to
include GDB, but that version of GDB does not support
communicating with Tensilica's Xtensa OCD Daemon, and
thus cannot be used to download the kernel over OCD.
 
In this example, it is assumed that the machine hosting the
Xtensa Tools has access to the <workdir> directory tree.
 
=== Install and setup the Xtensa OCD Daemon ===
 
Setup and connect your JTAG probe, etc.
 
=== Connect a terminal server ===
 
At 38400 bps 8N1 no flow control to the XTAV60 serial port.
 
=== Optionally, setup networking ===
 
This step is optional.
 
Setup the board's MAC address using dipswitches
(see XTAV60 or XTAV200 board docs as appropriate)
and connect the board to a network that has a
DHCP server that will respond to that MAC address.
If you don't do this step, you'll simply not have network
access, and the boot process will take a minute or so longer
while the kernel times out waiting for a BOOTP response.
You can edit the kernel configuration and rebuild the kernel
to avoid using bootp (in particular, remove "ip=bootp" from
the kernel cmdline).
 
=== Download and run the kernel ===
 
Reset the board (see board documentation).
 
Using Xtensa Tools, invoke:
 
  $ '''xt-gdb <workdir>/build-xtav60/arch/xtensa/boot/Image.elf'''
 
  '''(xt-gdb) target remote <ocdhost>:20000 0'''
  '''(xt-gdb) reset'''
  '''(xt-gdb) load'''
  '''(xt-gdb) set $pc = &_ResetVector'''
  '''(xt-gdb) symbol-file <workdir>/build-xtav60/vmlinux'''
  '''(xt-gdb) c'''
 
where <ocdhost> is the IP address or DNS name of the machine
running the Xtensa OCD daemon.  The Linux kernel should
start booting as soon as 'c' (continue) is executed.
 
You should eventually get a login prompt.
Just login as root (no password).
 
Try various Linux commands.  Look at <tt>/bin</tt>,
<tt>/sbin</tt>, <tt>/usr/bin</tt>, etc to see what's available.
 
'''Note:'''  no need to setup an NFS or TFTP server.  The filesystem
is contained within the kernel image.  You may be able to mount
other filesystems over NFS though, if you wish, after booting.
 
Recently the MMU was modified to come up uninitialized and it's
necessary for the Linux kernel to map the MMU prior to running.
This means you can't place breakpoints in the kernel until the
mapping has been completed. It's likely worth while looking
at the example .xt-gdbinit file in the Kernel Xtensa Documentation:
 
    xtensa-2.6.29-smp-xcc-O3/Documentation/xtensa/gdbmacros/xt-gdbinit
 
When running on Avnet boards it's necessary to use a HardWare Breakpoint
at the kernel symbol '''set_breakpoints''' which is near ''' _startup'''
and set your early kernel breakpoints once you get to this hardware breakpoint.
 
With ISS simulation normal breakpoints must be used.
 
Below is an example snippet from the sample '''xt-gdbinit''' script:
 
    if $debug_hw_breakpoints_supported
      hbreak set_breakpoints
    else
      break set_breakpoints
    end
    set var $_startup = $bpnum
    commands $_startup
        set_breakpoints
        delete $_startup
        info breakpoints
        set var $doing_commands = 0
    end
 
=== Mounting the Root Filesystem Over NFS ===
 
If you build more than the minimal set of packages using
buildroot, the root filesystem can easily grow too large to
fit comfortably (or at all) inside the kernel.  In this case,
rather than follow the instructions exactly as above,
you'll want to mount the root filesystem over NFS.
 
You may also want to mount the root filesystem over NFS to
make changes to the filesystem persistent across runs and
accessible from your development host.
 
First you need to install the root filesystem generated
using buildroot, to a machine that can serve it over NFS.
Assuming this machine runs Linux, one way to install it is
as follows:
 
$ '''mkdir ''<exportpath>'' '''
$ '''cd ''<exportpath>'' '''
$ '''sudo cpio -i -d -m -F ''<workdir>''/buildroot/binaries/uclibc/rootfs.xtensa_''<cname>''.cpio --no-absolute-filenames '''
 
You then need to enable the NFS server on your system
(if not already active), and export this filesystem.
How you do this depends on your host Linux distribution.
For example, on some Fedora releases, one might:
 
* add the export path to <tt>/etc/exports</tt> using a line such as
 
''<exportpath>''  *(rw,sync,no_root_squash,no_all_squash,no_wdelay)
 
* turn on the NFS server if needed:
 
$ '''sudo /sbin/chkconfig nfs on'''
 
* tell the NFS server about the new exported filesystem
 
$ '''sudo /usr/sbin/exportfs -a'''
$ '''sudo /usr/sbin/exportfs -r'''
 
 
 
Second, follow the instructions in the previous sections,
then configure the kernel again as follows.
 
Under '''General setup''', make sure the
'''Initial RAM filesystem and RAM disk (initramfs/initrd) support'''
entry is disabled (rather than enabled as done in previous sections).
 
Under '''Platform options''', under the line '''Default bootloader kernel arguments''',
select the boot parameters line and set it to something like this:
 
'''console=ttyS0,38400 ip=dhcp root=/dev/nfs rw nfsroot=''<server_ip>'':''<exportpath>'' '''
 
where ''<server_ip>'' is the IP address of your NFS server, and ''<exportpath>''
is the exported filesystem path.
 
Another approach is to just specify the ip addresses directly in the CMDLINE
  '''CONFIG_CMDLINE="console=ttyS0,38400 ip=192.168.11.95:192.168.11.220:192.168.11.1:255.255.255.0:HiFi-2 root=/dev/nfs rw nfsroot=192.168.11.55:/exports/LINUX_ROOT.DC_C_233L debug coredump_filter=0xff" '''
 
Where the IP addresses are in the form:
 
    '''${ipaddr}:${nfsroot_server}:${gatewayip}:${netmask}:${hostname}'''
 
Save this configuration, rebuild the kernel, and follow the
instructions in previous sections to download and run the kernel.
If everything goes well and is setup correctly, your kernel should
now boot with a root filesystem mounted over NFS.
 
== Build and Run a Linux Kernel on the Instruction Set Simulator (ISS) ==
 
You can build and run a Linux kernel in the Xtensa Instruction Set
Simulator (ISS).  The following instructions have only been tried
with an ISS from the RB-2008.3 release of Xtensa Tools.  Bear in
mind that the XTAV60 port is likely much more stable than the ISS port
of Linux at this point in time.
 
Note:  Depending on your host OS version, you may need to install
Xtensa Tools on a separate machine.
 
=== Configure and Build the Kernel for ISS ===
 
Repeat all the same instructions as above for building the kernel for an
Avnet board, except that when initially configuring the kernel,
start from a ISS platform template instead. For example for the
DC233C Variant:
 
  '''$ mkdir build-iss'''
  '''$ cd linux'''
  '''$ make O=../build-iss ARCH=xtensa KBUILD_DEFCONFIG=iss_dc233c_defconfig defconfig'''
 
The above make example configures the kernel using the default configuration found in
'''arch/xtensa/configs/iss_dc233_defconfig'''. Most important to note is that the
root file system mounted when Linux boots comes via the targets device '''/dev/simdisk0'''
which is defined in the kernel '''.config''' file. For example:
 
        '''CONFIG_SIMDISK0_FILENAME="/export2/DC_C_233L/LINUX_ROOT.ext2"'''
 
The SIMDISK file name and VARIANT name are typically configured when running '''make menuconfig'''; Ex:
 
  '''$ make O=../build-iss ARCH=xtensa menuconfig'''
 
and selecting
 
    '''Xtensa Platform options''' --->  '''Host filename for a simulated device'''
 
and entering the pathname to the .ext2 file there. Ex: '''/export2/DC_C_233L/LINUX_ROOT.ext2'''
 
 
You often want to change the VARIANT to the one you desire, Ex: FSF. You do this via
the top level menu:
 
    '''Xtensa Processor type and features --->  Xtensa Processor Custom Core Variant Name'''
 
 
With the new SIMDISK approach you copy the EXT2 Filesystem file generated by Buildroot
to a location to be accessed by Xtensa Linux. Ex:
 
    '''$ cp /export2/DC_C_233L/src/buildroot-xtensa-HiFi2-Snapshot/binaries/dc233c/rootfs.xtensa_dc233c.ext2 /export2/DC_C_233L/LINUX_ROOT.ext2'''
 
'''NOTE:''' There is an old '''iss_defconfig''' that tries to use a '''tuntap''' Ethernet
interface that currently isn't supported.
Previously with this old iss_defconfig using the '''tuntap''' Ethernet interface
it was suggested to set up the initramfs filesystem, and do the following.
Under '''Bus Options''', deselect '''PCI support'''.
Under '''Platform Options''', deselect '''Default bootloader kernel arguments'''.
Hopefully we will someday be able to support the use of a network interface with
ISS simulation and then be able to mount NFS root partitions again. So I'm leaving
this note for future exploration of this mechanism; Hope you don't mind the clutter.
 
 
Continue configuring and building the kernel as usual.
 
===  Run the Kernel on ISS ===
 
Using Xtensa Tools, invoke:
 
  '''$ xt-gdb <workdir>/build-iss/arch/xtensa/boot/Image.elf'''
  '''(xt-gdb) target sim --turbo --memlimit=128'''
  '''(xt-gdb) symbol-file <workdir>/build-iss/vmlinux'''
  '''(xt-gdb) run'''
 
Wait patiently while Linux boots ... (maybe a minute). The setting of the '''memlimit'''
needs to match the PLATFORM_DEFAULT_MEM_SIZE defined in /arch/xtensa/platforms/iss/include/platform/hardware.h.
Currently this limit us 128 MegaBytes:
 
    #define PLATFORM_DEFAULT_MEM_SIZE      0x08000000      /* 13,4217,728 128M */
 
and we will be extending this for the DC233L to take advantage of it's V3 MMU. 
 
Login as root (no password).
 
'''Note:'''  Input via ISS is cooked, so everything typed gets echoed.
Also, time as reported by the kernel does not progress
according to true wall-clock time:  it currently depends on
a simulated processor clock, which advances at various speeds
according to load.

Revision as of 03:17, 6 October 2015

This page describes what parts are necessary in order to run GNU/Linux OS on Xtensa, their interaction and setup.

GNU/Linux on Xtensa

GNU is a collection of free software that provides POSIX environment. Linux is an operating system kernel. In order to boot GNU/Linux OS on Xtensa the following parts are needed:

  • a board with Xtensa core supported by Linux, or Xtensa simulator
  • bootable Linux kernel image
  • GNU software packaged in a form suitable for booting on Linux, the so called root file system
  • a bootloader or on-chip debugger capable of loading Linux kernel image into the board RAM

To build Linux image and root file system a toolchain correctly configured for used Xtensa core is needed. Toolchain configuration is performed by application of Xtensa configuration overlay. Correct toolchain configuration is critical for building other pieces of software correctly.

Xtensa cores supported by Linux

Official requirements for Xtensa core to run Linux are listed in the Xtensa OSKit Guide document. The absolute minimum set of options required to run Linux is full MMU, debug option, windowed registers, one level-1 or medium level timer interrupt.

  • See uClinux for experimental support of Xtensa cores without full MMU.
  • Thread pointer option and conditional store option are required for running userspace with NPTL or TLS.

Xtensa boards supported by Linux

The following boards collectively referred as XTFPGA family are readily supported by Linux: Avnet LX60, LX110, LX200; Xilinx ML605, KC705. For board details/setup guide please see corresponding Board Guide or Board Prototyping Guide provided with Xtensa software release.

Xtensa simulators

  • Xtensa software provides Instruction Set Simulator (xt-run) capable of running Linux configured for ISS.
  • QEMU is a free system emulator capable of emulating any XTFPGA board or ISS. It can be configured to emulate any Xtensa core, but it does not currently support TIE extensions to the core architecture. Please see this page for more details.

Linux kernel

Linux kernel needs to be configured for the specific Xtensa core. For that reason Linux is usually configured and built separately from the userspace software. Please see this page for more details.

Root file system

Currently we support building GNU software and packaging it into root file system with the Buildroot. There are several types of root file system that Linux can boot with:

CPIO archive

  • CPIO archive may be built into the kernel (so called 'built-in initramfs'), the resulting single image will contain both Linux and GNU software. It's easy to boot, but in order to change anything the kernel needs to be rebuilt.
  • CPIO archive may also be loaded separately from the kernel, but used in the same way as the built-in initramfs. It's harder to boot (two files instead of one), but easier to change.

Both cases of CPIO use RAM for the root file system, so they're very fast. The downsides are that they take some time at startup to unpack, reserve some RAM (which may be an issue on low-memory boards like LX60) and are not persistent.

EXT2/3/4 file system image

EXT2/3/4 file system image may be used directly with ISS or QEMU through the Simulated block device Linux feature. Please see this chapter for more details.

TAR image

Tar image may be unpacked into a directory shared through NFS. Linux on XTFPGA boards and on QEMU can be configured to use NFS root file system.

UBIFS image

UBIFS image may be written directly to the daughterboard FLASH on XTFPGA boards. Please see this chapter for more details.

Bootloader

U-Boot can be used as a bootloader on XTFPGA boards. Please see this page for more details about installing it into the daughterboard FLASH.

On-chip debugger

On-chip debugger is good for debugging lowest level software: bootloader and Linux kernel itself. It also allows loading executable images into new board with empty FLASH. It consists of JTAG probe connected to the XTFPGA daughterboard (ML605 and KC705 daughterboards also have built-in JTAG chip), OCD monitor (xt-ocd) running on developer machine where the other end of JTAG probe is connected, and xt-gdb, the modified version of GNU debugger from the Xtensa software release. Please see Tensilica Debug User's Guide for more information about OCD setup and configuration.

Building GNU/Linux OS

In order to follow these instruction a build machine with GNU/Linux and a set of development tools (native binutils and gcc, make, wget, tar, ...) is needed. In the following example all software will be downloaded and built in the current directory. Xtensa tools used in the examples are installed into $XT_ROOT, tools release is $XT_RELEASE and selected core is $XT_CORE.

Prepare the overlay

Please see this page for overlay repacking script and details of the overlay source location. Create conversion script by pasting this into the file overlay-script and making it executable:

 $ cat > overlay-script
 ....
 ^D
 $ chmod +x overlay-script

Run it and rename the resulting file:

 $ ./overlay-script ${XT_ROOT}/XtDevTools/install/builds/${XT_RELEASE}-linux/${XT_CORE}/src/xtensa-config-overlay.tar.gz
 $ mv xtensa-overlay.tar xtensa_${XT_CORE}.tar

Get, configure and build the toolchain and root file system

Get the buildroot git tree:

 $ git clone git://git.buildroot.net/buildroot

Check out some released version:

 $ git checkout 2014.11

Create build directory and configure it:

 $ mkdir buildroot-build
 $ make -C buildroot O=$(pwd)/buildroot-build menuconfig

Please see this chapter for more details about configuring the Buildroot.

Select 'Target Architecture' = Xtensa, 'Target Architecture Variant' = Custom Xtensa processor configuration, set 'Custom Xtensa processor configuration name' to the contents of ${XT_CORE}, set 'Overlay directory for custom configuration' = $(TOPDIR)/..

Select toolchain options, packages to be built and final root file system image type.

Build the toolchain and the root file system:

 $ make -C buildroot O=$(pwd)/buildroot-build

Get, configure and build the Linux kernel

Get stable Linux release tree:

 $ wget https://www.kernel.org/pub/linux/kernel/v3.x/linux-3.19.1.tar.xz
 $ tar -xf linux-3.19.1.tar.xz

Create variant directory for the specific core and copy core configuration files there:

 $ mkdir -p linux-3.19.1/arch/xtensa/variants/${XT_CORE}/include/variant
 $ cp ${XT_ROOT}/XtDevTools/install/builds/${XT_RELEASE}-linux/${XT_CORE}/config/*.h linux-3.19.1/arch/xtensa/variants/${XT_CORE}/include/variant

Create build directory and configure it:

 $ mkdir linux-build
 $ ARCH=xtensa CROSS_COMPILE=$(pwd)/buildroot-build/host/usr/bin/xtensa-buildroot-linux-uclibc- make -C linux-3.19.1 O=$(pwd)/linux-build menuconfig

Select 'Xtensa Processor Configuration' = Custom Xtensa processor configuration, set 'Xtensa Processor Custom Core Variant Name' to the contents of ${XT_CORE}. Select desired 'Xtensa System Type'.

Please see this chapter for more details about configuring Linux.

Build the kernel:

 $ ARCH=xtensa CROSS_COMPILE=$(pwd)/buildroot-build/host/usr/bin/xtensa-buildroot-linux-uclibc- make -C linux-3.19.1 O=$(pwd)/linux-build all

Booting GNU/Linux

TBD