blob: 64cbc1d38ed8448af7e02fae8cf7bd716c9ecf42 [file] [log] [blame]
Ibai Erkiaga5df77892022-09-19 15:30:02 +01001/dts-v1/;
2
3/ {
4 description = "U-Boot fitImage for plnx_aarch64 kernel";
5 #address-cells = <1>;
6
7 images {
8 kernel {
9 description = "Linux Kernel";
10 data = /incbin/("./../../linux-xlnx/arch/arm64/boot/Image");
11 type = "kernel";
12 arch = "arm64";
13 os = "linux";
14 compression = "none";
15 load = <0x80000>;
16 entry = <0x80000>;
17 hash {
18 algo = "sha1";
19 };
20 };
21 fdt-1 {
22 description = "Flattened Device Tree blob";
23 data = /incbin/("../../u-boot-xlnx/arch/arm/dts/zynqmp-zcu104-revC.dtb");
24 type = "flat_dt";
25 arch = "arm64";
26 load = <0x10000000>;
27 compression = "none";
28 hash {
29 algo = "sha1";
30 };
31 };
32 fdt-2 {
33 description = "Flattened Device Tree overlay";
34 data = /incbin/("zynqmp-optee.dtbo");
35 type = "flat_dt";
36 arch = "arm64";
37 load = <0x11000000>;
38 compression = "none";
39 hash {
40 algo = "sha1";
41 };
42 };
43 ramdisk {
44 description = "ramdisk";
45 data = /incbin/("../../out-br/images/rootfs.cpio.gz");
46 type = "ramdisk";
47 arch = "arm64";
48 os = "linux";
49 compression = "gzip";
50 hash {
51 algo = "sha1";
52 };
53 };
54 };
55 configurations {
56 default = "conf";
57 conf {
58 description = "Boot Linux kernel with FDT blob + ramdisk";
59 kernel = "kernel";
60 fdt = "fdt-1", "fdt-2";
61 ramdisk = "ramdisk";
62 hash {
63 algo = "sha1";
64 };
65 };
66 };
67};