]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
riscv: dts: starfive: generate u-boot-spl.bin.normal.out
authorHeinrich Schuchardt <heinrich.schuchardt@canonical.com>
Sun, 17 Sep 2023 11:47:31 +0000 (13:47 +0200)
committerLeo Yu-Chi Liang <ycliang@andestech.com>
Wed, 20 Sep 2023 13:05:16 +0000 (21:05 +0800)
The StarFive VisionFive 2 board cannot load spl/u-boot-spl.bin but needs a
prefixed header. We have referring to a vendor tool (spl_tool) for this
task. 'mkimage -T sfspl' can generate the prefixed file.

Use binman to invoke mkimage for the generation of file
spl/u-boot-spl.bin.normal.out.

Update the documentation.

Signed-off-by: Heinrich Schuchardt <heinrich.schuchardt@canonical.com>
Tested-by: Milan P. Stanić <mps@arvanta.net>
arch/riscv/dts/jh7110-starfive-visionfive-2-u-boot.dtsi
doc/board/starfive/visionfive2.rst

index 13f69da31ec0c866fe7930d15a0f2528c3d87616..55185314ddefe301322f9bd4953e85b1dff01061 100644 (file)
                        };
                };
        };
+
+       spl-img {
+               filename = "spl/u-boot-spl.bin.normal.out";
+
+               mkimage {
+                       args = "-T sfspl";
+
+                       u-boot-spl {
+                       };
+       };
+};
 };
index 941899a0a4e98cb1d367cd93ac647b86e1261067..f5575ab68bef354510af7d01d1866950a545e780 100644 (file)
@@ -65,18 +65,8 @@ Now build the U-Boot SPL and U-Boot proper
        make starfive_visionfive2_defconfig
        make OPENSBI=$(opensbi_dir)/opensbi/build/platform/generic/firmware/fw_dynamic.bin
 
-This will generate spl/u-boot-spl.bin and FIT image (u-boot.itb)
-
-u-boot-spl.bin cannot be used directly on StarFive VisionFive2,we need
-to convert the u-boot-spl.bin to u-boot-spl.bin.normal.out with
-the below command:
-
-       ./spl_tool -c -f $(Uboot_PATH)/spl/u-boot-spl.bin
-
-More detailed description of spl_tool,please refer spl_tool documenation.
-(Note: spl_tool git repo is at https://github.com/starfive-tech/Tools/tree/master/spl_tool)
-
-This will generate u-boot-spl.bin.normal.out file.
+This will generate the U-Boot SPL image (spl/u-boot-spl.bin.normal.out) as well
+as the FIT image (u-boot.itb) with OpenSBI and U-Boot.
 
 Flashing
 ~~~~~~~~