dts: ti: binman: Add base K3 firmware capsule nodes

Create capsule files for tiboot3.bin, tispl.bin, and u-boot.img.

Signed-off-by: Jonathan Humphreys <j-humphreys@ti.com>
This commit is contained in:
Jonathan Humphreys 2024-05-31 17:51:03 -05:00 committed by Tom Rini
parent b7a625b1ce
commit 3ace1d9a79
2 changed files with 59 additions and 0 deletions

View file

@ -0,0 +1,21 @@
// SPDX-License-Identifier: GPL-2.0
/*
* Copyright (C) 2024 Texas Instruments Incorporated - https://www.ti.com/
*/
&binman {
capsule_tiboot3: capsule-tiboot3 {
filename = "tiboot3-capsule.bin";
efi-capsule {
image-index = <0x1>;
image-guid = "00000000-0000-0000-0000-000000000000";
private-key = "arch/arm/mach-k3/keys/custMpk.pem";
public-key-cert = "arch/arm/mach-k3/keys/custMpk.crt";
monotonic-count = <0x1>;
blob {
filename = "tiboot3.bin";
};
};
};
};

View file

@ -0,0 +1,38 @@
// SPDX-License-Identifier: GPL-2.0
/*
* Copyright (C) 2024 Texas Instruments Incorporated - https://www.ti.com/
*/
&binman {
capsule_tispl: capsule-tispl {
filename = "tispl-capsule.bin";
efi-capsule {
image-index = <0x2>;
image-guid = "00000000-0000-0000-0000-000000000000";
private-key = "arch/arm/mach-k3/keys/custMpk.pem";
public-key-cert = "arch/arm/mach-k3/keys/custMpk.crt";
monotonic-count = <0x1>;
blob {
filename = "tispl.bin";
};
};
};
};
&binman {
capsule_uboot: capsule-uboot {
filename = "uboot-capsule.bin";
efi-capsule {
image-index = <0x3>;
image-guid = "00000000-0000-0000-0000-000000000000";
private-key = "arch/arm/mach-k3/keys/custMpk.pem";
public-key-cert = "arch/arm/mach-k3/keys/custMpk.crt";
monotonic-count = <0x1>;
blob {
filename = "u-boot.img";
};
};
};
};