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

Signed-off-by: Jonathan Humphreys <j-humphreys@ti.com>
arch/arm/dts/k3-j784s4-binman.dtsi

index e4dd6e14a66a3de748c9f86583f19cbcd7e97e15..7daa86ff4c5f4569524e10165beada308804a315 100644 (file)
 
        };
 };
+
+#include "k3-binman-capsule-r5.dtsi"
+
+// Capsule update GUIDs in string form.  See j784s4_evm.h
+#define AM69_SK_TIBOOT3_IMAGE_GUID_STR "adf49ec5-61bb-4dbe-8b8d-39df4d7ebf46"
+
+&capsule_tiboot3 {
+       efi-capsule {
+               image-guid = AM69_SK_TIBOOT3_IMAGE_GUID_STR;
+
+               blob {
+                       filename = "tiboot3-j784s4-hs-fs-evm.bin";
+               };
+       };
+};
+
 #endif
 
 #ifdef CONFIG_TARGET_J784S4_A72_EVM
                };
        };
 };
+
+#include "k3-binman-capsule.dtsi"
+
+// Capsule update GUIDs in string form.  See j784s4_evm.h
+#define AM69_SK_SPL_IMAGE_GUID_STR "787f0059-63a1-461c-a18e-9d838345fe8e"
+#define AM69_SK_UBOOT_IMAGE_GUID_STR "9300505d-6ec5-4ff8-99e4-5459a04be617"
+
+&capsule_tispl {
+       efi-capsule {
+               image-guid = AM69_SK_SPL_IMAGE_GUID_STR;
+       };
+};
+
+&capsule_uboot {
+       efi-capsule {
+               image-guid = AM69_SK_UBOOT_IMAGE_GUID_STR;
+       };
+};
+
 #endif