Difference between revisions of "Boot option"

From Rockchip open source Document
Jump to: navigation, search
(Adjust the organization of the SPL and u-boot sections, following the boot order.)
(36 intermediate revisions by 4 users not shown)
Line 3: Line 3:
  
 
 
 
 
 +
 +
 
 +
 +
 
 +
  
 
= Boot introduce =
 
= Boot introduce =
Line 12: Line 17:
 
Then we need to know about how the image should packaged, where the image locate;
 
Then we need to know about how the image should packaged, where the image locate;
  
At lase, we will explain how to write to different media and boot from there.
+
At last, we will explain how to write to different media and boot from there.
 +
 
 +
Here is Rockchip pre-released binaries which may be mentioned later:
 +
 
 +
[https://github.com/rockchip-linux/rkbin https://github.com/rockchip-linux/rkbin]
 +
 
 +
And [http://opensource.rock-chips.com/wiki_Partitions Rockcip Linux GPT partition] here.
 +
 
 +
 
  
== Boot stage ==
+
== Boot flow ==
  
 
Here is a table show the detail what we may use in Rockchip platform, for 2 boot stage:
 
Here is a table show the detail what we may use in Rockchip platform, for 2 boot stage:
  
- optionally can use U-Boot SPL;
+
- use U-Boot SPL;
  
-  or use Rockchp idbLoader which is combinded by Rockchip ddr init bin and miniloader bin;
+
- use Rockchp idbLoader which is combinded by Rockchip ddr init bin and miniloader bin;
<pre>+--------+----------------+----------+-----------+
+
<pre>+--------+----------------+----------+-------------+---------+
| Boot  | Terminology #1 | Actual  | Rockchip |
+
| Boot  | Terminology #1 | Actual  | Rockchip   |        |
| stage  |                | program  |  Loader  |
+
| stage  |                | program  |  Image      |        |
| number |                | name    |  Name   |
+
| number |                | name    |  Name     |        |
+--------+----------------+----------+-----------+
+
+--------+----------------+----------+-------------+---------+
| 1      |  Primary      | ROM code | BootRom   |
+
| 1      |  Primary      | ROM code | BootRom     |        |
|        |  Program      |          |           |
+
|        |  Program      |          |             |        |
|        |  Loader        |          |           |
+
|        |  Loader        |          |             |        |
|        |                |          |           |
+
|        |                |          |             |        |
| 2      |  Secondary    | U-Boot  | idbLoader | 0x40
+
| 2      |  Secondary    | U-Boot  |idbloader.img| 0x40   |including u-boot if not use miniloader
|        |  Program      | SPL      |           |
+
|        |  Program      | SPL      |idbspl.img  |        |
|        |  Loader (SPL)  |          |           |
+
|        |  Loader (SPL)  |          |             |        |
|        |                |          |           |
+
|        |                |          |             |        |
| 3      |  -            | U-Boot  |  U-Boot   | 0x4000
+
| 3      |  -            | U-Boot  | u-boot.itb  | 0x4000 | including u-boot and atf
|        |                |          |           |
+
|        |                |          | u-boot.bin  | 0x4000  |
|        |                |          |           |
+
|        |                |          | uboot.img   | 0x4000 | only used with miniloader
| 4      |  -            | kernel  |  kernel  | 0x8000
+
|        |                |          |             |        |
|        |                |          |           |
+
|        |                | ATF      | trust.img  | 0x6000  | only used with miniloader for armv8
| 5      |  -            | rootfs  |  rootfs  | 0x40000
+
|        |                |          |             |        |
+--------+----------------+----------+-----------+
+
| 4      |  -            | kernel  | boot.img    | 0x8000 |
 +
|        |                |          |             |        |
 +
| 5      |  -            | rootfs  | rootfs.img | 0x40000 |
 +
+--------+----------------+----------+-------------+---------+
 
</pre>
 
</pre>
  
Line 51: Line 67:
 
*Boot from U-Disk means firmware for stage 4 and 5(not including SPL and U-Boot) in Disk, optionally only including stage 5;  
 
*Boot from U-Disk means firmware for stage 4 and 5(not including SPL and U-Boot) in Disk, optionally only including stage 5;  
 
*Boot from net/tftp means firmeware for stage 4 and 5(not including SPL and U-Boot) on the network;  
 
*Boot from net/tftp means firmeware for stage 4 and 5(not including SPL and U-Boot) on the network;  
 +
 +
&nbsp;
 +
 +
[[File:Rockchip bootflow.jpg|1000x1000px|Rockchip bootflow.jpg]]
 +
 +
Boot Flow 1 is typical Rockchip boot flow with Rockchip miniloader;<br/> Boot Flow 2 is used for most SoCs with U-Boot TPL for ddr init and SPL for trust(ATF/OP-TEE) load and run into next stage;<br/> Boot Flow 3 is use only for RK3399 with SPL ATF support;<br/> Boot Flow 4 is used for armv7 SoCs which do not support trust;<br/> <br/> Note 1. If loader1 have more than 1 stage, program will back to bootrom and bootrom load and run into next stage. eg. If loader1 is tpl and spl, the bootrom will run into tpl first, tpl init ddr and back to bootrom, bootrom then load and run into spl.<br/> Note 2. If trust is enabled, loader1 need to load both trust and u-boot, and then run into trust in secure mode(EL3 in armv8), trust do the initialize and run into U-Boot in non-secure mode(EL2 in armv8).<br/> Note 3. For trust(in trust.img or u-boot.itb), armv7 has only one tee.bin with or without ta, armv8 has bl31.elf and option with bl32.<br/> Note 4. In boot.img, content can be zImage and its dtb for Linux, and can optionally be grub.efi, and can be AOSP boot.img, ramdisk is option;
 +
 +
 +
 +
  
 
== Package option ==
 
== Package option ==
Line 59: Line 85:
  
 
*From source code:  
 
*From source code:  
**From U-Boot: u-boot-spl.bin, u-boot.bin(may use u-boot-nodtb.bin and u-boot.dtb instead),  
+
**From U-Boot: '''u-boot-spl.bin''', '''u-boot.bin'''(may use u-boot-nodtb.bin and u-boot.dtb instead),  
**From kernel: kernel Image/zImage file, kernel dtb,  
+
**From kernel: kernel '''Image/zImage''' file, kernel dtb,  
**From ATF: bl31.bin;   
+
**From ATF: '''bl31.elf''';   
 
*From Rockchip binary:  
 
*From Rockchip binary:  
**ddr, usbplug, miniloader, bl31, (all with&nbsp;chip 'rkxx_'&nbsp; prefix and with version '_x.xx.bin' postfix);   
+
**ddr, usbplug, miniloader, bl31/op-tee, (all with&nbsp;chip 'rkxx_'&nbsp; prefix and with version '_x.xx.bin' postfix);   
 +
 
 +
We offer two different boot-loader methods for different solutions, the steps and request files are also complete different. But not all the platforms supports the both boot-loader methods. Here are the types to&nbsp;package image from those files:
  
Here are the types to&nbsp;package image from those files:
+
=== The Pre-bootloader(TBL/SPL) ===
  
=== idbspl.img ===
+
==== idbspl.img ====
  
 
U-Boot SPL, with&nbsp;SPL_BACK_TO_BROM option '''disabled'''.
 
U-Boot SPL, with&nbsp;SPL_BACK_TO_BROM option '''disabled'''.
Line 74: Line 102:
 
Flash the idbspl.img to offset 0x40 which only including stage 2, and need flash stage 3 &nbsp;image to 0x200(which is defineded by CONFIG_SYS_MMCSD_RAW_MODE_U_BOOT_SECTOR), the stage 3 image may be&nbsp;u-boot.bin directly(when there no ATF requirement), or FIT image bl3.itb(for ATF load from SPL, including bl31.bin, u-boot-nodtb.bin and u-boot.dtb).
 
Flash the idbspl.img to offset 0x40 which only including stage 2, and need flash stage 3 &nbsp;image to 0x200(which is defineded by CONFIG_SYS_MMCSD_RAW_MODE_U_BOOT_SECTOR), the stage 3 image may be&nbsp;u-boot.bin directly(when there no ATF requirement), or FIT image bl3.itb(for ATF load from SPL, including bl31.bin, u-boot-nodtb.bin and u-boot.dtb).
  
=== idbloader.img ===
+
&nbsp;
 +
 
 +
==== idbloader.img ====
  
 
U-Boot SPL, with&nbsp;SPL_BACK_TO_BROM option '''enabled''':
 
U-Boot SPL, with&nbsp;SPL_BACK_TO_BROM option '''enabled''':
Line 81: Line 111:
  
 
Flash the idbloader.img to offset 0x40 which including boot stage 2 and 3.
 
Flash the idbloader.img to offset 0x40 which including boot stage 2 and 3.
 +
 +
==== Rockchip Miniloader ====
  
 
Package the image from Rockchip binary:
 
Package the image from Rockchip binary:
 +
<pre>dd if=rkxx_ddr_vx.xx.bin of=ddr.bin bs=4 skip=1
 +
tools/mkimage -n rkxxxx -T rksd -d ddr.bin idbloader.img
 +
rm ddr.bin
 +
cat rkxx_miniloader_vx.xx.bin >> idbloader.img</pre>
 +
 +
The ddr binary files for ARM64 platforms from Rockchip, likes RK3399 and RK3328 should not skip first 4 bytes.
 
<pre>tools/mkimage -n rkxxxx -T rksd -d rkxx_ddr_vx.xx.bin idbloader.img
 
<pre>tools/mkimage -n rkxxxx -T rksd -d rkxx_ddr_vx.xx.bin idbloader.img
 +
rm ddr.bin
 
cat rkxx_miniloader_vx.xx.bin >> idbloader.img</pre>
 
cat rkxx_miniloader_vx.xx.bin >> idbloader.img</pre>
  
 
Flash the idbloader.img to offset 0x40 which including stage 2, and you will need a uboot.img for boot stage 3.
 
Flash the idbloader.img to offset 0x40 which including stage 2, and you will need a uboot.img for boot stage 3.
  
=== bl3.itb ===
+
=== U-Boot ===
 +
 
 +
==== u-boot.itb ====
  
When using SPL to load the ATF, package the bl31.bin, u-boot-nodtb.bin and uboot.dtb into one FIT image.
+
When using SPL to load the ATF/OP-TEE, package the bl31.bin, u-boot-nodtb.bin and uboot.dtb into one FIT image. You can skip the step to package the Trust image and flash that image in the next section.
<pre>tools/mkimage -f fit4spl.its -E bl3.itb
+
<pre>make u-boot.itb
 
</pre>
 
</pre>
  
Flash the bl3.itb to offset 0x200, while&nbsp;need idbspl.img flasht to offset 0x40.
+
Note: please copy the trust binary() to u-boot root directory and rename it to tee.bin(armv7) or bl31.elf(armv8).
 +
 
 +
Flash the u-boot.itb to offset 0x4000, while&nbsp;need idbspl.img flash&nbsp;to offset 0x40.
  
=== uboot.img ===
+
==== uboot.img ====
  
 
When using idbLoader from&nbsp;Rockchip miniloader, need package u-boot.bin into miniloader loadable format by Rockchip tool loaderimage.
 
When using idbLoader from&nbsp;Rockchip miniloader, need package u-boot.bin into miniloader loadable format by Rockchip tool loaderimage.
Line 103: Line 146:
 
Flash the uboot.img to offset 0x4000 which is stage 3;
 
Flash the uboot.img to offset 0x4000 which is stage 3;
  
=== trust.img ===
+
=== Trust ===
  
 
When using idbLoader from&nbsp;Rockchip miniloader, need package bl31.bin into miniloader loadable format by Rockchip tool trustmerge.
 
When using idbLoader from&nbsp;Rockchip miniloader, need package bl31.bin into miniloader loadable format by Rockchip tool trustmerge.
Line 109: Line 152:
  
 
Flash the trust.img to offset 0x6000 which is for using Rockchip miniloader
 
Flash the trust.img to offset 0x6000 which is for using Rockchip miniloader
 
=== rkxx_loader_vx.xx.xxx.bin ===
 
 
This is provide by Rockchip in binary mode, which is used for firmware upgrade to eMMC with [[Rkdevelptool|rkdeveloptool]].
 
  
 
=== boot.img ===
 
=== boot.img ===
Line 124: Line 163:
 
=== rootfs.img ===
 
=== rootfs.img ===
  
Flash the rootfs.img to offset 0x40000 which is stage 5.
+
Flash the rootfs.img to offset 0x40000 which is stage 5. As long as the kernel you chosen can support that filesystem, there is not limit in the format of the image.
  
= Flash and boot from Media device =
+
=== rkxx_loader_vx.xx.xxx.bin ===
  
Here we introduce how to write image to different Medeia device.
+
This is provide by Rockchip in binary mode, which is used for firmware upgrade to eMMC with [[Rkdeveloptool|rkdeveloptool]], can not be wirte to media device directly.
  
== Boot from eMMC ==
+
This is a package from ddr.bin, usbplug.bin, miniloader.bin, Rockchip tool ''DB ''command will make usbplug.bin running in target which perform as a Rockusb device. You can skip to package this image, Rockchip will offer this image at the most of time.
  
=== &nbsp;To get tool&nbsp; ===
+
= Flash and boot from Media device =
  
[[Rkdevelptool|tools]]
+
Here we introduce how to write image to different Medeia device.
  
=== Flash&nbsp;to the board by USB ===
+
Get image Ready:
  
In order to&nbsp;flash&nbsp;by USB,you must get your board into ROM boot mode, either by erasing<br/> your MMC or holding the maskrom button when you boot the board.
+
*For armv7 with SPL with SPL_BACK_TO_BROM option enabled:
 +
**idbLoader.img
 +
**boot.img or boot folder with zImage, dtb and exitlinulx inside
 +
**rootfs.img 
 +
*For armv7 with SPL with SPL_BACK_TO_BROM option disabled:
 +
**idbspl.img
 +
**u-boot.bin
 +
**boot.img or boot folder with zImage, dtb and exitlinulx inside
 +
**rootfs.img 
 +
*For armv7 with miniloader
 +
**idbLoader.img
 +
**uboot.img
 +
**boot.img or&nbsp;boot folder with zImage, dtb and exitlinulx inside
 +
**rootfs.img 
 +
*For armv8 with SPL:
 +
**idbspl.img
 +
**bl3.itb
 +
**boot.img or&nbsp;boot folder with Image, dtb and exitlinulx inside
 +
**rootfs.img 
 +
*For armv8 with miniloader
 +
**idbLoader.img
 +
**uboot.img
 +
**trust.img
 +
**boot.img or&nbsp;boot folder with Image, dtb and exitlinulx inside
 +
**rootfs.img 
  
 
&nbsp;
 
&nbsp;
 
==== RK3288(upgrade_tool) ====
 
 
To create a suitable image and flash&nbsp;it to the board:<br/> default&nbsp;: with CONFIG_ROCKCHIP_SPL_BACK_TO_BROM
 
<pre>tools/mkimage -n rk3288 -T rksd -d spl/u-boot-spl-dtb.bin out<br/> cat u-boot-dtb.bin >> out<br/> sudo upgrade_tool db&nbsp; ../rkbin/rk32/RK3288UbootLoader_V2.30.06.bin<br/> sudo upgrade_tool wl 64 out<br/> sudo upgrade_tool rd</pre>
 
 
<br/> others&nbsp;: firefly(Recommend using sd card)
 
  
 
&nbsp;
 
&nbsp;
Line 153: Line 209:
 
&nbsp;
 
&nbsp;
  
==== RK3036 ====
+
== Boot from eMMC ==
  
To create a suitable image and flash&nbsp;it to the board:
+
The eMMC is on the hardware board, so we need:
<pre>tools/mkimage -n rk3036 -T rksd -d spl/u-boot-spl-dtb.bin out
 
cat u-boot-dtb.bin >> out
 
sudo upgrade_tool db  ../rkbin/rk30/RK3036MiniLoaderAll_V2.19.bin
 
sudo upgrade_tool wl 64 out
 
sudo upgrade_tool rd
 
</pre>
 
  
&nbsp;
+
*Get the board into [[Rockusb#Maskrom_mode|maskrom mode]];  
 +
*Connect the target to PC with USB cable;
 +
*Flash the image to eMMC with [[Rkdeveloptool|rkdeveloptool]]
  
==== RK3399 ====
+
Example commands for flash image to target.
<pre>cd ..
 
./rkbin/tools/trust_merger ./rkbin/tools/RK3399TRUST.ini
 
cd uboot
 
  
../rkbin/tools/loaderimage --pack --uboot u-boot-dtb.bin uboot.img
+
Flash the gpt partition to target:
 +
<pre style="margin-left: 40px;">rkdeveloptool db rkxx_loader_vx.xx.bin
 +
rkdeveloptool gpt parameter_gpt.txt</pre>
  
sudo upgrade_tool UL  ../rkbin/rk33/RK3399MiniLoaderAll_V1.05.bin
+
*For armv7 with SPL with SPL_BACK_TO_BROM option enabled(rk3036, rk3188, rk3288):
sudo upgrade_tool DI uboot uboot.img ../rkbin/tools/rk3399_parameter.txt
+
<pre style="margin-left: 40px">rkdeveloptool db rkxx_loader_vx.xx.bin
sudo upgrade_tool DI trust ../trust.img ../rkbin/tools/rk3399_parameter.txt
+
rkdeveloptool wl 0x40 idbloader.img
sudo upgrade_tool rd
+
rkdeveloptool wl 0x8000 boot.img
 +
rkdeveloptool wl 0x40000 rootfs.img
 +
rkdeveloptool rd
 
</pre>
 
</pre>
  
&nbsp;
+
*For armv7 with SPL with SPL_BACK_TO_BROM option disabled(rk3288):
 
+
<pre style="margin-left: 40px">rkdeveloptool db rkxx_loader_vx.xx.bin
&nbsp;
+
rkdeveloptool wl 0x40 idbspl.img
 
+
rkdeveloptool wl 0x200 u-boot.bin
&nbsp;
+
rkdeveloptool wl 0x8000 boot.img
 
+
rkdeveloptool wl 0x40000 rootfs.img
&nbsp;
+
rkdeveloptool rd
 
 
=== &nbsp;To flash kernel and rootfs ===
 
 
 
Enter into the uboot and issue the following command on uboot: (otg should be connected)
 
<pre>gpt write mmc 0 $partitions
 
ums 0 mmc 0
 
 
</pre>
 
</pre>
  
<br/> Now the board will act as an USB-drive.<br/> In host: (assuming sdb is ur device)
+
*For armv7 with miniloader(rk3036, rk3188, rk3288)  
<pre>sudo mkfs.fat /dev/sdb6
+
<pre style="margin-left: 40px">rkdeveloptool db rkxx_loader_vx.xx.bin
 +
rkdeveloptool wl 0x40 idbloader.img
 +
rkdeveloptool wl 0x4000 uboot.img
 +
rkdeveloptool wl 0x8000 boot.img
 +
rkdeveloptool wl 0x40000 rootfs.img
 +
rkdeveloptool rd
 
</pre>
 
</pre>
  
<br/> Copy zimage and dts file to dev/sdb6
+
*For armv8 with SPL(rk3399):
<pre>cp arch/arm/boot/zImage /media/chen/9F35-9565/
+
<pre style="margin-left: 40px">rkdeveloptool db rkxx_loader_vx.xx.bin
cp arch/arm/boot/dts/rk3288-fennec.dtb /media/chen/9F35-9565/rk3288-fennec.dtb
+
rkdeveloptool wl 0x40 idbspl.img
 +
rkdeveloptool wl 0x200 bl3.itb
 +
rkdeveloptool wl 0x8000 boot.img
 +
rkdeveloptool wl 0x40000 rootfs.img
 +
rkdeveloptool rd
 
</pre>
 
</pre>
  
Add extlinux/extlinux.conf to dev/sdb6<br/> (Please notice "mmcblk2p7" and "115200n8" is decide on your chip, Please refer to &nbsp;[[Linux_user_guide|Linux_user_guide]])
+
*For armv8 with miniloader(rk3399, rk3328)  
<pre>label kernel-4.4
+
<pre style="margin-left: 40px">rkdeveloptool db rkxx_loader_vx.xx.bin
    kernel /zImage
+
rkdeveloptool wl 0x40 idbloader.img
    fdt /rk3288-fennec.dtb
+
rkdeveloptool wl 0x4000 uboot.img
    append  earlyprintk console=tty1 console=ttyS2,115200n8 rw root=/dev/mmcblk2p7 rootfstype=ext4 init=/sbin/init
+
rkdeveloptool wl 0x6000 trust.img
</pre>
+
rkdeveloptool wl 0x8000 boot.img
 +
rkdeveloptool wl 0x40000 rootfs.img
 +
rkdeveloptool rd</pre>
  
<br/> To flash rootfs
+
&nbsp;
<pre>sudo dd if=linaro-rootfs.img of=/dev/sdb7 conv=notrunc</pre>
 
  
 
&nbsp;
 
&nbsp;
Line 216: Line 273:
 
== Boot from SD/TF Card ==
 
== Boot from SD/TF Card ==
  
=== Creating Image ===
+
We can write SD/TF card with Linux PC ''dd'' command very easily.
 +
 
 +
Insert SD card to PC and we assume the /dev/sdb is the SD card device.
  
Follow [[Linux_user_guide|Linux user guide to]] build kernel and U-Boot.<br/> get uboot-spl.img and u-boot-dtb.img
+
*For armv7 with SPL with SPL_BACK_TO_BROM option enabled(rk3036, rk3188, rk3288):
<pre>tools/mkimage -n rk3288 -T rksd -d spl/u-boot-spl-dtb.bin uboot-spl.img
+
<pre style="margin-left: 40px">dd if=idbloader.img of=sdb seek=64
 +
dd if=boot.img of=sdb seek=32768
 +
dd if=rootfs.img of=sdb seek=262144
 
</pre>
 
</pre>
  
&nbsp;
+
*For armv7 with SPL with SPL_BACK_TO_BROM option disabled(rk3288):
 +
<pre style="margin-left: 40px">dd if=idbspl.img of=sdb seek=64
 +
dd if=u-boot.bin of=sdb seek=512
 +
dd if=boot.img of=sdb seek=32768
 +
dd if=rootfs.img of=sdb seek=262144
 +
</pre>
  
=== <br/> <var>build boot.img</var> ===
+
*For armv7 with miniloader(rk3036, rk3188, rk3288)
<pre>sudo dd if=/dev/zero of=boot.img bs=1M count=128
+
<pre style="margin-left: 40px">dd if=idbloader.img of=sdb seek=64
sudo mkfs.fat boot.img
+
dd if=uboot.img of=sdb seek=16384
mkdir boot
+
dd if=boot.img of=sdb seek=32768
sudo mount  boot.img boot
+
dd if=rootfs.img of=sdb seek=262144
sudo cp zImage boot
 
sudo cp rk3288-fennec.dtb boot
 
sudo mkdir boot/extlinux
 
sudo cp extlinux.conf boot/extlinux
 
sudo umount boot
 
 
</pre>
 
</pre>
  
Download rootfs image and rename it
+
*For armv8 with SPL(rk3399):
<pre>mv linaro-rootfs.img rootfs.img
+
<pre style="margin-left: 40px">dd if=idbspl.img of=sdb seek=64
 +
dd if=bl3.itb of=sdb seek=512
 +
dd if=boot.img of=sdb seek=32768
 +
dd if=rootfs.img of=sdb seek=262144
 
</pre>
 
</pre>
  
&nbsp;
+
*For armv8 with miniloader(rk3399, rk3328)
 +
<pre style="margin-left: 40px">dd if=idbloader.img of=sdb seek=64
 +
dd if=uboot.img of=sdb seek=16384
 +
dd if=trust.img of=sdb seek=24576
 +
dd if=boot.img of=sdb seek=32768
 +
dd if=rootfs.img of=sdb seek=262144</pre>
  
=== Making a SD Card for updating ===
+
In order to make sure everything has write to SD card before unpluged, recommand to run below command:
 +
<pre style="margin-left: 40px">sync</pre>
  
Download&nbsp;[https://github.com/wzyy2/rk-initrd-build ramdisk source]&nbsp;and build.
+
Note, when using boot from SD card, need to update the kernel cmdline(which is in extlinux.conf) for the correct ''root ''value.
<pre>sh ./mk-initrd.sh
+
<pre>append  earlyprintk console=ttyS2,115200n8 rw root=/dev/mmcblk1p7 rootwait rootfstype=ext4 init=/sbin/init
 
</pre>
 
</pre>
  
Format SD card
+
Write GPT partition table to SD card&nbsp;in U-Boot, and then U-Boot can find the boot partition and run into kernel.
<pre>chen@chen-HP-ProDesk-680-G1-TWR:~/work/linaro-alip/ramdisk/update$ sudo gdisk /dev/sdb
+
<pre>gpt write mmc 0 $partitions</pre>
GPT fdisk (gdisk) version 0.8.8
 
  
Partition table scan:
+
&nbsp;
  MBR: protective
 
  BSD: not present
 
  APM: not present
 
  GPT: present
 
  
Found valid GPT with protective MBR; using GPT.
+
== Boot from U-Disk ==
  
Command (? for help): o
+
Same as&nbsp;[[#Boot_from_SD.2FTF_Card|boot-from-sdcard]], but please note that U-Disk&nbsp;only support stage 4 and 5, see [[#Boot_Stage|Boot Stage]] for detail.
This option deletes all partitions and creates a new protective MBR.
 
Proceed? (Y/N): y
 
  
Command (? for help): n
+
If U-Disk used for stage 4 and 5, format the U-Disk in gpt format and at least 2 partitions, write ''boot.img'' and ''rootfs.img'' in those partitions;
Partition number (1-128, default 1): 1
 
First sector (34-126613470, default = 2048) or {+-}size{KMGTP}: 8192
 
Last sector (8192-126613470, default = 126613470) or {+-}size{KMGTP}:
 
Current type is 'Linux filesystem'
 
Hex code or GUID (L to show codes, Enter = 8300):
 
Changed type of partition to 'Linux filesystem'
 
  
Command (? for help): w
+
if U-Dist is only used for stage 5, we can ''dd ''the ''rootfs.img'' to U-Disk device directly.
  
Final checks complete. About to write GPT data. THIS WILL OVERWRITE EXISTING
+
Note, need to update the kernel cmdline(which is in extlinux.conf) for the correct ''root ''value.
PARTITIONS!!
+
<pre>   append  earlyprintk console=ttyS2,115200n8 rw root=/dev/sda1 rootwait rootfstype=ext4 init=/sbin/init
 
 
Do you want to proceed? (Y/N): y
 
OK; writing new GUID partition table (GPT) to /dev/sdc.
 
Warning: The kernel is still using the old partition table.
 
The new table will be used at the next reboot.
 
The operation has completed successfully.
 
</pre>
 
<pre>sudo umount /dev/sdb1
 
sudo mkfs.fat /dev/sdb1
 
</pre>
 
<pre>tools/mkimage -n rk3288 -T rksd -d spl/u-boot-spl-dtb.bin out&&
 
sudo dd if=out of=/dev/sdb seek=64&&sudo dd if=u-boot-dtb.img of=/dev/sdb seek=256
 
 
</pre>
 
</pre>
  
Copy zimage, dts and ramdisk to /dev/sdb1
+
== Boot from Network ==
<pre>cp arch/arm/boot/zImage /media/chen/9F35-9565/
 
cp arch/arm/boot/dts/rk3288-fennec.dtb /media/chen/9F35-9565/rk3288-fennec.dtb
 
cp ../rk-initrd-build/initrd.img /media/chen/9F35-9565/
 
</pre>
 
  
Add extlinux/extlinux.conf to /dev/sdb1
+
&nbsp;
<pre>label kernel-4.4
 
    kernel /zImage
 
    fdt /rk3288-fennec.dtb
 
    initrd /initrd.img
 
    append  earlyprintk console=ttyS2,115200n8 rw root=/dev/ram0 rootfstype=ext4 init=/sbin/init ramdisk_size=49152
 
</pre>
 
 
 
Copy u-boot-dtb.img uboot-spl.img boot.img rootfs.img and&nbsp;[https://github.com/wzyy2/rk-initrd-build/blob/master/update/update.sh update.sh]&nbsp;to /dev/sdb1
 
<pre>mkdir /media/chen/9F35-9565/update
 
cp u-boot-dtb.img /media/chen/9F35-9565/update
 
cp uboot-spl.img /media/chen/9F35-9565/update
 
cp boot.img /media/chen/9F35-9565/update
 
cp rootfs.img /media/chen/9F35-9565/update
 
cp update.sh /media/chen/9F35-9565/update
 
</pre>
 
 
 
=== Updating the board ===
 
 
 
Boot the board and it will flash image to eMMC
 
  
 
&nbsp;
 
&nbsp;
  
== Boot from USB-Disk ==
+
= See also =
 
 
Same as&nbsp;[[#Boot_from_SD.2FTF_Card|boot-from-sdcard]], but please note that U-Boot aren't allowed to boot from usb-disk because of restrict of maskrom, only kernel and rootfs can load from USB-Disk.
 
  
Difference:
+
[[Rkdeveloptool|rkdeveloptool]]
<pre>label kernel-4.4
 
    kernel /zImage
 
    fdt /rk3288-fennec.dtb
 
    append  earlyprintk console=ttyS2,115200n8 rw root=/dev/sda1 rootfstype=ext4 init=/sbin/init
 
</pre>
 
<pre>gpt write usb 0 $partitions
 
ums 0 usb 0
 
</pre>
 
  
= Boot from Network =
+
[[Rockusb|rockusb]]
  
&nbsp;
+
[[Partitions|Rockchip Linux partition definition]]

Revision as of 02:40, 7 December 2017

 

 

 

 


Boot introduce

 

First, let's make the concept clear, there are many boot stages when we boot up a Linux OS;

Then we need to know about how the image should packaged, where the image locate;

At last, we will explain how to write to different media and boot from there.

Here is Rockchip pre-released binaries which may be mentioned later:

https://github.com/rockchip-linux/rkbin

And Rockcip Linux GPT partition here.

 

Boot flow

Here is a table show the detail what we may use in Rockchip platform, for 2 boot stage:

- use U-Boot SPL;

- use Rockchp idbLoader which is combinded by Rockchip ddr init bin and miniloader bin;

+--------+----------------+----------+-------------+---------+
| Boot   | Terminology #1 | Actual   | Rockchip    |         |
| stage  |                | program  |  Image      |         |
| number |                | name     |   Name      |         |
+--------+----------------+----------+-------------+---------+
| 1      |  Primary       | ROM code | BootRom     |         |
|        |  Program       |          |             |         |
|        |  Loader        |          |             |         |
|        |                |          |             |         |
| 2      |  Secondary     | U-Boot   |idbloader.img| 0x40    |including u-boot if not use miniloader
|        |  Program       | SPL      |idbspl.img   |         |
|        |  Loader (SPL)  |          |             |         |
|        |                |          |             |         |
| 3      |  -             | U-Boot   | u-boot.itb  | 0x4000  | including u-boot and atf
|        |                |          | u-boot.bin  | 0x4000  |
|        |                |          | uboot.img   | 0x4000  | only used with miniloader
|        |                |          |             |         |
|        |                | ATF      | trust.img   | 0x6000  | only used with miniloader for armv8
|        |                |          |             |         |
| 4      |  -             | kernel   | boot.img    | 0x8000  |
|        |                |          |             |         |
| 5      |  -             | rootfs   | rootfs.img  | 0x40000 |
+--------+----------------+----------+-------------+---------+

Then when we talking about boot from eMMC/SD/U-Disk/net, they are in different concept:

  • Stage 1 is always in boot rom, it loads stage 2 and may load stage 3(when SPL_BACK_TO_BROM option enabled).
  • Boot from SPI flash means firmware for stage 2 and 3(SPL and U-Boot only) in SPI flash and stage 4/5 in other place;
  • Boot from eMMC means all the firmware(including stage 2, 3, 4, 5) in eMMC;
  • Boot from SD card means all the firmware(including stage 2, 3, 4, 5) in SD card;
  • Boot from U-Disk means firmware for stage 4 and 5(not including SPL and U-Boot) in Disk, optionally only including stage 5;
  • Boot from net/tftp means firmeware for stage 4 and 5(not including SPL and U-Boot) on the network;

 

Rockchip bootflow.jpg

Boot Flow 1 is typical Rockchip boot flow with Rockchip miniloader;
Boot Flow 2 is used for most SoCs with U-Boot TPL for ddr init and SPL for trust(ATF/OP-TEE) load and run into next stage;
Boot Flow 3 is use only for RK3399 with SPL ATF support;
Boot Flow 4 is used for armv7 SoCs which do not support trust;

Note 1. If loader1 have more than 1 stage, program will back to bootrom and bootrom load and run into next stage. eg. If loader1 is tpl and spl, the bootrom will run into tpl first, tpl init ddr and back to bootrom, bootrom then load and run into spl.
Note 2. If trust is enabled, loader1 need to load both trust and u-boot, and then run into trust in secure mode(EL3 in armv8), trust do the initialize and run into U-Boot in non-secure mode(EL2 in armv8).
Note 3. For trust(in trust.img or u-boot.itb), armv7 has only one tee.bin with or without ta, armv8 has bl31.elf and option with bl32.
Note 4. In boot.img, content can be zImage and its dtb for Linux, and can optionally be grub.efi, and can be AOSP boot.img, ramdisk is option;



Package option

After we know about the boot stages,

Here are the file list before package for stage 2~4:

  • From source code:
    • From U-Boot: u-boot-spl.bin, u-boot.bin(may use u-boot-nodtb.bin and u-boot.dtb instead),
    • From kernel: kernel Image/zImage file, kernel dtb,
    • From ATF: bl31.elf;
  • From Rockchip binary:
    • ddr, usbplug, miniloader, bl31/op-tee, (all with chip 'rkxx_'  prefix and with version '_x.xx.bin' postfix);

We offer two different boot-loader methods for different solutions, the steps and request files are also complete different. But not all the platforms supports the both boot-loader methods. Here are the types to package image from those files:

The Pre-bootloader(TBL/SPL)

idbspl.img

U-Boot SPL, with SPL_BACK_TO_BROM option disabled.

mkimage -n rkxxxx -T rksd -d spl/u-boot-spl.bin idbspl.img

Flash the idbspl.img to offset 0x40 which only including stage 2, and need flash stage 3  image to 0x200(which is defineded by CONFIG_SYS_MMCSD_RAW_MODE_U_BOOT_SECTOR), the stage 3 image may be u-boot.bin directly(when there no ATF requirement), or FIT image bl3.itb(for ATF load from SPL, including bl31.bin, u-boot-nodtb.bin and u-boot.dtb).

 

idbloader.img

U-Boot SPL, with SPL_BACK_TO_BROM option enabled:

tools/mkimage -n rkxxxx -T rksd -d spl/u-boot-spl.bin idbloader.img
cat u-boot.bin >> idbloader.img

Flash the idbloader.img to offset 0x40 which including boot stage 2 and 3.

Rockchip Miniloader

Package the image from Rockchip binary:

dd if=rkxx_ddr_vx.xx.bin of=ddr.bin bs=4 skip=1
tools/mkimage -n rkxxxx -T rksd -d ddr.bin idbloader.img
rm ddr.bin
cat rkxx_miniloader_vx.xx.bin >> idbloader.img

The ddr binary files for ARM64 platforms from Rockchip, likes RK3399 and RK3328 should not skip first 4 bytes.

tools/mkimage -n rkxxxx -T rksd -d rkxx_ddr_vx.xx.bin idbloader.img
rm ddr.bin
cat rkxx_miniloader_vx.xx.bin >> idbloader.img

Flash the idbloader.img to offset 0x40 which including stage 2, and you will need a uboot.img for boot stage 3.

U-Boot

u-boot.itb

When using SPL to load the ATF/OP-TEE, package the bl31.bin, u-boot-nodtb.bin and uboot.dtb into one FIT image. You can skip the step to package the Trust image and flash that image in the next section.

make u-boot.itb

Note: please copy the trust binary() to u-boot root directory and rename it to tee.bin(armv7) or bl31.elf(armv8).

Flash the u-boot.itb to offset 0x4000, while need idbspl.img flash to offset 0x40.

uboot.img

When using idbLoader from Rockchip miniloader, need package u-boot.bin into miniloader loadable format by Rockchip tool loaderimage.

tools/loaderimage --pack --uboot u-boot.bin uboot.img

Flash the uboot.img to offset 0x4000 which is stage 3;

Trust

When using idbLoader from Rockchip miniloader, need package bl31.bin into miniloader loadable format by Rockchip tool trustmerge.

tools/trustmerge tools/rk_tools/RKTRUST_RKXXXXTRUST.ini

Flash the trust.img to offset 0x6000 which is for using Rockchip miniloader

boot.img

This image is package the kernel Image and dtb file into a know filesystem(FAT or EXT2) image for distro boot.

See Install kernel for detail about generate boot.img from kernel zImage/Image, dtb.

Flash the boot.img to offset 0x8000 which is stage 4.

rootfs.img

Flash the rootfs.img to offset 0x40000 which is stage 5. As long as the kernel you chosen can support that filesystem, there is not limit in the format of the image.

rkxx_loader_vx.xx.xxx.bin

This is provide by Rockchip in binary mode, which is used for firmware upgrade to eMMC with rkdeveloptool, can not be wirte to media device directly.

This is a package from ddr.bin, usbplug.bin, miniloader.bin, Rockchip tool DB command will make usbplug.bin running in target which perform as a Rockusb device. You can skip to package this image, Rockchip will offer this image at the most of time.

Flash and boot from Media device

Here we introduce how to write image to different Medeia device.

Get image Ready:

  • For armv7 with SPL with SPL_BACK_TO_BROM option enabled:
    • idbLoader.img
    • boot.img or boot folder with zImage, dtb and exitlinulx inside
    • rootfs.img
  • For armv7 with SPL with SPL_BACK_TO_BROM option disabled:
    • idbspl.img
    • u-boot.bin
    • boot.img or boot folder with zImage, dtb and exitlinulx inside
    • rootfs.img
  • For armv7 with miniloader
    • idbLoader.img
    • uboot.img
    • boot.img or boot folder with zImage, dtb and exitlinulx inside
    • rootfs.img
  • For armv8 with SPL:
    • idbspl.img
    • bl3.itb
    • boot.img or boot folder with Image, dtb and exitlinulx inside
    • rootfs.img
  • For armv8 with miniloader
    • idbLoader.img
    • uboot.img
    • trust.img
    • boot.img or boot folder with Image, dtb and exitlinulx inside
    • rootfs.img

 

 

 

Boot from eMMC

The eMMC is on the hardware board, so we need:

Example commands for flash image to target.

Flash the gpt partition to target:

rkdeveloptool db rkxx_loader_vx.xx.bin
rkdeveloptool gpt parameter_gpt.txt
  • For armv7 with SPL with SPL_BACK_TO_BROM option enabled(rk3036, rk3188, rk3288):
rkdeveloptool db rkxx_loader_vx.xx.bin
rkdeveloptool wl 0x40 idbloader.img
rkdeveloptool wl 0x8000 boot.img
rkdeveloptool wl 0x40000 rootfs.img
rkdeveloptool rd
  • For armv7 with SPL with SPL_BACK_TO_BROM option disabled(rk3288):
rkdeveloptool db rkxx_loader_vx.xx.bin
rkdeveloptool wl 0x40 idbspl.img
rkdeveloptool wl 0x200 u-boot.bin
rkdeveloptool wl 0x8000 boot.img
rkdeveloptool wl 0x40000 rootfs.img
rkdeveloptool rd
  • For armv7 with miniloader(rk3036, rk3188, rk3288)
rkdeveloptool db rkxx_loader_vx.xx.bin
rkdeveloptool wl 0x40 idbloader.img
rkdeveloptool wl 0x4000 uboot.img
rkdeveloptool wl 0x8000 boot.img
rkdeveloptool wl 0x40000 rootfs.img
rkdeveloptool rd
  • For armv8 with SPL(rk3399):
rkdeveloptool db rkxx_loader_vx.xx.bin
rkdeveloptool wl 0x40 idbspl.img
rkdeveloptool wl 0x200 bl3.itb
rkdeveloptool wl 0x8000 boot.img
rkdeveloptool wl 0x40000 rootfs.img
rkdeveloptool rd
  • For armv8 with miniloader(rk3399, rk3328)
rkdeveloptool db rkxx_loader_vx.xx.bin
rkdeveloptool wl 0x40 idbloader.img
rkdeveloptool wl 0x4000 uboot.img
rkdeveloptool wl 0x6000 trust.img
rkdeveloptool wl 0x8000 boot.img
rkdeveloptool wl 0x40000 rootfs.img
rkdeveloptool rd

 

 

Boot from SD/TF Card

We can write SD/TF card with Linux PC dd command very easily.

Insert SD card to PC and we assume the /dev/sdb is the SD card device.

  • For armv7 with SPL with SPL_BACK_TO_BROM option enabled(rk3036, rk3188, rk3288):
dd if=idbloader.img of=sdb seek=64
dd if=boot.img of=sdb seek=32768
dd if=rootfs.img of=sdb seek=262144
  • For armv7 with SPL with SPL_BACK_TO_BROM option disabled(rk3288):
dd if=idbspl.img of=sdb seek=64
dd if=u-boot.bin of=sdb seek=512
dd if=boot.img of=sdb seek=32768
dd if=rootfs.img of=sdb seek=262144
  • For armv7 with miniloader(rk3036, rk3188, rk3288)
dd if=idbloader.img of=sdb seek=64
dd if=uboot.img of=sdb seek=16384
dd if=boot.img of=sdb seek=32768
dd if=rootfs.img of=sdb seek=262144
  • For armv8 with SPL(rk3399):
dd if=idbspl.img of=sdb seek=64
dd if=bl3.itb of=sdb seek=512
dd if=boot.img of=sdb seek=32768
dd if=rootfs.img of=sdb seek=262144
  • For armv8 with miniloader(rk3399, rk3328)
dd if=idbloader.img of=sdb seek=64
dd if=uboot.img of=sdb seek=16384
dd if=trust.img of=sdb seek=24576
dd if=boot.img of=sdb seek=32768
dd if=rootfs.img of=sdb seek=262144

In order to make sure everything has write to SD card before unpluged, recommand to run below command:

sync

Note, when using boot from SD card, need to update the kernel cmdline(which is in extlinux.conf) for the correct root value.

append  earlyprintk console=ttyS2,115200n8 rw root=/dev/mmcblk1p7 rootwait rootfstype=ext4 init=/sbin/init

Write GPT partition table to SD card in U-Boot, and then U-Boot can find the boot partition and run into kernel.

gpt write mmc 0 $partitions

 

Boot from U-Disk

Same as boot-from-sdcard, but please note that U-Disk only support stage 4 and 5, see Boot Stage for detail.

If U-Disk used for stage 4 and 5, format the U-Disk in gpt format and at least 2 partitions, write boot.img and rootfs.img in those partitions;

if U-Dist is only used for stage 5, we can dd the rootfs.img to U-Disk device directly.

Note, need to update the kernel cmdline(which is in extlinux.conf) for the correct root value.

    append  earlyprintk console=ttyS2,115200n8 rw root=/dev/sda1 rootwait rootfstype=ext4 init=/sbin/init

Boot from Network

 

 

See also

rkdeveloptool

rockusb

Rockchip Linux partition definition