Sitara Boot Camp 03 Giving Linux The Boot
Sitara Boot Camp 03 Giving Linux The Boot
This session covers all facets of the Linux boot process from power up to
running a user application beginning with ROM boot loader progressing
through secondary program loader, u-boot, kernel and finishing with user-level
initialization.
July 2012
2
Agenda
• What you will learn
• Overview of the Boot Process
• Boot Modes
• SPL
• U-Boot
• Kernel
• User Level
• Further Reading
3
What You Will Learn
4
Go from nothing to Linux OS Environment
• To this full OS
5
Overview of Any Bootstrap Process
• Basic components to any processor boot –
• Most processors boot through a chained loading method, each step
gains functionality.
• Processor POR jumps to reset vector in ROM after reset line is
released
• ROM Code initializes and reads persistent external storage source for
bootstrap code into memory (maybe internal or external depends on
ROM)
• Processor jumps to load point of read in code, from here it’s the role of
the bootstrap code to continue to perhaps read in more code to stage
the boot process. Or perhaps this bootstrap code is all that is needed to
start intended operation.
6
Why are there Boot Stages?
• At POR the internal ROM code in the processor knows nothing about
the system it is in. Therefore the processor uses pre-defined methods
on where to find the boot code that can be accessed with a minimal
standard configuration of external interfaces.
• The internal RAM is limited in size and due to that only a portion of the
boot process can be read into it. Subsequent stages are enabled from
this partial boot from Internal RAM.
• Biggest reason why is due to system configurations that can only be
defined during the application design process such as memory DDR
types and settings.
7
Linux Boot Process Components
• Components of the Linux Boot Process (Stages)
• RBL – ROM Boot Loader, Contained in the ROM of the Part, minimal
capability to initialize the processor and read in from off chip into
internal RAM the SPL.
• SPL – Secondary Program Loader, called many different names
depending on processor (UBL,Xloader) but is code of a minimal
configuration specific to the target board that has the capability to setup
the processor to be able to read in the next stage which is U-Boot.
• U-boot – Enables most of the specific processor functionality for the
target board and end application to configure the part for booting Linux
and to load the kernel image from persistent storage.
• Kernal image – Final stage of the boot process. Kernel initilization,
MMU enable, Device Initilization, User Init process and finally user level
applications.
8
4 Stages of the Linux Boot Process
• 4 Stages to Boot Process – ROM, SPL, u-boot, Kernel
• 1 – ROM BL Reads from initialized persistent storage (selected by boot mode)
SPL into internal Ram
• 2 – SPL does additional setup and reads from persistent storage the next stage
u-boot into DDR
• 3 – u-boot continues the processor setup and reads the kernel into DDR
• 4 – Linux boot and initializes user run time environment
Persistent Storage – Readable by ROM
Processor MMC SPL u-boot kernel Root FS
ROM BL 1
2
This particular Int. RAM SPL
scenario is related This is
to the AM37x discussed
DDR later
U-boot 3
Kernel 4
9
4 Stages of the Linux Boot Process - Cont
• (stage 1) ROM • Each stage adds functionality.
• (stage 2) UBL/X-loader/U-boot • Boot mode indicates to the
SPL ROM BL the order of boot
• (stage 3) U-boot modes to try.
• (stage 4) Kernel • ROM BL may indicate to SPL
where it came from.
Processor
10
Overview – Processor Boot Modes
• Boot Modes in TI perspective is strictly related to hardware and about where to read the
next stage in the boot process. This is unrelated to traditional UNIX or Linux runlevels.
• Boot Modes supported vary by device so please consult the data sheet. Typical boot
modes are NAND, I2C, MMC, SPI, Serial, Ethernet.
• Boot mode pins are read and latched once, typically the pins are muxed with another
interface such as the video display lines, input on start and then output after that.
• Each Processor has an app note on this topic
11
Overview – Boot Modes
• Some processors support Boot Sequences based on the Boot Mode.
This allows the ROM code to handle possible failure modes in case the
primary selected persistent storage is not available. Please refer to the
appropriate Data Sheet and Technical Reference Manual (TRM) for the
part.
– AM37x/AM35x/AM387x/AM389x (Sequencing supported, good for sys dev)
– AM18x (Sequencing not supported)
12
Persistent Storage based Boot Modes
• Booting from persistent storage
– This is the most typical workflow.
– Exact location and format of each chunk is media and processor specific
• ROM BL sets requirements for how SPL “looks” so it can tell if it's found a
programmed device or not. Persistent Storage – Readable by ROM
Processor
ROM BL
DDR
MMC SPL u-boot kernel Root FS
U-boot
13
Connectivity Based Boot Modes
• Booting over Serial Interface
– Typically used for initial programming of persistent storage such as NAND or SPI when other
interfaces aren't available or practical.
• After loading an SPL that sets up DDR a flash tool could be loaded for programming
NAND, SPI, etc.
– In this case the ROM BL will try and initiate a serial download (often X or Y modem based) and if
that succeeds, execute what was downloaded.
• SPL continues to read in next stage (u-boot) over the serial interface
• u-boot may also continue to load the kernel and root filesystem over serial
Host Machine connected over serial cable
Processor
Flash Tool SPL u-boot kernel Root FS
ROM BL 1
2
Int. RAM SPL
Serial Mode can be used to bring up board initially,
DDR albeit turn around time will be long. < 15 minutes for
Flash tool U-boot SPL, u-boot, kernel and a 10MB root file system.
Kernel
14
But where in memory did it go?
• Processors define a memory map that says where both internal
memory and DDR are mapped to
• SPL, U-Boot and the Linux Kernel are all statically linked to start
running at specific locations within this map.
– Once running they may relocate themselves elsewhere within DDR (once
initialized).
– Different boot modes may require different link addresses.
– For more details about the map for a given processor please refer to the
TRM
15
U-Boot Overview
•Monolithic code image
•Runs processor in physical or a single address space
•Enables clocking, sets up some of the pin mux settings
•Reads in Kernel image (uImage)
•Jumps to load address pointed to in uImage header
•What are environment variables and how are they used
–Default environment variables and how they are used
16
U-Boot Environment Variables
U-boot example default u-boot environment print out (printenv)
U-Boot > printenv
baudrate=115200
bootargs=console=ttyS2,115200n8 root=/dev/mmcblk0p2 rw rootwait ip=off
bootcmd=if mmc rescan 0; then if fatload mmc 0 0xc0600000 boot.scr; then source
0xc0600000; else fatload mmc 0 0xc0700000 uImage; bootm c0700000; fi; else sf probe 0;
sf read 0xc0700000 0x80000 0x220000; bootm 0xc0700000; fi
bootdelay=3
bootfile="uImage"
ethact=DaVinci-EMAC
stderr=serial
stdin=serial
stdout=serial
ver=U-Boot 2010.12 (Jun 23 2011 - 17:40:56)
18
Memory Map of Boot Process (AM180x)
Internal RAM
• SPL is loaded into internal RAM 0x80000000
SPL
19
Kernel Command Line
• Need to define a few required items such as console port and where
the root filesystem is located. Please note the kernel command line in
the box below. The command line is printed out in the first few lines as
the kernel boots.
Linux version 2.6.37 (jenkins@sdit-build01) (gcc version 4.3.3 (GCC) ) #2 PREEMPT Tue Jul 5 17:47:10
CDT 2011
CPU: ARM926EJ-S [41069265] revision 5 (ARMv5TEJ), cr=00053177
CPU: VIVT data cache, VIVT instruction cache
Machine: DaVinci DA850/OMAP-L138/AM18x EVM
Memory policy: ECC disabled, Data cache writeback
DaVinci da850/omap-l138/am18x variant 0x1
Built 1 zonelists in Zone order, mobility grouping on. Total pages: 32512
Kernel command line: console=ttyS2,115200n8 root=/dev/mmcblk0p2 rw rootwait ip=off
20
Kernel Command Line NFS example
• NFS boot command line (from below)
–console=ttyS2,115200n8
•Where to send console output and take user input, external serial terminal hooks up to this port
–root=/dev/nfs
•What device interface is the root file system mounted on
–nfsroot=128.247.106.224:/home/user/am180x/rootfs
•Tells the kernel what external host has the Root FS, requires setup on external host
–ip=dhcp
•tells kernel method to configure IP addresses and set up the IP routing table. Here the kernel is being to
use DHCP
Linux version 2.6.37 (jenkins@sdit-build01) (gcc version 4.3.3 (GCC) ) #2 PREEMPT Tue Jul 5 17:47:10 CDT 2011
CPU: ARM926EJ-S [41069265] revision 5 (ARMv5TEJ), cr=00053177
CPU: VIVT data cache, VIVT instruction cache
Machine: DaVinci DA850/OMAP-L138/AM18x EVM
Memory policy: ECC disabled, Data cache writeback
DaVinci da850/omap-l138/am18x variant 0x1
Built 1 zonelists in Zone order, mobility grouping on. Total pages: 32512
Kernel command line: console=ttyS2,115200n8 root=/dev/nfs rw ip=dhcp nfsroot=128.247.106.224:/home/user/am180x/rootfs
21
Overview – Kernel Memory Usage
• Kernel boot process begins
DDR
0xC0000000
• Kernel initializes MMU and takes
over DDR. Overwriting anything 0xC0008000
previously there such as u-boot and Kernel
the loaded kernel image.
• Look at virtual memory layout printed
Linux Mem Mgmt
out by kernel
uImage
u-boot
22
Linux Kernel Start
• Performs low level system setup
• Initializes the virtual memory used the kernel and applications
• Perform Device Initialization, interrupt handler setup, Idle Task and the
scheduler
23
Memory Map from User Application Perspective
• Linux creates a virtual memory System Memory
0x00000000
space for each user application as
it is loaded. Each User Application
loaded sees a map based from a
start address of 0x00000000.
• User Apps cannot write to
physical addresses listed in the
data sheet such IO ports, EMIF, or
DDR without causing a
segmentation fault. 0x0775d9e0
Space being
• To see how much memory is 0x08000000 used by Kernel
available in a system type free, in this
this is total space of allowed for configuration
executable programs, provided
swap space is disabled.
24
Virtual Memory Map
• These are components that make
up a virtual memory map system
–CPU/MMU/Memory
Please Note this picture was taken from Wikipedia discussion on virtual memory
http://en.wikipedia.org/wiki/File:MMU_principle.png
25
Linux Virtual Memory (.....Review....)
• Linux memory map
• Total address range supported by the part is no longer relevant, MMU creates
its own memory map
• The actual memory on the board is hidden and managed by the OS virtual
memory manager.
• You can use the /dev/mem interface with the devmem2 application to read and write physical
memory addresses.
• Some drivers may offer an mmap functionality for their buffers and registers as well.
26
Linux Memory Info Table Dump
• Mem Info Table Dump
• Board has 128MB on it
• Note that the mem total
is less than 128M, this
difference is where the
kernel is stored.
• Only usage described
here and not location in
the virtual memory map
27
System Physical Memory Map
• The physical memory map that has
been registered on a platform.
• Look at the data sheet for the part and
see how these addresses match up.
–AM1808 Example
•Has a serial interface (UART 1) starting at
0x01d0c000
•Has DDR starting at 0xC0000000
•These are peripherals specific to this particular part.
28
Kernel Root File System
• Kernel Must Have a Root File System defined in the kernel command line
• Must be of a certain format in terms of directories contained
• Can be sourced from various device interfaces, examples are:
–RAM Disk : /dev/ram0
–MMC : /dev/mmcblk0p2
–HDA : /dev/hda1
–NFS : /dev/nfs
• Acronyms Explained
–HDA – The master device on the first ATA channel,
–NFS – Network File System
–MMC – This is the MMC/SD interface or Multi-Media Card/Secure Digital
29
Linux Init Process
• The last step of the Linux Kernel boot process is to call the user space
initilization function “init”
–This is one call of several made by the kernel looking for the user space init function -
run_init_process("/sbin/init"); (in init/main.c)
• Is the first User Space application to run that setups the user environment and
allows user interaction such as login. Below is a ps (process status) dump from
a console, init typically has a PID of 1, first process started.
• /etc/inittab is the script that contains instructions for the init process that
sets up and calls other scripts as part of the user space initialization
–Sets the run level, this in turn sets which init scripts based on run level
are run
–Identifier:RunLevel:Action:Command
–Based on sysv5init scheme
30
For more Sitara Boot Camp sessions visit:
www.ti.com/sitarabootcamp
THANK YOU!
31