summaryrefslogtreecommitdiff
path: root/board/sunxi/lynx_atf.its
blob: 21cd63768a993e864bc9185be554be6e4ea543b1 (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
/dts-v1/;

/ {
	description = "Configuration to load ATF before U-Boot";
	#address-cells = <1>;

	images {
		uboot {
			description = "U-Boot (64-bit)";
			data = /incbin/("../../u-boot-nodtb.bin");
			type = "standalone";
			arch = "arm64";
			compression = "none";
			load = <0x4a000000>;
		};
		atf {
			description = "ARM Trusted Firmware";
			data = /incbin/("../../bl31.bin");
			type = "firmware";
			arch = "arm64";
			compression = "none";
			load = <0x44000>;
			entry = <0x44000>;
		};
		fdt {
			description = "A64-uQ7 Lynx DT";
			data = /incbin/("../../arch/arm/dts/sun50i-a64-lynx.dtb");
                        type = "flat_dt";
			compression = "none";
		};
	};
	configurations {
		default = "a64_uQ7";

		a64_uQ7 {
			description = "sun50i-a64-lynx";
			firmware = "uboot";
			loadables = "atf";
			fdt = "fdt";
		};
	};
};