BeagleBone Black Booting Process

S
SysPlay eLearning Academy for YouSysPlay eLearning Academy for You
© 2015-17 SysPlay Workshops <workshop@sysplay.in>
All Rights Reserved.
BeagleBone Black Booting Process
2© 2015-17 SysPlay Workshops <workshop@sysplay.in>
All Rights Reserved.
What to Expect?
PC Booting Process
Beagle Booting Process
Booting through SD Card
Partitioning & Creating Root Filesystem
W's of Bootloaders
U-Boot
Serial Booting
Adding the command in U-Boot
3© 2015-17 SysPlay Workshops <workshop@sysplay.in>
All Rights Reserved.
PC Booting Process
Power-Up / Reset Operation
BIOS
(POST)
Primary
Bootloader
(446 Bytes)
Primary
Bootloader
(446 Bytes)
0XAA55
Partition Table
(64 Bytes)
GRUB/LILO
(Kernel Loader)
Kernel
Initrd
Init
(User Space
App.)
System
Startup
Stage 1
Bootloader
Stage 2
Bootloader
KernelStage 2
Bootloader
User
Space
4© 2015-17 SysPlay Workshops <workshop@sysplay.in>
All Rights Reserved.
BBB Memory Organization
DDR
512MB
ROM
Internal
RAM
128KB
SOC
BeagleBone Black
0x80000000
0x40200000
0x402F0400 EMMC
4GB
Ext.
MMC
5© 2015-17 SysPlay Workshops <workshop@sysplay.in>
All Rights Reserved.
General Booting of BeagleBoard
Image under “CC BY-SA 3.0 US” from http://omappedia.org/wiki/Bootloader_Project
6© 2015-17 SysPlay Workshops <workshop@sysplay.in>
All Rights Reserved.
BBB Images
ROM
Code
X-loader
SOC
BeagleBone Black
ROM
Internal RAM
DDR
u-boot
bbb.dtb
uImage
Ramdisk/initrd
(Ramdisk Boot)
7© 2015-17 SysPlay Workshops <workshop@sysplay.in>
All Rights Reserved.
AM335x Processor Boot Modes
Memory Booting
NAND, NOR, MMC
Peripheral Booting
USB, UART, Ethernet
The Order / Sequence is determined by
The set of GPIO configuration pins called SYSBOOT
pins (5 pins)
8© 2015-17 SysPlay Workshops <workshop@sysplay.in>
All Rights Reserved.
Beagle Booting Process
(SD Card)
ROM code loads x-loader (MLO)
Performs External DRAM configuration
X-loader loads u-boot
Default location is /media/mmcblkp01/u-boot.bin
U-boot executes default environment/commands
Default location is /mmcblkp01/uEnv.txt
Commands load the Kernel
Default location is /media/mmcblkop2/boot/uImage
Kernel reads root file system
9© 2015-17 SysPlay Workshops <workshop@sysplay.in>
All Rights Reserved.
Board Bring Up
Spoil the board
Delete u-boot.img, uImage and user.txt
Get the u-boot.img and user.txt
Change the ipaddr in user.txt
Reboot the board
Press the user button until countdown
This will boot the board with ramdisk
Re-partition the card
Create 3 partitions and filesystem on them
Restore the required images
Get MLO, u-boot.img, uEnv.txt and am335x-boneblack.dtb
Get the RootFs.xz in second partition and untar the same
10© 2015-17 SysPlay Workshops <workshop@sysplay.in>
All Rights Reserved.
Recovering the Board
Copy the user.txt and u-boot.img
tftp -g <serverip> -r u-boot_bringup.img -l u-boot.img
tftp -g <serverip> -r user.txt -l user.txt
Change the ip address in user.txt
Delete the kernel - /boot/zImage
Delete the Root Filesystem
Reboot the system
11© 2015-17 SysPlay Workshops <workshop@sysplay.in>
All Rights Reserved.
SD Card Partitioning
fdisk /dev/mmcblk0
Create a windows partition of 116MB
Make it bootable
Create two primary Linux partitions of sizes 3GB
and 1GB approx
12© 2015-17 SysPlay Workshops <workshop@sysplay.in>
All Rights Reserved.
Creating & Filling the Filesystem
Create the Filesystem of type Fat 32 on first partition
mkfs.vfat -F 32 /dev/mmcblk0p1 -n boot
Create the Filesystem of type ext2 on Second and third partitions
mke2fs -L FirstRootFs /dev/mmcblk0p2
mke2fs -L SecondRootFs /dev/mmcblk0p3
Fill the filesystem with contents
tftp -g 192.168.20.181 -r RootFs.xz
tar -zxvf RootFs.xz
Copy u-boot_bringup.img, user.txt and uEnv.txt in vfat partition
tftp -g <server_ip> -r u-boot_bringup.img -l u-boot.img
tftp -g <server_ip> -r user.txt
tftp -g <server_ip> -r uEnv.txt
tftp -g <server_ip> -r am335x-boneblack.dtb
13© 2015-17 SysPlay Workshops <workshop@sysplay.in>
All Rights Reserved.
Board Bring up Hands On
Delete all the contents of External SD card
Get the MLO, u-boot.img, user.txt
Press the boot switch to change the booting sequence
Kernel boots with ramdisk
Re-partition the card and create the filesystem(vfat on first
partition and Ext2 on other two)
Get the MLO, u-boot.img, am335x-boneblack.dtb, uEnv.txt
and user.txt in first partition
Get the Root Filesystem in second partition
14© 2015-17 SysPlay Workshops <workshop@sysplay.in>
All Rights Reserved.
What is a Bootloader?
Also, referred to as boot monitor, is a small piece
of software that executes soon after powering up
a system
Simply, a loader (program), which boots up
(starts) the system
A Customized Program started by
Controller's Internal Code in Embedded Systems, Or
External Pre-programmed Code (like BIOS) in
Desktops
15© 2015-17 SysPlay Workshops <workshop@sysplay.in>
All Rights Reserved.
Tasks of a Bootloader
Initialization Tasks
Memory Setup & Initialization
System Peripheral Initialization
for the kernel
Actual Task
Load the RAM-based File System, like initrd, initramfs, ...
Load the Kernel with proper arguments
Jump to the start of the Kernel
Additional Tasks
Multiple Kernel Boots
16© 2015-17 SysPlay Workshops <workshop@sysplay.in>
All Rights Reserved.
Design of Bootloaders
As Bootloader is started by a fixed code
It needs to be placed at a hard-coded location
Hard-coded locations are not big enough for the
complete code (/ logic / tasks) of the bootloader
Hence, it is typically split into 2 portions
Stage 1 – Small enough to load Stage 2 from our desired
location
Stage 2 – The actual bootloader we want to have
17© 2015-17 SysPlay Workshops <workshop@sysplay.in>
All Rights Reserved.
Bootloader Comparisons
On Desktops
Initialization Tasks are done by BIOS
Bootloader is to just Boot the Kernel
On Embedded Systems
All needs to be done by the Bootloader
But in an optimized way
Hence, the 2 bootloaders are
Quite different from each other
Later being more board dependent & constrained
18© 2015-17 SysPlay Workshops <workshop@sysplay.in>
All Rights Reserved.
Stage 2 Bootloader Flavours
Prevalent Desktop Bootloaders
LILO
GRUB
SYSLINUX
loadlin
Coreboot (Earlier called LinuxBIOS)
Popular Embedded System Bootloaders
BootLoader Object (BLOB)
Redboot
U-Boot
19© 2015-17 SysPlay Workshops <workshop@sysplay.in>
All Rights Reserved.
Check
Name the Stage 1 & Stage 2 bootloaders
Desktops
Embedded Systems
20© 2015-17 SysPlay Workshops <workshop@sysplay.in>
All Rights Reserved.
U-Boot
21© 2015-17 SysPlay Workshops <workshop@sysplay.in>
All Rights Reserved.
W's of U-Boot
Universal Bootloader (U-Boot)
An Open Source Bootloader
With minimal changes, can be ported for any board
GRUB/LILO
Designed with x-86 in mind
Huge in Size
Needs to be changed drastically for porting on other
architecture
22© 2015-17 SysPlay Workshops <workshop@sysplay.in>
All Rights Reserved.
U-Boot Source Tree
arch – Architecture dependent Code
board – Board dependent Code
common – Environment & Command Line Code
doc – Documentation
drivers – Device specific Drivers
fs – File System support Code
include – Headers
lib – Compression, Encryption related Code
net – Minimal Network Stack
tools – U-Boot Utilities (mkimage is here)
23© 2015-17 SysPlay Workshops <workshop@sysplay.in>
All Rights Reserved.
U-Boot Hands-on
Stopping at the U-Boot
Help - “?”
Commands
Booting: bootp, bootm, boot, ...
NOR Flash: erase, cp, protect, …
NAND Flash: nand
Miscellaneous: reset, ...
...
Environment Variables
printenv
setenv
saveenv
24© 2015-17 SysPlay Workshops <workshop@sysplay.in>
All Rights Reserved.
Booting through the Serial
Boot ROM can load any binary x-loader image into
the internal SRAM of 109K
For Serial Boot,
A simple ID is written out of the serial port
If host responds within that short window of time
The ROM reads from serial port
Transfers the data to the internal SRAM
Control is passed to the start of the SRAM.
25© 2015-17 SysPlay Workshops <workshop@sysplay.in>
All Rights Reserved.
BBB Serial Booting
ROM
Code
X-loader
SOC
ROM
Internal RAM
DDR
u-boot
bbb.dtb
uImage
Ramdisk/initrd
(Ramdisk Boot)
X-Loader
u-boot
26© 2015-17 SysPlay Workshops <workshop@sysplay.in>
All Rights Reserved.
U-Boot Compiling
Preparing the Makefile
Setup CROSS_COMPILE for cross compilation
Or, invoke make with these options
Configuring for a particular board
make <board>_config
Compiling for the configured board
make (Output would be u-boot.img)
Cleaning up
make clean
27© 2015-17 SysPlay Workshops <workshop@sysplay.in>
All Rights Reserved.
Adding the Command in U-Boot
Create the file cmd_<file>.c
Fill the Macro 'U_BOOT_CMD()'
name: the name of the command
maxargs: the maximum number of arguments this function takes
command: func pointer (*cmd)(struct cmd_tbl_s *, int, int, char *[])
usage: Short Description
help: Long description
Add the entry into common/Makefile
COBJS-$(CONFIG_CMD_<NAME>) += cmd_<file>.o
Include the macro CONFIG_CMD_<NAME> in board.h file
28© 2015-17 SysPlay Workshops <workshop@sysplay.in>
All Rights Reserved.
What all have learnt?
PC Booting Process
Beagle Booting Process
Booting through SD Card
Partitioning & Creating Root Filesystem
W's of Bootloaders
U-Boot
Serial Booting
Adding the command in U-Boot
29© 2015-17 SysPlay Workshops <workshop@sysplay.in>
All Rights Reserved.
Any Queries?
1 of 29

