2021-10-22 02:42:16 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
|
|
|
/*
|
|
|
|
* Copyright 2021 NXP
|
|
|
|
*/
|
|
|
|
|
|
|
|
/ {
|
|
|
|
binman: binman {
|
|
|
|
multiple-images;
|
|
|
|
};
|
|
|
|
|
|
|
|
};
|
|
|
|
|
2022-05-05 07:43:38 +00:00
|
|
|
&{/soc@0} {
|
|
|
|
u-boot,dm-spl;
|
|
|
|
};
|
|
|
|
|
|
|
|
&{/soc@0/bus@30000000} {
|
|
|
|
u-boot,dm-spl;
|
|
|
|
};
|
|
|
|
|
|
|
|
&{/soc@0/bus@30400000} {
|
|
|
|
u-boot,dm-spl;
|
|
|
|
};
|
|
|
|
|
|
|
|
&{/soc@0/bus@30800000} {
|
|
|
|
u-boot,dm-spl;
|
|
|
|
};
|
|
|
|
|
|
|
|
&{/soc@0/bus@32c00000} {
|
|
|
|
u-boot,dm-spl;
|
|
|
|
};
|
|
|
|
|
|
|
|
&iomuxc {
|
|
|
|
u-boot,dm-spl;
|
|
|
|
};
|
|
|
|
|
2021-10-22 02:42:16 +00:00
|
|
|
&binman {
|
|
|
|
u-boot-spl-ddr {
|
2022-01-13 14:21:24 +00:00
|
|
|
align = <4>;
|
|
|
|
align-size = <4>;
|
2021-10-22 02:42:16 +00:00
|
|
|
filename = "u-boot-spl-ddr.bin";
|
|
|
|
pad-byte = <0xff>;
|
|
|
|
|
|
|
|
u-boot-spl {
|
|
|
|
align-end = <4>;
|
2022-01-13 14:21:47 +00:00
|
|
|
filename = "u-boot-spl.bin";
|
2021-10-22 02:42:16 +00:00
|
|
|
};
|
|
|
|
|
2022-01-13 14:22:41 +00:00
|
|
|
1d-imem {
|
2021-10-22 02:42:16 +00:00
|
|
|
filename = "lpddr4_pmu_train_1d_imem.bin";
|
|
|
|
size = <0x8000>;
|
2022-01-13 14:22:41 +00:00
|
|
|
type = "blob-ext";
|
2021-10-22 02:42:16 +00:00
|
|
|
};
|
|
|
|
|
2022-01-13 14:22:41 +00:00
|
|
|
1d-dmem {
|
2021-10-22 02:42:16 +00:00
|
|
|
filename = "lpddr4_pmu_train_1d_dmem.bin";
|
|
|
|
size = <0x4000>;
|
2022-01-13 14:22:41 +00:00
|
|
|
type = "blob-ext";
|
2021-10-22 02:42:16 +00:00
|
|
|
};
|
|
|
|
|
2022-01-13 14:22:41 +00:00
|
|
|
2d-imem {
|
2021-10-22 02:42:16 +00:00
|
|
|
filename = "lpddr4_pmu_train_2d_imem.bin";
|
|
|
|
size = <0x8000>;
|
2022-01-13 14:22:41 +00:00
|
|
|
type = "blob-ext";
|
2021-10-22 02:42:16 +00:00
|
|
|
};
|
|
|
|
|
2022-01-13 14:22:41 +00:00
|
|
|
2d-dmem {
|
2021-10-22 02:42:16 +00:00
|
|
|
filename = "lpddr4_pmu_train_2d_dmem.bin";
|
|
|
|
size = <0x4000>;
|
2022-01-13 14:22:41 +00:00
|
|
|
type = "blob-ext";
|
2021-10-22 02:42:16 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2022-01-13 14:22:41 +00:00
|
|
|
signed-hdmi {
|
2021-10-22 02:42:16 +00:00
|
|
|
filename = "signed_hdmi.bin";
|
|
|
|
|
2022-01-13 14:22:41 +00:00
|
|
|
signed-hdmi-imx8m {
|
2021-10-22 02:42:16 +00:00
|
|
|
filename = "signed_hdmi_imx8m.bin";
|
2022-01-13 14:22:41 +00:00
|
|
|
type = "blob-ext";
|
2021-10-22 02:42:16 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2022-01-08 15:34:17 +00:00
|
|
|
spl {
|
|
|
|
filename = "spl.bin";
|
|
|
|
|
2021-10-22 02:42:16 +00:00
|
|
|
mkimage {
|
|
|
|
args = "-n spl/u-boot-spl.cfgout -T imx8mimage -e 0x7e1000";
|
|
|
|
|
|
|
|
blob {
|
|
|
|
filename = "u-boot-spl-ddr.bin";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
itb {
|
|
|
|
filename = "u-boot.itb";
|
|
|
|
|
|
|
|
fit {
|
|
|
|
description = "Configuration to load ATF before U-Boot";
|
|
|
|
fit,external-offset = <CONFIG_FIT_EXTERNAL_OFFSET>;
|
2022-01-13 14:21:24 +00:00
|
|
|
#address-cells = <1>;
|
2021-10-22 02:42:16 +00:00
|
|
|
|
|
|
|
images {
|
|
|
|
uboot {
|
|
|
|
arch = "arm64";
|
|
|
|
compression = "none";
|
2022-01-13 14:21:24 +00:00
|
|
|
description = "U-Boot (64-bit)";
|
2021-10-22 02:42:16 +00:00
|
|
|
load = <CONFIG_SYS_TEXT_BASE>;
|
2022-01-13 14:21:24 +00:00
|
|
|
type = "standalone";
|
2021-10-22 02:42:16 +00:00
|
|
|
|
2022-01-13 14:22:41 +00:00
|
|
|
uboot-blob {
|
2021-10-22 02:42:16 +00:00
|
|
|
filename = "u-boot-nodtb.bin";
|
2022-01-13 14:22:41 +00:00
|
|
|
type = "blob-ext";
|
2021-10-22 02:42:16 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
atf {
|
|
|
|
arch = "arm64";
|
|
|
|
compression = "none";
|
2022-01-13 14:21:24 +00:00
|
|
|
description = "ARM Trusted Firmware";
|
2021-10-22 02:42:16 +00:00
|
|
|
entry = <0x910000>;
|
2022-01-13 14:21:24 +00:00
|
|
|
load = <0x910000>;
|
|
|
|
type = "firmware";
|
2021-10-22 02:42:16 +00:00
|
|
|
|
2022-01-13 14:22:41 +00:00
|
|
|
atf-blob {
|
2021-10-22 02:42:16 +00:00
|
|
|
filename = "bl31.bin";
|
2022-01-13 14:22:41 +00:00
|
|
|
type = "blob-ext";
|
2021-10-22 02:42:16 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
fdt {
|
2022-01-13 14:21:24 +00:00
|
|
|
compression = "none";
|
2021-10-22 02:42:16 +00:00
|
|
|
description = "NAME";
|
|
|
|
type = "flat_dt";
|
|
|
|
|
2022-01-13 14:22:41 +00:00
|
|
|
uboot-fdt-blob {
|
2021-10-22 02:42:16 +00:00
|
|
|
filename = "u-boot.dtb";
|
2022-01-13 14:22:41 +00:00
|
|
|
type = "blob-ext";
|
2021-10-22 02:42:16 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
configurations {
|
|
|
|
default = "conf";
|
|
|
|
|
|
|
|
conf {
|
|
|
|
description = "NAME";
|
2022-01-13 14:21:24 +00:00
|
|
|
fdt = "fdt";
|
2021-10-22 02:42:16 +00:00
|
|
|
firmware = "uboot";
|
|
|
|
loadables = "atf";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
2022-01-08 15:34:17 +00:00
|
|
|
|
|
|
|
imx-boot {
|
|
|
|
filename = "flash.bin";
|
|
|
|
pad-byte = <0x00>;
|
|
|
|
|
2022-01-13 14:22:41 +00:00
|
|
|
spl {
|
2022-01-08 15:34:17 +00:00
|
|
|
filename = "spl.bin";
|
2022-01-13 14:21:24 +00:00
|
|
|
offset = <0x0>;
|
2022-01-13 14:22:41 +00:00
|
|
|
type = "blob-ext";
|
2022-01-08 15:34:17 +00:00
|
|
|
};
|
|
|
|
|
2022-01-13 14:22:41 +00:00
|
|
|
binman_uboot: uboot {
|
2022-01-08 15:34:17 +00:00
|
|
|
filename = "u-boot.itb";
|
2022-01-13 14:21:24 +00:00
|
|
|
offset = <0x57c00>;
|
2022-01-13 14:22:41 +00:00
|
|
|
type = "blob-ext";
|
2022-01-08 15:34:17 +00:00
|
|
|
};
|
|
|
|
};
|
2021-10-22 02:42:16 +00:00
|
|
|
};
|