summaryrefslogtreecommitdiff
path: root/arch/arm/dts/k3-binman-capsule.dtsi
blob: 17e83c9fa44d1b13501c5b7295793944cda1064e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
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";
			};
		};
	};
};