Recommended

BeagleBone Black Bootloaders by
BeagleBone Black BootloadersBeagleBone Black Bootloaders
BeagleBone Black BootloadersSysPlay eLearning Academy for You
4.6K views24 slides
Bootloaders by
BootloadersBootloaders
BootloadersAnil Kumar Pugalia
10K views19 slides
BeagleBoard-xM Booting Process by
BeagleBoard-xM Booting ProcessBeagleBoard-xM Booting Process
BeagleBoard-xM Booting ProcessSysPlay eLearning Academy for You
3.8K views25 slides
Linux Porting by
Linux PortingLinux Porting
Linux PortingAnil Kumar Pugalia
17.5K views29 slides
U-Boot - An universal bootloader by
U-Boot - An universal bootloader U-Boot - An universal bootloader
U-Boot - An universal bootloader Emertxe Information Technologies Pvt Ltd
3K views46 slides
LCU13: An Introduction to ARM Trusted Firmware by
LCU13: An Introduction to ARM Trusted FirmwareLCU13: An Introduction to ARM Trusted Firmware
LCU13: An Introduction to ARM Trusted FirmwareLinaro
30.4K views26 slides

More Related Content

What's hot

Linux watchdog timer by
Linux watchdog timerLinux watchdog timer
Linux watchdog timerRajKumar Rampelli
3K views7 slides
Basics of boot-loader by
Basics of boot-loaderBasics of boot-loader
Basics of boot-loaderiamumr
8.3K views13 slides
Jagan Teki - U-boot from scratch by
Jagan Teki - U-boot from scratchJagan Teki - U-boot from scratch
Jagan Teki - U-boot from scratchlinuxlab_conf
708 views90 slides
USB Drivers by
USB DriversUSB Drivers
USB DriversAnil Kumar Pugalia
42.9K views31 slides
I2C Drivers by
I2C DriversI2C Drivers
I2C DriversSysPlay eLearning Academy for You
28.8K views28 slides
BeagleBone Black Bootloaders by
BeagleBone Black BootloadersBeagleBone Black Bootloaders
BeagleBone Black BootloadersSysPlay eLearning Academy for You
4K views27 slides

