aboutsummaryrefslogtreecommitdiff
path: root/arch/arm/dts/socfpga_soc64_fit-u-boot.dtsi
blob: cf365590a8402ba22400ff6971058bb376369dbb (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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
// SPDX-License-Identifier: GPL-2.0+
/*
 * U-Boot additions
 *
 * Copyright (C) 2020 Intel Corporation <www.intel.com>
 */

#if defined(CONFIG_FIT)

/ {
	binman: binman {
		multiple-images;
	};
};

&binman {
	u-boot {
		filename = "u-boot.itb";
		fit {
			fit,external-offset = <CONFIG_FIT_EXTERNAL_OFFSET>;
			description = "FIT with firmware and bootloader";
			#address-cells = <1>;

			images {
				uboot {
					description = "U-Boot SoC64";
					type = "standalone";
					os = "U-Boot";
					arch = "arm64";
					compression = "none";
					load = <0x00200000>;

					uboot_blob: blob-ext {
						filename = "u-boot-nodtb.bin";
					};
				};

				atf {
					description = "ARM Trusted Firmware";
					type = "firmware";
					os = "arm-trusted-firmware";
					arch = "arm64";
					compression = "none";
					load = <0x00001000>;
					entry = <0x00001000>;

					atf_blob: blob-ext {
						filename = "bl31.bin";
					};
				};

				fdt {
					description = "U-Boot SoC64 flat device-tree";
					type = "flat_dt";
					compression = "none";

					uboot_fdt_blob: blob-ext {
						filename = "u-boot.dtb";
					};
				};
			};

			configurations {
				default = "conf";
				conf {
					description = "Intel SoC64 FPGA";
					firmware = "atf";
					loadables = "uboot";
					fdt = "fdt";
				};
			};
		};
	};

	kernel {
		filename = "kernel.itb";
		fit {
			description = "FIT with Linux kernel image and FDT blob";
			#address-cells = <1>;

			images {
				kernel {
					description = "Linux Kernel";
					type = "kernel";
					arch = "arm64";
					os = "linux";
					compression = "none";
					load = <0x4080000>;
					entry = <0x4080000>;

					kernel_blob: blob-ext {
						filename = "Image";
					};
				};

				fdt {
					description = "Linux DTB";
					type = "flat_dt";
					arch = "arm64";
					compression = "none";

					kernel_fdt_blob: blob-ext {
						filename = "linux.dtb";
					};
				};
			};

			configurations {
				default = "conf";
				conf {
					description = "Intel SoC64 FPGA";
					kernel = "kernel";
					fdt = "fdt";
				};
			};
		};
	};
};

#endif