diff mbox series

[U-Boot,v3,6/6] doc: rockchip: Add note for Pine64 Rock64 board

Message ID 20190601144736.8580-7-matwey.kornilov@gmail.com
State Superseded
Delegated to: Philipp Tomsich
Headers show
Series Add initial support for Pine64 Rock64 board | expand

Commit Message

Matwey V. Kornilov June 1, 2019, 2:47 p.m. UTC
Add build notes for Pine64 Rock64 board.

Signed-off-by: Matwey V. Kornilov <matwey.kornilov@gmail.com>
---
 doc/README.rockchip | 30 ++++++++++++++++++++++++++++--
 1 file changed, 28 insertions(+), 2 deletions(-)

Comments

Kever Yang June 4, 2019, 2:48 a.m. UTC | #1
On 06/01/2019 10:47 PM, Matwey V. Kornilov wrote:
> Add build notes for Pine64 Rock64 board.
>
> Signed-off-by: Matwey V. Kornilov <matwey.kornilov@gmail.com>
> ---
>  doc/README.rockchip | 30 ++++++++++++++++++++++++++++--

Reviewed-by: Kever Yang <kever.yang@rock-chips.com>

Thanks,
- Kever
>  1 file changed, 28 insertions(+), 2 deletions(-)
>
> diff --git a/doc/README.rockchip b/doc/README.rockchip
> index ca4d6473b0..eacedbddf4 100644
> --- a/doc/README.rockchip
> +++ b/doc/README.rockchip
> @@ -48,9 +48,10 @@ Two RK3036 boards are supported:
>     - EVB RK3036 - use evb-rk3036 configuration
>     - Kylin - use kylin_rk3036 configuration
>  
> -One RK3328 board is supported:
> +Two RK3328 board are supported:
>  
> -   - EVB RK3328
> +   - EVB RK3328 - use evb-rk3328_defconfig
> +   - Pine64 Rock64 board - use rock64-rk3328_defconfig
>  
>  Size RK3399 boards are supported (aarch64):
>  
> @@ -307,6 +308,31 @@ tools/mkimage -n rk3188 -T rksd -d spl/u-boot-spl.bin out
>  truncate -s %2048 u-boot.bin
>  cat u-boot.bin | split -b 512 --filter='openssl rc4 -K 7C4E0304550509072D2C7B38170D1711' >> out
>  
> +Booting from an SD card on Pine64 Rock64 (RK3328)
> +=================================================
> +
> +For Rock64 rk3328 board the following three parts are required:
> +TPL, SPL, and the u-boot image tree blob. While u-boot-spl.bin and
> +u-boot.itb are to be compiled as usual, TPL is currently not
> +implemented in u-boot, so you need to pick one from rkbin:
> +
> +  - Get the rkbin
> +
> +    => git clone https://github.com/rockchip-linux/rkbin.git
> +
> +  - Create TPL/SPL image
> +
> +    => tools/mkimage -n rk3328 -T rksd -d rkbin/bin/rk33/rk3328_ddr_333MHz_v1.16.bin idbloader.img
> +    => cat spl/u-boot-spl.bin >> idbloader.img
> +
> +  - Write TPL/SPL image at 64 sector
> +
> +    => sudo dd if=idbloader.img of=/dev/mmcblk0 seek=64
> +
> +  - Write u-boot image tree blob at 16384 sector
> +
> +    => sudo dd if=u-boot.itb of=/dev/mmcblk0 seek=16384
> +
>  Booting from an SD card on RK3399
>  =================================
>
diff mbox series

Patch

diff --git a/doc/README.rockchip b/doc/README.rockchip
index ca4d6473b0..eacedbddf4 100644
--- a/doc/README.rockchip
+++ b/doc/README.rockchip
@@ -48,9 +48,10 @@  Two RK3036 boards are supported:
    - EVB RK3036 - use evb-rk3036 configuration
    - Kylin - use kylin_rk3036 configuration
 
-One RK3328 board is supported:
+Two RK3328 board are supported:
 
-   - EVB RK3328
+   - EVB RK3328 - use evb-rk3328_defconfig
+   - Pine64 Rock64 board - use rock64-rk3328_defconfig
 
 Size RK3399 boards are supported (aarch64):
 
@@ -307,6 +308,31 @@  tools/mkimage -n rk3188 -T rksd -d spl/u-boot-spl.bin out
 truncate -s %2048 u-boot.bin
 cat u-boot.bin | split -b 512 --filter='openssl rc4 -K 7C4E0304550509072D2C7B38170D1711' >> out
 
+Booting from an SD card on Pine64 Rock64 (RK3328)
+=================================================
+
+For Rock64 rk3328 board the following three parts are required:
+TPL, SPL, and the u-boot image tree blob. While u-boot-spl.bin and
+u-boot.itb are to be compiled as usual, TPL is currently not
+implemented in u-boot, so you need to pick one from rkbin:
+
+  - Get the rkbin
+
+    => git clone https://github.com/rockchip-linux/rkbin.git
+
+  - Create TPL/SPL image
+
+    => tools/mkimage -n rk3328 -T rksd -d rkbin/bin/rk33/rk3328_ddr_333MHz_v1.16.bin idbloader.img
+    => cat spl/u-boot-spl.bin >> idbloader.img
+
+  - Write TPL/SPL image at 64 sector
+
+    => sudo dd if=idbloader.img of=/dev/mmcblk0 seek=64
+
+  - Write u-boot image tree blob at 16384 sector
+
+    => sudo dd if=u-boot.itb of=/dev/mmcblk0 seek=16384
+
 Booting from an SD card on RK3399
 =================================