What's hot(20)

Basics of boot-loader by iamumr
Basics of boot-loaderBasics of boot-loader
Basics of boot-loader
iamumr8.3K views
Jagan Teki - U-boot from scratch by linuxlab_conf
Jagan Teki - U-boot from scratchJagan Teki - U-boot from scratch
Jagan Teki - U-boot from scratch
linuxlab_conf708 views
U-Boot presentation 2013 by Wave Digitech
U-Boot presentation  2013U-Boot presentation  2013
U-Boot presentation 2013
Wave Digitech18.7K views
Trusted firmware deep_dive_v1.0_ by Linaro
Trusted firmware deep_dive_v1.0_Trusted firmware deep_dive_v1.0_
Trusted firmware deep_dive_v1.0_
Linaro10K views
SFO15-TR9: PSCI, ACPI (and UEFI to boot) by Linaro
SFO15-TR9: PSCI, ACPI (and UEFI to boot)SFO15-TR9: PSCI, ACPI (and UEFI to boot)
SFO15-TR9: PSCI, ACPI (and UEFI to boot)
Linaro3.4K views
Uboot startup sequence by Houcheng Lin
Uboot startup sequenceUboot startup sequence
Uboot startup sequence
Houcheng Lin33.7K views
U Boot or Universal Bootloader by Satpal Parmar
U Boot or Universal BootloaderU Boot or Universal Bootloader
U Boot or Universal Bootloader
Satpal Parmar21.1K views
XPDS16: Porting Xen on ARM to a new SOC - Julien Grall, ARM by The Linux Foundation
XPDS16: Porting Xen on ARM to a new SOC - Julien Grall, ARMXPDS16: Porting Xen on ARM to a new SOC - Julien Grall, ARM
XPDS16: Porting Xen on ARM to a new SOC - Julien Grall, ARM
linux device driver by Rahul Batra
linux device driverlinux device driver
linux device driver
Rahul Batra11.4K views
Bootloaders (U-Boot) by Omkar Rane
Bootloaders (U-Boot) Bootloaders (U-Boot)
Bootloaders (U-Boot)
Omkar Rane635 views
Board support package_on_linux by Vandana Salve
Board support package_on_linuxBoard support package_on_linux
Board support package_on_linux
Vandana Salve6.9K views
U boot porting guide for SoC by Macpaul Lin
U boot porting guide for SoCU boot porting guide for SoC
U boot porting guide for SoC
Macpaul Lin11.9K views
LAS16-402: ARM Trusted Firmware – from Enterprise to Embedded by Linaro
LAS16-402: ARM Trusted Firmware – from Enterprise to EmbeddedLAS16-402: ARM Trusted Firmware – from Enterprise to Embedded
LAS16-402: ARM Trusted Firmware – from Enterprise to Embedded
Linaro3.4K views
Embedded_Linux_Booting by Rashila Rr
Embedded_Linux_BootingEmbedded_Linux_Booting
Embedded_Linux_Booting
Rashila Rr513 views

