]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
dts: beagleplay: binman: Include firmware capsules binman nodes
authorJonathan Humphreys <j-humphreys@ti.com>
Fri, 31 May 2024 22:51:06 +0000 (17:51 -0500)
committerTom Rini <trini@konsulko.com>
Fri, 14 Jun 2024 18:59:06 +0000 (12:59 -0600)
Fill in the BeaglePlay's capsule GUID properties of the base binman capsule
nodes.

Signed-off-by: Jonathan Humphreys <j-humphreys@ti.com>
arch/arm/dts/k3-am625-beagleplay-u-boot.dtsi
arch/arm/dts/k3-am625-r5-beagleplay.dts

index 9ac4a825f8419b2d1f7af6c86a41f60caeb80f9b..cbb428de1a86a0db6238e09813f8ea32c29797ba 100644 (file)
                };
        };
 };
+
+#include "k3-binman-capsule.dtsi"
+
+// Capsule update GUIDs in string form.  See beagleplay.h
+#define BEAGLEPLAY_SPL_IMAGE_GUID_STR "b2e7cc49-1a5a-4036-ae01-3387c3bef657"
+#define BEAGLEPLAY_UBOOT_IMAGE_GUID_STR "92c92b11-a7ee-486f-aaa2-713d84425b0e"
+
+&capsule_tispl {
+       efi-capsule {
+               image-guid = BEAGLEPLAY_SPL_IMAGE_GUID_STR;
+
+               blob {
+                       filename = "tispl.bin_unsigned";
+               };
+       };
+};
+
+&capsule_uboot {
+       efi-capsule {
+               image-guid = BEAGLEPLAY_UBOOT_IMAGE_GUID_STR;
+
+               blob {
+                       filename = "u-boot.img_unsigned";
+               };
+       };
+};
+
 #endif
 
 &main_bcdma {
index 9db58f093c8ccaf7ea3af5cc5445dff6ebf13b70..162d4800b179212e018d2b6236d4fe4b53194eda 100644 (file)
 
        };
 };
+
+#include "k3-binman-capsule-r5.dtsi"
+
+// Capsule update GUIDs in string form.  See beagleplay.h
+#define BEAGLEPLAY_TIBOOT3_IMAGE_GUID_STR "0e225a09-f720-4d57-9120-e28f737f5a5e"
+
+&capsule_tiboot3 {
+       efi-capsule {
+               image-guid = BEAGLEPLAY_TIBOOT3_IMAGE_GUID_STR;
+
+               blob {
+                       filename = "tiboot3-am62x-gp-evm.bin";
+               };
+       };
+};