SlideShare a Scribd company logo
Universal Boot loaders (U-boot)
© Copyright 2013, wavedigitech.com.
Latest update: June 15, 2013,
http://www.wavedigitech.com/
Call us on 91-963283917
E-Mail : info@wavedigitech.com
E-mail: info@wavedigitech.com; http://www.wavedigitech.com Phone : 91-9632839173
Boot loader
• What is boot loader ?
– A boot loader is the first program
which executes (before the main
program i.e. kernel ) whenever a
system is initialized.
– A boot loader is a computer program
that loads the main program (i.e.
operating system, kernel ) for the
board after completion of the self-
tests.
• Why boot loader is needed ?
– Gives a development environment
– Saves cost of flash writers
– Give flexibility to load any operating
system
E-mail: info@wavedigitech.com; http://www.wavedigitech.com Phone : 91-9632839173
Types of Boot Loaders
• What are different types of boot loaders ?
– Boot-ROM ( or Pre-Boot Loader)
• Small code which loads First stage boot loader
– First Stage Boot Loader
• Small Piece of code that initialize the NAND/MMC & DRAM
controller.
– Second Stage Boot Loader
• Primary function of the second-stage boot loader is to Loading the
kernel into RAM or jumping directly to the start of the kernel.
E-mail: info@wavedigitech.com; http://www.wavedigitech.com Phone : 91-9632839173
Boot Loader Stages
 What is the responsibility of Boot-ROM, First, second stage boot loader ?