Similar to BeagleBone Black Booting Process

BeagleBoard-xM Bootloaders by
BeagleBoard-xM BootloadersBeagleBoard-xM Bootloaders
BeagleBoard-xM BootloadersSysPlay eLearning Academy for You
7.3K views17 slides
U-Boot Porting on New Hardware by
U-Boot Porting on New HardwareU-Boot Porting on New Hardware
U-Boot Porting on New HardwareRuggedBoardGroup
2K views31 slides
Armboot process zeelogic by
Armboot process zeelogicArmboot process zeelogic
Armboot process zeelogicAleem Shariff
2.3K views22 slides
Raspberry Pi tutorial by
Raspberry Pi tutorialRaspberry Pi tutorial
Raspberry Pi tutorial艾鍗科技
2.4K views33 slides
ChromePad - Chromium OS for ThinkPad by
ChromePad - Chromium OS for ThinkPadChromePad - Chromium OS for ThinkPad
ChromePad - Chromium OS for ThinkPadAndrewWright224
375 views156 slides
ChromePad - Chromium OS ThinkPad X220 by
ChromePad - Chromium OS ThinkPad X220ChromePad - Chromium OS ThinkPad X220
ChromePad - Chromium OS ThinkPad X220AndrewWright224
1.8K views116 slides

Similar to BeagleBone Black Booting Process(20)

Armboot process zeelogic by Aleem Shariff
Armboot process zeelogicArmboot process zeelogic
Armboot process zeelogic
Aleem Shariff2.3K views
Raspberry Pi tutorial by 艾鍗科技
Raspberry Pi tutorialRaspberry Pi tutorial
Raspberry Pi tutorial
艾鍗科技2.4K views
ChromePad - Chromium OS for ThinkPad by AndrewWright224
ChromePad - Chromium OS for ThinkPadChromePad - Chromium OS for ThinkPad
ChromePad - Chromium OS for ThinkPad
AndrewWright224375 views
ChromePad - Chromium OS ThinkPad X220 by AndrewWright224
ChromePad - Chromium OS ThinkPad X220ChromePad - Chromium OS ThinkPad X220
ChromePad - Chromium OS ThinkPad X220
AndrewWright2241.8K views
建構嵌入式Linux系統於SD Card by 艾鍗科技
建構嵌入式Linux系統於SD Card建構嵌入式Linux系統於SD Card
建構嵌入式Linux系統於SD Card
艾鍗科技5.9K views
Hypervisor and VDI security by Denis Gundarev
Hypervisor and VDI securityHypervisor and VDI security
Hypervisor and VDI security
Denis Gundarev2.8K views
Grub2 Booting Process by Mike Wang
Grub2 Booting ProcessGrub2 Booting Process
Grub2 Booting Process
Mike Wang5.5K views
Getting started with LinuxBoot Firmware on AArch64 Server by Naohiro Tamura
Getting started with LinuxBoot Firmware on AArch64 Server Getting started with LinuxBoot Firmware on AArch64 Server
Getting started with LinuxBoot Firmware on AArch64 Server
Naohiro Tamura54 views
my Windows 7 info by isky guard
my Windows 7 infomy Windows 7 info
my Windows 7 info
isky guard2.1K views
Tkos secure boot_lecture_20190605 by benavrhm
Tkos secure boot_lecture_20190605Tkos secure boot_lecture_20190605
Tkos secure boot_lecture_20190605
benavrhm74 views

