diff options
| author | Tom Rini <trini@konsulko.com> | 2024-06-14 08:59:01 -0600 |
|---|---|---|
| committer | Tom Rini <trini@konsulko.com> | 2024-06-14 12:59:06 -0600 |
| commit | e7404a804f6f20fcbedf38f9c6db7f7f12fea3fe (patch) | |
| tree | 890e2794e97889e8d03ee1563d84305821fff2bc /arch/arm/dts/k3-am625-sk-binman.dtsi | |
| parent | 0786dd573d0793417852e009dee3148ebdd163f3 (diff) | |
| parent | 1682d3c91116996a3ea07a065005479e3a690f96 (diff) | |
Merge patch series "binman: ti: create binman nodes for EFI capsules"
Jonathan Humphreys <j-humphreys@ti.com> says:
Add binman nodes for EFI capsules of firmware components so that capsules
are automatically created during the UBoot builds.
This is enabled for several TI SoC based platforms: AM64, AM62, AM62p,
BeaglePlay, AM69, J7, and BeagleboneAI.
Diffstat (limited to 'arch/arm/dts/k3-am625-sk-binman.dtsi')
| -rw-r--r-- | arch/arm/dts/k3-am625-sk-binman.dtsi | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/arch/arm/dts/k3-am625-sk-binman.dtsi b/arch/arm/dts/k3-am625-sk-binman.dtsi index eddf05594d5..2fefdcad6d1 100644 --- a/arch/arm/dts/k3-am625-sk-binman.dtsi +++ b/arch/arm/dts/k3-am625-sk-binman.dtsi @@ -137,6 +137,17 @@ }; }; +#include "k3-binman-capsule-r5.dtsi" + +// Capsule update GUIDs in string form. See am62x_evm.h +#define AM62X_SK_TIBOOT3_IMAGE_GUID_STR "abcb83d2-9cb6-4351-b8f1-6494bbe3700a" + +&capsule_tiboot3 { + efi-capsule { + image-guid = AM62X_SK_TIBOOT3_IMAGE_GUID_STR; + }; +}; + #endif #ifdef CONFIG_TARGET_AM625_A53_EVM @@ -453,4 +464,23 @@ }; }; }; + +#include "k3-binman-capsule.dtsi" + +// Capsule update GUIDs in string form. See am62x_evm.h +#define AM62X_SK_SPL_IMAGE_GUID_STR "aee355fc-bf97-4264-8c82-437255efdc1d" +#define AM62X_SK_UBOOT_IMAGE_GUID_STR "28ab8c6c-fca8-41d3-8ea1-5f171b7d2929" + +&capsule_tispl { + efi-capsule { + image-guid = AM62X_SK_SPL_IMAGE_GUID_STR; + }; +}; + +&capsule_uboot { + efi-capsule { + image-guid = AM62X_SK_UBOOT_IMAGE_GUID_STR; + }; +}; + #endif |
