~funderscore blog cgit wiki get in touch
aboutsummaryrefslogtreecommitdiff
blob: c7dc00a8d2d070a8c78d7f862c67fd0d8f7909da (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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
// SPDX-License-Identifier: GPL-2.0+
/*
 * Devicetree file for VPL (Verifying Program Loader)
 */

&binman {
	u-boot-tpl-elf {
		no-expanded;
	};
	u-boot-vpl-elf {
		no-expanded;
	};
	fw-update {
		type = "section";

		/*
		 * provide plenty of space for ELF files with debug info so that
		 * gdb can be used
		 */
		offset = <0x800000>;
		size = <0x2000000>;

		fit {
			fit,external-offset = <0>;
			description = "AP firmware";
			images {
				spl {
					description = "U-Boot SPL";
					type = "firmware";
					phase = "spl";
					arch = "sandbox";
					os = "u-boot";
					compression = "none";

					hash-1 {
						algo = "sha256";
					};

					u-boot-spl-elf {
					};
				};
				u-boot {
					description = "U-Boot";
					type = "firmware";
					phase = "u-boot";
					arch = "sandbox";
					os = "u-boot";
					compression = "none";

					hash-1 {
						algo = "sha256";
					};

					u-boot-elf {
					};
				};
			};

			configurations {
				conf-1 {
					compatible = "sandbox";
					description = "AP Firmware v1";
					firmware = "spl", "u-boot";
					signature {
						algo = "sha1,rsa2048";
						key-name-hint = "dev";
						sign-images = "firmware";
					};
				};
			};
		};
	};
	state {
		type = "fill";
		size = <0x200>;
	};
	version {
		type = "text";
		text = "1.2.3";
		size = <0x200>;
	};
	fdtmap {
	};
};