More from SysPlay eLearning Academy for You

Linux Internals Part - 3 by
Linux Internals Part - 3Linux Internals Part - 3
Linux Internals Part - 3SysPlay eLearning Academy for You
121 views52 slides
Linux Internals Part - 2 by
Linux Internals Part - 2Linux Internals Part - 2
Linux Internals Part - 2SysPlay eLearning Academy for You
62 views57 slides
Linux Internals Part - 1 by
Linux Internals Part - 1Linux Internals Part - 1
Linux Internals Part - 1SysPlay eLearning Academy for You
93 views70 slides
Kernel Timing Management by
Kernel Timing ManagementKernel Timing Management
Kernel Timing ManagementSysPlay eLearning Academy for You
3.1K views29 slides
Understanding the BBB by
Understanding the BBBUnderstanding the BBB
Understanding the BBBSysPlay eLearning Academy for You
9.5K views10 slides
POSIX Threads by
POSIX ThreadsPOSIX Threads
POSIX ThreadsSysPlay eLearning Academy for You
4.1K views21 slides

More from SysPlay eLearning Academy for You(15)

Recently uploaded

.conf Go 2023 - Data analysis as a routine by
.conf Go 2023 - Data analysis as a routine.conf Go 2023 - Data analysis as a routine
.conf Go 2023 - Data analysis as a routineSplunk
93 views12 slides
Voice Logger - Telephony Integration Solution at Aegis by
Voice Logger - Telephony Integration Solution at AegisVoice Logger - Telephony Integration Solution at Aegis
Voice Logger - Telephony Integration Solution at AegisNirmal Sharma
17 views1 slide
Upskilling the Evolving Workforce with Digital Fluency for Tomorrow's Challen... by
Upskilling the Evolving Workforce with Digital Fluency for Tomorrow's Challen...Upskilling the Evolving Workforce with Digital Fluency for Tomorrow's Challen...
Upskilling the Evolving Workforce with Digital Fluency for Tomorrow's Challen...NUS-ISS
28 views70 slides
AI: mind, matter, meaning, metaphors, being, becoming, life values by
AI: mind, matter, meaning, metaphors, being, becoming, life valuesAI: mind, matter, meaning, metaphors, being, becoming, life values
AI: mind, matter, meaning, metaphors, being, becoming, life valuesTwain Liu 刘秋艳
35 views16 slides
handbook for web 3 adoption.pdf by
handbook for web 3 adoption.pdfhandbook for web 3 adoption.pdf
handbook for web 3 adoption.pdfLiveplex
19 views16 slides
PharoJS - Zürich Smalltalk Group Meetup November 2023 by
PharoJS - Zürich Smalltalk Group Meetup November 2023PharoJS - Zürich Smalltalk Group Meetup November 2023
PharoJS - Zürich Smalltalk Group Meetup November 2023Noury Bouraqadi
120 views17 slides

Recently uploaded(20)

