1
0
Fork 0
mirror of https://github.com/u-boot/u-boot.git synced 2025-04-28 08:35:38 +00:00
u-boot/arch/arm/dts/k3-binman-capsule.dtsi
Jonathan Humphreys 3ace1d9a79 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>
2024-06-14 12:59:05 -06:00

38 lines
859 B
Text

// 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";
};
};
};
};