dts: beagleboneai64: binman: Include firmware capsules binman nodes

Fill in the BeagleBoneAI64's capsule GUID properties of the base binman
capsule nodes. Also add it's SYSFW binman capsule node.

Signed-off-by: Jonathan Humphreys <j-humphreys@ti.com>
This commit is contained in:
Jonathan Humphreys 2024-05-31 17:51:09 -05:00 committed by Tom Rini
parent 01fe4cfb6a
commit a21c09b0e6
2 changed files with 52 additions and 0 deletions

View File

@ -351,4 +351,27 @@
};
};
};
#include "k3-binman-capsule.dtsi"
// Capsule update GUIDs in string form. See beagleboneai64.h
#define BEAGLEBONEAI64_SPL_IMAGE_GUID_STR "83447222-1e26-40cd-a395-b7de0957e875"
#define BEAGLEBONEAI64_UBOOT_IMAGE_GUID_STR "4249ff77-c17d-4eb7-a1db-45aa9887d49e"
&capsule_tispl {
efi-capsule {
image-guid = BEAGLEBONEAI64_SPL_IMAGE_GUID_STR;
blob {
filename = "tispl.bin_unsigned";
};
};
};
&capsule_uboot {
efi-capsule {
image-guid = BEAGLEBONEAI64_UBOOT_IMAGE_GUID_STR;
};
};
#endif

View File

@ -183,3 +183,32 @@
};
};
};
#include "k3-binman-capsule-r5.dtsi"
// Capsue update GUIDs. See beagleboneai64.h.
#define BEAGLEBONEAI64_TIBOOT3_IMAGE_GUID_STR "772a4810-2194-4923-8754-0115870ef367"
#define BEAGLEBONEAI64_SYSFW_IMAGE_GUID_STR "dfc9c683-49b7-46bd-b3c1-3a3b2fdb135b"
&capsule_tiboot3 {
efi-capsule {
image-guid = BEAGLEBONEAI64_TIBOOT3_IMAGE_GUID_STR;
};
};
&binman {
capsule-sysfw {
filename = "sysfw-capsule.bin";
efi-capsule {
image-index = <0x4>;
image-guid = BEAGLEBONEAI64_SYSFW_IMAGE_GUID_STR;
private-key = "arch/arm/mach-k3/keys/custMpk.pem";
public-key-cert = "arch/arm/mach-k3/keys/custMpk.crt";
monotonic-count = <0x1>;
blob {
filename = "sysfw.itb";
};
};
};
};