summaryrefslogtreecommitdiff
path: root/board/st/stm32mp1/fit_kernel_dtb.its
blob: 8456a3c460f124cd24cd5b92262cdf2f40bc86da (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
/*
 * Compilation:
 * mkimage -f fit_kernel_dtb.its fit_kernel_dtb.itb
 *
 * Files in linux build dir:
 * - arch/arm/boot/Image (gzipped in Image.gz)
 * - arch/arm/boot/dts/stm32mp157c-dk2.dtb
 * - arch/arm/boot/dts/stm32mp157c-ev1.dtb
 *
 * load mmc 0:4 $kernel_addr_r fit_kernel_dtb.itb
 * bootm $kernel_addr_r
 * bootm $kernel_addr_r#dk2
 * bootm $kernel_addr_r#ev1
 *
 * or use extlinux.conf in this directory
 */

/dts-v1/;
/ {
	description = "U-Boot fitImage for stm32mp157";
	#address-cells = <1>;

	images {
		kernel {
			description = "Linux kernel";
			data = /incbin/("Image.gz");
			type = "kernel";
			arch = "arm";
			os = "linux";
			compression = "gzip";
			load = <0xC0008000>;
			entry = <0xC0008000>;
			hash-1 {
				algo = "sha1";
			};
		};

		fdt-dk2 {
			description = "FDT dk2";
			data = /incbin/("stm32mp157c-dk2.dtb");
			type = "flat_dt";
			arch = "arm";
			compression = "none";
			hash-1 {
				algo = "sha1";
			};
		};

		fdt-ev1 {
			description = "FDT ev1";
			data = /incbin/("stm32mp157c-ev1.dtb");
			type = "flat_dt";
			arch = "arm";
			compression = "none";
			hash-1 {
				algo = "sha1";
			};
		};
	};

	configurations {
		default = "dk2";

		dk2 {
			description = "dk2";
			kernel = "kernel";
			fdt = "fdt-dk2";
			hash-1 {
				algo = "sha1";
			};
		};

		ev1 {
			description = "ev1";
			kernel = "kernel";
			fdt = "fdt-ev1";
			hash-1 {
				algo = "sha1";
			};
		};
	};
};