E-mail: info@wavedigitech.com; http://www.wavedigitech.com Phone : 91-9632839173
U-boot Porting
E-mail: info@wavedigitech.com; http://www.wavedigitech.com Phone : 91-9632839173
About U-Boot
• U-Boot (Universal Boot-loader) is an open source, multi platform boot-loader.
• U-Boot supports interactive commands, environment variables, command
scripting and booting from external media.
• U-Boot supports a large variety of popular CPUs and CPU families used
today, and a much larger collection of reference boards based on these
processors
• Generally, U-Boot resides in the beginning area of the flash. The exact sector or
block is defined by the processor.
• U-Boot initialize the CPU and several peripherals located on board, create
some critical data structures which will be used by kernel
• U-Boot is under GPLv2 License
• Refer below
– Wikipedia: http://en.wikipedia.org/wiki/Das_U-Boot
– Project: http://www.denx.de/wiki/U-Boot/WebHome
– Git: http://git.denx.de/u-boot.git
– FTP: http://ftp.denx.de/pub/u-boot/
– Mailing list: http://lists.denx.de/mailman/listinfo/u-boot
E-mail: info@wavedigitech.com; http://www.wavedigitech.com Phone : 91-9632839173
U-Boot Directory Structure
E-mail: info@wavedigitech.com; http://www.wavedigitech.com Phone : 91-9632839173
E-mail: info@wavedigitech.com; http://www.wavedigitech.com Phone : 91-9632839173
U-Boot Directory Structure
Before adding new board
• Look for an already supported board and SOC which
is as close as possible to yours.
• Identify the On-Chip and On-board peripherals
• Define physical memory map of board.
• Study of ARM Application Binary Interface (EABI)
• Study ARM assembly instruction
E-mail: info@wavedigitech.com; http://www.wavedigitech.com Phone : 91-9632839173
U-Boot: Porting to a LoganLTE board
• Choose an existing board which is most similar to the new board.
Say armadillo-800eva board
• Copy the ‘include/configs/armadillo-800eva.h’to
‘include/config/loganlte.h’.
• Create directory in ‘board/vendor/loganlte/’
• Update boards.cfg to add new entry for loganlte
• Create directory for SOC specific code ‘arch/arm/armv7/shmobile/’.
• Add corresponding header files in ‘arch/arm/include/asm/arch-shmobile’
• Modify the value of TEXT_BASE in ‘board/loganlte /config.mk’.
E-mail: info@wavedigitech.com; http://www.wavedigitech.com Phone : 91-9632839173
U-boot: Build procedure
• export ARCH=arm
• export PATH=~/arm_eabi/bin/:$PATH
• export CROSS_COMPILE=arm-eabi-
• make distclean
• make <board>_config
• make
Output :
• u-boot is an ELF file of the code
• u-boot.bin is the binary image. (with ELF headers striped out) used
for download and debugging
• u-boot.srec is the S-Record image.
• u-boot.map has the global addresses for symbols, etc.
E-mail: info@wavedigitech.com; http://www.wavedigitech.com Phone : 91-9632839173
U-boot : Linker script
OUTPUT_FORMAT("elf32-littlearm", "elf32-
littlearm", "elf32-littlearm")
OUTPUT_ARCH(arm)
ENTRY(_start)
SECTIONS
{
. = 0x00000000;
. = ALIGN(4);
.text :
{
__image_copy_start = .;
CPUDIR/start.o (.text*)
*(.text*)
} /* Align */
.rodata : {
*(SORT_BY_ALIGNMENT(SORT_BY_NAME(.rodata*))) }
.data : {/* Align */
*(.data*)
} /* Align */
.u_boot_list : {
KEEP(*(SORT(.u_boot_list*)));
} /* Align */
__image_copy_end = .;
arch/arm/cpu/u-boot.lds
.dynsym : {
__dynsym_start = .;
*(.dynsym)
}
_end = .;
/*
* Compiler-generated __bss_start and __bss_end, see
arch/arm/lib/bss.c
* __bss_base and __bss_limit are for linker only (overlay
ordering)
*/
.bss_start __rel_dyn_start (OVERLAY) : {
KEEP(*(.__bss_start));
__bss_base = .;
}
.bss __bss_base (OVERLAY) : {
*(.bss*)
. = ALIGN(4);
__bss_limit = .;
}
.bss_end __bss_limit (OVERLAY) : {
KEEP(*(.__bss_end));
}
}
E-mail: info@wavedigitech.com; http://www.wavedigitech.com Phone : 91-9632839173
U-boot : Linker script location
• If explicitly specified LDSCRIPT in board/cpu directory.
• If CONFIG_SYS_LDSCRIPT, use that or fail if absent.
• Otherwise, it search for 'u-boot.lds' sequentially in below location
– board/<board_name>/u-boot.lds
– arch/$(ARCH)/cpu/<SOC>/u-boot.lds
– arch/$(ARCH)/cpu/u-boot.lds
E-mail: info@wavedigitech.com; http://www.wavedigitech.com Phone : 91-9632839173
Global Data
typedef struct global_data {
bd_t *bd;
unsigned int baudrate;
unsigned long cpu_clk; /* CPU clock in Hz! */
unsigned long bus_clk;
unsigned long pci_clk;
unsigned long mem_clk;
#ifdef CONFIG_BOARD_TYPES
unsigned long board_type;
#endif
unsigned long have_console; /* serial_init() was called */
unsigned long env_addr; /* Address of Environment struct */
unsigned long env_valid; /* Checksum of Environment valid? */
/* TODO: is this the same as relocaddr, or something else? */
unsigned long dest_addr; /* Post-relocation address of U-Boot */
unsigned long dest_addr_sp;
unsigned long ram_top; /* Top address of RAM used by U-Boot */
unsigned long relocaddr; /* Start address of U-Boot in RAM */
phys_size_t ram_size; /* RAM size */
unsigned long mon_len; /* monitor len */
unsigned long irq_sp; /* irq stack pointer */
unsigned long start_addr_sp; /* start_addr_stackpointer */
unsigned long reloc_off; /* relocation offset */
struct global_data * new_gd; /* relocated global data */
const void * fdt_blob; /* Our device tree, NULL if none */
void * new_fdt; /* Relocated FDT */
unsigned long fdt_size; /* Space reserved for relocated FDT */
char env_buf[32]; /* buffer for getenv() before reloc. */
struct arch_global_data arch; /* architecture-specific data */
} gd_t;
include/asm-generic/global_data.h (DECLARE_GLOBAL_DATA_PTR)
.
typedef struct bd_info {
unsigned long bi_memstart; /* start of DRAM memory */
phys_size_t bi_memsize; /* size of DRAM memory in bytes */
unsigned long bi_flashstart; /* start of FLASH memory */
unsigned long bi_flashsize; /* size of FLASH memory */
unsigned long bi_flashoffset; /* reserved area for startup monitor */
unsigned long bi_sramstart; /* start of SRAM memory */
unsigned long bi_sramsize; /* size of SRAM memory */
#ifdef CONFIG_ARM
unsigned long bi_arm_freq; /* arm frequency */
unsigned long bi_ddr_freq; /* ddr frequency */
#endif
unsigned long bi_bootflags; /* boot / reboot flag (Unused) */
unsigned long bi_ip_addr; /* IP Address */
unsigned char bi_enetaddr[6]; /* OLD: see README.enetaddr */
unsigned short bi_ethspeed; /* Ethernet speed in Mbps */
unsigned long bi_intfreq; /* Internal Freq, in MHz */
unsigned long bi_busfreq; /* Bus Freq, in MHz */
unsigned int bi_baudrate; /* Console Baudrate */
unsigned int bi_procfreq; /* CPU (Internal) Freq, in Hz */
unsigned char bi_pci_enetaddr[6]; /* PCI Ethernet MAC address */
#endif
unsigned char bi_enetXaddr[6]; /* OLD: see README.enetaddr */
ulong bi_arch_number; /* unique id for this board */
ulong bi_boot_params; /* where this board expects params */
#ifdef CONFIG_NR_DRAM_BANKS
struct { /* RAM configuration */
ulong start;
ulong size;
} bi_dram[CONFIG_NR_DRAM_BANKS];
#endif /* CONFIG_NR_DRAM_BANKS */
} bd_t;
E-mail: info@wavedigitech.com; http://www.wavedigitech.com Phone : 91-9632839173
General bootstrapping Process
1. Disable all interrupts.
2. Copy any initialized data from ROM to RAM.
3. Zero the uninitialized data area.
4. Allocate space for and initialize the stack.
5. Initialize the processor’s stack pointer.
6. Create and initialize the heap.
7. Execute the initializers for all global data
8. Enable interrupts.
9. Call main loop.
 U-Boot relocates itself from ROM to RAM. Divided the boot-strapping
process into two phases:
 Pre-Relocation U-Boot Bootstrapping
 Post-Relocation U-Boot Bootstrapping
E-mail: info@wavedigitech.com; http://www.wavedigitech.com Phone : 91-9632839173
Setup SP for
Early Board Setup
Environment (ASM->C)
Calculate Addresses
(SP, Dest, GD) for
Relocation
General Relocation
Copy Binary to RAM
Fix Relocation
Fix GOT
Clear BSS
Setup SP for
Common Board Setup
Setup GD and JUMP to
Final Board Setup
Low Level Initialization
Lowlevel_init
cpu_init_cp15
Disable MMU
Invalidate and disable
Instruction & data
Cache
Pre-Relocation bootstrapping
Disable IRQ &FIQ. Switch
to supervisor mode
cpu/armv7/star
t.S
Reset()
Reset CPU and Hardware
cpu/armv7/star
t.S
_start()
arm/lib/crt0.S
_main()
Early Board Setup
arm/lib/crt
0.S
board_init_
f()
arm/lib/crt
0.S
board_init_
r()
cpu/armv7/shmobile/lowl
evel_init.S
lowlevel_init()
cpu/armv7/start.S
relocate_code()
E-mail: info@wavedigitech.com; http://www.wavedigitech.com Phone : 91-9632839173
Pre-relocation bootstrapping
 _start() /* Entry point function */
 call reset() /* Reset CPU configurations */
 save_boot_params() /* Save boot parameters */
 Disable the FIQ & IRQ
 Switch to supervisor mode
 cpu_init_cp15() /* Initialize the Coprocessor 15 if
!CONFIG_SKIP_LOWLEVEL_INIT */
 Invalidate I cache
 Invalidate D Cache
 Disable I cache if CONFIG_SYS_ICACHE_OFF
 Disable MMU
 cpu_init_crit() /* Call arch low level initialization if
!CONFIG_SKIP_LOWLEVEL_INIT */
 lowlevel_init()
 Call _main() /* setup initial stack & global data.
And jump to C routine for board initialization */
E-mail: info@wavedigitech.com; http://www.wavedigitech.com Phone : 91-9632839173
Pre-relocation bootstrapping
 arch_cpu_init() // if CONFIG_ARCH_CPU_INIT
 mark_bootstage() // Set boot stage to pre-relocation boot
 board_early_init_f() // if CONFIG_BOARD_EARLY_INIT_F
 timer_init() // Initialize timer
 board_postclk_init() // if CONFIG_BOARD_POSTCLK_INIT
 env_init() // initialize mmc/sdcard environment
 init_baudrate() // set baudrate to CONFIG_BAUDRATE
 serial_init() // Initialize serial driver
 console_init_f() // Configure console from console.c
 display_banner() // Print U-Boot banner
 print_cpuinfo() // Print CPU information
 checkboard() //print board info
 init_func_i2c() // Initialize I2C if CONFIG_I2C
 dram_init() // configure available RAM banks
 board_init_f() calling sequence for arm
E-mail: info@wavedigitech.com; http://www.wavedigitech.com Phone : 91-9632839173
Bootstrapping process
arm/lib/board.c
board_init_r()
Setup Memory for
malloc()
Setup Board Data
Setup Board
FLASH
Setup Environment
env_relocate();
Jump into Main
loop
Setup Board Specific
Devices Load
Default
Environment
s
board/rmi/loganlt
e/loganlte.c
board_init()
board/rmi/loganlte/l
oganlte.c
enable_cache()
Setup late Board
Data
Early
arch/platform
specific misc
initializations
Initialize and
Enable exceptions
Early arch
specific & power
management
specific
initialization
E-mail: info@wavedigitech.com; http://www.wavedigitech.com Phone : 91-9632839173
U-boot : Pre-relocation bootstrapping
 mark_bootstage() // Set boot stage to post-relocation boot
 enable_caches() // Enable cache
 board_init() // Setup board specific configuration (GPIO)
 mem_malloc_init() // Configure malloc area
 arch_early_init_r() // if CONFIG_ARCH_EARLY_INIT_R
 power_init_board() // PMIC initializations
 Flash/Nand/MMC initialization
 env_relocate() // Relocate environment or set NULL
 checkboard() //print board info
 arch_misc_init() // miscellaneous arch dependent init
 misc_init_r() // miscellaneous platform dependent init
 interrupt_init() // Initialize exceptions if CONFIG_IRQ
 enable_interrupts() // Enable Exceptions
 board_late_init() // Board late init
 eth_initialize() // Setup ethernet
 main_loop() // Jump to main loop & waiting for commands from console.
 board_init_r() calling sequence for arm
E-mail: info@wavedigitech.com; http://www.wavedigitech.com Phone : 91-9632839173
Debugging
• Add DEBUG to configuration file to inspect stack and relocation address.
– include/configs/loganlte.h:
• #define DEBUG
• When U-Boot starts it is running from ROM space. Running from flash would
make it nearly impossible to read from flash while executing code.
• With GCC it is possible to use optimization in combination with the debugging
option -g. Many other compilers do not allow this.
• U-boot image can also used to generate the disassembly.
– $(CROSS_COMPILE)objdump -D u-boot > u-boot.dis
• Later U-Boot relocates itself to RAM. We therefore have two phases:
– Debugging of U-Boot Before Relocation
– Debugging of U-Boot After Relocation
E-mail: info@wavedigitech.com; http://www.wavedigitech.com Phone : 91-9632839173
Debugging before Relocation
Debugging U-Boot in this phase with the BDI2000 is quite easy
bash[0]$ ${CROSS_COMPILE}gdb u-boot
(gdb) target remote bdi:2001
Remote debugging using bdi:2001
0xfffffffc in ?? ()
(gdb) b cpu_init_f
Breakpoint 1 at 0xfffd3310: file cpu_init.c, line 136.
(gdb) c
Continuing.
Breakpoint 1, cpu_init_f () at cpu_init.c:136
136 asm volatile(" bl 0f" ::: "lr");
(gdb) s
137 asm volatile("0: mflr 3" :::
"r3");
(gdb)
138 asm volatile(" addi 4, 0, 14" ::: "r4");
(gdb)
cpu_init_f is the first C function called from the code in start.C.
E-mail: info@wavedigitech.com; http://www.wavedigitech.com Phone : 91-9632839173
Debugging after Relocation
struct global_data (register r8)‘relocaddr’ contains start address of u-boot in RAM
Relocation address = <MAXMEM> - CFG_MONITOR_LEN
= 16 MB – 192KB
= 0x1000000 - 0x30000 = 0xFD0000
(gdb) symbol-file
Discard symbol table from `/home/dzu/denx/cvs-trees/u-boot/u-boot'? (y or n) y
No symbol file now.
(gdb) add-symbol-file u-boot 0xfd0000
add symbol table from file "u-boot" at
.text_addr = 0xfd0000
(y or n) y
Reading symbols from u-boot...done.
(gdb) b board_init_r
Breakpoint 2 at 0xfd99ac: file board.c, line 533.
(gdb) c
Continuing.
Breakpoint 2, board_init_r (id=0xfbb1f0, dest_addr=16495088) at board.c:533
533 {
(gdb)
board_init_r is the first C routine running in the newly relocated C friendly
RAM environment.
E-mail: info@wavedigitech.com; http://www.wavedigitech.com Phone : 91-9632839173
The 10 Golden Rules of U-Boot
design
1. Keep it Small
2. Keep it Fast
3. Keep it Simple
4. Keep it Portable
5. Keep it Configurable
6. Keep it Debug-able
7. Keep it Usable
8. Keep it Maintainable
9. Keep it Beautiful
10.Keep it Open
E-mail: info@wavedigitech.com; http://www.wavedigitech.com Phone : 91-9632839173
At the end…
• how to write optimized u-boot code ?
 Use inline functions whenever possible ? it increases code size but saves u the
overhead of stack push & pop operations
 Code all critical / frequently used code in assembly
 Store frequently used variables in register
 Use global variables it saves you push/pop stack operation during function
call.
 Don't use floating point calculations / variables.
 Enable GCC Optimization.
 -O1 = With this option the resulting executables should be smaller and
faster than with -O0
 -O2 = This option is generally the best choice for deployment of a program
 -O3 = This option may increase the speed of the resulting executable, but
can also increase its size
 -Os = his option selects optimizations which reduce the size of an
executable.
E-mail: info@wavedigitech.com; http://www.wavedigitech.com Phone : 91-9632839173
At the end…
• Why U-boot relocate itself into RAM ?
– Memory access is faster from RAM than from ROM, this will matter
particularly if target has no instruction cache.
– Executing from RAM allows flash reprogramming; also (more minor) it
allows software breakpoints with "trap" instructions.
– Variable cannot be modified when it is stored in ROM.
• Boot loader must copy itself to RAM to update the variables correctly.
• Function calls relies on stack operation which is also should be stored
in RAM.
• Can U-Boot be configured such that it can be started in RAM?
– Yes, By enabling the CONFIG_SYS_RAMBOOT.
– But this feature is not tested with all the boards, refer
doc/README.mpc85xx.
– For u-boot builds switch CONFIG_SYS_TEXT_BASE between flash and ram
builds.
E-mail: info@wavedigitech.com; http://www.wavedigitech.com Phone : 91-9632839173
At the end…
• Can U-Boot be configured such that it can be started in RAM?
– Yes, By enabling the CONFIG_SYS_RAMBOOT.
– But this feature is not tested with all the boards, refer
doc/README.mpc85xx.
– For u-boot builds switch CONFIG_SYS_TEXT_BASE between flash and ram
builds if MMU is disabled.
• Why Linux hangs after uncompressing the kernel ?
Uncompressing Kernel Image ... OK
– Bad definition of the bd_info structure .
– Bad clock information
• setenv clocks_in_mhz 1; saveenv
• For more: Read U-Boot FAQ at http://www.denx.de/wiki/view/DULG/FaqUBoot
E-mail: info@wavedigitech.com; http://www.wavedigitech.com Phone : 91-9632839173
For more information visit
http://www.denx.de/wiki/U-Boot
Any Question ?
E-mail: info@wavedigitech.com; http://www.wavedigitech.com Phone : 91-9632839173
© Copyright 2013, wavedigitech.com.
Latest update: Janl 30, 2013,
http://www.wavedigitech.com/
Call us on : +91-9632839173
E-Mail : info@wavedigitech.com
Thank You

More Related Content

PDF
Arm device tree and linux device drivers
PPT
U Boot or Universal Bootloader
PDF
U-Boot - An universal bootloader
PDF
Uboot startup sequence
PDF
Embedded_Linux_Booting
PDF
Introduction to Modern U-Boot
PPT
U boot porting guide for SoC
PDF
Embedded Linux BSP Training (Intro)
Arm device tree and linux device drivers
U Boot or Universal Bootloader
U-Boot - An universal bootloader
Uboot startup sequence
Embedded_Linux_Booting
Introduction to Modern U-Boot
U boot porting guide for SoC
Embedded Linux BSP Training (Intro)

What's hot (20)

PDF
Jagan Teki - U-boot from scratch
PDF
I2c drivers
PPTX
Linux Device Tree
PPTX
Linux Kernel Booting Process (1) - For NLKB
PPTX
Bootloaders (U-Boot)
PPTX
Linux Initialization Process (2)
PDF
Device Tree for Dummies (ELC 2014)
PDF
PPTX
U-Boot Porting on New Hardware
PDF
USB Drivers
PPTX
Linux Initialization Process (1)
PDF
Kdump and the kernel crash dump analysis
PDF
I2C Subsystem In Linux-2.6.24
PDF
Spi drivers
PDF
Linux kernel debugging
PPTX
用Raspberry Pi 學Linux I2C Driver
PDF
BusyBox for Embedded Linux
PDF
Vmlinux: anatomy of bzimage and how x86 64 processor is booted
PDF
Embedded Linux Kernel - Build your custom kernel
PDF
Process Address Space: The way to create virtual address (page table) of user...
Jagan Teki - U-boot from scratch
I2c drivers
Linux Device Tree
Linux Kernel Booting Process (1) - For NLKB
Bootloaders (U-Boot)
Linux Initialization Process (2)
Device Tree for Dummies (ELC 2014)
U-Boot Porting on New Hardware
USB Drivers
Linux Initialization Process (1)
Kdump and the kernel crash dump analysis
I2C Subsystem In Linux-2.6.24
Spi drivers
Linux kernel debugging
用Raspberry Pi 學Linux I2C Driver
BusyBox for Embedded Linux
Vmlinux: anatomy of bzimage and how x86 64 processor is booted
Embedded Linux Kernel - Build your custom kernel
Process Address Space: The way to create virtual address (page table) of user...
Ad

Similar to U-Boot presentation 2013 (20)

PPT
Bootstrap process of u boot (NDS32 RISC CPU)
PDF
Study on Android Emulator
PDF
HKG15-311: OP-TEE for Beginners and Porting Review
PDF
Armboot process zeelogic
PPTX
建構嵌入式Linux系統於SD Card
PPT
Bootstrap process boot loader
PPTX
Roll your own toy unix clone os
PPTX
망고100 보드로 놀아보자 7
PDF
LCU14 302- How to port OP-TEE to another platform
PDF
ARM® Cortex™ M Bootup_CMSIS_Part_2_3
PDF
A million ways to provision embedded linux devices
PDF
Bringing up Android on your favorite X86 Workstation or VM (AnDevCon Boston, ...
PDF
SystemReady IR and MediaTek Genio-1200-EVK - Tech part - COSCUP 20240804
PDF
DEF CON 23 - Phil Polstra - one device to pwn them all
PPTX
Labs_BT_20221017.pptx
PDF
Software update for embedded systems - elce2014
PDF
Motherboard
PDF
#include avrinterrupt.h The global interrupt flag is maintained.pdf
PPT
Mba admission in india
DOC
Aftab_Alam_Resume2016
Bootstrap process of u boot (NDS32 RISC CPU)
Study on Android Emulator
HKG15-311: OP-TEE for Beginners and Porting Review
Armboot process zeelogic
建構嵌入式Linux系統於SD Card
Bootstrap process boot loader
Roll your own toy unix clone os
망고100 보드로 놀아보자 7
LCU14 302- How to port OP-TEE to another platform
ARM® Cortex™ M Bootup_CMSIS_Part_2_3
A million ways to provision embedded linux devices
Bringing up Android on your favorite X86 Workstation or VM (AnDevCon Boston, ...
SystemReady IR and MediaTek Genio-1200-EVK - Tech part - COSCUP 20240804
DEF CON 23 - Phil Polstra - one device to pwn them all
Labs_BT_20221017.pptx
Software update for embedded systems - elce2014
Motherboard
#include avrinterrupt.h The global interrupt flag is maintained.pdf
Mba admission in india
Aftab_Alam_Resume2016
Ad

More from Wave Digitech (17)

DOC
54 sms based irrigation system
DOC
54 a automatic irrigation system
DOCX
Implementation of solar illumination system with three-stage charging and dim...
DOCX
Zl embd045 wireless telemedia system based on arm and web server
DOC
Zl embd029 arm and rfid based event management monitoring system
PPTX
PPTX
PDF
Projects wavedigitech-2013
PPTX
Unix Linux Commands Presentation 2013
PPTX
Difference bw android4.2 to android 4.3
PPTX
Unix Process management
PDF
Android debug bridge
PDF
Useful Linux and Unix commands handbook
PDF
Wavedigitech training-broucher-june2013
PPTX
Wavedigitech presentation-2013-v1
PPTX
Wavedigitech presentation-2013
PPTX
Wavedigitech gdb
54 sms based irrigation system
54 a automatic irrigation system
Implementation of solar illumination system with three-stage charging and dim...
Zl embd045 wireless telemedia system based on arm and web server
Zl embd029 arm and rfid based event management monitoring system
Projects wavedigitech-2013
Unix Linux Commands Presentation 2013
Difference bw android4.2 to android 4.3
Unix Process management
Android debug bridge
Useful Linux and Unix commands handbook
Wavedigitech training-broucher-june2013
Wavedigitech presentation-2013-v1
Wavedigitech presentation-2013
Wavedigitech gdb

Recently uploaded (20)

PPTX
20250228 LYD VKU AI Blended-Learning.pptx
PDF
Mobile App Security Testing_ A Comprehensive Guide.pdf
PDF
Dropbox Q2 2025 Financial Results & Investor Presentation
PDF
Encapsulation_ Review paper, used for researhc scholars
PDF
Per capita expenditure prediction using model stacking based on satellite ima...
DOCX
The AUB Centre for AI in Media Proposal.docx
PDF
Approach and Philosophy of On baking technology
PDF
Chapter 3 Spatial Domain Image Processing.pdf
PDF
How UI/UX Design Impacts User Retention in Mobile Apps.pdf
PPTX
A Presentation on Artificial Intelligence
PPTX
Effective Security Operations Center (SOC) A Modern, Strategic, and Threat-In...
PDF
Unlocking AI with Model Context Protocol (MCP)
PDF
Agricultural_Statistics_at_a_Glance_2022_0.pdf
PDF
NewMind AI Monthly Chronicles - July 2025
PPTX
Understanding_Digital_Forensics_Presentation.pptx
PPTX
PA Analog/Digital System: The Backbone of Modern Surveillance and Communication
PDF
Peak of Data & AI Encore- AI for Metadata and Smarter Workflows
PDF
Machine learning based COVID-19 study performance prediction
PDF
cuic standard and advanced reporting.pdf
PDF
Encapsulation theory and applications.pdf
20250228 LYD VKU AI Blended-Learning.pptx
Mobile App Security Testing_ A Comprehensive Guide.pdf
Dropbox Q2 2025 Financial Results & Investor Presentation
Encapsulation_ Review paper, used for researhc scholars
Per capita expenditure prediction using model stacking based on satellite ima...
The AUB Centre for AI in Media Proposal.docx
Approach and Philosophy of On baking technology
Chapter 3 Spatial Domain Image Processing.pdf
How UI/UX Design Impacts User Retention in Mobile Apps.pdf
A Presentation on Artificial Intelligence
Effective Security Operations Center (SOC) A Modern, Strategic, and Threat-In...
Unlocking AI with Model Context Protocol (MCP)
Agricultural_Statistics_at_a_Glance_2022_0.pdf
NewMind AI Monthly Chronicles - July 2025
Understanding_Digital_Forensics_Presentation.pptx
PA Analog/Digital System: The Backbone of Modern Surveillance and Communication
Peak of Data & AI Encore- AI for Metadata and Smarter Workflows
Machine learning based COVID-19 study performance prediction
cuic standard and advanced reporting.pdf
Encapsulation theory and applications.pdf

U-Boot presentation 2013

  • 1. Universal Boot loaders (U-boot) © Copyright 2013, wavedigitech.com. Latest update: June 15, 2013, http://www.wavedigitech.com/ Call us on 91-963283917 E-Mail : info@wavedigitech.com E-mail: info@wavedigitech.com; http://www.wavedigitech.com Phone : 91-9632839173
  • 2. Boot loader • What is boot loader ? – A boot loader is the first program which executes (before the main program i.e. kernel ) whenever a system is initialized. – A boot loader is a computer program that loads the main program (i.e. operating system, kernel ) for the board after completion of the self- tests. • Why boot loader is needed ? – Gives a development environment – Saves cost of flash writers – Give flexibility to load any operating system E-mail: info@wavedigitech.com; http://www.wavedigitech.com Phone : 91-9632839173
  • 3. Types of Boot Loaders • What are different types of boot loaders ? – Boot-ROM ( or Pre-Boot Loader) • Small code which loads First stage boot loader – First Stage Boot Loader • Small Piece of code that initialize the NAND/MMC & DRAM controller. – Second Stage Boot Loader • Primary function of the second-stage boot loader is to Loading the kernel into RAM or jumping directly to the start of the kernel. E-mail: info@wavedigitech.com; http://www.wavedigitech.com Phone : 91-9632839173
  • 4. Boot Loader Stages  What is the responsibility of Boot-ROM, First, second stage boot loader ? E-mail: info@wavedigitech.com; http://www.wavedigitech.com Phone : 91-9632839173
  • 5. U-boot Porting E-mail: info@wavedigitech.com; http://www.wavedigitech.com Phone : 91-9632839173
  • 6. About U-Boot • U-Boot (Universal Boot-loader) is an open source, multi platform boot-loader. • U-Boot supports interactive commands, environment variables, command scripting and booting from external media. • U-Boot supports a large variety of popular CPUs and CPU families used today, and a much larger collection of reference boards based on these processors • Generally, U-Boot resides in the beginning area of the flash. The exact sector or block is defined by the processor. • U-Boot initialize the CPU and several peripherals located on board, create some critical data structures which will be used by kernel • U-Boot is under GPLv2 License • Refer below – Wikipedia: http://en.wikipedia.org/wiki/Das_U-Boot – Project: http://www.denx.de/wiki/U-Boot/WebHome – Git: http://git.denx.de/u-boot.git – FTP: http://ftp.denx.de/pub/u-boot/ – Mailing list: http://lists.denx.de/mailman/listinfo/u-boot E-mail: info@wavedigitech.com; http://www.wavedigitech.com Phone : 91-9632839173
  • 7. U-Boot Directory Structure E-mail: info@wavedigitech.com; http://www.wavedigitech.com Phone : 91-9632839173
  • 8. E-mail: info@wavedigitech.com; http://www.wavedigitech.com Phone : 91-9632839173 U-Boot Directory Structure
  • 9. Before adding new board • Look for an already supported board and SOC which is as close as possible to yours. • Identify the On-Chip and On-board peripherals • Define physical memory map of board. • Study of ARM Application Binary Interface (EABI) • Study ARM assembly instruction E-mail: info@wavedigitech.com; http://www.wavedigitech.com Phone : 91-9632839173
  • 10. U-Boot: Porting to a LoganLTE board • Choose an existing board which is most similar to the new board. Say armadillo-800eva board • Copy the ‘include/configs/armadillo-800eva.h’to ‘include/config/loganlte.h’. • Create directory in ‘board/vendor/loganlte/’ • Update boards.cfg to add new entry for loganlte • Create directory for SOC specific code ‘arch/arm/armv7/shmobile/’. • Add corresponding header files in ‘arch/arm/include/asm/arch-shmobile’ • Modify the value of TEXT_BASE in ‘board/loganlte /config.mk’. E-mail: info@wavedigitech.com; http://www.wavedigitech.com Phone : 91-9632839173
  • 11. U-boot: Build procedure • export ARCH=arm • export PATH=~/arm_eabi/bin/:$PATH • export CROSS_COMPILE=arm-eabi- • make distclean • make <board>_config • make Output : • u-boot is an ELF file of the code • u-boot.bin is the binary image. (with ELF headers striped out) used for download and debugging • u-boot.srec is the S-Record image. • u-boot.map has the global addresses for symbols, etc. E-mail: info@wavedigitech.com; http://www.wavedigitech.com Phone : 91-9632839173
  • 12. U-boot : Linker script OUTPUT_FORMAT("elf32-littlearm", "elf32- littlearm", "elf32-littlearm") OUTPUT_ARCH(arm) ENTRY(_start) SECTIONS { . = 0x00000000; . = ALIGN(4); .text : { __image_copy_start = .; CPUDIR/start.o (.text*) *(.text*) } /* Align */ .rodata : { *(SORT_BY_ALIGNMENT(SORT_BY_NAME(.rodata*))) } .data : {/* Align */ *(.data*) } /* Align */ .u_boot_list : { KEEP(*(SORT(.u_boot_list*))); } /* Align */ __image_copy_end = .; arch/arm/cpu/u-boot.lds .dynsym : { __dynsym_start = .; *(.dynsym) } _end = .; /* * Compiler-generated __bss_start and __bss_end, see arch/arm/lib/bss.c * __bss_base and __bss_limit are for linker only (overlay ordering) */ .bss_start __rel_dyn_start (OVERLAY) : { KEEP(*(.__bss_start)); __bss_base = .; } .bss __bss_base (OVERLAY) : { *(.bss*) . = ALIGN(4); __bss_limit = .; } .bss_end __bss_limit (OVERLAY) : { KEEP(*(.__bss_end)); } } E-mail: info@wavedigitech.com; http://www.wavedigitech.com Phone : 91-9632839173
  • 13. U-boot : Linker script location • If explicitly specified LDSCRIPT in board/cpu directory. • If CONFIG_SYS_LDSCRIPT, use that or fail if absent. • Otherwise, it search for 'u-boot.lds' sequentially in below location – board/<board_name>/u-boot.lds – arch/$(ARCH)/cpu/<SOC>/u-boot.lds – arch/$(ARCH)/cpu/u-boot.lds E-mail: info@wavedigitech.com; http://www.wavedigitech.com Phone : 91-9632839173
  • 14. Global Data typedef struct global_data { bd_t *bd; unsigned int baudrate; unsigned long cpu_clk; /* CPU clock in Hz! */ unsigned long bus_clk; unsigned long pci_clk; unsigned long mem_clk; #ifdef CONFIG_BOARD_TYPES unsigned long board_type; #endif unsigned long have_console; /* serial_init() was called */ unsigned long env_addr; /* Address of Environment struct */ unsigned long env_valid; /* Checksum of Environment valid? */ /* TODO: is this the same as relocaddr, or something else? */ unsigned long dest_addr; /* Post-relocation address of U-Boot */ unsigned long dest_addr_sp; unsigned long ram_top; /* Top address of RAM used by U-Boot */ unsigned long relocaddr; /* Start address of U-Boot in RAM */ phys_size_t ram_size; /* RAM size */ unsigned long mon_len; /* monitor len */ unsigned long irq_sp; /* irq stack pointer */ unsigned long start_addr_sp; /* start_addr_stackpointer */ unsigned long reloc_off; /* relocation offset */ struct global_data * new_gd; /* relocated global data */ const void * fdt_blob; /* Our device tree, NULL if none */ void * new_fdt; /* Relocated FDT */ unsigned long fdt_size; /* Space reserved for relocated FDT */ char env_buf[32]; /* buffer for getenv() before reloc. */ struct arch_global_data arch; /* architecture-specific data */ } gd_t; include/asm-generic/global_data.h (DECLARE_GLOBAL_DATA_PTR) . typedef struct bd_info { unsigned long bi_memstart; /* start of DRAM memory */ phys_size_t bi_memsize; /* size of DRAM memory in bytes */ unsigned long bi_flashstart; /* start of FLASH memory */ unsigned long bi_flashsize; /* size of FLASH memory */ unsigned long bi_flashoffset; /* reserved area for startup monitor */ unsigned long bi_sramstart; /* start of SRAM memory */ unsigned long bi_sramsize; /* size of SRAM memory */ #ifdef CONFIG_ARM unsigned long bi_arm_freq; /* arm frequency */ unsigned long bi_ddr_freq; /* ddr frequency */ #endif unsigned long bi_bootflags; /* boot / reboot flag (Unused) */ unsigned long bi_ip_addr; /* IP Address */ unsigned char bi_enetaddr[6]; /* OLD: see README.enetaddr */ unsigned short bi_ethspeed; /* Ethernet speed in Mbps */ unsigned long bi_intfreq; /* Internal Freq, in MHz */ unsigned long bi_busfreq; /* Bus Freq, in MHz */ unsigned int bi_baudrate; /* Console Baudrate */ unsigned int bi_procfreq; /* CPU (Internal) Freq, in Hz */ unsigned char bi_pci_enetaddr[6]; /* PCI Ethernet MAC address */ #endif unsigned char bi_enetXaddr[6]; /* OLD: see README.enetaddr */ ulong bi_arch_number; /* unique id for this board */ ulong bi_boot_params; /* where this board expects params */ #ifdef CONFIG_NR_DRAM_BANKS struct { /* RAM configuration */ ulong start; ulong size; } bi_dram[CONFIG_NR_DRAM_BANKS]; #endif /* CONFIG_NR_DRAM_BANKS */ } bd_t; E-mail: info@wavedigitech.com; http://www.wavedigitech.com Phone : 91-9632839173
  • 15. General bootstrapping Process 1. Disable all interrupts. 2. Copy any initialized data from ROM to RAM. 3. Zero the uninitialized data area. 4. Allocate space for and initialize the stack. 5. Initialize the processor’s stack pointer. 6. Create and initialize the heap. 7. Execute the initializers for all global data 8. Enable interrupts. 9. Call main loop.  U-Boot relocates itself from ROM to RAM. Divided the boot-strapping process into two phases:  Pre-Relocation U-Boot Bootstrapping  Post-Relocation U-Boot Bootstrapping E-mail: info@wavedigitech.com; http://www.wavedigitech.com Phone : 91-9632839173
  • 16. Setup SP for Early Board Setup Environment (ASM->C) Calculate Addresses (SP, Dest, GD) for Relocation General Relocation Copy Binary to RAM Fix Relocation Fix GOT Clear BSS Setup SP for Common Board Setup Setup GD and JUMP to Final Board Setup Low Level Initialization Lowlevel_init cpu_init_cp15 Disable MMU Invalidate and disable Instruction & data Cache Pre-Relocation bootstrapping Disable IRQ &FIQ. Switch to supervisor mode cpu/armv7/star t.S Reset() Reset CPU and Hardware cpu/armv7/star t.S _start() arm/lib/crt0.S _main() Early Board Setup arm/lib/crt 0.S board_init_ f() arm/lib/crt 0.S board_init_ r() cpu/armv7/shmobile/lowl evel_init.S lowlevel_init() cpu/armv7/start.S relocate_code() E-mail: info@wavedigitech.com; http://www.wavedigitech.com Phone : 91-9632839173
  • 17. Pre-relocation bootstrapping  _start() /* Entry point function */  call reset() /* Reset CPU configurations */  save_boot_params() /* Save boot parameters */  Disable the FIQ & IRQ  Switch to supervisor mode  cpu_init_cp15() /* Initialize the Coprocessor 15 if !CONFIG_SKIP_LOWLEVEL_INIT */  Invalidate I cache  Invalidate D Cache  Disable I cache if CONFIG_SYS_ICACHE_OFF  Disable MMU  cpu_init_crit() /* Call arch low level initialization if !CONFIG_SKIP_LOWLEVEL_INIT */  lowlevel_init()  Call _main() /* setup initial stack & global data. And jump to C routine for board initialization */ E-mail: info@wavedigitech.com; http://www.wavedigitech.com Phone : 91-9632839173
  • 18. Pre-relocation bootstrapping  arch_cpu_init() // if CONFIG_ARCH_CPU_INIT  mark_bootstage() // Set boot stage to pre-relocation boot  board_early_init_f() // if CONFIG_BOARD_EARLY_INIT_F  timer_init() // Initialize timer  board_postclk_init() // if CONFIG_BOARD_POSTCLK_INIT  env_init() // initialize mmc/sdcard environment  init_baudrate() // set baudrate to CONFIG_BAUDRATE  serial_init() // Initialize serial driver  console_init_f() // Configure console from console.c  display_banner() // Print U-Boot banner  print_cpuinfo() // Print CPU information  checkboard() //print board info  init_func_i2c() // Initialize I2C if CONFIG_I2C  dram_init() // configure available RAM banks  board_init_f() calling sequence for arm E-mail: info@wavedigitech.com; http://www.wavedigitech.com Phone : 91-9632839173
  • 19. Bootstrapping process arm/lib/board.c board_init_r() Setup Memory for malloc() Setup Board Data Setup Board FLASH Setup Environment env_relocate(); Jump into Main loop Setup Board Specific Devices Load Default Environment s board/rmi/loganlt e/loganlte.c board_init() board/rmi/loganlte/l oganlte.c enable_cache() Setup late Board Data Early arch/platform specific misc initializations Initialize and Enable exceptions Early arch specific & power management specific initialization E-mail: info@wavedigitech.com; http://www.wavedigitech.com Phone : 91-9632839173
  • 20. U-boot : Pre-relocation bootstrapping  mark_bootstage() // Set boot stage to post-relocation boot  enable_caches() // Enable cache  board_init() // Setup board specific configuration (GPIO)  mem_malloc_init() // Configure malloc area  arch_early_init_r() // if CONFIG_ARCH_EARLY_INIT_R  power_init_board() // PMIC initializations  Flash/Nand/MMC initialization  env_relocate() // Relocate environment or set NULL  checkboard() //print board info  arch_misc_init() // miscellaneous arch dependent init  misc_init_r() // miscellaneous platform dependent init  interrupt_init() // Initialize exceptions if CONFIG_IRQ  enable_interrupts() // Enable Exceptions  board_late_init() // Board late init  eth_initialize() // Setup ethernet  main_loop() // Jump to main loop & waiting for commands from console.  board_init_r() calling sequence for arm E-mail: info@wavedigitech.com; http://www.wavedigitech.com Phone : 91-9632839173
  • 21. Debugging • Add DEBUG to configuration file to inspect stack and relocation address. – include/configs/loganlte.h: • #define DEBUG • When U-Boot starts it is running from ROM space. Running from flash would make it nearly impossible to read from flash while executing code. • With GCC it is possible to use optimization in combination with the debugging option -g. Many other compilers do not allow this. • U-boot image can also used to generate the disassembly. – $(CROSS_COMPILE)objdump -D u-boot > u-boot.dis • Later U-Boot relocates itself to RAM. We therefore have two phases: – Debugging of U-Boot Before Relocation – Debugging of U-Boot After Relocation E-mail: info@wavedigitech.com; http://www.wavedigitech.com Phone : 91-9632839173
  • 22. Debugging before Relocation Debugging U-Boot in this phase with the BDI2000 is quite easy bash[0]$ ${CROSS_COMPILE}gdb u-boot (gdb) target remote bdi:2001 Remote debugging using bdi:2001 0xfffffffc in ?? () (gdb) b cpu_init_f Breakpoint 1 at 0xfffd3310: file cpu_init.c, line 136. (gdb) c Continuing. Breakpoint 1, cpu_init_f () at cpu_init.c:136 136 asm volatile(" bl 0f" ::: "lr"); (gdb) s 137 asm volatile("0: mflr 3" ::: "r3"); (gdb) 138 asm volatile(" addi 4, 0, 14" ::: "r4"); (gdb) cpu_init_f is the first C function called from the code in start.C. E-mail: info@wavedigitech.com; http://www.wavedigitech.com Phone : 91-9632839173
  • 23. Debugging after Relocation struct global_data (register r8)‘relocaddr’ contains start address of u-boot in RAM Relocation address = <MAXMEM> - CFG_MONITOR_LEN = 16 MB – 192KB = 0x1000000 - 0x30000 = 0xFD0000 (gdb) symbol-file Discard symbol table from `/home/dzu/denx/cvs-trees/u-boot/u-boot'? (y or n) y No symbol file now. (gdb) add-symbol-file u-boot 0xfd0000 add symbol table from file "u-boot" at .text_addr = 0xfd0000 (y or n) y Reading symbols from u-boot...done. (gdb) b board_init_r Breakpoint 2 at 0xfd99ac: file board.c, line 533. (gdb) c Continuing. Breakpoint 2, board_init_r (id=0xfbb1f0, dest_addr=16495088) at board.c:533 533 { (gdb) board_init_r is the first C routine running in the newly relocated C friendly RAM environment. E-mail: info@wavedigitech.com; http://www.wavedigitech.com Phone : 91-9632839173
  • 24. The 10 Golden Rules of U-Boot design 1. Keep it Small 2. Keep it Fast 3. Keep it Simple 4. Keep it Portable 5. Keep it Configurable 6. Keep it Debug-able 7. Keep it Usable 8. Keep it Maintainable 9. Keep it Beautiful 10.Keep it Open E-mail: info@wavedigitech.com; http://www.wavedigitech.com Phone : 91-9632839173
  • 25. At the end… • how to write optimized u-boot code ?  Use inline functions whenever possible ? it increases code size but saves u the overhead of stack push & pop operations  Code all critical / frequently used code in assembly  Store frequently used variables in register  Use global variables it saves you push/pop stack operation during function call.  Don't use floating point calculations / variables.  Enable GCC Optimization.  -O1 = With this option the resulting executables should be smaller and faster than with -O0  -O2 = This option is generally the best choice for deployment of a program  -O3 = This option may increase the speed of the resulting executable, but can also increase its size  -Os = his option selects optimizations which reduce the size of an executable. E-mail: info@wavedigitech.com; http://www.wavedigitech.com Phone : 91-9632839173
  • 26. At the end… • Why U-boot relocate itself into RAM ? – Memory access is faster from RAM than from ROM, this will matter particularly if target has no instruction cache. – Executing from RAM allows flash reprogramming; also (more minor) it allows software breakpoints with "trap" instructions. – Variable cannot be modified when it is stored in ROM. • Boot loader must copy itself to RAM to update the variables correctly. • Function calls relies on stack operation which is also should be stored in RAM. • Can U-Boot be configured such that it can be started in RAM? – Yes, By enabling the CONFIG_SYS_RAMBOOT. – But this feature is not tested with all the boards, refer doc/README.mpc85xx. – For u-boot builds switch CONFIG_SYS_TEXT_BASE between flash and ram builds. E-mail: info@wavedigitech.com; http://www.wavedigitech.com Phone : 91-9632839173
  • 27. At the end… • Can U-Boot be configured such that it can be started in RAM? – Yes, By enabling the CONFIG_SYS_RAMBOOT. – But this feature is not tested with all the boards, refer doc/README.mpc85xx. – For u-boot builds switch CONFIG_SYS_TEXT_BASE between flash and ram builds if MMU is disabled. • Why Linux hangs after uncompressing the kernel ? Uncompressing Kernel Image ... OK – Bad definition of the bd_info structure . – Bad clock information • setenv clocks_in_mhz 1; saveenv • For more: Read U-Boot FAQ at http://www.denx.de/wiki/view/DULG/FaqUBoot E-mail: info@wavedigitech.com; http://www.wavedigitech.com Phone : 91-9632839173
  • 28. For more information visit http://www.denx.de/wiki/U-Boot Any Question ? E-mail: info@wavedigitech.com; http://www.wavedigitech.com Phone : 91-9632839173 © Copyright 2013, wavedigitech.com. Latest update: Janl 30, 2013, http://www.wavedigitech.com/ Call us on : +91-9632839173 E-Mail : info@wavedigitech.com Thank You