.conf Go 2023 - Data analysis as a routine by Splunk
.conf Go 2023 - Data analysis as a routine.conf Go 2023 - Data analysis as a routine
.conf Go 2023 - Data analysis as a routine
Splunk93 views
Voice Logger - Telephony Integration Solution at Aegis by Nirmal Sharma
Voice Logger - Telephony Integration Solution at AegisVoice Logger - Telephony Integration Solution at Aegis
Voice Logger - Telephony Integration Solution at Aegis
Nirmal Sharma17 views
Upskilling the Evolving Workforce with Digital Fluency for Tomorrow's Challen... by NUS-ISS
Upskilling the Evolving Workforce with Digital Fluency for Tomorrow's Challen...Upskilling the Evolving Workforce with Digital Fluency for Tomorrow's Challen...
Upskilling the Evolving Workforce with Digital Fluency for Tomorrow's Challen...
NUS-ISS28 views
AI: mind, matter, meaning, metaphors, being, becoming, life values by Twain Liu 刘秋艳
AI: mind, matter, meaning, metaphors, being, becoming, life valuesAI: mind, matter, meaning, metaphors, being, becoming, life values
AI: mind, matter, meaning, metaphors, being, becoming, life values
handbook for web 3 adoption.pdf by Liveplex
handbook for web 3 adoption.pdfhandbook for web 3 adoption.pdf
handbook for web 3 adoption.pdf
Liveplex19 views
PharoJS - Zürich Smalltalk Group Meetup November 2023 by Noury Bouraqadi
PharoJS - Zürich Smalltalk Group Meetup November 2023PharoJS - Zürich Smalltalk Group Meetup November 2023
PharoJS - Zürich Smalltalk Group Meetup November 2023
Noury Bouraqadi120 views
SAP Automation Using Bar Code and FIORI.pdf by Virendra Rai, PMP
SAP Automation Using Bar Code and FIORI.pdfSAP Automation Using Bar Code and FIORI.pdf
SAP Automation Using Bar Code and FIORI.pdf
Igniting Next Level Productivity with AI-Infused Data Integration Workflows by Safe Software
Igniting Next Level Productivity with AI-Infused Data Integration Workflows Igniting Next Level Productivity with AI-Infused Data Integration Workflows
Igniting Next Level Productivity with AI-Infused Data Integration Workflows
Safe Software225 views
Data-centric AI and the convergence of data and model engineering: opportunit... by Paolo Missier
Data-centric AI and the convergence of data and model engineering:opportunit...Data-centric AI and the convergence of data and model engineering:opportunit...
Data-centric AI and the convergence of data and model engineering: opportunit...
Paolo Missier34 views
Black and White Modern Science Presentation.pptx by maryamkhalid2916
Black and White Modern Science Presentation.pptxBlack and White Modern Science Presentation.pptx
Black and White Modern Science Presentation.pptx
maryamkhalid291614 views
Five Things You SHOULD Know About Postman by Postman
Five Things You SHOULD Know About PostmanFive Things You SHOULD Know About Postman
Five Things You SHOULD Know About Postman
Postman27 views
Future of Learning - Khoong Chan Meng by NUS-ISS
Future of Learning - Khoong Chan MengFuture of Learning - Khoong Chan Meng
Future of Learning - Khoong Chan Meng
NUS-ISS33 views
[2023] Putting the R! in R&D.pdf by Eleanor McHugh
[2023] Putting the R! in R&D.pdf[2023] Putting the R! in R&D.pdf
[2023] Putting the R! in R&D.pdf
Eleanor McHugh38 views
Understanding GenAI/LLM and What is Google Offering - Felix Goh by NUS-ISS
Understanding GenAI/LLM and What is Google Offering - Felix GohUnderstanding GenAI/LLM and What is Google Offering - Felix Goh
Understanding GenAI/LLM and What is Google Offering - Felix Goh
NUS-ISS41 views
AMAZON PRODUCT RESEARCH.pdf by JerikkLaureta
AMAZON PRODUCT RESEARCH.pdfAMAZON PRODUCT RESEARCH.pdf
AMAZON PRODUCT RESEARCH.pdf
JerikkLaureta15 views
Future of Learning - Yap Aye Wee.pdf by NUS-ISS
Future of Learning - Yap Aye Wee.pdfFuture of Learning - Yap Aye Wee.pdf
Future of Learning - Yap Aye Wee.pdf
NUS-ISS41 views
Empathic Computing: Delivering the Potential of the Metaverse by Mark Billinghurst
Empathic Computing: Delivering  the Potential of the MetaverseEmpathic Computing: Delivering  the Potential of the Metaverse
Empathic Computing: Delivering the Potential of the Metaverse
Mark Billinghurst470 views
Web Dev - 1 PPT.pdf by gdsczhcet
Web Dev - 1 PPT.pdfWeb Dev - 1 PPT.pdf
Web Dev - 1 PPT.pdf
gdsczhcet55 views

