Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
R
reform-boundary-uboot
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jack Humbert
reform-boundary-uboot
Commits
40e999ca
Commit
40e999ca
authored
9 years ago
by
Tim Harvey
Committed by
Stefano Babic
9 years ago
Browse files
Options
Downloads
Patches
Plain Diff
imx: ventana: update README for micro-SD boot medium
Signed-off-by:
Tim Harvey
<
tharvey@gateworks.com
>
parent
0a9c2150
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
board/gateworks/gw_ventana/README
+71
-3
71 additions, 3 deletions
board/gateworks/gw_ventana/README
with
71 additions
and
3 deletions
board/gateworks/gw_ventana/README
+
71
−
3
View file @
40e999ca
...
@@ -3,6 +3,12 @@ U-Boot for the Gateworks Ventana Product Family boards
...
@@ -3,6 +3,12 @@ U-Boot for the Gateworks Ventana Product Family boards
This file contains information for the port of U-Boot to the Gateworks
This file contains information for the port of U-Boot to the Gateworks
Ventana Product family boards.
Ventana Product family boards.
The entire Ventana product family (http://www.gateworks.com/product#ventana)
is supported by a single bootloader build by using a common SPL and U-Boot
that dynamically determines the characterstics of the board at runtime via
information from an EEPROM on the board programmed at the factory and supports
all of the various boot mediums available.
1. Secondary Program Loader (SPL)
1. Secondary Program Loader (SPL)
---------------------------------
---------------------------------
...
@@ -28,8 +34,20 @@ To build U-Boot for the Gateworks Ventana product family:
...
@@ -28,8 +34,20 @@ To build U-Boot for the Gateworks Ventana product family:
make
make
3. Boot source, boot from NAND
3. Boot source:
------------------------------
---------------
The Gateworks Ventana boards support booting from NAND or micro-SD depending
on the board model. The IMX6 BOOT ROM will choose a boot media based on eFUSE
settings programmed at the factory.
Boards with NAND flash will always boot from NAND, and NAND-less boards will
always boot from micro-SD. However, it is possible to use the U-Boot bmode
command (or the technique it uses) to essentially bootstrap to another boot
media at runtime.
3.1. boot from NAND
-------------------
The i.MX6 BOOT ROM expects some structures that provide details of NAND layout
The i.MX6 BOOT ROM expects some structures that provide details of NAND layout
and bad block information (referred to as 'bootstreams') which are replicated
and bad block information (referred to as 'bootstreams') which are replicated
...
@@ -77,7 +95,57 @@ via the mtdparts env var:
...
@@ -77,7 +95,57 @@ via the mtdparts env var:
- rootfs: the rest
- rootfs: the rest
This information is taken from:
This information is taken from:
http://trac.gateworks.com/wiki/ventana/bootloader#NANDFLASH
http://trac.gateworks.com/wiki/ventana/bootloader#nand
More details about the i.MX6 BOOT ROM can be found in the IMX6 reference manual.
3.1. boot from micro-SD
-----------------------
When the IMX6 eFUSE settings have been factory programmed to boot from
micro-SD the SPL will be loaded from offset 0x400 (1KB). Once the SPL is
booted, it will load and execute U-boot (u-boot.img) from offset 69KB
on the micro-SD (defined by CONFIG_SYS_MMCSD_RAW_MODE_U_BOOT_SECTOR).
While it is technically possible to enable the SPL to be able to load
U-Boot from a file on a FAT/EXT filesystem on the micro-SD, we chose to
use raw micro-SD access to keep the code-size and boot time of the SPL down.
For these reasons a micro-SD that will be used as an IMX6 primary boot
device must be carefully partitioned and prepared.
The following shell commands are executed on a Linux host (adjust DEV to the
block storage device of your micro-SD):
DEV=/dev/sdc
# zero out 1MB of device
sudo dd if=/dev/zero of=$DEV count=1 bs=1M oflag=sync status=none && sync
# copy SPL to 1KB offset
sudo dd if=SPL of=$DEV bs=1K seek=1 oflag=sync status=none && sync
# copy U-Boot to 69KB offset
sudo dd if=u-boot.img of=$DEV bs=1K seek=69 oflag=sync status=none && sync
# create a partition table with a single rootfs partition starting at 1MB
printf "1,,L\n" | sudo sfdisk --in-order --no-reread -L -uM $DEV && sync
# format partition
sudo mkfs.ext4 -L root ${DEV}1
# mount the partition
sudo udisks --mount ${DEV}1
# extract filesystem
sudo tar xvf rootfs.tar.gz -C /media/root
# flush and unmount
sync && sudo umount /media/root
The above assumes the default Ventana micro-SD partitioning scheme
- spl : 1KB-69KB (68KB) required by IMX6 BOOT ROM
- uboot : 69KB-709KB (640KB) defined by
CONFIG_SYS_MMCSD_RAW_MODE_U_BOOT_SECTOR
- env : 709KB-965KB (256KB) defined by
CONFIG_ENV_MMC_SIZE
CONFIG_ENV_MMC_OFFSET_REDUND
- rootfs : 1MB-
This information is taken from:
http://trac.gateworks.com/wiki/ventana/bootloader#microsd
More details about the i.MX6 BOOT ROM can be found in the IMX6 reference manual.
More details about the i.MX6 BOOT ROM can be found in the IMX6 reference manual.
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment