blob: 2c10e9b645288770a8ead32c27dfd88ca633cd71 [file] [log] [blame]
Peng Fan4311f5a2021-10-22 10:42:16 +08001// SPDX-License-Identifier: GPL-2.0+
2/*
3 * Copyright 2021 NXP
4 */
5
6/ {
7 binman: binman {
8 multiple-images;
9 };
10
11};
12
13&binman {
14 u-boot-spl-ddr {
15 filename = "u-boot-spl-ddr.bin";
16 pad-byte = <0xff>;
17 align-size = <4>;
18 align = <4>;
19
20 u-boot-spl {
21 align-end = <4>;
22 };
23
24 blob_1: blob-ext@1 {
25 filename = "lpddr4_pmu_train_1d_imem.bin";
26 size = <0x8000>;
27 };
28
29 blob_2: blob-ext@2 {
30 filename = "lpddr4_pmu_train_1d_dmem.bin";
31 size = <0x4000>;
32 };
33
34 blob_3: blob-ext@3 {
35 filename = "lpddr4_pmu_train_2d_imem.bin";
36 size = <0x8000>;
37 };
38
39 blob_4: blob-ext@4 {
40 filename = "lpddr4_pmu_train_2d_dmem.bin";
41 size = <0x4000>;
42 };
43 };
44
45 signed_hdmi {
46 filename = "signed_hdmi.bin";
47
48 blob_5: blob-ext@5 {
49 filename = "signed_hdmi_imx8m.bin";
50 };
51 };
52
53 flash {
54 mkimage {
55 args = "-n spl/u-boot-spl.cfgout -T imx8mimage -e 0x7e1000";
56
57 blob {
58 filename = "u-boot-spl-ddr.bin";
59 };
60
61 };
62
63 };
64
65 itb {
66 filename = "u-boot.itb";
67
68 fit {
69 description = "Configuration to load ATF before U-Boot";
70 #address-cells = <1>;
71 fit,external-offset = <CONFIG_FIT_EXTERNAL_OFFSET>;
72
73 images {
74 uboot {
75 description = "U-Boot (64-bit)";
76 type = "standalone";
77 arch = "arm64";
78 compression = "none";
79 load = <CONFIG_SYS_TEXT_BASE>;
80
81 uboot_blob: blob-ext {
82 filename = "u-boot-nodtb.bin";
83 };
84 };
85
86 atf {
87 description = "ARM Trusted Firmware";
88 type = "firmware";
89 arch = "arm64";
90 compression = "none";
91 load = <0x910000>;
92 entry = <0x910000>;
93
94 atf_blob: blob-ext {
95 filename = "bl31.bin";
96 };
97 };
98
99 fdt {
100 description = "NAME";
101 type = "flat_dt";
102 compression = "none";
103
104 uboot_fdt_blob: blob-ext {
105 filename = "u-boot.dtb";
106 };
107 };
108 };
109
110 configurations {
111 default = "conf";
112
113 conf {
114 description = "NAME";
115 firmware = "uboot";
116 loadables = "atf";
117 fdt = "fdt";
118 };
119 };
120 };
121 };
122};