BeagleBone Black Booting Process

  • 1. © 2015-17 SysPlay Workshops <workshop@sysplay.in> All Rights Reserved. BeagleBone Black Booting Process
  • 2. 2© 2015-17 SysPlay Workshops <workshop@sysplay.in> All Rights Reserved. What to Expect? PC Booting Process Beagle Booting Process Booting through SD Card Partitioning & Creating Root Filesystem W's of Bootloaders U-Boot Serial Booting Adding the command in U-Boot
  • 3. 3© 2015-17 SysPlay Workshops <workshop@sysplay.in> All Rights Reserved. PC Booting Process Power-Up / Reset Operation BIOS (POST) Primary Bootloader (446 Bytes) Primary Bootloader (446 Bytes) 0XAA55 Partition Table (64 Bytes) GRUB/LILO (Kernel Loader) Kernel Initrd Init (User Space App.) System Startup Stage 1 Bootloader Stage 2 Bootloader KernelStage 2 Bootloader User Space
  • 4. 4© 2015-17 SysPlay Workshops <workshop@sysplay.in> All Rights Reserved. BBB Memory Organization DDR 512MB ROM Internal RAM 128KB SOC BeagleBone Black 0x80000000 0x40200000 0x402F0400 EMMC 4GB Ext. MMC
  • 5. 5© 2015-17 SysPlay Workshops <workshop@sysplay.in> All Rights Reserved. General Booting of BeagleBoard Image under “CC BY-SA 3.0 US” from http://omappedia.org/wiki/Bootloader_Project
  • 6. 6© 2015-17 SysPlay Workshops <workshop@sysplay.in> All Rights Reserved. BBB Images ROM Code X-loader SOC BeagleBone Black ROM Internal RAM DDR u-boot bbb.dtb uImage Ramdisk/initrd (Ramdisk Boot)
  • 7. 7© 2015-17 SysPlay Workshops <workshop@sysplay.in> All Rights Reserved. AM335x Processor Boot Modes Memory Booting NAND, NOR, MMC Peripheral Booting USB, UART, Ethernet The Order / Sequence is determined by The set of GPIO configuration pins called SYSBOOT pins (5 pins)
  • 8. 8© 2015-17 SysPlay Workshops <workshop@sysplay.in> All Rights Reserved. Beagle Booting Process (SD Card) ROM code loads x-loader (MLO) Performs External DRAM configuration X-loader loads u-boot Default location is /media/mmcblkp01/u-boot.bin U-boot executes default environment/commands Default location is /mmcblkp01/uEnv.txt Commands load the Kernel Default location is /media/mmcblkop2/boot/uImage Kernel reads root file system
  • 9. 9© 2015-17 SysPlay Workshops <workshop@sysplay.in> All Rights Reserved. Board Bring Up Spoil the board Delete u-boot.img, uImage and user.txt Get the u-boot.img and user.txt Change the ipaddr in user.txt Reboot the board Press the user button until countdown This will boot the board with ramdisk Re-partition the card Create 3 partitions and filesystem on them Restore the required images Get MLO, u-boot.img, uEnv.txt and am335x-boneblack.dtb Get the RootFs.xz in second partition and untar the same
  • 10. 10© 2015-17 SysPlay Workshops <workshop@sysplay.in> All Rights Reserved. Recovering the Board Copy the user.txt and u-boot.img tftp -g <serverip> -r u-boot_bringup.img -l u-boot.img tftp -g <serverip> -r user.txt -l user.txt Change the ip address in user.txt Delete the kernel - /boot/zImage Delete the Root Filesystem Reboot the system
  • 11. 11© 2015-17 SysPlay Workshops <workshop@sysplay.in> All Rights Reserved. SD Card Partitioning fdisk /dev/mmcblk0 Create a windows partition of 116MB Make it bootable Create two primary Linux partitions of sizes 3GB and 1GB approx
  • 12. 12© 2015-17 SysPlay Workshops <workshop@sysplay.in> All Rights Reserved. Creating & Filling the Filesystem Create the Filesystem of type Fat 32 on first partition mkfs.vfat -F 32 /dev/mmcblk0p1 -n boot Create the Filesystem of type ext2 on Second and third partitions mke2fs -L FirstRootFs /dev/mmcblk0p2 mke2fs -L SecondRootFs /dev/mmcblk0p3 Fill the filesystem with contents tftp -g 192.168.20.181 -r RootFs.xz tar -zxvf RootFs.xz Copy u-boot_bringup.img, user.txt and uEnv.txt in vfat partition tftp -g <server_ip> -r u-boot_bringup.img -l u-boot.img tftp -g <server_ip> -r user.txt tftp -g <server_ip> -r uEnv.txt tftp -g <server_ip> -r am335x-boneblack.dtb
  • 13. 13© 2015-17 SysPlay Workshops <workshop@sysplay.in> All Rights Reserved. Board Bring up Hands On Delete all the contents of External SD card Get the MLO, u-boot.img, user.txt Press the boot switch to change the booting sequence Kernel boots with ramdisk Re-partition the card and create the filesystem(vfat on first partition and Ext2 on other two) Get the MLO, u-boot.img, am335x-boneblack.dtb, uEnv.txt and user.txt in first partition Get the Root Filesystem in second partition
  • 14. 14© 2015-17 SysPlay Workshops <workshop@sysplay.in> All Rights Reserved. What is a Bootloader? Also, referred to as boot monitor, is a small piece of software that executes soon after powering up a system Simply, a loader (program), which boots up (starts) the system A Customized Program started by Controller's Internal Code in Embedded Systems, Or External Pre-programmed Code (like BIOS) in Desktops
  • 15. 15© 2015-17 SysPlay Workshops <workshop@sysplay.in> All Rights Reserved. Tasks of a Bootloader Initialization Tasks Memory Setup & Initialization System Peripheral Initialization for the kernel Actual Task Load the RAM-based File System, like initrd, initramfs, ... Load the Kernel with proper arguments Jump to the start of the Kernel Additional Tasks Multiple Kernel Boots
  • 16. 16© 2015-17 SysPlay Workshops <workshop@sysplay.in> All Rights Reserved. Design of Bootloaders As Bootloader is started by a fixed code It needs to be placed at a hard-coded location Hard-coded locations are not big enough for the complete code (/ logic / tasks) of the bootloader Hence, it is typically split into 2 portions Stage 1 – Small enough to load Stage 2 from our desired location Stage 2 – The actual bootloader we want to have
  • 17. 17© 2015-17 SysPlay Workshops <workshop@sysplay.in> All Rights Reserved. Bootloader Comparisons On Desktops Initialization Tasks are done by BIOS Bootloader is to just Boot the Kernel On Embedded Systems All needs to be done by the Bootloader But in an optimized way Hence, the 2 bootloaders are Quite different from each other Later being more board dependent & constrained
  • 18. 18© 2015-17 SysPlay Workshops <workshop@sysplay.in> All Rights Reserved. Stage 2 Bootloader Flavours Prevalent Desktop Bootloaders LILO GRUB SYSLINUX loadlin Coreboot (Earlier called LinuxBIOS) Popular Embedded System Bootloaders BootLoader Object (BLOB) Redboot U-Boot
  • 19. 19© 2015-17 SysPlay Workshops <workshop@sysplay.in> All Rights Reserved. Check Name the Stage 1 & Stage 2 bootloaders Desktops Embedded Systems
  • 20. 20© 2015-17 SysPlay Workshops <workshop@sysplay.in> All Rights Reserved. U-Boot
  • 21. 21© 2015-17 SysPlay Workshops <workshop@sysplay.in> All Rights Reserved. W's of U-Boot Universal Bootloader (U-Boot) An Open Source Bootloader With minimal changes, can be ported for any board GRUB/LILO Designed with x-86 in mind Huge in Size Needs to be changed drastically for porting on other architecture
  • 22. 22© 2015-17 SysPlay Workshops <workshop@sysplay.in> All Rights Reserved. U-Boot Source Tree arch – Architecture dependent Code board – Board dependent Code common – Environment & Command Line Code doc – Documentation drivers – Device specific Drivers fs – File System support Code include – Headers lib – Compression, Encryption related Code net – Minimal Network Stack tools – U-Boot Utilities (mkimage is here)
  • 23. 23© 2015-17 SysPlay Workshops <workshop@sysplay.in> All Rights Reserved. U-Boot Hands-on Stopping at the U-Boot Help - “?” Commands Booting: bootp, bootm, boot, ... NOR Flash: erase, cp, protect, … NAND Flash: nand Miscellaneous: reset, ... ... Environment Variables printenv setenv saveenv
  • 24. 24© 2015-17 SysPlay Workshops <workshop@sysplay.in> All Rights Reserved. Booting through the Serial Boot ROM can load any binary x-loader image into the internal SRAM of 109K For Serial Boot, A simple ID is written out of the serial port If host responds within that short window of time The ROM reads from serial port Transfers the data to the internal SRAM Control is passed to the start of the SRAM.
  • 25. 25© 2015-17 SysPlay Workshops <workshop@sysplay.in> All Rights Reserved. BBB Serial Booting ROM Code X-loader SOC ROM Internal RAM DDR u-boot bbb.dtb uImage Ramdisk/initrd (Ramdisk Boot) X-Loader u-boot
  • 26. 26© 2015-17 SysPlay Workshops <workshop@sysplay.in> All Rights Reserved. U-Boot Compiling Preparing the Makefile Setup CROSS_COMPILE for cross compilation Or, invoke make with these options Configuring for a particular board make <board>_config Compiling for the configured board make (Output would be u-boot.img) Cleaning up make clean
  • 27. 27© 2015-17 SysPlay Workshops <workshop@sysplay.in> All Rights Reserved. Adding the Command in U-Boot Create the file cmd_<file>.c Fill the Macro 'U_BOOT_CMD()' name: the name of the command maxargs: the maximum number of arguments this function takes command: func pointer (*cmd)(struct cmd_tbl_s *, int, int, char *[]) usage: Short Description help: Long description Add the entry into common/Makefile COBJS-$(CONFIG_CMD_<NAME>) += cmd_<file>.o Include the macro CONFIG_CMD_<NAME> in board.h file
  • 28. 28© 2015-17 SysPlay Workshops <workshop@sysplay.in> All Rights Reserved. What all have learnt? PC Booting Process Beagle Booting Process Booting through SD Card Partitioning & Creating Root Filesystem W's of Bootloaders U-Boot Serial Booting Adding the command in U-Boot
  • 29. 29© 2015-17 SysPlay Workshops <workshop@sysplay.in> All Rights Reserved. Any Queries?